wispro.sp.winClient.csproj 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net5.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <StartupObject>wispro.sp.winClient.Program</StartupObject>
  7. <PublishSingleFile>true</PublishSingleFile>
  8. <RuntimeIdentifier>win-x64</RuntimeIdentifier>
  9. <IncludeContentInSingleFile>true</IncludeContentInSingleFile>
  10. <SelfContained>true</SelfContained>
  11. <!--启用使用assemby修剪-仅支持自包含应用程序-->
  12. <PublishTrimmed> true </PublishTrimmed>
  13. <SignAssembly>false</SignAssembly>
  14. <Platforms>AnyCPU;x64;x86</Platforms>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <None Remove="appsettings.json" />
  18. <None Remove="ExcelFiles\20210903-威世博常用绩效点数计算规则-v2-lcy.xls" />
  19. <None Remove="ExcelFiles\20210903-威世博常用绩效点数计算规则-v3-lcy.xls" />
  20. <None Remove="ExcelFiles\20211109-绩效点数规则-lcy-v1.xlsx" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Content Include="appsettings.json">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. <Content Include="ExcelFiles\20211109-绩效点数规则-lcy-v1.xlsx">
  27. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  28. </Content>
  29. </ItemGroup>
  30. <ItemGroup>
  31. <PackageReference Include="DynamicExpresso.Core" Version="2.9.3" />
  32. <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.9">
  33. <PrivateAssets>all</PrivateAssets>
  34. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  35. </PackageReference>
  36. <PackageReference Include="NPOI" Version="2.5.4" />
  37. <PackageReference Include="PinYinConverterCore" Version="1.0.2" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <ProjectReference Include="..\wispro.sp.share\wispro.sp.share.csproj" />
  41. <ProjectReference Include="..\wispro.sp.utility\wispro.sp.utility.csproj" />
  42. <ProjectReference Include="..\wospro.sp.entity\wispro.sp.entity.csproj" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <None Update="ExcelFiles\21.01-21.06 工程师绩效报表-总表.xlsx">
  46. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  47. </None>
  48. <None Update="ExcelFiles\210730-威世博人员清单v1r01-xm.xlsx">
  49. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  50. </None>
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Folder Include="Properties\" />
  54. </ItemGroup>
  55. </Project>