OTSIncAMeasureApp.csproj 50 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" />
  4. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  5. <PropertyGroup>
  6. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  7. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  8. <ProjectGuid>{474772DC-334A-4E87-BB46-3ABD913AA44A}</ProjectGuid>
  9. <OutputType>WinExe</OutputType>
  10. <RootNamespace>OTSMeasureApp</RootNamespace>
  11. <AssemblyName>OTSMeasureApp</AssemblyName>
  12. <TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
  15. <IsWebBootstrapper>false</IsWebBootstrapper>
  16. <TargetFrameworkProfile />
  17. <NuGetPackageImportStamp>
  18. </NuGetPackageImportStamp>
  19. <PublishUrl>publish\</PublishUrl>
  20. <Install>true</Install>
  21. <InstallFrom>Disk</InstallFrom>
  22. <UpdateEnabled>false</UpdateEnabled>
  23. <UpdateMode>Foreground</UpdateMode>
  24. <UpdateInterval>7</UpdateInterval>
  25. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  26. <UpdatePeriodically>false</UpdatePeriodically>
  27. <UpdateRequired>false</UpdateRequired>
  28. <MapFileExtensions>true</MapFileExtensions>
  29. <ApplicationRevision>0</ApplicationRevision>
  30. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  31. <UseApplicationTrust>false</UseApplicationTrust>
  32. <BootstrapperEnabled>true</BootstrapperEnabled>
  33. </PropertyGroup>
  34. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  35. <PlatformTarget>x86</PlatformTarget>
  36. <DebugSymbols>true</DebugSymbols>
  37. <DebugType>full</DebugType>
  38. <Optimize>false</Optimize>
  39. <OutputPath>..\Bin\Win32\Debug\</OutputPath>
  40. <DefineConstants>DEBUG;TRACE</DefineConstants>
  41. <ErrorReport>prompt</ErrorReport>
  42. <WarningLevel>4</WarningLevel>
  43. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  44. <AllowUnsafeBlocks>false</AllowUnsafeBlocks>
  45. <DocumentationFile>
  46. </DocumentationFile>
  47. </PropertyGroup>
  48. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  49. <PlatformTarget>AnyCPU</PlatformTarget>
  50. <DebugType>pdbonly</DebugType>
  51. <Optimize>false</Optimize>
  52. <OutputPath>..\Bin\Win32\Release\</OutputPath>
  53. <DefineConstants>TRACE</DefineConstants>
  54. <ErrorReport>prompt</ErrorReport>
  55. <WarningLevel>4</WarningLevel>
  56. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  57. </PropertyGroup>
  58. <PropertyGroup />
  59. <PropertyGroup>
  60. <StartupObject>OTSMeasureApp.Program</StartupObject>
  61. </PropertyGroup>
  62. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
  63. <PlatformTarget>AnyCPU</PlatformTarget>
  64. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  65. </PropertyGroup>
  66. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford50|x86'">
  67. <OutputPath>..\bin\Win32\Release_oxford50\</OutputPath>
  68. </PropertyGroup>
  69. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
  70. <DebugSymbols>true</DebugSymbols>
  71. <OutputPath>..\Bin\x64\Debug\</OutputPath>
  72. <DefineConstants>DEBUG;TRACE</DefineConstants>
  73. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  74. <DebugType>full</DebugType>
  75. <PlatformTarget>x64</PlatformTarget>
  76. <LangVersion>7.3</LangVersion>
  77. <ErrorReport>prompt</ErrorReport>
  78. <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
  79. <Prefer32Bit>false</Prefer32Bit>
  80. </PropertyGroup>
  81. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
  82. <OutputPath>..\Bin\x64\Release\</OutputPath>
  83. <DefineConstants>TRACE</DefineConstants>
  84. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  85. <DebugType>pdbonly</DebugType>
  86. <PlatformTarget>x64</PlatformTarget>
  87. <LangVersion>7.3</LangVersion>
  88. <ErrorReport>prompt</ErrorReport>
  89. <Prefer32Bit>true</Prefer32Bit>
  90. </PropertyGroup>
  91. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford50|x64'">
  92. <OutputPath>..\Bin\x64\Release_oxford50\</OutputPath>
  93. <PlatformTarget>x64</PlatformTarget>
  94. <LangVersion>7.3</LangVersion>
  95. <Prefer32Bit>false</Prefer32Bit>
  96. <DefineConstants>
  97. </DefineConstants>
  98. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  99. </PropertyGroup>
  100. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford50|AnyCPU'">
  101. <OutputPath>..\bin\x64\Release_oxford50\</OutputPath>
  102. <Prefer32Bit>false</Prefer32Bit>
  103. </PropertyGroup>
  104. <PropertyGroup>
  105. <ApplicationIcon>Resources\OTSIncAMeasure.ico</ApplicationIcon>
  106. </PropertyGroup>
  107. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'CleannessRelease|AnyCPU'">
  108. <OutputPath>bin\CleannessRelease\</OutputPath>
  109. <PlatformTarget>AnyCPU</PlatformTarget>
  110. <LangVersion>7.3</LangVersion>
  111. </PropertyGroup>
  112. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'CleannessRelease|x86'">
  113. <OutputPath>bin\x86\CleannessRelease\</OutputPath>
  114. <PlatformTarget>AnyCPU</PlatformTarget>
  115. <LangVersion>7.3</LangVersion>
  116. <Prefer32Bit>true</Prefer32Bit>
  117. </PropertyGroup>
  118. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'CleannessRelease|x64'">
  119. <OutputPath>..\bin\x64\CleannessRelease\</OutputPath>
  120. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  121. <PlatformTarget>x64</PlatformTarget>
  122. <LangVersion>7.3</LangVersion>
  123. </PropertyGroup>
  124. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'LithiumCleanness|AnyCPU'">
  125. <OutputPath>bin\LithiumCleanness\</OutputPath>
  126. <PlatformTarget>AnyCPU</PlatformTarget>
  127. <LangVersion>7.3</LangVersion>
  128. </PropertyGroup>
  129. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'LithiumCleanness|x86'">
  130. <OutputPath>bin\x86\LithiumCleanness\</OutputPath>
  131. <PlatformTarget>AnyCPU</PlatformTarget>
  132. <LangVersion>7.3</LangVersion>
  133. <Prefer32Bit>true</Prefer32Bit>
  134. </PropertyGroup>
  135. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'LithiumCleanness|x64'">
  136. <OutputPath>bin\x64\LithiumCleanness\</OutputPath>
  137. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  138. <PlatformTarget>x64</PlatformTarget>
  139. <LangVersion>7.3</LangVersion>
  140. </PropertyGroup>
  141. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford60|AnyCPU'">
  142. <OutputPath>bin\Release_oxford60\</OutputPath>
  143. <PlatformTarget>AnyCPU</PlatformTarget>
  144. <LangVersion>7.3</LangVersion>
  145. </PropertyGroup>
  146. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford60|x86'">
  147. <OutputPath>bin\x86\Release_oxford60\</OutputPath>
  148. <PlatformTarget>AnyCPU</PlatformTarget>
  149. <LangVersion>7.3</LangVersion>
  150. <Prefer32Bit>true</Prefer32Bit>
  151. </PropertyGroup>
  152. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford60|x64'">
  153. <OutputPath>..\bin\x64\Release_oxford60\</OutputPath>
  154. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  155. <PlatformTarget>x64</PlatformTarget>
  156. <LangVersion>7.3</LangVersion>
  157. </PropertyGroup>
  158. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford61|AnyCPU'">
  159. <OutputPath>bin\Release_oxford61\</OutputPath>
  160. <PlatformTarget>AnyCPU</PlatformTarget>
  161. <LangVersion>7.3</LangVersion>
  162. <Prefer32Bit>true</Prefer32Bit>
  163. </PropertyGroup>
  164. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford61|x86'">
  165. <OutputPath>bin\x86\Release_oxford61\</OutputPath>
  166. <PlatformTarget>AnyCPU</PlatformTarget>
  167. <LangVersion>7.3</LangVersion>
  168. <Prefer32Bit>true</Prefer32Bit>
  169. </PropertyGroup>
  170. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford61|x64'">
  171. <OutputPath>..\bin\x64\Release_oxford61\</OutputPath>
  172. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  173. <PlatformTarget>x64</PlatformTarget>
  174. <LangVersion>7.3</LangVersion>
  175. <Prefer32Bit>true</Prefer32Bit>
  176. </PropertyGroup>
  177. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford62|AnyCPU'">
  178. <OutputPath>bin\Release_oxford62\</OutputPath>
  179. <PlatformTarget>AnyCPU</PlatformTarget>
  180. <LangVersion>7.3</LangVersion>
  181. <Prefer32Bit>true</Prefer32Bit>
  182. </PropertyGroup>
  183. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford62|x86'">
  184. <OutputPath>bin\x86\Release_oxford62\</OutputPath>
  185. <PlatformTarget>AnyCPU</PlatformTarget>
  186. <LangVersion>7.3</LangVersion>
  187. <Prefer32Bit>true</Prefer32Bit>
  188. </PropertyGroup>
  189. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_oxford62|x64'">
  190. <OutputPath>bin\x64\Release_oxford62\</OutputPath>
  191. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  192. <PlatformTarget>x64</PlatformTarget>
  193. <LangVersion>7.3</LangVersion>
  194. <Prefer32Bit>true</Prefer32Bit>
  195. </PropertyGroup>
  196. <ItemGroup>
  197. <Reference Include="FEIApiControl, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64">
  198. <SpecificVersion>False</SpecificVersion>
  199. <HintPath>..\OpenDll\FEIAPI\FEIApiControl.dll</HintPath>
  200. <Private>False</Private>
  201. </Reference>
  202. <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  203. <SpecificVersion>False</SpecificVersion>
  204. <EmbedInteropTypes>True</EmbedInteropTypes>
  205. <HintPath>..\OpenDll\WordApiDll\Microsoft.Office.Interop.Excel.dll</HintPath>
  206. </Reference>
  207. <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  208. <SpecificVersion>False</SpecificVersion>
  209. <HintPath>..\OpenDll\Json\Newtonsoft.Json.dll</HintPath>
  210. <Private>False</Private>
  211. </Reference>
  212. <Reference Include="NLog">
  213. <HintPath>..\OpenDll\Nlog\NLog.dll</HintPath>
  214. <Private>False</Private>
  215. </Reference>
  216. <Reference Include="office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  217. <SpecificVersion>False</SpecificVersion>
  218. <EmbedInteropTypes>True</EmbedInteropTypes>
  219. <HintPath>..\OpenDll\WordApiDll\office.dll</HintPath>
  220. </Reference>
  221. <Reference Include="OpenCvSharp">
  222. <HintPath>..\OpenDll\OpenCvSharp\OpenCvSharp.dll</HintPath>
  223. <Private>False</Private>
  224. </Reference>
  225. <Reference Include="OTS.WinFormsUI.Docking, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  226. <SpecificVersion>False</SpecificVersion>
  227. <HintPath>..\OpenDll\WordApiDll\OTS.WinFormsUI.Docking.dll</HintPath>
  228. <Private>False</Private>
  229. </Reference>
  230. <Reference Include="SlmRuntimeCSharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  231. <SpecificVersion>False</SpecificVersion>
  232. <HintPath>..\OpenDll\SlmRuntimeCSharp\SlmRuntimeCSharp.dll</HintPath>
  233. <Private>False</Private>
  234. </Reference>
  235. <Reference Include="SourceGrid, Version=4.40.7083.30975, Culture=neutral, PublicKeyToken=df6f5e538749e85d, processorArchitecture=MSIL">
  236. <SpecificVersion>False</SpecificVersion>
  237. <HintPath>..\OpenDll\WordApiDll\SourceGrid.dll</HintPath>
  238. <Private>False</Private>
  239. </Reference>
  240. <Reference Include="System" />
  241. <Reference Include="System.ComponentModel.DataAnnotations" />
  242. <Reference Include="System.Configuration" />
  243. <Reference Include="System.Core" />
  244. <Reference Include="System.Data.Linq" />
  245. <Reference Include="System.Data.SQLite">
  246. <HintPath>..\OpenDll\SQLiteDll\System.Data.SQLite.dll</HintPath>
  247. <Private>False</Private>
  248. </Reference>
  249. <Reference Include="System.Design" />
  250. <Reference Include="System.Management" />
  251. <Reference Include="System.Runtime.Remoting" />
  252. <Reference Include="System.Security" />
  253. <Reference Include="System.Windows.Forms.DataVisualization" />
  254. <Reference Include="System.Windows.Forms.Ribbon, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  255. <SpecificVersion>False</SpecificVersion>
  256. <HintPath>..\OpenDll\WordApiDll\System.Windows.Forms.Ribbon.dll</HintPath>
  257. <Private>False</Private>
  258. </Reference>
  259. <Reference Include="System.Xml.Linq" />
  260. <Reference Include="System.Data.DataSetExtensions" />
  261. <Reference Include="Microsoft.CSharp" />
  262. <Reference Include="System.Data" />
  263. <Reference Include="System.Drawing" />
  264. <Reference Include="System.Net.Http" />
  265. <Reference Include="System.Windows.Forms" />
  266. <Reference Include="System.Xml" />
  267. <Reference Include="WindowsBase" />
  268. </ItemGroup>
  269. <ItemGroup>
  270. <Compile Include="1-OTSMeasure\Measure\1-OTSInclution\COTSFieldForIncA.cs" />
  271. <Compile Include="1-OTSMeasure\Measure\1-OTSInclution\SmplMeasureInclution.cs" />
  272. <Compile Include="1-OTSMeasure\Measure\2-OTSCleanliness\COTSFieldForCleanness.cs" />
  273. <Compile Include="1-OTSMeasure\Measure\2-OTSCleanliness\SmplMeasureCleanliness.cs" />
  274. <Compile Include="10-OTSSplashScreen\OTSSplashScreen_Cleanness.cs">
  275. <SubType>Form</SubType>
  276. </Compile>
  277. <Compile Include="10-OTSSplashScreen\OTSSplashScreen_Cleanness.Designer.cs">
  278. <DependentUpon>OTSSplashScreen_Cleanness.cs</DependentUpon>
  279. </Compile>
  280. <Compile Include="10-OTSSplashScreen\OTSSplashScreen_IncA.cs">
  281. <SubType>Form</SubType>
  282. </Compile>
  283. <Compile Include="10-OTSSplashScreen\OTSSplashScreen_IncA.Designer.cs">
  284. <DependentUpon>OTSSplashScreen_IncA.cs</DependentUpon>
  285. </Compile>
  286. <Compile Include="4-OTSSamplespaceGraphicsPanel\CFieldPositionHelper.cs" />
  287. <Compile Include="1-OTSMeasure\Measure\3-MeasureFlow\CMsrResultItems.cs" />
  288. <Compile Include="1-OTSMeasure\Measure\3-MeasureFlow\CMeasure.cs" />
  289. <Compile Include="1-OTSMeasure\Measure\3-MeasureFlow\CSmplMeasure.cs" />
  290. <Compile Include="1-OTSMeasure\Measure\3-MeasureFlow\CSmplMsrResult.cs" />
  291. <Compile Include="1-OTSMeasure\Measure\3-MeasureFlow\MsrThreadStatus.cs" />
  292. <Compile Include="1-OTSMeasure\Measure\3-MeasureFlow\ST_MSTMsg.cs" />
  293. <Compile Include="1-OTSMeasure\Measure\4-ReMeasure\SmplMeasureReMeasure.cs" />
  294. <Compile Include="1-OTSMeasure\Measure\BSEPicData\BSEImgFileMgr.cs" />
  295. <Compile Include="0-OTSModel\OTSDataType\COTSField.cs" />
  296. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\CFieldDB.cs" />
  297. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\CFieldTable.cs" />
  298. <Compile Include="1-OTSMeasure\Measure\ParamData\COTSMsrPrjResultData.cs" />
  299. <Compile Include="1-OTSMeasure\Measure\ParamData\CSampleParamMgr.cs" />
  300. <Compile Include="1-OTSMeasure\Measure\ParamData\DIALOG_CHECK_PARAM_RESULT.cs">
  301. <SubType>Form</SubType>
  302. </Compile>
  303. <Compile Include="1-OTSMeasure\Measure\ParamData\DIALOG_CHECK_PARAM_RESULT.designer.cs">
  304. <DependentUpon>DIALOG_CHECK_PARAM_RESULT.cs</DependentUpon>
  305. </Compile>
  306. <Compile Include="1-OTSMeasure\Measure\ParamData\OTSDefaultParam.cs" />
  307. <Compile Include="1-OTSMeasure\Measure\ParamData\OTSGeneralParam.cs" />
  308. <Compile Include="1-OTSMeasure\Measure\ParamData\StageParam.cs" />
  309. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\CSmallParticleInfo.cs" />
  310. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\ElementChemistryDB.cs" />
  311. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\ElementChemistryTable.cs" />
  312. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\GenInfoDB.cs" />
  313. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\GenInfoTable.cs" />
  314. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\IncADataDB.cs" />
  315. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\IncADataTable.cs" />
  316. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\IncAFileMgr.cs" />
  317. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\MergedParticles\MergeParticleDB.cs" />
  318. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\MergedParticles\MergParticleTable.cs" />
  319. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\PosXrayDBMgr.cs" />
  320. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\PosXrayInfoDB.cs" />
  321. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\PosXrayInfoTable.cs" />
  322. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\SegmentDB.cs" />
  323. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\SegmentTable.cs" />
  324. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\SmallParticles\SmallParticleInfoDB.cs" />
  325. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\SmallParticles\SmallParticleInfoTable.cs" />
  326. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\XRayDataDB.cs" />
  327. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\XRayDataTable.cs" />
  328. <Compile Include="0-OTSModel\OTSDataType\CDomain.cs" />
  329. <Compile Include="0-OTSModel\OTSDataType\CDoubleRange.cs" />
  330. <Compile Include="0-OTSModel\OTSDataType\CElement.cs" />
  331. <Compile Include="0-OTSModel\OTSDataType\CElementRange.cs" />
  332. <Compile Include="0-OTSModel\OTSDataType\CHole.cs" />
  333. <Compile Include="0-OTSModel\OTSDataType\CHoleBSEImg.cs" />
  334. <Compile Include="0-OTSModel\OTSDataType\CIntRange.cs" />
  335. <Compile Include="0-OTSModel\OTSDataType\CMsrSampleStatus.cs" />
  336. <Compile Include="0-OTSModel\OTSDataType\COTSImageProcParam.cs" />
  337. <Compile Include="0-OTSModel\OTSDataType\COTSImageScanParam.cs" />
  338. <Compile Include="0-OTSModel\OTSDataType\COTSRect.cs" />
  339. <Compile Include="0-OTSModel\OTSDataType\COTSSample.cs" />
  340. <Compile Include="0-OTSModel\OTSDataType\COTSXRayParam.cs" />
  341. <Compile Include="0-OTSModel\OTSDataType\CSampleParam.cs" />
  342. <Compile Include="0-OTSModel\OTSDataType\CSEMDataGnr.cs" />
  343. <Compile Include="0-OTSModel\OTSDataType\CSEMDataMsr.cs" />
  344. <Compile Include="0-OTSModel\OTSDataType\CSize.cs" />
  345. <Compile Include="0-OTSModel\OTSDataType\CSlopFocusParam.cs" />
  346. <Compile Include="0-OTSModel\OTSDataType\CSpecialGrayRangeParam.cs" />
  347. <Compile Include="0-OTSModel\OTSDataType\CStage.cs" />
  348. <Compile Include="0-OTSModel\OTSDataType\DataPublic.cs" />
  349. <Compile Include="0-OTSModel\OTSDataType\otsdataconst.cs" />
  350. <Compile Include="0-OTSModel\OTSDataType\SEMStageData.cs" />
  351. <Compile Include="0-OTSModel\OTSDataType\XmlResourceData.cs" />
  352. <Compile Include="0-OTSModel\OTSDataType\XMLSerialization.cs" />
  353. <Compile Include="3-OTSDisplaySourceGridData\CPropItem.cs" />
  354. <Compile Include="3-OTSDisplaySourceGridData\CPropItemGrp.cs" />
  355. <Compile Include="3-OTSDisplaySourceGridData\MeasureStopMode.cs">
  356. <SubType>Form</SubType>
  357. </Compile>
  358. <Compile Include="3-OTSDisplaySourceGridData\MeasureStopMode.Designer.cs">
  359. <DependentUpon>MeasureStopMode.cs</DependentUpon>
  360. </Compile>
  361. <Compile Include="3-OTSDisplaySourceGridData\OTSSampleVisualPropertyInfo.cs" />
  362. <Compile Include="4-OTSSamplespaceGraphicsPanel\CRingGDIObject.cs" />
  363. <Compile Include="4-OTSSamplespaceGraphicsPanel\CVisualSampleArea.cs" />
  364. <Compile Include="4-OTSSamplespaceGraphicsPanel\frmInitializeStartInput.cs">
  365. <SubType>Form</SubType>
  366. </Compile>
  367. <Compile Include="4-OTSSamplespaceGraphicsPanel\frmInitializeStartInput.Designer.cs">
  368. <DependentUpon>frmInitializeStartInput.cs</DependentUpon>
  369. </Compile>
  370. <Compile Include="4-OTSSamplespaceGraphicsPanel\RingGdiDataInput.cs">
  371. <SubType>Form</SubType>
  372. </Compile>
  373. <Compile Include="4-OTSSamplespaceGraphicsPanel\RingGdiDataInput.Designer.cs">
  374. <DependentUpon>RingGdiDataInput.cs</DependentUpon>
  375. </Compile>
  376. <Compile Include="4-OTSSamplespaceGraphicsPanel\VisualStage.cs" />
  377. <Compile Include="5-OTSMeasureStatuImageFun\frmSpecialGrayParticle.cs">
  378. <SubType>Form</SubType>
  379. </Compile>
  380. <Compile Include="5-OTSMeasureStatuImageFun\frmSpecialGrayParticle.Designer.cs">
  381. <DependentUpon>frmSpecialGrayParticle.cs</DependentUpon>
  382. </Compile>
  383. <Compile Include="5-OTSMeasureStatuImageFun\OTSMeasureStatusWindow.cs">
  384. <SubType>Form</SubType>
  385. </Compile>
  386. <Compile Include="5-OTSMeasureStatuImageFun\OTSMeasureStatusWindow.Designer.cs">
  387. <DependentUpon>OTSMeasureStatusWindow.cs</DependentUpon>
  388. </Compile>
  389. <Compile Include="5-OTSMeasureStatuImageFun\SlopFocus.cs">
  390. <SubType>Form</SubType>
  391. </Compile>
  392. <Compile Include="5-OTSMeasureStatuImageFun\SlopFocus.Designer.cs">
  393. <DependentUpon>SlopFocus.cs</DependentUpon>
  394. </Compile>
  395. <Compile Include="7-OTSProgMgrInfo\OtherSelection.cs">
  396. <SubType>Form</SubType>
  397. </Compile>
  398. <Compile Include="7-OTSProgMgrInfo\OtherSelection.Designer.cs">
  399. <DependentUpon>OtherSelection.cs</DependentUpon>
  400. </Compile>
  401. <Compile Include="7-OTSProgMgrInfo\SpecialParticleForm.cs">
  402. <SubType>Form</SubType>
  403. </Compile>
  404. <Compile Include="7-OTSProgMgrInfo\SpecialParticleForm.Designer.cs">
  405. <DependentUpon>SpecialParticleForm.cs</DependentUpon>
  406. </Compile>
  407. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageEdit.cs">
  408. <SubType>Form</SubType>
  409. </Compile>
  410. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageEdit.Designer.cs">
  411. <DependentUpon>DlgStageEdit.cs</DependentUpon>
  412. </Compile>
  413. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageMgr.cs">
  414. <SubType>Form</SubType>
  415. </Compile>
  416. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageMgr.Designer.cs">
  417. <DependentUpon>DlgStageMgr.cs</DependentUpon>
  418. </Compile>
  419. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageRename.cs">
  420. <SubType>Form</SubType>
  421. </Compile>
  422. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageRename.Designer.cs">
  423. <DependentUpon>DlgStageRename.cs</DependentUpon>
  424. </Compile>
  425. <Compile Include="7-OTSProgMgrInfo\Stage\StageDisplayHelp.cs" />
  426. <Compile Include="CRegistration.cs" />
  427. <Compile Include="BaseFunctionTest.cs">
  428. <SubType>Form</SubType>
  429. </Compile>
  430. <Compile Include="BaseFunctionTest.Designer.cs">
  431. <DependentUpon>BaseFunctionTest.cs</DependentUpon>
  432. </Compile>
  433. <Compile Include="ResourceManage\ResourceData.cs" />
  434. <Compile Include="ResourceManage\ResourceID.cs" />
  435. <Compile Include="3-OTSDisplaySourceGridData\OTSPropertyWindow1.Designer.cs">
  436. <AutoGen>True</AutoGen>
  437. <DesignTime>True</DesignTime>
  438. <DependentUpon>OTSPropertyWindow.resx</DependentUpon>
  439. </Compile>
  440. <Compile Include="5-OTSMeasureStatuImageFun\Control_Ruler.cs">
  441. <SubType>UserControl</SubType>
  442. </Compile>
  443. <Compile Include="5-OTSMeasureStatuImageFun\Control_Ruler.designer.cs">
  444. <DependentUpon>Control_Ruler.cs</DependentUpon>
  445. </Compile>
  446. <Compile Include="5-OTSMeasureStatuImageFun\Control_XRayTable.cs">
  447. <SubType>UserControl</SubType>
  448. </Compile>
  449. <Compile Include="5-OTSMeasureStatuImageFun\Control_XRayTable.designer.cs">
  450. <DependentUpon>Control_XRayTable.cs</DependentUpon>
  451. </Compile>
  452. <Compile Include="1-OTSMeasure\Measure\3-MeasureFlow\MeasureCheckResultInfoWindow.cs">
  453. <SubType>Form</SubType>
  454. </Compile>
  455. <Compile Include="1-OTSMeasure\Measure\3-MeasureFlow\MeasureCheckResultInfoWindow.Designer.cs">
  456. <DependentUpon>MeasureCheckResultInfoWindow.cs</DependentUpon>
  457. </Compile>
  458. <Compile Include="2-OTSMeasureParamManage\COTSMeasureParam.cs" />
  459. <Compile Include="About.cs">
  460. <SubType>Form</SubType>
  461. </Compile>
  462. <Compile Include="About.Designer.cs">
  463. <DependentUpon>About.cs</DependentUpon>
  464. </Compile>
  465. <Compile Include="OTSPeriodicTable\ComboBoxItem.cs" />
  466. <Compile Include="OTSPeriodicTable\OTSPeriodicTableForm.cs">
  467. <SubType>Form</SubType>
  468. </Compile>
  469. <Compile Include="OTSPeriodicTable\OTSPeriodicTableForm.Designer.cs">
  470. <DependentUpon>OTSPeriodicTableForm.cs</DependentUpon>
  471. </Compile>
  472. <Compile Include="OTSPeriodicTable\OTSPeriodicTableForm_Small.cs">
  473. <SubType>Form</SubType>
  474. </Compile>
  475. <Compile Include="OTSPeriodicTable\OTSPeriodicTableForm_Small.Designer.cs">
  476. <DependentUpon>OTSPeriodicTableForm_Small.cs</DependentUpon>
  477. </Compile>
  478. <Compile Include="OTSPeriodicTable\ThePeriodicTable.cs">
  479. <SubType>UserControl</SubType>
  480. </Compile>
  481. <Compile Include="OTSPeriodicTable\ThePeriodicTable.designer.cs">
  482. <DependentUpon>ThePeriodicTable.cs</DependentUpon>
  483. </Compile>
  484. <Compile Include="OTSPeriodicTable\ThePeriodicTable_Small.cs">
  485. <SubType>UserControl</SubType>
  486. </Compile>
  487. <Compile Include="OTSPeriodicTable\ThePeriodicTable_Small.designer.cs">
  488. <DependentUpon>ThePeriodicTable_Small.cs</DependentUpon>
  489. </Compile>
  490. <Compile Include="OTSPeriodicTable\User_Element.cs">
  491. <SubType>UserControl</SubType>
  492. </Compile>
  493. <Compile Include="OTSPeriodicTable\User_Element.designer.cs">
  494. <DependentUpon>User_Element.cs</DependentUpon>
  495. </Compile>
  496. <Compile Include="OTSPeriodicTable\User_Element_Small.cs">
  497. <SubType>UserControl</SubType>
  498. </Compile>
  499. <Compile Include="OTSPeriodicTable\User_Element_Small.designer.cs">
  500. <DependentUpon>User_Element_Small.cs</DependentUpon>
  501. </Compile>
  502. <Compile Include="4-OTSSamplespaceGraphicsPanel\OTSSampleData.cs" />
  503. <Compile Include="3-OTSDisplaySourceGridData\OTSDisplaySampleGrid.cs" />
  504. <Compile Include="OTSMeasureOutputNlog.cs">
  505. <SubType>Form</SubType>
  506. </Compile>
  507. <Compile Include="OTSMeasureOutputNlog.Designer.cs">
  508. <DependentUpon>OTSMeasureOutputNlog.cs</DependentUpon>
  509. </Compile>
  510. <Compile Include="5-OTSMeasureStatuImageFun\ExcelEdit.cs" />
  511. <Compile Include="1-OTSMeasure\OTSMeasureDisplayResult.cs" />
  512. <Compile Include="1-OTSMeasure\Measure\3-MeasureFlow\CMeasureThreadWrapper.cs" />
  513. <Compile Include="7-OTSProgMgrInfo\ProgMgrInfoForm.cs">
  514. <SubType>Form</SubType>
  515. </Compile>
  516. <Compile Include="7-OTSProgMgrInfo\ProgMgrInfoForm.designer.cs">
  517. <DependentUpon>ProgMgrInfoForm.cs</DependentUpon>
  518. </Compile>
  519. <Compile Include="9-OTSRibbon\OTSRibbonFun.cs" />
  520. <Compile Include="4-OTSSamplespaceGraphicsPanel\CreateRectangle.cs" />
  521. <Compile Include="6-OTSDisplayTreeViewData\OTSDisplayTreeBase.cs" />
  522. <Compile Include="OTSIncAMeasureAppForm.cs">
  523. <SubType>Form</SubType>
  524. </Compile>
  525. <Compile Include="OTSIncAMeasureAppForm.Designer.cs">
  526. <DependentUpon>OTSIncAMeasureAppForm.cs</DependentUpon>
  527. </Compile>
  528. <Compile Include="1-OTSMeasure\OTSMeasureResultWindow.cs">
  529. <SubType>Form</SubType>
  530. </Compile>
  531. <Compile Include="1-OTSMeasure\OTSMeasureResultWindow.Designer.cs">
  532. <DependentUpon>OTSMeasureResultWindow.cs</DependentUpon>
  533. </Compile>
  534. <Compile Include="3-OTSDisplaySourceGridData\OTSPropertyWindow.cs">
  535. <SubType>Form</SubType>
  536. </Compile>
  537. <Compile Include="3-OTSDisplaySourceGridData\OTSPropertyWindow.Designer.cs">
  538. <DependentUpon>OTSPropertyWindow.cs</DependentUpon>
  539. </Compile>
  540. <Compile Include="4-OTSSamplespaceGraphicsPanel\OTSSamplespaceGraphicsPanelFun.cs" />
  541. <Compile Include="4-OTSSamplespaceGraphicsPanel\SEMDATAFieldManage.cs" />
  542. <Compile Include="4-OTSSamplespaceGraphicsPanel\OTSSamplespaceWindow.cs">
  543. <SubType>Form</SubType>
  544. </Compile>
  545. <Compile Include="4-OTSSamplespaceGraphicsPanel\OTSSamplespaceWindow.Designer.cs">
  546. <DependentUpon>OTSSamplespaceWindow.cs</DependentUpon>
  547. </Compile>
  548. <Compile Include="6-OTSDisplayTreeViewData\OTSSolutionWindow.cs">
  549. <SubType>Form</SubType>
  550. </Compile>
  551. <Compile Include="6-OTSDisplayTreeViewData\OTSSolutionWindow.Designer.cs">
  552. <DependentUpon>OTSSolutionWindow.cs</DependentUpon>
  553. </Compile>
  554. <Compile Include="Program.cs" />
  555. <Compile Include="Properties\AssemblyInfo.cs" />
  556. <Compile Include="Properties\IDDescriptionResource.Designer.cs">
  557. <AutoGen>True</AutoGen>
  558. <DesignTime>True</DesignTime>
  559. <DependentUpon>IDDescriptionResource.resx</DependentUpon>
  560. </Compile>
  561. <Compile Include="5-OTSMeasureStatuImageFun\ToolWindow.cs">
  562. <SubType>Form</SubType>
  563. </Compile>
  564. <Compile Include="5-OTSMeasureStatuImageFun\ToolWindow.Designer.cs">
  565. <DependentUpon>ToolWindow.cs</DependentUpon>
  566. </Compile>
  567. <Compile Include="ServiceCenter\CClassifyEngine.cs" />
  568. <Compile Include="ServiceCenter\CImageHandler.cs" />
  569. <Compile Include="ServiceCenter\CPP%28Bruker%29API\EDSController.cs" />
  570. <Compile Include="ServiceCenter\CPP%28Bruker%29API\ScanController.cs" />
  571. <Compile Include="ServiceCenter\CPP%28Bruker%29API\SemController.cs" />
  572. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\ColumnType.cs" />
  573. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\CSQLiteDB.cs" />
  574. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\CSQLiteDBStore.cs" />
  575. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\CSQLiteQuery.cs" />
  576. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\CSQLiteTable.cs" />
  577. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\DBConst.cs" />
  578. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\IDBBase.cs" />
  579. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\IDBFileBase.cs" />
  580. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\IDBQueryBase.cs" />
  581. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\IDBStoreBase.cs" />
  582. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\IDBTableBase.cs" />
  583. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\SQLiteFactory.cs" />
  584. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\SQliteHelper.cs" />
  585. <Compile Include="1-OTSMeasure\Measure\DBDataTransition\DTLBase\TableModel.cs" />
  586. <Compile Include="ServiceCenter\FEIAutoScript\FEIEDSController.cs" />
  587. <Compile Include="ServiceCenter\FEIAutoScript\FEIScanController.cs" />
  588. <Compile Include="ServiceCenter\FEIAutoScript\FEISemController.cs" />
  589. <Compile Include="ServiceCenter\FileHelper.cs" />
  590. <Compile Include="ServiceCenter\IClassifyEngine.cs" />
  591. <Compile Include="ServiceCenter\IImageProcess.cs" />
  592. <Compile Include="ServiceCenter\ImageStitchUsingOpenCvSharp.cs" />
  593. <Compile Include="ServiceCenter\IMeasureHardware.cs" />
  594. <Compile Include="ServiceCenter\IpcSEMController.cs" />
  595. <Compile Include="ServiceCenter\OxfordExtender\ExtenderWrapperIpc.cs" />
  596. <Compile Include="ServiceCenter\OxfordExtender\OxfordEDSController.cs" />
  597. <Compile Include="ServiceCenter\OxfordExtender\OxfordScanController.cs" />
  598. <Compile Include="ServiceCenter\OxfordExtender\OxfordSemController.cs" />
  599. <EmbeddedResource Include="1-OTSMeasure\Measure\ParamData\DIALOG_CHECK_PARAM_RESULT.resx">
  600. <DependentUpon>DIALOG_CHECK_PARAM_RESULT.cs</DependentUpon>
  601. </EmbeddedResource>
  602. <EmbeddedResource Include="10-OTSSplashScreen\OTSSplashScreen_Cleanness.resx">
  603. <DependentUpon>OTSSplashScreen_Cleanness.cs</DependentUpon>
  604. </EmbeddedResource>
  605. <EmbeddedResource Include="10-OTSSplashScreen\OTSSplashScreen_IncA.resx">
  606. <DependentUpon>OTSSplashScreen_IncA.cs</DependentUpon>
  607. </EmbeddedResource>
  608. <EmbeddedResource Include="3-OTSDisplaySourceGridData\MeasureStopMode.resx">
  609. <DependentUpon>MeasureStopMode.cs</DependentUpon>
  610. </EmbeddedResource>
  611. <EmbeddedResource Include="4-OTSSamplespaceGraphicsPanel\frmInitializeStartInput.resx">
  612. <DependentUpon>frmInitializeStartInput.cs</DependentUpon>
  613. </EmbeddedResource>
  614. <EmbeddedResource Include="4-OTSSamplespaceGraphicsPanel\RingGdiDataInput.resx">
  615. <DependentUpon>RingGdiDataInput.cs</DependentUpon>
  616. </EmbeddedResource>
  617. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\Control_Ruler.resx">
  618. <DependentUpon>Control_Ruler.cs</DependentUpon>
  619. </EmbeddedResource>
  620. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\Control_XRayTable.resx">
  621. <DependentUpon>Control_XRayTable.cs</DependentUpon>
  622. </EmbeddedResource>
  623. <EmbeddedResource Include="1-OTSMeasure\Measure\3-MeasureFlow\MeasureCheckResultInfoWindow.resx">
  624. <DependentUpon>MeasureCheckResultInfoWindow.cs</DependentUpon>
  625. </EmbeddedResource>
  626. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\frmSpecialGrayParticle.resx">
  627. <DependentUpon>frmSpecialGrayParticle.cs</DependentUpon>
  628. </EmbeddedResource>
  629. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\OTSMeasureStatusWindow.resx">
  630. <DependentUpon>OTSMeasureStatusWindow.cs</DependentUpon>
  631. <SubType>Designer</SubType>
  632. </EmbeddedResource>
  633. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\SlopFocus.resx">
  634. <DependentUpon>SlopFocus.cs</DependentUpon>
  635. </EmbeddedResource>
  636. <EmbeddedResource Include="7-OTSProgMgrInfo\OtherSelection.resx">
  637. <DependentUpon>OtherSelection.cs</DependentUpon>
  638. </EmbeddedResource>
  639. <EmbeddedResource Include="7-OTSProgMgrInfo\SpecialParticleForm.resx">
  640. <DependentUpon>SpecialParticleForm.cs</DependentUpon>
  641. </EmbeddedResource>
  642. <EmbeddedResource Include="7-OTSProgMgrInfo\Stage\DlgStageEdit.resx">
  643. <DependentUpon>DlgStageEdit.cs</DependentUpon>
  644. </EmbeddedResource>
  645. <EmbeddedResource Include="7-OTSProgMgrInfo\Stage\DlgStageMgr.resx">
  646. <DependentUpon>DlgStageMgr.cs</DependentUpon>
  647. </EmbeddedResource>
  648. <EmbeddedResource Include="7-OTSProgMgrInfo\Stage\DlgStageRename.resx">
  649. <DependentUpon>DlgStageRename.cs</DependentUpon>
  650. </EmbeddedResource>
  651. <EmbeddedResource Include="About.resx">
  652. <DependentUpon>About.cs</DependentUpon>
  653. </EmbeddedResource>
  654. <EmbeddedResource Include="BaseFunctionTest.resx">
  655. <DependentUpon>BaseFunctionTest.cs</DependentUpon>
  656. </EmbeddedResource>
  657. <EmbeddedResource Include="OTSIncAMeasureAppForm.resx">
  658. <DependentUpon>OTSIncAMeasureAppForm.cs</DependentUpon>
  659. <SubType>Designer</SubType>
  660. </EmbeddedResource>
  661. <EmbeddedResource Include="OTSMeasureOutputNlog.resx">
  662. <DependentUpon>OTSMeasureOutputNlog.cs</DependentUpon>
  663. </EmbeddedResource>
  664. <EmbeddedResource Include="1-OTSMeasure\OTSMeasureResultWindow.resx">
  665. <DependentUpon>OTSMeasureResultWindow.cs</DependentUpon>
  666. </EmbeddedResource>
  667. <EmbeddedResource Include="OTSPeriodicTable\OTSPeriodicTableForm.resx">
  668. <DependentUpon>OTSPeriodicTableForm.cs</DependentUpon>
  669. </EmbeddedResource>
  670. <EmbeddedResource Include="OTSPeriodicTable\OTSPeriodicTableForm_Small.resx">
  671. <DependentUpon>OTSPeriodicTableForm_Small.cs</DependentUpon>
  672. </EmbeddedResource>
  673. <EmbeddedResource Include="OTSPeriodicTable\ThePeriodicTable.resx">
  674. <DependentUpon>ThePeriodicTable.cs</DependentUpon>
  675. </EmbeddedResource>
  676. <EmbeddedResource Include="OTSPeriodicTable\ThePeriodicTable_Small.resx">
  677. <DependentUpon>ThePeriodicTable_Small.cs</DependentUpon>
  678. </EmbeddedResource>
  679. <EmbeddedResource Include="OTSPeriodicTable\User_Element.resx">
  680. <DependentUpon>User_Element.cs</DependentUpon>
  681. </EmbeddedResource>
  682. <EmbeddedResource Include="OTSPeriodicTable\User_Element_Small.resx">
  683. <DependentUpon>User_Element_Small.cs</DependentUpon>
  684. </EmbeddedResource>
  685. <EmbeddedResource Include="7-OTSProgMgrInfo\ProgMgrInfoForm.resx">
  686. <DependentUpon>ProgMgrInfoForm.cs</DependentUpon>
  687. </EmbeddedResource>
  688. <EmbeddedResource Include="3-OTSDisplaySourceGridData\OTSPropertyWindow.resx">
  689. <DependentUpon>OTSPropertyWindow.cs</DependentUpon>
  690. <Generator>ResXFileCodeGenerator</Generator>
  691. <LastGenOutput>OTSPropertyWindow1.Designer.cs</LastGenOutput>
  692. </EmbeddedResource>
  693. <EmbeddedResource Include="4-OTSSamplespaceGraphicsPanel\OTSSamplespaceWindow.resx">
  694. <DependentUpon>OTSSamplespaceWindow.cs</DependentUpon>
  695. </EmbeddedResource>
  696. <EmbeddedResource Include="6-OTSDisplayTreeViewData\OTSSolutionWindow.resx">
  697. <DependentUpon>OTSSolutionWindow.cs</DependentUpon>
  698. </EmbeddedResource>
  699. <EmbeddedResource Include="Properties\IDDescriptionResource.resx">
  700. <Generator>ResXFileCodeGenerator</Generator>
  701. <LastGenOutput>IDDescriptionResource.Designer.cs</LastGenOutput>
  702. </EmbeddedResource>
  703. <EmbeddedResource Include="Properties\Resources.resx">
  704. <Generator>PublicResXFileCodeGenerator</Generator>
  705. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  706. <SubType>Designer</SubType>
  707. </EmbeddedResource>
  708. <Compile Include="Properties\Resources.Designer.cs">
  709. <AutoGen>True</AutoGen>
  710. <DependentUpon>Resources.resx</DependentUpon>
  711. <DesignTime>True</DesignTime>
  712. </Compile>
  713. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\ToolWindow.resx">
  714. <DependentUpon>ToolWindow.cs</DependentUpon>
  715. </EmbeddedResource>
  716. <None Include="1-OTSMeasure\Measure\3-MeasureFlow\Measurethread.cd" />
  717. <None Include="0-OTSModel\OTSDataType\OTSFieldDataMgr.cd" />
  718. <None Include="1-OTSMeasure\Measure\ParamData\COTSResultData.cd" />
  719. <None Include="0-OTSModel\OTSDataType\COTSSample.cd" />
  720. <None Include="1-OTSMeasure\MeasureRetThread.cd" />
  721. <None Include="2-OTSMeasureParamManage\MeasureParam.cd" />
  722. <None Include="4-OTSSamplespaceGraphicsPanel\sampleSpaceObject.cd" />
  723. <None Include="app.manifest" />
  724. <None Include="packages.config" />
  725. <None Include="Properties\Settings.settings">
  726. <Generator>SettingsSingleFileGenerator</Generator>
  727. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  728. </None>
  729. <Compile Include="Properties\Settings.Designer.cs">
  730. <AutoGen>True</AutoGen>
  731. <DependentUpon>Settings.settings</DependentUpon>
  732. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  733. </Compile>
  734. </ItemGroup>
  735. <ItemGroup>
  736. <None Include="App.config" />
  737. </ItemGroup>
  738. <ItemGroup>
  739. <None Include="Resources\Image\保存.png" />
  740. <None Include="Resources\Image\编辑.png" />
  741. <None Include="Resources\Image\标尺.png" />
  742. <None Include="Resources\Image\返回.png" />
  743. <None Include="Resources\Image\复位.png" />
  744. <None Include="Resources\Image\关机.png" />
  745. <None Include="Resources\Image\画方.png" />
  746. <None Include="Resources\Image\画圆.png" />
  747. <None Include="Resources\Image\检测参数.png" />
  748. <None Include="Resources\Image\开始.png" />
  749. <None Include="Resources\Image\另存为.png" />
  750. <None Include="Resources\Image\前进.png" />
  751. <None Include="Resources\Image\删除样品.png" />
  752. <None Include="Resources\Image\添加样品.png" />
  753. <None Include="Resources\Image\停止.png" />
  754. <None Include="Resources\Image\新建.png" />
  755. <None Include="Resources\Image\关闭电镜.png" />
  756. <None Include="Resources\Image\透明.png" />
  757. <None Include="Resources\Image\透明选中.png" />
  758. <None Include="Resources\option_16.png" />
  759. <None Include="Resources\logo_32.png" />
  760. <None Include="Resources\logo_40.png" />
  761. <None Include="Resources\DelSemData_32.png" />
  762. <None Include="Resources\DelSemData_16.png" />
  763. <None Include="Resources\GetSemData_16.png" />
  764. <None Include="Resources\GetSemData_32.png" />
  765. <None Include="Resources\SetSemData.png" />
  766. <None Include="Resources\GetSampleImage.png" />
  767. <None Include="Resources\DeleteSampleImage.png" />
  768. <None Include="Resources\MoveToCenter_32.png" />
  769. <None Include="Resources\SEMMoveToCenter_32.png" />
  770. <None Include="Resources\SEMMoveToCurrent_32.png" />
  771. <None Include="Resources\OTSSysMgr.ico" />
  772. <None Include="Resources\OTSIncAMeasure.ico" />
  773. <None Include="Resources\OTSIncAReport.ico" />
  774. <Content Include="OTSPeriodicTable\images\Cancel.png" />
  775. <Content Include="OTSPeriodicTable\images\cubic.gif" />
  776. <Content Include="OTSPeriodicTable\images\cubicbodycentered.gif" />
  777. <Content Include="OTSPeriodicTable\images\cubicfacecentered.gif" />
  778. <Content Include="OTSPeriodicTable\images\Hexagonal.gif" />
  779. <Content Include="OTSPeriodicTable\images\Monoclinic.gif" />
  780. <Content Include="OTSPeriodicTable\images\OK.png" />
  781. <Content Include="OTSPeriodicTable\images\orthohombic.gif" />
  782. <Content Include="OTSPeriodicTable\images\rhombohedral.gif" />
  783. <Content Include="OTSPeriodicTable\images\teragonal.gif" />
  784. <None Include="Resources\ConnnectHardware.png" />
  785. <None Include="Resources\DisconnnectHardware.png" />
  786. <None Include="Resources\interrupt.png" />
  787. <None Include="Resources\AutoBeamOff_off.png" />
  788. <None Include="Resources\AutoBeamOff_on.png" />
  789. <None Include="Resources\Pause.png" />
  790. <None Include="Resources\Cleanliness.png" />
  791. <None Include="Resources\OTSIncA.png" />
  792. <None Include="Resources\OTSSplashScreen.png" />
  793. <Content Include="Resources\toopstripbackimage.png" />
  794. <Content Include="Resources\保存.png" />
  795. <None Include="Resources\删除32.png" />
  796. <None Include="Resources\停止32.png" />
  797. <None Include="Resources\关闭32.png" />
  798. <None Include="Resources\关闭二16.png" />
  799. <Content Include="Resources\关闭二32.png" />
  800. <Content Include="Resources\另存为.png" />
  801. <None Include="Resources\添加32.png" />
  802. <None Include="Resources\复位32.png" />
  803. <None Include="Resources\圆形32.png" />
  804. <None Include="Resources\矩形32.png" />
  805. <None Include="Resources\开始32.png" />
  806. <None Include="Resources\检测32.png" />
  807. <None Include="Resources\标尺32.png" />
  808. <None Include="Resources\样品孔照片32.png" />
  809. <None Include="Resources\样品孔名称32.png" />
  810. <None Include="Resources\恢复32.png" />
  811. <Content Include="Resources\编辑.png" />
  812. <None Include="Resources\Add Sample16.png" />
  813. <None Include="Resources\Add Sample32.png" />
  814. <None Include="Resources\Add Sample161.png" />
  815. <Content Include="Resources\Add Sample321.png">
  816. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  817. </Content>
  818. <Content Include="Resources\addons32.png" />
  819. <Content Include="Resources\bold16.png" />
  820. <Content Include="Resources\borderbottom16.png" />
  821. <Content Include="Resources\casing16.png" />
  822. <None Include="Resources\Circle16.png" />
  823. <None Include="Resources\Circle32.png" />
  824. <None Include="Resources\Circle161.png" />
  825. <None Include="Resources\Circle321.png" />
  826. <Content Include="Resources\close32.png" />
  827. <Content Include="Resources\copy16.png" />
  828. <Content Include="Resources\copyformat16.png" />
  829. <Content Include="Resources\cut16.png" />
  830. <None Include="Resources\delete16.png" />
  831. <None Include="Resources\delete32.png" />
  832. <None Include="Resources\deletefile16.png" />
  833. <None Include="Resources\deletefile32.png" />
  834. <None Include="Resources\delete161.png" />
  835. <None Include="Resources\delete321.png" />
  836. <None Include="Resources\deletefile161.png" />
  837. <None Include="Resources\deletefile321.png" />
  838. <Content Include="Resources\eraseformat16.png" />
  839. <Content Include="Resources\exit16.png" />
  840. <Content Include="Resources\fill16.png" />
  841. <Content Include="Resources\find32.png" />
  842. <Content Include="Resources\fontcolor16.png" />
  843. <Content Include="Resources\fontsizedecrease16.png" />
  844. <Content Include="Resources\fontsizeincrease16.png" />
  845. <Content Include="Resources\goto16.png" />
  846. <Content Include="Resources\hilight16.png" />
  847. <Content Include="Resources\indentdecrease16.png" />
  848. <Content Include="Resources\indentdecrease161.png" />
  849. <Content Include="Resources\indentincrease16.png" />
  850. <Content Include="Resources\invisiblechars16.png" />
  851. <Content Include="Resources\italic16.png" />
  852. <Content Include="Resources\multilevellist16.png" />
  853. <None Include="Resources\NewDocment.png" />
  854. <Content Include="Resources\newdocument32.png" />
  855. <Content Include="Resources\open16.png" />
  856. <None Include="Resources\Open161.png" />
  857. <Content Include="Resources\open32.png" />
  858. <Content Include="Resources\options16.png" />
  859. <Content Include="Resources\orderedlist16.png" />
  860. <Content Include="Resources\pageblank16.png" />
  861. <Content Include="Resources\paragraphspacing16.png" />
  862. <Content Include="Resources\paste16.png" />
  863. <Content Include="Resources\paste32.png" />
  864. <Content Include="Resources\paste321.png" />
  865. <Content Include="Resources\pastelink16.png" />
  866. <Content Include="Resources\pastespecial16.png" />
  867. <None Include="Resources\Polygon16.png" />
  868. <None Include="Resources\Polygon32.png" />
  869. <None Include="Resources\Polygon161.png" />
  870. <None Include="Resources\Polygon321.png" />
  871. <None Include="Resources\Prepare16.png" />
  872. <None Include="Resources\Power.png" />
  873. <Content Include="Resources\prepare32.png" />
  874. <Content Include="Resources\print32.png" />
  875. <Content Include="Resources\print321.png" />
  876. <Content Include="Resources\printpreview32.png" />
  877. <Content Include="Resources\printquick16.png" />
  878. <Content Include="Resources\printquick32.png" />
  879. <Content Include="Resources\publish32.png" />
  880. <None Include="Resources\Recover16.png" />
  881. <None Include="Resources\Recover32.png" />
  882. <None Include="Resources\Rectangle16.png" />
  883. <None Include="Resources\Rectangle32.png" />
  884. <None Include="Resources\Recover16new.png" />
  885. <None Include="Resources\Recover32New.png" />
  886. <None Include="Resources\Recover161.png" />
  887. <None Include="Resources\Recover16new1.png" />
  888. <None Include="Resources\Recover321.png" />
  889. <None Include="Resources\Recover32New1.png" />
  890. <None Include="Resources\Rectangle161.png" />
  891. <None Include="Resources\Rectangle321.png" />
  892. <Content Include="Resources\replace16.png" />
  893. <None Include="Resources\Reset16.png" />
  894. <None Include="Resources\Reset32.png" />
  895. <None Include="Resources\Ruler16.png" />
  896. <None Include="Resources\Ruler32.png" />
  897. <None Include="Resources\Reset161.png" />
  898. <None Include="Resources\Reset321.png" />
  899. <None Include="Resources\Ruler161.png" />
  900. <None Include="Resources\Ruler321.png" />
  901. <None Include="Resources\Ruler162.png" />
  902. <Content Include="Resources\save16.png" />
  903. <None Include="Resources\Save161.png" />
  904. <Content Include="Resources\save32.png" />
  905. <None Include="Resources\SaveAs16.png" />
  906. <Content Include="Resources\saveas32.png" />
  907. <Content Include="Resources\saveas321.png" />
  908. <Content Include="Resources\select16.png" />
  909. <None Include="Resources\sem16.png" />
  910. <None Include="Resources\sem32.png" />
  911. <None Include="Resources\sem161.png" />
  912. <None Include="Resources\sem321.png" />
  913. <None Include="Resources\sem162.png" />
  914. <Content Include="Resources\send32.png" />
  915. <None Include="Resources\set16.png" />
  916. <None Include="Resources\set32.png" />
  917. <None Include="Resources\SmapleName16.png" />
  918. <None Include="Resources\SmapleName32.png" />
  919. <None Include="Resources\SmaplePhoto16.png" />
  920. <None Include="Resources\SmaplePhoto32.png" />
  921. <None Include="Resources\set161.png" />
  922. <None Include="Resources\set321.png" />
  923. <None Include="Resources\SmapleName161.png" />
  924. <None Include="Resources\SmapleName321.png" />
  925. <None Include="Resources\SmaplePhoto161.png" />
  926. <None Include="Resources\SmaplePhoto321.png" />
  927. <Content Include="Resources\sort16.png" />
  928. <None Include="Resources\start16.png" />
  929. <None Include="Resources\start32.png" />
  930. <None Include="Resources\stop16.png" />
  931. <None Include="Resources\stop32.png" />
  932. <None Include="Resources\start161.png" />
  933. <None Include="Resources\start321.png" />
  934. <None Include="Resources\stop161.png" />
  935. <None Include="Resources\stop321.png" />
  936. <Content Include="Resources\strikethru16.png" />
  937. <Content Include="Resources\style16.png" />
  938. <Content Include="Resources\stylechange32.png" />
  939. <Content Include="Resources\styleset16.png" />
  940. <Content Include="Resources\subindex16.png" />
  941. <Content Include="Resources\superindex16.png" />
  942. <None Include="Resources\test16.png" />
  943. <None Include="Resources\test32.png" />
  944. <None Include="Resources\test161.png" />
  945. <None Include="Resources\test321.png" />
  946. <Content Include="Resources\textaligncenter16.png" />
  947. <Content Include="Resources\textalignjustify16.png" />
  948. <Content Include="Resources\textalignleft16.png" />
  949. <Content Include="Resources\textalignright16.png" />
  950. <Content Include="Resources\themefont.png" />
  951. <Content Include="Resources\underline16.png" />
  952. <Content Include="Resources\undo16.png" />
  953. <Content Include="Resources\unorderedlist16.png" />
  954. <Content Include="Resources\word2003doc32.png" />
  955. <Content Include="Resources\worddocument32.png" />
  956. <Content Include="Resources\wordtemplate32.png" />
  957. </ItemGroup>
  958. <ItemGroup>
  959. <WCFMetadata Include="Connected Services\" />
  960. </ItemGroup>
  961. <ItemGroup>
  962. <BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
  963. <Visible>False</Visible>
  964. <ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
  965. <Install>true</Install>
  966. </BootstrapperPackage>
  967. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  968. <Visible>False</Visible>
  969. <ProductName>.NET Framework 3.5 SP1</ProductName>
  970. <Install>false</Install>
  971. </BootstrapperPackage>
  972. </ItemGroup>
  973. <ItemGroup>
  974. <ProjectReference Include="..\OTSCommon\OTSCommon.csproj">
  975. <Project>{3b7695aa-8231-45ac-b493-84390a945d02}</Project>
  976. <Name>OTSCommon</Name>
  977. <Private>False</Private>
  978. </ProjectReference>
  979. <ProjectReference Include="..\OTSCPP\OTSClrInterface\OTSClrInterface.vcxproj">
  980. <Project>{490a8592-7b13-4536-b475-028e73007fae}</Project>
  981. <Name>OTSClrInterface</Name>
  982. <Private>False</Private>
  983. </ProjectReference>
  984. <ProjectReference Include="..\OxfordExtenderWrapper\OxfordExtenderWrapper.csproj">
  985. <Project>{b2683648-c829-40e7-a479-ac90b1b80286}</Project>
  986. <Name>OxfordExtenderWrapper</Name>
  987. <Private>False</Private>
  988. </ProjectReference>
  989. </ItemGroup>
  990. <ItemGroup />
  991. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  992. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  993. <PropertyGroup>
  994. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  995. </PropertyGroup>
  996. <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.props'))" />
  997. <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.targets'))" />
  998. </Target>
  999. <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.targets" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" />
  1000. <PropertyGroup>
  1001. <PostBuildEvent>
  1002. </PostBuildEvent>
  1003. </PropertyGroup>
  1004. </Project>