WCS.Service.csproj 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <Project Sdk="Microsoft.NET.Sdk.Worker">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <UserSecretsId>dotnet-WCS.Service-8F61B94D-566C-41E5-83C9-F3D01CEDFABB</UserSecretsId>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <Compile Remove="Log\**" />
  8. <Content Remove="Log\**" />
  9. <EmbeddedResource Remove="Log\**" />
  10. <None Remove="Log\**" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <Compile Remove="Handlers\BCRHandler.cs" />
  14. <Compile Remove="Handlers\Handler.cs" />
  15. <Compile Remove="Migrations\20210928075655_9-28-1.cs" />
  16. <Compile Remove="Migrations\20210928075655_9-28-1.Designer.cs" />
  17. <Compile Remove="Migrations\20210928080135_9-28-2.cs" />
  18. <Compile Remove="Migrations\20210928080135_9-28-2.Designer.cs" />
  19. <Compile Remove="Migrations\20210928080326_9-28-3.cs" />
  20. <Compile Remove="Migrations\20210928080326_9-28-3.Designer.cs" />
  21. <Compile Remove="Migrations\20210928080725_9-28-4.cs" />
  22. <Compile Remove="Migrations\20210928080725_9-28-4.Designer.cs" />
  23. <Compile Remove="Migrations\20210928080839_9-28-11.cs" />
  24. <Compile Remove="Migrations\20210928080839_9-28-11.Designer.cs" />
  25. <Compile Remove="Migrations\20210928081007_9-28-12.cs" />
  26. <Compile Remove="Migrations\20210928081007_9-28-12.Designer.cs" />
  27. <Compile Remove="Works\StationHandler.cs" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <PackageReference Include="MessagePack" Version="2.3.75" />
  34. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.5">
  35. <PrivateAssets>all</PrivateAssets>
  36. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  37. </PackageReference>
  38. <PackageReference Include="Microsoft.EntityFrameworkCore.DynamicLinq" Version="5.2.9" />
  39. <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="5.0.5" />
  40. <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.5" />
  41. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.5" />
  42. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.5">
  43. <PrivateAssets>all</PrivateAssets>
  44. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  45. </PackageReference>
  46. <PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
  47. <PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="5.0.1" />
  48. <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="5.0.1" />
  49. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  50. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.4" />
  51. <PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0" />
  52. </ItemGroup>
  53. <ItemGroup>
  54. <ProjectReference Include="..\..\..\DBHelper\DBHelper.csproj" />
  55. <ProjectReference Include="..\..\..\PLC.Siemens\PLC.Siemens.csproj" />
  56. <ProjectReference Include="..\..\..\WCS.Core\WCS.Core.csproj" />
  57. <ProjectReference Include="..\..\..\WCS.Entity\WCS.Entity.csproj" />
  58. <ProjectReference Include="..\WCS.Entity.Protocol\WCS.Entity.Protocol.csproj" />
  59. </ItemGroup>
  60. <ItemGroup>
  61. <Reference Include="PLCConnecter">
  62. <HintPath>..\..\..\DLL\PLCConnecter.dll</HintPath>
  63. </Reference>
  64. </ItemGroup>
  65. <ItemGroup>
  66. <None Update="Install.bat">
  67. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  68. </None>
  69. <None Update="Uninstall.bat">
  70. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  71. </None>
  72. </ItemGroup>
  73. <ProjectExtensions><VisualStudio><UserProperties appsettings_1json__JsonSchema="" /></VisualStudio></ProjectExtensions>
  74. </Project>