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

56 行
1.6 KiB

  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></ApplicationManifest>
  8. <ApplicationIcon>hbl.ico</ApplicationIcon>
  9. <PlatformTarget>x86</PlatformTarget>
  10. <EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <None Remove="tsconfig1.json" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <Content Include="hbl.ico" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <PackageReference Include="BPA.Communication" Version="1.0.117" />
  20. <PackageReference Include="BPA.PahoMQ" Version="1.0.8">
  21. <Aliases>aliyun</Aliases>
  22. </PackageReference>
  23. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <ProjectReference Include="..\BPASmartClient.CustomResource\BPASmartClient.CustomResource.csproj" />
  27. <ProjectReference Include="..\BPASmartClient.Update\BPASmartClient.Update.csproj" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Compile Update="View\NewOutletView.xaml.cs">
  31. <SubType>Code</SubType>
  32. </Compile>
  33. <Compile Update="View\OutletManagementView.xaml.cs">
  34. <SubType>Code</SubType>
  35. </Compile>
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Page Update="View\NewOutletView.xaml">
  39. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  40. <SubType>Designer</SubType>
  41. </Page>
  42. <Page Update="View\OutletManagementView.xaml">
  43. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  44. <SubType>Designer</SubType>
  45. </Page>
  46. </ItemGroup>
  47. </Project>