AlarmInfoServerSim.csproj 1.0 KB

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <OutputPath>$(SolutionDir)Binary\Tools\AlarmInfoServerSim</OutputPath>
  6. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  7. <Nullable>enable</Nullable>
  8. <ImplicitUsings>enable</ImplicitUsings>
  9. <UseWPF>true</UseWPF>
  10. <CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
  11. <SatelliteResourceLanguages>zh-Hans</SatelliteResourceLanguages>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="Prism.DryIoc" />
  15. <PackageReference Include="CommunityToolkit.Mvvm" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\..\Communicators\RTCommunicator\RTCommunicatorBase\RTCommunicatorBase.csproj" />
  19. <ProjectReference Include="..\..\Configs\CofigOperator\ConfigOperator.csproj" />
  20. <ProjectReference Include="..\..\TLVProtocal\TLV_Protocol.csproj" />
  21. </ItemGroup>
  22. </Project>