WCS.WFormServices.csproj 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>netcoreapp3.1</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.10" />
  9. <PackageReference Include="Quartz" Version="3.3.3" />
  10. <PackageReference Include="Quartz.Plugins" Version="3.3.3" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\WCS.Data\WCS.Data.csproj" />
  14. <ProjectReference Include="..\WCS.Workflow\WCS.Workflow.csproj" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <None Update="appsettings.json">
  18. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  19. </None>
  20. <None Update="log4net.config">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </None>
  23. <None Update="quartz.config">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </None>
  26. <None Update="quartz_jobs.xml">
  27. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  28. </None>
  29. </ItemGroup>
  30. </Project>