UiControl.csproj 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{883BBEE5-00FB-434E-8A1E-76291C478AEF}</ProjectGuid>
  8. <OutputType>Library</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>UiControl</RootNamespace>
  11. <AssemblyName>UiControl</AssemblyName>
  12. <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <Deterministic>true</Deterministic>
  15. <TargetFrameworkProfile />
  16. </PropertyGroup>
  17. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. <PlatformTarget>x64</PlatformTarget>
  26. </PropertyGroup>
  27. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. <PlatformTarget>AnyCPU</PlatformTarget>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  37. <DebugSymbols>true</DebugSymbols>
  38. <OutputPath>bin\x64\Debug\</OutputPath>
  39. <DefineConstants>DEBUG;TRACE</DefineConstants>
  40. <DebugType>full</DebugType>
  41. <PlatformTarget>x64</PlatformTarget>
  42. <LangVersion>7.3</LangVersion>
  43. <ErrorReport>prompt</ErrorReport>
  44. </PropertyGroup>
  45. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  46. <OutputPath>bin\x64\Release\</OutputPath>
  47. <DefineConstants>TRACE</DefineConstants>
  48. <Optimize>true</Optimize>
  49. <DebugType>pdbonly</DebugType>
  50. <PlatformTarget>x64</PlatformTarget>
  51. <LangVersion>7.3</LangVersion>
  52. <ErrorReport>prompt</ErrorReport>
  53. </PropertyGroup>
  54. <ItemGroup>
  55. <Reference Include="SunnyUI, Version=3.8.6.0, Culture=neutral, PublicKeyToken=27d7d2e821d97aeb, processorArchitecture=MSIL">
  56. <HintPath>..\packages\SunnyUI.3.8.6\lib\net472\SunnyUI.dll</HintPath>
  57. </Reference>
  58. <Reference Include="SunnyUI.Common, Version=3.8.6.0, Culture=neutral, PublicKeyToken=5a271fb7ba597231, processorArchitecture=MSIL">
  59. <HintPath>..\packages\SunnyUI.Common.3.8.6\lib\net472\SunnyUI.Common.dll</HintPath>
  60. </Reference>
  61. <Reference Include="System" />
  62. <Reference Include="System.Core" />
  63. <Reference Include="System.Design" />
  64. <Reference Include="System.Drawing" />
  65. <Reference Include="System.Web.Extensions" />
  66. <Reference Include="System.Windows.Forms" />
  67. <Reference Include="System.Xml.Linq" />
  68. <Reference Include="System.Data.DataSetExtensions" />
  69. <Reference Include="Microsoft.CSharp" />
  70. <Reference Include="System.Data" />
  71. <Reference Include="System.Net.Http" />
  72. <Reference Include="System.Xml" />
  73. </ItemGroup>
  74. <ItemGroup>
  75. <Compile Include="MyUiControl\IActionableControl.cs" />
  76. <Compile Include="MyUiControl\UiComboBox.cs">
  77. <SubType>UserControl</SubType>
  78. </Compile>
  79. <Compile Include="MyUiControl\MyCircleGaugeControl.cs">
  80. <SubType>Component</SubType>
  81. </Compile>
  82. <Compile Include="MyUiControl\MyControlExt.cs" />
  83. <Compile Include="MyUiControl\MyUiLabel.cs">
  84. <SubType>Component</SubType>
  85. </Compile>
  86. <Compile Include="MyUiControl\MyUiNumberInput.cs">
  87. <SubType>UserControl</SubType>
  88. </Compile>
  89. <Compile Include="MyUiControl\MyUiInput.cs">
  90. <SubType>UserControl</SubType>
  91. </Compile>
  92. <Compile Include="MyUiControl\MyUiTextInput.cs">
  93. <SubType>UserControl</SubType>
  94. </Compile>
  95. <Compile Include="MyUiControl\MyUiButton.cs">
  96. <SubType>Component</SubType>
  97. </Compile>
  98. <Compile Include="Node\NodesCollectionEditor.cs" />
  99. <Compile Include="PlcComponent\PlcDataMonitorEditor.cs" />
  100. <Compile Include="PlcComponent\PlcDataMonitor.cs">
  101. <SubType>Component</SubType>
  102. </Compile>
  103. <Compile Include="PlcComponent\PlcDataMonitor.Designer.cs">
  104. <DependentUpon>PlcDataMonitor.cs</DependentUpon>
  105. </Compile>
  106. <Compile Include="PlcDataConvert.cs" />
  107. <Compile Include="PlcUiControl\CommonLib.cs" />
  108. <Compile Include="PlcUiControl\FormInput.cs">
  109. <SubType>Form</SubType>
  110. </Compile>
  111. <Compile Include="PlcUiControl\FormInput.Designer.cs">
  112. <DependentUpon>FormInput.cs</DependentUpon>
  113. </Compile>
  114. <Compile Include="MyUiControl\MyUiComboBox.cs">
  115. <SubType>UserControl</SubType>
  116. </Compile>
  117. <Compile Include="MyUiControl\MyUiLight.cs">
  118. <SubType>Component</SubType>
  119. </Compile>
  120. <Compile Include="IWithMinMaxValue.cs" />
  121. <Compile Include="PlcUiControl\PlcUiComboBox.cs">
  122. <SubType>UserControl</SubType>
  123. </Compile>
  124. <Compile Include="PlcUiControl\PlcUiStateDisplay.cs">
  125. <SubType>Component</SubType>
  126. </Compile>
  127. <Compile Include="PlcUiControl\PlcUiTextInput.cs">
  128. <SubType>UserControl</SubType>
  129. </Compile>
  130. <Compile Include="PlcUiControl\PlcUiTextDisplay.cs">
  131. <SubType>Component</SubType>
  132. </Compile>
  133. <Compile Include="PlcUiControl\PlcUiNumberInput.cs">
  134. <SubType>UserControl</SubType>
  135. </Compile>
  136. <Compile Include="PlcUiControl\PlcUiNumberDisplay.cs">
  137. <SubType>Component</SubType>
  138. </Compile>
  139. <Compile Include="PlcUiControl\PlcUiLight.cs">
  140. <SubType>Component</SubType>
  141. </Compile>
  142. <Compile Include="SoftKeyboard\FullKeyboardForm.cs">
  143. <SubType>Form</SubType>
  144. </Compile>
  145. <Compile Include="SoftKeyboard\FullKeyboardForm.Designer.cs">
  146. <DependentUpon>FullKeyboardForm.cs</DependentUpon>
  147. </Compile>
  148. <Compile Include="SoftKeyboard\NumberKeybordForm.cs">
  149. <SubType>Form</SubType>
  150. </Compile>
  151. <Compile Include="SoftKeyboard\NumberKeybordForm.Designer.cs">
  152. <DependentUpon>NumberKeybordForm.cs</DependentUpon>
  153. </Compile>
  154. <Compile Include="SoftKeyboard\NumKeybordForm.cs">
  155. <SubType>Form</SubType>
  156. </Compile>
  157. <Compile Include="SoftKeyboard\NumKeybordForm.Designer.cs">
  158. <DependentUpon>NumKeybordForm.cs</DependentUpon>
  159. </Compile>
  160. <Compile Include="Node\Node.cs" />
  161. <Compile Include="NodeSelectionDialog.cs">
  162. <SubType>Form</SubType>
  163. </Compile>
  164. <Compile Include="NodeSelectionDialog.Designer.cs">
  165. <DependentUpon>NodeSelectionDialog.cs</DependentUpon>
  166. </Compile>
  167. <Compile Include="Node\NodeTypeEditor.cs" />
  168. <Compile Include="PlcUiControl\IPlcBindableComponent.cs" />
  169. <Compile Include="PlcUiControl\PlcUiButton.cs">
  170. <SubType>Component</SubType>
  171. </Compile>
  172. <Compile Include="Properties\AssemblyInfo.cs" />
  173. <Compile Include="SoftKeyboard\SimulateInput.cs" />
  174. </ItemGroup>
  175. <ItemGroup>
  176. <EmbeddedResource Include="PlcUiControl\PlcUiTextInput.resx">
  177. <DependentUpon>PlcUiTextInput.cs</DependentUpon>
  178. </EmbeddedResource>
  179. <EmbeddedResource Include="SoftKeyboard\FullKeyboardForm.resx">
  180. <DependentUpon>FullKeyboardForm.cs</DependentUpon>
  181. </EmbeddedResource>
  182. <EmbeddedResource Include="SoftKeyboard\NumberKeybordForm.resx">
  183. <DependentUpon>NumberKeybordForm.cs</DependentUpon>
  184. </EmbeddedResource>
  185. <EmbeddedResource Include="SoftKeyboard\NumKeybordForm.resx">
  186. <DependentUpon>NumKeybordForm.cs</DependentUpon>
  187. </EmbeddedResource>
  188. <EmbeddedResource Include="NodeSelectionDialog.resx">
  189. <DependentUpon>NodeSelectionDialog.cs</DependentUpon>
  190. </EmbeddedResource>
  191. <EmbeddedResource Include="PlcUiControl\FormInput.resx">
  192. <DependentUpon>FormInput.cs</DependentUpon>
  193. </EmbeddedResource>
  194. <EmbeddedResource Include="PlcUiControl\PlcUiComboBox.resx">
  195. <DependentUpon>PlcUiComboBox.cs</DependentUpon>
  196. </EmbeddedResource>
  197. <EmbeddedResource Include="PlcUiControl\PlcUiNumberInput.resx">
  198. <DependentUpon>PlcUiNumberInput.cs</DependentUpon>
  199. </EmbeddedResource>
  200. </ItemGroup>
  201. <ItemGroup>
  202. <ProjectReference Include="..\DataService\DataService.csproj">
  203. <Project>{61d6f9a5-869d-486d-9340-57dbd6eec80d}</Project>
  204. <Name>DataService</Name>
  205. </ProjectReference>
  206. <ProjectReference Include="..\Model\Model.csproj">
  207. <Project>{a9222c43-a5ba-4010-b7c8-eba38c31f9fc}</Project>
  208. <Name>Model</Name>
  209. </ProjectReference>
  210. <ProjectReference Include="..\OperableControlModel\ControlOperationType.csproj">
  211. <Project>{07d21bba-22d6-4069-a15e-61f2e7a08f00}</Project>
  212. <Name>ControlOperationType</Name>
  213. </ProjectReference>
  214. <ProjectReference Include="..\Permission\Permission.csproj">
  215. <Project>{b4bda9d6-a05d-4c0c-a1d3-afd9a1596d84}</Project>
  216. <Name>Permission</Name>
  217. </ProjectReference>
  218. <ProjectReference Include="..\PlcCom\PlcCom.csproj">
  219. <Project>{c4417822-36e9-48df-a0cd-2122e397b615}</Project>
  220. <Name>PlcCom</Name>
  221. </ProjectReference>
  222. <ProjectReference Include="..\XmlSymbolParser\XmlSymbolParser.csproj">
  223. <Project>{5f75a58a-c72d-4331-93b6-eec4b89fb805}</Project>
  224. <Name>XmlSymbolParser</Name>
  225. </ProjectReference>
  226. </ItemGroup>
  227. <ItemGroup>
  228. <None Include="packages.config" />
  229. </ItemGroup>
  230. <ItemGroup />
  231. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  232. </Project>