终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

113 lines
3.7 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. <ApplicationIcon>hbl.ico</ApplicationIcon>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <Content Include="hbl.ico" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="BPA.Message" Version="1.0.86" />
  14. <PackageReference Include="Microsoft.Toolkit.Mvvm" Version="7.1.2" />
  15. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\BPASmartClient.CustomResource\BPASmartClient.CustomResource.csproj" />
  19. <ProjectReference Include="..\BPASmartClient.Modbus\BPASmartClient.Modbus.csproj" />
  20. <ProjectReference Include="..\BPASmartClient.S7Net\BPASmartClient.S7Net.csproj" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Compile Update="View\BomOfMaterialView.xaml.cs">
  24. <SubType>Code</SubType>
  25. </Compile>
  26. <Compile Update="View\RobotView.xaml.cs">
  27. <SubType>Code</SubType>
  28. </Compile>
  29. <Compile Update="View\ManualFlowView.xaml.cs">
  30. <SubType>Code</SubType>
  31. </Compile>
  32. <Compile Update="View\SelectRecipesView.xaml.cs">
  33. <SubType>Code</SubType>
  34. </Compile>
  35. <Compile Update="View\StockBinRawMaterialView.xaml.cs">
  36. <SubType>Code</SubType>
  37. </Compile>
  38. </ItemGroup>
  39. <ItemGroup>
  40. <Page Update="View\BomOfMaterialView.xaml">
  41. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  42. <SubType>Designer</SubType>
  43. </Page>
  44. <Page Update="View\ChangeDeviceNameView.xaml">
  45. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  46. </Page>
  47. <Page Update="View\DeviceListView.xaml">
  48. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  49. </Page>
  50. <Page Update="View\ManualCommView.xaml">
  51. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  52. <SubType>Designer</SubType>
  53. </Page>
  54. <Page Update="View\RobotView.xaml">
  55. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  56. <SubType>Designer</SubType>
  57. </Page>
  58. <Page Update="View\ManualFlowView.xaml">
  59. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  60. <SubType>Designer</SubType>
  61. </Page>
  62. <Page Update="View\SiemensRecipeReceiveView.xaml">
  63. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  64. <SubType>Designer</SubType>
  65. </Page>
  66. <Page Update="View\StockBinRawMaterialView.xaml">
  67. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  68. <SubType>Designer</SubType>
  69. </Page>
  70. <Page Update="View\SystemParView.xaml">
  71. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  72. <SubType>Designer</SubType>
  73. </Page>
  74. <Page Update="View\WindSendParView.xaml">
  75. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  76. <SubType>Designer</SubType>
  77. </Page>
  78. <Page Update="View\NewLocalRecipeView.xaml">
  79. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  80. <SubType>Designer</SubType>
  81. </Page>
  82. <Page Update="View\DeviceMaterialParView.xaml">
  83. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  84. </Page>
  85. <Page Update="View\HardwareStatusView.xaml">
  86. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  87. </Page>
  88. <Page Update="View\ManualControlView.xaml">
  89. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  90. </Page>
  91. <Page Update="View\NewMaterialView.xaml">
  92. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  93. </Page>
  94. <Page Update="View\NewRecipeView.xaml">
  95. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  96. </Page>
  97. <Page Update="View\RecipeControlView.xaml">
  98. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  99. </Page>
  100. <Page Update="View\RecipeSettingsView.xaml">
  101. <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
  102. </Page>
  103. </ItemGroup>
  104. </Project>