1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net7.0-windows</TargetFramework>
- <Nullable>disable</Nullable>
- <UseWindowsForms>true</UseWindowsForms>
- <ImplicitUsings>enable</ImplicitUsings>
- <AssemblyName>CPU服务</AssemblyName>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <ApplicationIcon>$(SolutionDir)logo.ico</ApplicationIcon>
- <NoWin32Manifest>true</NoWin32Manifest>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DebugType>none</DebugType>
- <DebugSymbols>false</DebugSymbols>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <NoWarn>1701;1702;CS1591;</NoWarn>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <NoWarn>1701;1702;CS1591;</NoWarn>
- </PropertyGroup>
- <ItemGroup>
- <FrameworkReference Include="Microsoft.AspNetCore.App" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="DevExpress.Win.Design" Version="23.2.3" PrivateAssets="all" />
- <PackageReference Include="Grpc.AspNetCore" Version="2.70.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\ipslib\Ips.Library.Basic\Ips.Library.Basic.csproj" />
- <ProjectReference Include="..\..\ipslib\Ips.Library.DxpLib\Ips.Library.DxpLib.csproj" />
- <ProjectReference Include="..\..\ipslib\Ips.Library.Entity\Ips.Library.Entity.csproj" />
- <ProjectReference Include="..\..\ipslib\Ips.Library.WebApi\Ips.Library.WebApi.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Protobuf Include="Protos\FileOper.proto" GrpcServices="Server" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="DirectXForm1.cs">
- <SubType>Form</SubType>
- </Compile>
- </ItemGroup>
- <ItemGroup>
- <None Update="AddIns\参数估计\coc.exe">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="AddIns\同频对消\cublas64_90.dll">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="AddIns\同频对消\cudart64_90.dll">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="AddIns\同频对消\cufft64_90.dll">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="AddIns\同频对消\defruiter.exe">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <Target Name="PostBuild" AfterTargets="PostBuildEvent">
- <Exec Command="xcopy $(SolutionDir)AddIns $(PublishDir)AddIns\ /d /ey" />
- </Target>
- </Project>
|