1234567891011121314151617181920212223242526272829303132333435 |
- <Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <UseWindowsForms>true</UseWindowsForms>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.10" />
- <PackageReference Include="Quartz" Version="3.3.3" />
- <PackageReference Include="Quartz.Plugins" Version="3.3.3" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\WCS.Data\WCS.Data.csproj" />
- <ProjectReference Include="..\WCS.Workflow\WCS.Workflow.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="appsettings.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="log4net.config">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="quartz.config">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="quartz_jobs.xml">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|