Ips.Service.GpuServer.csproj 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net7.0-windows</TargetFramework>
  5. <Nullable>disable</Nullable>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <ImplicitUsings>enable</ImplicitUsings>
  8. <AssemblyName>GPU服务</AssemblyName>
  9. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  10. <ApplicationIcon>$(SolutionDir)logo.ico</ApplicationIcon>
  11. <NoWin32Manifest>true</NoWin32Manifest>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  14. <DebugType>none</DebugType>
  15. <DebugSymbols>false</DebugSymbols>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  18. <NoWarn>1701;1702;CS1591;</NoWarn>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  21. <NoWarn>1701;1702;CS1591;</NoWarn>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <PackageReference Include="DevExpress.Win.Design" Version="23.2.3" PrivateAssets="all" />
  28. <PackageReference Include="Grpc.AspNetCore" Version="2.70.0" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ProjectReference Include="..\..\ipslib\Ips.Library.Basic\Ips.Library.Basic.csproj" />
  32. <ProjectReference Include="..\..\ipslib\Ips.Library.DxpLib\Ips.Library.DxpLib.csproj" />
  33. <ProjectReference Include="..\..\ipslib\Ips.Library.Entity\Ips.Library.Entity.csproj" />
  34. <ProjectReference Include="..\..\ipslib\Ips.Library.WebApi\Ips.Library.WebApi.csproj" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Protobuf Include="Protos\FileOper.proto" GrpcServices="Server" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Compile Update="DirectXForm1.cs">
  41. <SubType>Form</SubType>
  42. </Compile>
  43. </ItemGroup>
  44. <ItemGroup>
  45. <None Update="AddIns\参数估计\cog.exe">
  46. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  47. </None>
  48. <None Update="AddIns\同频对消\DefruiterGpu.exe">
  49. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  50. </None>
  51. <None Update="AddIns\同频对消\ippcore-9.0.dll">
  52. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  53. </None>
  54. <None Update="AddIns\同频对消\ipps-9.0.dll">
  55. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  56. </None>
  57. <None Update="AddIns\同频对消\ippsy8-9.0.dll">
  58. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  59. </None>
  60. </ItemGroup>
  61. <Target Name="PostBuild" AfterTargets="PostBuildEvent">
  62. <Exec Command="xcopy $(SolutionDir)AddIns $(PublishDir)AddIns\ /d /ey" />
  63. </Target>
  64. </Project>