123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <OutputPath>$(SolutionDir)Binary\Tools\AlarmInfoServerSim</OutputPath>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <Nullable>enable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- <UseWPF>true</UseWPF>
- <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
- <SatelliteResourceLanguages>zh-Hans</SatelliteResourceLanguages>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Prism.DryIoc" />
- <PackageReference Include="CommunityToolkit.Mvvm" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Communicators\RTCommunicator\RTCommunicatorBase\RTCommunicatorBase.csproj" />
- <ProjectReference Include="..\..\Configs\CofigOperator\ConfigOperator.csproj" />
- <ProjectReference Include="..\..\TLVProtocal\TLV_Protocol.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="Settings\Hardwares\HTR1 - U2.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Settings\Hardwares\HTR1 - U3.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Settings\Hardwares\HTR1 - U4.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Settings\Hardwares\HTR1 - U5.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Settings\Hardwares\HTR2 - U7.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Settings\Hardwares\HTR2 - U8.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Settings\Hardwares\HTR2 - U9.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Settings\Hardwares\HTR4 - U6.json">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|