WCS.Service.csproj 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <Project Sdk="Microsoft.NET.Sdk.Worker">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <UserSecretsId>dotnet-WCS.Service-EBA9AC2B-E82A-472A-97B6-2D33DEFA8D48</UserSecretsId>
  5. </PropertyGroup>
  6. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  7. <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  10. <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <Compile Remove="DLL\**" />
  14. <Content Remove="DLL\**" />
  15. <EmbeddedResource Remove="DLL\**" />
  16. <None Remove="DLL\**" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <PackageReference Include="MessagePack" Version="2.4.35" />
  20. <PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.5" />
  21. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.6">
  22. <PrivateAssets>all</PrivateAssets>
  23. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  24. </PackageReference>
  25. <PackageReference Include="Microsoft.EntityFrameworkCore.DynamicLinq" Version="6.2.19" />
  26. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.6" />
  27. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.6">
  28. <PrivateAssets>all</PrivateAssets>
  29. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  30. </PackageReference>
  31. <PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
  32. <PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="6.0.0" />
  33. <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="6.0.0" />
  34. <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.6" />
  35. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.3.1" />
  36. <PackageReference Include="WCS.Core" Version="1.0.0.3" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <ProjectReference Include="..\..\..\DBHelper-SqlSugar\DBHelper-SqlSugar.csproj" />
  40. <ProjectReference Include="..\..\..\Logs\Logs.csproj" />
  41. <ProjectReference Include="..\..\..\Virtual_PLC\Virtual_PLC.csproj" />
  42. <ProjectReference Include="..\..\..\WCS.Entity\WCS.Entity.csproj" />
  43. <ProjectReference Include="..\WCS.Entity.Protocol\WCS.Entity.Protocol.csproj" />
  44. </ItemGroup>
  45. </Project>