| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 | <Project Sdk="Microsoft.NET.Sdk">	<PropertyGroup>		<OutputType>WinExe</OutputType>		<TargetFramework>net7.0-windows</TargetFramework>		<Nullable>disable</Nullable>		<UseWindowsForms>true</UseWindowsForms>		<ImplicitUsings>enable</ImplicitUsings>		<RootNamespace>Ips.Sps</RootNamespace>		<AssemblyName>信号定位平台</AssemblyName>		<ApplicationIcon>信号接收.ico</ApplicationIcon>		<NoWin32Manifest>true</NoWin32Manifest>		<SatelliteResourceLanguages>zh-CN</SatelliteResourceLanguages>	</PropertyGroup>	<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">		<DebugType>none</DebugType>		<DebugSymbols>false</DebugSymbols>	</PropertyGroup>	<ItemGroup>		<None Remove="FodyWeavers.xsd" />	</ItemGroup>	<ItemGroup>		<Content Include="信号接收.ico" />	</ItemGroup>	<ItemGroup>		<FrameworkReference Include="Microsoft.AspNetCore.App" />	</ItemGroup>	<ItemGroup>		<PackageReference Include="DevExpress.Win.Design" Version="23.2.3" PrivateAssets="all" />	</ItemGroup>	<ItemGroup>		<ProjectReference Include="..\..\..\ipslib\Ips.Library.Entity\Ips.Library.Entity.csproj" />		<ProjectReference Include="..\..\..\ipslib\Ips.Library.WebApi\Ips.Library.WebApi.csproj" />		<ProjectReference Include="..\..\..\ipsmodule\sim\Ips.Sim.Core\Ips.Sim.Core.csproj" />		<ProjectReference Include="..\..\..\ipsmodule\tpdx\Ips.Tpdx.Core\Ips.Tpdx.Core.csproj" />		<ProjectReference Include="..\Ips.Sps.Core\Ips.Sps.Core.csproj" />		<ProjectReference Include="..\Ips.Sps.Data\Ips.Sps.Data.csproj" />		<ProjectReference Include="..\Ips.Sps.Scheduling\Ips.Sps.Scheduling.csproj" />		<ProjectReference Include="..\Isp.Sps.Controllers\Ips.Sps.Controllers.csproj" />	</ItemGroup>	<ItemGroup>		<Compile Update="DxSigs\SigListCtrl.cs">			<SubType>UserControl</SubType>		</Compile>		<Compile Update="IfeSpects\IfeSpectCtrl.cs" />		<Compile Update="MainWin.cs" />		<Compile Update="Maps\MapRangeSelectForm.cs" />		<Compile Update="SpsSplashScreen.cs" />		<Compile Update="SpsSplashScreen.Designer.cs">			<SubType>Code</SubType>		</Compile>		<Compile Update="Tools\HandPoses\SimpleHandPosForm.cs" />	</ItemGroup>	<ItemGroup>		<EmbeddedResource Update="SpsSplashScreen.resx">			<SubType>Code</SubType>		</EmbeddedResource>	</ItemGroup>	<ItemGroup>		<None Update="AppData\ddc\DigitaDownConvert.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\ddc\ippcore-9.0.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\ddc\ipps-9.0.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\ddc\ippsy8-9.0.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\ddc\SignalEmulation.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\documents\定位实验平台-软件使用维护说明.docx">			<CopyToOutputDirectory>Never</CopyToOutputDirectory>		</None>		<None Update="AppData\documents\定位实验平台-软件使用维护说明.pdf">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\spsdb\sps.db">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\vmdata\readme.txt">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\map\map.dat">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\spsdb\sps_init.db">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="AppData\vmdata\signalsim.json">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="IfeSpect\IfeSpect.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="IfeSpect\libfftw3f-3.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="IfeSpect\Qt5Core.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="IfeSpect\Qt5Gui.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="IfeSpect\Qt5Widgets.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>		<None Update="platforms\qwindows.dll">			<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>		</None>	</ItemGroup>	<ItemGroup>		<Folder Include="DxSigs\" />		<Folder Include="Tools\DtoCtrls\" />		<Folder Include="Tools\EphCtrls\" />		<Folder Include="Tools\SatCtrls\" />		<Folder Include="Tools\SignalAdjas\" />	</ItemGroup>	<ItemGroup>		<Folder Include="Tools\DtoCtrls\" />		<Folder Include="Tools\EphCtrls\" />		<Folder Include="Tools\SatCtrls\" />		<Folder Include="Tools\SignalAdjas\" />	</ItemGroup>	<!--将解决方案目录中的文件复制输出目录(xcopy命令是文件较新才会复制)-->	<Target Name="PostBuild" AfterTargets="PostBuildEvent">		<Exec Command="xcopy $(SolutionDir)AddIns $(PublishDir)AddIns\ /d /ey" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'" />		<Exec Command="xcopy $(SolutionDir)AppData $(PublishDir)AppData\ /d /ey" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'" />		<Exec Command="xcopy $(SolutionDir)ipscli $(PublishDir)ipscli\ /d /ey" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'" />		<Exec Command="xcopy $(SolutionDir)AddIns $(TargetDir)AddIns\ /d /ey" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" />		<Exec Command="xcopy $(SolutionDir)AppData $(TargetDir)AppData\ /d /ey" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" />		<Exec Command="xcopy $(SolutionDir)ipscli $(TargetDir)ipscli\ /d /ey" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'" />	</Target>	<!--发布时删除pdb文件-->	<Target Name="AddPublishIpsCli" AfterTargets="Publish">		<Exec Command="del "$(PublishDir)*.pdb" /F /Q" Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'" />	</Target></Project>
 |