1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <Project Sdk="Microsoft.NET.Sdk.Worker">
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <UserSecretsId>dotnet-WCS.Service-EBA9AC2B-E82A-472A-97B6-2D33DEFA8D48</UserSecretsId>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
- </PropertyGroup>
- <ItemGroup>
- <Compile Remove="DLL\**" />
- <Content Remove="DLL\**" />
- <EmbeddedResource Remove="DLL\**" />
- <None Remove="DLL\**" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="MessagePack" Version="2.4.35" />
- <PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.EntityFrameworkCore.DynamicLinq" Version="6.2.19" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.6" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.6">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
- <PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="6.0.0" />
- <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="6.0.0" />
- <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.6" />
- <PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\DBHelper-SqlSugar\DBHelper-SqlSugar.csproj" />
- <ProjectReference Include="..\..\..\Logs\Logs.csproj" />
- <ProjectReference Include="..\..\..\Virtual_PLC\Virtual_PLC.csproj" />
- <ProjectReference Include="..\..\..\WCS.Core\WCS.Core.csproj" />
- <ProjectReference Include="..\..\..\WCS.Entity\WCS.Entity.csproj" />
- <ProjectReference Include="..\WCS.Entity.Protocol\WCS.Entity.Protocol.csproj" />
- </ItemGroup>
- <ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
- </Project>
|