终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

29 行
910 B

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <UseWPF>true</UseWPF>
  7. <ApplicationManifest>app.manifest</ApplicationManifest>
  8. <ApplicationIcon>hbl.ico</ApplicationIcon>
  9. <PlatformTarget>AnyCPU</PlatformTarget>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <Content Include="hbl.ico" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <PackageReference Include="BPA.Message" Version="1.0.46" />
  16. <PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.1.2" />
  17. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\BPASmartClient.CustomResource\BPASmartClient.CustomResource.csproj" />
  21. <ProjectReference Include="..\BPASmartClient.Modbus\BPASmartClient.Modbus.csproj" />
  22. </ItemGroup>
  23. </Project>