1234567891011121314151617181920212223242526272829 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net5.0-windows</TargetFramework>
- <Nullable>enable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Quartz" Version="3.13.1" />
- <PackageReference Include="SharpCompress" Version="0.38.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\wispro.sp.api\wispro.sp.api.csproj" />
- <ProjectReference Include="..\wispro.sp.ipeasyApi\wispro.sp.ipeasyApi.csproj" />
- <ProjectReference Include="..\wispro.sp.share\wispro.sp.share.csproj" />
- <ProjectReference Include="..\wispro.sp.utility\wispro.sp.utility.csproj" />
- <ProjectReference Include="..\wospro.sp.entity\wispro.sp.entity.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="appsettings.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|