OTSIncAMeasureApp.csproj 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920
  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 />
  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. <ItemGroup>
  159. <Reference Include="CefSharp.Core, Version=51.0.0.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138, processorArchitecture=AMD64">
  160. <SpecificVersion>False</SpecificVersion>
  161. <HintPath>..\Bin\x64\Debug\CefSharp.Core.dll</HintPath>
  162. </Reference>
  163. <Reference Include="DevExpress.Data.Desktop.v20.1, Version=20.1.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  164. <Reference Include="DevExpress.Data.v20.1, Version=20.1.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  165. <Reference Include="DevExpress.Printing.v20.1.Core, Version=20.1.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  166. <Reference Include="DevExpress.Sparkline.v20.1.Core, Version=20.1.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  167. <Reference Include="DevExpress.Utils.v20.1, Version=20.1.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  168. <Reference Include="DevExpress.XtraEditors.v20.1, Version=20.1.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
  169. <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  170. <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath>
  171. <Private>True</Private>
  172. </Reference>
  173. <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  174. <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath>
  175. <Private>True</Private>
  176. </Reference>
  177. <Reference Include="FEIApiControl, Version=1.0.0.0, Culture=neutral, processorArchitecture=AMD64">
  178. <SpecificVersion>False</SpecificVersion>
  179. <HintPath>..\OpenDll\FEIAPI\FEIApiControl.dll</HintPath>
  180. </Reference>
  181. <Reference Include="Microsoft.Office.Interop.Excel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  182. <SpecificVersion>False</SpecificVersion>
  183. <EmbedInteropTypes>True</EmbedInteropTypes>
  184. <HintPath>..\OpenDll\WordApiDll\Microsoft.Office.Interop.Excel.dll</HintPath>
  185. </Reference>
  186. <Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  187. <SpecificVersion>False</SpecificVersion>
  188. <HintPath>..\OpenDll\Json\Newtonsoft.Json.dll</HintPath>
  189. </Reference>
  190. <Reference Include="NLog">
  191. <HintPath>..\Bin\x64\Debug\NLog.dll</HintPath>
  192. </Reference>
  193. <Reference Include="office, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c, processorArchitecture=MSIL">
  194. <SpecificVersion>False</SpecificVersion>
  195. <EmbedInteropTypes>True</EmbedInteropTypes>
  196. <HintPath>..\OpenDll\WordApiDll\office.dll</HintPath>
  197. </Reference>
  198. <Reference Include="OTS.WinFormsUI.Docking, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  199. <SpecificVersion>False</SpecificVersion>
  200. <HintPath>..\OpenDll\WordApiDll\OTS.WinFormsUI.Docking.dll</HintPath>
  201. </Reference>
  202. <Reference Include="OTSClrInterface, Version=0.0.0.0, Culture=neutral, processorArchitecture=AMD64">
  203. <SpecificVersion>False</SpecificVersion>
  204. <HintPath>..\Bin\x64\Release_oxford60\OTSClrInterface.dll</HintPath>
  205. </Reference>
  206. <Reference Include="SlmRuntimeCSharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  207. <SpecificVersion>False</SpecificVersion>
  208. <HintPath>..\Bin\x64\Release_oxford50\SlmRuntimeCSharp.dll</HintPath>
  209. </Reference>
  210. <Reference Include="SourceGrid, Version=4.40.7083.30975, Culture=neutral, PublicKeyToken=df6f5e538749e85d, processorArchitecture=MSIL">
  211. <SpecificVersion>False</SpecificVersion>
  212. <HintPath>..\OpenDll\WordApiDll\SourceGrid.dll</HintPath>
  213. </Reference>
  214. <Reference Include="System" />
  215. <Reference Include="System.ComponentModel.DataAnnotations" />
  216. <Reference Include="System.Configuration" />
  217. <Reference Include="System.Core" />
  218. <Reference Include="System.Data.Linq" />
  219. <Reference Include="System.Data.SQLite, Version=1.0.115.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=AMD64">
  220. <HintPath>..\packages\System.Data.SQLite.x64.1.0.115.0\lib\net46\System.Data.SQLite.dll</HintPath>
  221. </Reference>
  222. <Reference Include="System.Data.SQLite.EF6, Version=1.0.115.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
  223. <HintPath>..\packages\System.Data.SQLite.EF6.1.0.115.0\lib\net46\System.Data.SQLite.EF6.dll</HintPath>
  224. </Reference>
  225. <Reference Include="System.Data.SQLite.Linq, Version=1.0.115.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
  226. <HintPath>..\packages\System.Data.SQLite.Linq.1.0.115.0\lib\net46\System.Data.SQLite.Linq.dll</HintPath>
  227. </Reference>
  228. <Reference Include="System.Design" />
  229. <Reference Include="System.Management" />
  230. <Reference Include="System.Runtime.Remoting" />
  231. <Reference Include="System.Security" />
  232. <Reference Include="System.Windows.Forms.DataVisualization" />
  233. <Reference Include="System.Windows.Forms.Ribbon, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  234. <SpecificVersion>False</SpecificVersion>
  235. <HintPath>..\OpenDll\WordApiDll\System.Windows.Forms.Ribbon.dll</HintPath>
  236. </Reference>
  237. <Reference Include="System.Xml.Linq" />
  238. <Reference Include="System.Data.DataSetExtensions" />
  239. <Reference Include="Microsoft.CSharp" />
  240. <Reference Include="System.Data" />
  241. <Reference Include="System.Drawing" />
  242. <Reference Include="System.Net.Http" />
  243. <Reference Include="System.Windows.Forms" />
  244. <Reference Include="System.Xml" />
  245. </ItemGroup>
  246. <ItemGroup>
  247. <Compile Include="0-OTSModel\Measure\1-OTSInclution\CFieldDataIncA.cs" />
  248. <Compile Include="0-OTSModel\Measure\1-OTSInclution\SmplMeasureInclution.cs" />
  249. <Compile Include="0-OTSModel\Measure\2-OTSCleanliness\CFieldDataClean.cs" />
  250. <Compile Include="0-OTSModel\Measure\2-OTSCleanliness\SmplMeasureCleanliness.cs" />
  251. <Compile Include="0-OTSModel\Measure\3-MeasureFlow\CFieldPositionMgr.cs" />
  252. <Compile Include="0-OTSModel\Measure\3-MeasureFlow\CMsrDisplayResults.cs" />
  253. <Compile Include="0-OTSModel\Measure\3-MeasureFlow\CMeasure.cs" />
  254. <Compile Include="0-OTSModel\Measure\3-MeasureFlow\CSmplMeasure.cs" />
  255. <Compile Include="0-OTSModel\Measure\3-MeasureFlow\CSmplMsrResult.cs" />
  256. <Compile Include="0-OTSModel\Measure\3-MeasureFlow\MsrThreadStatus.cs" />
  257. <Compile Include="0-OTSModel\Measure\4-ReMeasure\SmplMeasureReMeasure.cs" />
  258. <Compile Include="0-OTSModel\Measure\BSEPicData\BSEImgFileMgr.cs" />
  259. <Compile Include="0-OTSModel\Measure\BSEPicData\COTSFieldData.cs" />
  260. <Compile Include="0-OTSModel\Measure\DBDataTransition\CFieldDB.cs" />
  261. <Compile Include="0-OTSModel\Measure\DBDataTransition\CFieldTable.cs" />
  262. <Compile Include="0-OTSModel\Measure\ParamData\COTSMsrPrjResultData.cs" />
  263. <Compile Include="0-OTSModel\Measure\ParamData\CSampleParamMgr.cs" />
  264. <Compile Include="0-OTSModel\Measure\ParamData\CSpecialGrayRangeParam.cs" />
  265. <Compile Include="0-OTSModel\Measure\ParamData\DIALOG_CHECK_PARAM_RESULT.cs">
  266. <SubType>Form</SubType>
  267. </Compile>
  268. <Compile Include="0-OTSModel\Measure\ParamData\DIALOG_CHECK_PARAM_RESULT.designer.cs">
  269. <DependentUpon>DIALOG_CHECK_PARAM_RESULT.cs</DependentUpon>
  270. </Compile>
  271. <Compile Include="0-OTSModel\Measure\ParamData\OTSDefaultParam.cs" />
  272. <Compile Include="0-OTSModel\Measure\ParamData\OTSGeneralParam.cs" />
  273. <Compile Include="0-OTSModel\Measure\ParamData\StageParam.cs" />
  274. <Compile Include="0-OTSModel\Measure\DBDataTransition\CSmallParticleInfo.cs" />
  275. <Compile Include="0-OTSModel\Measure\DBDataTransition\ElementChemistryDB.cs" />
  276. <Compile Include="0-OTSModel\Measure\DBDataTransition\ElementChemistryTable.cs" />
  277. <Compile Include="0-OTSModel\Measure\DBDataTransition\GenInfoDB.cs" />
  278. <Compile Include="0-OTSModel\Measure\DBDataTransition\GenInfoTable.cs" />
  279. <Compile Include="0-OTSModel\Measure\DBDataTransition\IncADataDB.cs" />
  280. <Compile Include="0-OTSModel\Measure\DBDataTransition\IncADataTable.cs" />
  281. <Compile Include="0-OTSModel\Measure\DBDataTransition\IncAFileMgr.cs" />
  282. <Compile Include="0-OTSModel\Measure\DBDataTransition\MergedParticles\MergeParticleDB.cs" />
  283. <Compile Include="0-OTSModel\Measure\DBDataTransition\MergedParticles\MergParticleTable.cs" />
  284. <Compile Include="0-OTSModel\Measure\DBDataTransition\PosXrayDBMgr.cs" />
  285. <Compile Include="0-OTSModel\Measure\DBDataTransition\PosXrayInfoDB.cs" />
  286. <Compile Include="0-OTSModel\Measure\DBDataTransition\PosXrayInfoTable.cs" />
  287. <Compile Include="0-OTSModel\Measure\DBDataTransition\SegmentDB.cs" />
  288. <Compile Include="0-OTSModel\Measure\DBDataTransition\SegmentTable.cs" />
  289. <Compile Include="0-OTSModel\Measure\DBDataTransition\SmallParticles\SmallParticleInfoDB.cs" />
  290. <Compile Include="0-OTSModel\Measure\DBDataTransition\SmallParticles\SmallParticleInfoTable.cs" />
  291. <Compile Include="0-OTSModel\Measure\DBDataTransition\XRayDataDB.cs" />
  292. <Compile Include="0-OTSModel\Measure\DBDataTransition\XRayDataTable.cs" />
  293. <Compile Include="0-OTSModel\OTSDataType\CDomain.cs" />
  294. <Compile Include="0-OTSModel\OTSDataType\CDoubleRange.cs" />
  295. <Compile Include="0-OTSModel\OTSDataType\CElement.cs" />
  296. <Compile Include="0-OTSModel\OTSDataType\CElementRange.cs" />
  297. <Compile Include="0-OTSModel\OTSDataType\CHole.cs" />
  298. <Compile Include="0-OTSModel\OTSDataType\CHoleBSEImg.cs" />
  299. <Compile Include="0-OTSModel\OTSDataType\CIntRange.cs" />
  300. <Compile Include="0-OTSModel\OTSDataType\COTSRect.cs" />
  301. <Compile Include="0-OTSModel\OTSDataType\CPropItemGrp.cs" />
  302. <Compile Include="0-OTSModel\OTSDataType\CMsrSampleStatus.cs" />
  303. <Compile Include="0-OTSModel\OTSDataType\COTSImageProcParam.cs" />
  304. <Compile Include="0-OTSModel\OTSDataType\COTSImageScanParam.cs" />
  305. <Compile Include="0-OTSModel\OTSDataType\COTSSample.cs" />
  306. <Compile Include="0-OTSModel\OTSDataType\COTSXRayParam.cs" />
  307. <Compile Include="0-OTSModel\OTSDataType\CPropItem.cs" />
  308. <Compile Include="0-OTSModel\OTSDataType\CSampleParam.cs" />
  309. <Compile Include="0-OTSModel\OTSDataType\CSEMDataGnr.cs" />
  310. <Compile Include="0-OTSModel\OTSDataType\CSEMDataMsr.cs" />
  311. <Compile Include="0-OTSModel\OTSDataType\CSize.cs" />
  312. <Compile Include="0-OTSModel\OTSDataType\CSlopFocusParam.cs" />
  313. <Compile Include="0-OTSModel\OTSDataType\CStage.cs" />
  314. <Compile Include="0-OTSModel\OTSDataType\DataPublic.cs" />
  315. <Compile Include="0-OTSModel\OTSDataType\otsdataconst.cs" />
  316. <Compile Include="0-OTSModel\OTSDataType\SEMStageData.cs" />
  317. <Compile Include="0-OTSModel\OTSDataType\XmlResourceData.cs" />
  318. <Compile Include="0-OTSModel\OTSDataType\XMLSerialization.cs" />
  319. <Compile Include="3-OTSDisplaySourceGridData\MeasureStopMode.cs">
  320. <SubType>Form</SubType>
  321. </Compile>
  322. <Compile Include="3-OTSDisplaySourceGridData\MeasureStopMode.Designer.cs">
  323. <DependentUpon>MeasureStopMode.cs</DependentUpon>
  324. </Compile>
  325. <Compile Include="4-OTSSamplespaceGraphicsPanel\CRingGDIObject.cs" />
  326. <Compile Include="4-OTSSamplespaceGraphicsPanel\CVisualSampleArea.cs" />
  327. <Compile Include="4-OTSSamplespaceGraphicsPanel\RingGdiDataInput.cs">
  328. <SubType>Form</SubType>
  329. </Compile>
  330. <Compile Include="4-OTSSamplespaceGraphicsPanel\RingGdiDataInput.Designer.cs">
  331. <DependentUpon>RingGdiDataInput.cs</DependentUpon>
  332. </Compile>
  333. <Compile Include="4-OTSSamplespaceGraphicsPanel\VisualStage.cs" />
  334. <Compile Include="5-OTSMeasureStatuImageFun\frmSpecialGrayParticle.cs">
  335. <SubType>Form</SubType>
  336. </Compile>
  337. <Compile Include="5-OTSMeasureStatuImageFun\frmSpecialGrayParticle.Designer.cs">
  338. <DependentUpon>frmSpecialGrayParticle.cs</DependentUpon>
  339. </Compile>
  340. <Compile Include="5-OTSMeasureStatuImageFun\SlopFocus.cs">
  341. <SubType>Form</SubType>
  342. </Compile>
  343. <Compile Include="5-OTSMeasureStatuImageFun\SlopFocus.Designer.cs">
  344. <DependentUpon>SlopFocus.cs</DependentUpon>
  345. </Compile>
  346. <Compile Include="7-OTSProgMgrInfo\SpecialParticleForm.cs">
  347. <SubType>Form</SubType>
  348. </Compile>
  349. <Compile Include="7-OTSProgMgrInfo\SpecialParticleForm.Designer.cs">
  350. <DependentUpon>SpecialParticleForm.cs</DependentUpon>
  351. </Compile>
  352. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageEdit.cs">
  353. <SubType>Form</SubType>
  354. </Compile>
  355. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageEdit.Designer.cs">
  356. <DependentUpon>DlgStageEdit.cs</DependentUpon>
  357. </Compile>
  358. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageMgr.cs">
  359. <SubType>Form</SubType>
  360. </Compile>
  361. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageMgr.Designer.cs">
  362. <DependentUpon>DlgStageMgr.cs</DependentUpon>
  363. </Compile>
  364. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageRename.cs">
  365. <SubType>Form</SubType>
  366. </Compile>
  367. <Compile Include="7-OTSProgMgrInfo\Stage\DlgStageRename.Designer.cs">
  368. <DependentUpon>DlgStageRename.cs</DependentUpon>
  369. </Compile>
  370. <Compile Include="7-OTSProgMgrInfo\Stage\StageDisplayHelp.cs" />
  371. <Compile Include="CRegistration.cs" />
  372. <Compile Include="BaseFunctionTest.cs">
  373. <SubType>Form</SubType>
  374. </Compile>
  375. <Compile Include="BaseFunctionTest.Designer.cs">
  376. <DependentUpon>BaseFunctionTest.cs</DependentUpon>
  377. </Compile>
  378. <Compile Include="ResourceManage\ResourceData.cs" />
  379. <Compile Include="ResourceManage\ResourceID.cs" />
  380. <Compile Include="ServiceCenter\CClassifyEngine.cs" />
  381. <Compile Include="ServiceCenter\CImageHandler.cs" />
  382. <Compile Include="ServiceCenter\DTLBase\ColumnType.cs" />
  383. <Compile Include="ServiceCenter\DTLBase\CSQLiteDB.cs" />
  384. <Compile Include="ServiceCenter\DTLBase\CSQLiteDBStore.cs" />
  385. <Compile Include="ServiceCenter\DTLBase\CSQLiteQuery.cs" />
  386. <Compile Include="ServiceCenter\DTLBase\CSQLiteTable.cs" />
  387. <Compile Include="ServiceCenter\DTLBase\DBConst.cs" />
  388. <Compile Include="ServiceCenter\DTLBase\IDBBase.cs" />
  389. <Compile Include="ServiceCenter\DTLBase\IDBFileBase.cs" />
  390. <Compile Include="ServiceCenter\DTLBase\IDBQueryBase.cs" />
  391. <Compile Include="ServiceCenter\DTLBase\IDBStoreBase.cs" />
  392. <Compile Include="ServiceCenter\DTLBase\IDBTableBase.cs" />
  393. <Compile Include="ServiceCenter\DTLBase\SQLiteFactory.cs" />
  394. <Compile Include="ServiceCenter\DTLBase\SQliteHelper.cs" />
  395. <Compile Include="ServiceCenter\DTLBase\TableModel.cs" />
  396. <Compile Include="ServiceCenter\EDSController.cs" />
  397. <Compile Include="ServiceCenter\FileHelper.cs" />
  398. <Compile Include="ServiceCenter\IClassifyEngine.cs" />
  399. <Compile Include="ServiceCenter\IImageProcess.cs" />
  400. <Compile Include="ServiceCenter\IMeasureHardware.cs" />
  401. <Compile Include="ServiceCenter\IpcSEMController.cs" />
  402. <Compile Include="ServiceCenter\ScanController.cs" />
  403. <Compile Include="ServiceCenter\SemController.cs" />
  404. <Compile Include="3-OTSDisplaySourceGridData\OTSPropertyWindow1.Designer.cs">
  405. <AutoGen>True</AutoGen>
  406. <DesignTime>True</DesignTime>
  407. <DependentUpon>OTSPropertyWindow.resx</DependentUpon>
  408. </Compile>
  409. <Compile Include="5-OTSMeasureStatuImageFun\Control_Ruler.cs">
  410. <SubType>UserControl</SubType>
  411. </Compile>
  412. <Compile Include="5-OTSMeasureStatuImageFun\Control_Ruler.designer.cs">
  413. <DependentUpon>Control_Ruler.cs</DependentUpon>
  414. </Compile>
  415. <Compile Include="5-OTSMeasureStatuImageFun\Control_XRayTable.cs">
  416. <SubType>UserControl</SubType>
  417. </Compile>
  418. <Compile Include="5-OTSMeasureStatuImageFun\Control_XRayTable.designer.cs">
  419. <DependentUpon>Control_XRayTable.cs</DependentUpon>
  420. </Compile>
  421. <Compile Include="1-OTSMeasure\MeasureCheckResultInfoWindow.cs">
  422. <SubType>Form</SubType>
  423. </Compile>
  424. <Compile Include="1-OTSMeasure\MeasureCheckResultInfoWindow.Designer.cs">
  425. <DependentUpon>MeasureCheckResultInfoWindow.cs</DependentUpon>
  426. </Compile>
  427. <Compile Include="2-OTSMeasureParamManage\COTSMeasureParam.cs" />
  428. <Compile Include="About.cs">
  429. <SubType>Form</SubType>
  430. </Compile>
  431. <Compile Include="About.Designer.cs">
  432. <DependentUpon>About.cs</DependentUpon>
  433. </Compile>
  434. <Compile Include="OTSPeriodicTable\ComboBoxItem.cs" />
  435. <Compile Include="OTSPeriodicTable\OTSPeriodicTableForm.cs">
  436. <SubType>Form</SubType>
  437. </Compile>
  438. <Compile Include="OTSPeriodicTable\OTSPeriodicTableForm.Designer.cs">
  439. <DependentUpon>OTSPeriodicTableForm.cs</DependentUpon>
  440. </Compile>
  441. <Compile Include="OTSPeriodicTable\OTSPeriodicTableForm_Small.cs">
  442. <SubType>Form</SubType>
  443. </Compile>
  444. <Compile Include="OTSPeriodicTable\OTSPeriodicTableForm_Small.Designer.cs">
  445. <DependentUpon>OTSPeriodicTableForm_Small.cs</DependentUpon>
  446. </Compile>
  447. <Compile Include="OTSPeriodicTable\Periodic.cs" />
  448. <Compile Include="OTSPeriodicTable\ThePeriodicTable.cs">
  449. <SubType>UserControl</SubType>
  450. </Compile>
  451. <Compile Include="OTSPeriodicTable\ThePeriodicTable.designer.cs">
  452. <DependentUpon>ThePeriodicTable.cs</DependentUpon>
  453. </Compile>
  454. <Compile Include="OTSPeriodicTable\ThePeriodicTable_Small.cs">
  455. <SubType>UserControl</SubType>
  456. </Compile>
  457. <Compile Include="OTSPeriodicTable\ThePeriodicTable_Small.designer.cs">
  458. <DependentUpon>ThePeriodicTable_Small.cs</DependentUpon>
  459. </Compile>
  460. <Compile Include="OTSPeriodicTable\User_Element.cs">
  461. <SubType>UserControl</SubType>
  462. </Compile>
  463. <Compile Include="OTSPeriodicTable\User_Element.designer.cs">
  464. <DependentUpon>User_Element.cs</DependentUpon>
  465. </Compile>
  466. <Compile Include="OTSPeriodicTable\User_Element_Small.cs">
  467. <SubType>UserControl</SubType>
  468. </Compile>
  469. <Compile Include="OTSPeriodicTable\User_Element_Small.designer.cs">
  470. <DependentUpon>User_Element_Small.cs</DependentUpon>
  471. </Compile>
  472. <Compile Include="4-OTSSamplespaceGraphicsPanel\OTSSampleData.cs" />
  473. <Compile Include="3-OTSDisplaySourceGridData\OTSDisplaySampleGrid.cs" />
  474. <Compile Include="OTSMeasureOutputNlog.cs">
  475. <SubType>Form</SubType>
  476. </Compile>
  477. <Compile Include="OTSMeasureOutputNlog.Designer.cs">
  478. <DependentUpon>OTSMeasureOutputNlog.cs</DependentUpon>
  479. </Compile>
  480. <Compile Include="5-OTSMeasureStatuImageFun\ExcelEdit.cs" />
  481. <Compile Include="5-OTSMeasureStatuImageFun\OTSImageData.cs" />
  482. <Compile Include="1-OTSMeasure\OTSMeasureDisplayResult.cs" />
  483. <Compile Include="1-OTSMeasure\CMeasureThreadWrapper.cs" />
  484. <Compile Include="7-OTSProgMgrInfo\ProgMgrInfoForm.cs">
  485. <SubType>Form</SubType>
  486. </Compile>
  487. <Compile Include="7-OTSProgMgrInfo\ProgMgrInfoForm.designer.cs">
  488. <DependentUpon>ProgMgrInfoForm.cs</DependentUpon>
  489. </Compile>
  490. <Compile Include="9-OTSRibbon\OTSRibbonFun.cs" />
  491. <Compile Include="4-OTSSamplespaceGraphicsPanel\CreateRectangle.cs" />
  492. <Compile Include="6-OTSDisplayTreeViewData\OTSDisplayTreeBase.cs" />
  493. <Compile Include="8-OTSSampleMeasureInfo\OTSSampleMeasureInfo.cs" />
  494. <Compile Include="OTSIncAMeasureAppForm.cs">
  495. <SubType>Form</SubType>
  496. </Compile>
  497. <Compile Include="OTSIncAMeasureAppForm.Designer.cs">
  498. <DependentUpon>OTSIncAMeasureAppForm.cs</DependentUpon>
  499. </Compile>
  500. <Compile Include="1-OTSMeasure\OTSMeasureResultWindow.cs">
  501. <SubType>Form</SubType>
  502. </Compile>
  503. <Compile Include="1-OTSMeasure\OTSMeasureResultWindow.Designer.cs">
  504. <DependentUpon>OTSMeasureResultWindow.cs</DependentUpon>
  505. </Compile>
  506. <Compile Include="5-OTSMeasureStatuImageFun\OTSMeasureStatusWindow.cs">
  507. <SubType>Form</SubType>
  508. </Compile>
  509. <Compile Include="5-OTSMeasureStatuImageFun\OTSMeasureStatusWindow.Designer.cs">
  510. <DependentUpon>OTSMeasureStatusWindow.cs</DependentUpon>
  511. </Compile>
  512. <Compile Include="3-OTSDisplaySourceGridData\OTSPropertyWindow.cs">
  513. <SubType>Form</SubType>
  514. </Compile>
  515. <Compile Include="3-OTSDisplaySourceGridData\OTSPropertyWindow.Designer.cs">
  516. <DependentUpon>OTSPropertyWindow.cs</DependentUpon>
  517. </Compile>
  518. <Compile Include="5-OTSMeasureStatuImageFun\OTSBSEImageFun.cs" />
  519. <Compile Include="4-OTSSamplespaceGraphicsPanel\OTSSamplespaceGraphicsPanelFun.cs" />
  520. <Compile Include="4-OTSSamplespaceGraphicsPanel\SEMDATAFieldManage.cs" />
  521. <Compile Include="4-OTSSamplespaceGraphicsPanel\OTSSamplespaceWindow.cs">
  522. <SubType>Form</SubType>
  523. </Compile>
  524. <Compile Include="4-OTSSamplespaceGraphicsPanel\OTSSamplespaceWindow.Designer.cs">
  525. <DependentUpon>OTSSamplespaceWindow.cs</DependentUpon>
  526. </Compile>
  527. <Compile Include="6-OTSDisplayTreeViewData\OTSSolutionWindow.cs">
  528. <SubType>Form</SubType>
  529. </Compile>
  530. <Compile Include="6-OTSDisplayTreeViewData\OTSSolutionWindow.Designer.cs">
  531. <DependentUpon>OTSSolutionWindow.cs</DependentUpon>
  532. </Compile>
  533. <Compile Include="Program.cs" />
  534. <Compile Include="Properties\AssemblyInfo.cs" />
  535. <Compile Include="Properties\IDDescriptionResource.Designer.cs">
  536. <AutoGen>True</AutoGen>
  537. <DesignTime>True</DesignTime>
  538. <DependentUpon>IDDescriptionResource.resx</DependentUpon>
  539. </Compile>
  540. <Compile Include="5-OTSMeasureStatuImageFun\ToolWindow.cs">
  541. <SubType>Form</SubType>
  542. </Compile>
  543. <Compile Include="5-OTSMeasureStatuImageFun\ToolWindow.Designer.cs">
  544. <DependentUpon>ToolWindow.cs</DependentUpon>
  545. </Compile>
  546. <EmbeddedResource Include="0-OTSModel\Measure\ParamData\DIALOG_CHECK_PARAM_RESULT.resx">
  547. <DependentUpon>DIALOG_CHECK_PARAM_RESULT.cs</DependentUpon>
  548. </EmbeddedResource>
  549. <EmbeddedResource Include="3-OTSDisplaySourceGridData\MeasureStopMode.resx">
  550. <DependentUpon>MeasureStopMode.cs</DependentUpon>
  551. </EmbeddedResource>
  552. <EmbeddedResource Include="4-OTSSamplespaceGraphicsPanel\RingGdiDataInput.resx">
  553. <DependentUpon>RingGdiDataInput.cs</DependentUpon>
  554. </EmbeddedResource>
  555. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\Control_Ruler.resx">
  556. <DependentUpon>Control_Ruler.cs</DependentUpon>
  557. </EmbeddedResource>
  558. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\Control_XRayTable.resx">
  559. <DependentUpon>Control_XRayTable.cs</DependentUpon>
  560. </EmbeddedResource>
  561. <EmbeddedResource Include="1-OTSMeasure\MeasureCheckResultInfoWindow.resx">
  562. <DependentUpon>MeasureCheckResultInfoWindow.cs</DependentUpon>
  563. </EmbeddedResource>
  564. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\frmSpecialGrayParticle.resx">
  565. <DependentUpon>frmSpecialGrayParticle.cs</DependentUpon>
  566. </EmbeddedResource>
  567. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\SlopFocus.resx">
  568. <DependentUpon>SlopFocus.cs</DependentUpon>
  569. </EmbeddedResource>
  570. <EmbeddedResource Include="7-OTSProgMgrInfo\SpecialParticleForm.resx">
  571. <DependentUpon>SpecialParticleForm.cs</DependentUpon>
  572. </EmbeddedResource>
  573. <EmbeddedResource Include="7-OTSProgMgrInfo\Stage\DlgStageEdit.resx">
  574. <DependentUpon>DlgStageEdit.cs</DependentUpon>
  575. </EmbeddedResource>
  576. <EmbeddedResource Include="7-OTSProgMgrInfo\Stage\DlgStageMgr.resx">
  577. <DependentUpon>DlgStageMgr.cs</DependentUpon>
  578. </EmbeddedResource>
  579. <EmbeddedResource Include="7-OTSProgMgrInfo\Stage\DlgStageRename.resx">
  580. <DependentUpon>DlgStageRename.cs</DependentUpon>
  581. </EmbeddedResource>
  582. <EmbeddedResource Include="About.resx">
  583. <DependentUpon>About.cs</DependentUpon>
  584. </EmbeddedResource>
  585. <EmbeddedResource Include="BaseFunctionTest.resx">
  586. <DependentUpon>BaseFunctionTest.cs</DependentUpon>
  587. </EmbeddedResource>
  588. <EmbeddedResource Include="OTSIncAMeasureAppForm.resx">
  589. <DependentUpon>OTSIncAMeasureAppForm.cs</DependentUpon>
  590. <SubType>Designer</SubType>
  591. </EmbeddedResource>
  592. <EmbeddedResource Include="OTSMeasureOutputNlog.resx">
  593. <DependentUpon>OTSMeasureOutputNlog.cs</DependentUpon>
  594. </EmbeddedResource>
  595. <EmbeddedResource Include="1-OTSMeasure\OTSMeasureResultWindow.resx">
  596. <DependentUpon>OTSMeasureResultWindow.cs</DependentUpon>
  597. </EmbeddedResource>
  598. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\OTSMeasureStatusWindow.resx">
  599. <DependentUpon>OTSMeasureStatusWindow.cs</DependentUpon>
  600. <SubType>Designer</SubType>
  601. </EmbeddedResource>
  602. <EmbeddedResource Include="OTSPeriodicTable\OTSPeriodicTableForm.resx">
  603. <DependentUpon>OTSPeriodicTableForm.cs</DependentUpon>
  604. </EmbeddedResource>
  605. <EmbeddedResource Include="OTSPeriodicTable\OTSPeriodicTableForm_Small.resx">
  606. <DependentUpon>OTSPeriodicTableForm_Small.cs</DependentUpon>
  607. </EmbeddedResource>
  608. <EmbeddedResource Include="OTSPeriodicTable\ThePeriodicTable.resx">
  609. <DependentUpon>ThePeriodicTable.cs</DependentUpon>
  610. </EmbeddedResource>
  611. <EmbeddedResource Include="OTSPeriodicTable\ThePeriodicTable_Small.resx">
  612. <DependentUpon>ThePeriodicTable_Small.cs</DependentUpon>
  613. </EmbeddedResource>
  614. <EmbeddedResource Include="OTSPeriodicTable\User_Element.resx">
  615. <DependentUpon>User_Element.cs</DependentUpon>
  616. </EmbeddedResource>
  617. <EmbeddedResource Include="OTSPeriodicTable\User_Element_Small.resx">
  618. <DependentUpon>User_Element_Small.cs</DependentUpon>
  619. </EmbeddedResource>
  620. <EmbeddedResource Include="7-OTSProgMgrInfo\ProgMgrInfoForm.resx">
  621. <DependentUpon>ProgMgrInfoForm.cs</DependentUpon>
  622. </EmbeddedResource>
  623. <EmbeddedResource Include="3-OTSDisplaySourceGridData\OTSPropertyWindow.resx">
  624. <DependentUpon>OTSPropertyWindow.cs</DependentUpon>
  625. <Generator>ResXFileCodeGenerator</Generator>
  626. <LastGenOutput>OTSPropertyWindow1.Designer.cs</LastGenOutput>
  627. </EmbeddedResource>
  628. <EmbeddedResource Include="4-OTSSamplespaceGraphicsPanel\OTSSamplespaceWindow.resx">
  629. <DependentUpon>OTSSamplespaceWindow.cs</DependentUpon>
  630. </EmbeddedResource>
  631. <EmbeddedResource Include="6-OTSDisplayTreeViewData\OTSSolutionWindow.resx">
  632. <DependentUpon>OTSSolutionWindow.cs</DependentUpon>
  633. </EmbeddedResource>
  634. <EmbeddedResource Include="Properties\IDDescriptionResource.resx">
  635. <Generator>ResXFileCodeGenerator</Generator>
  636. <LastGenOutput>IDDescriptionResource.Designer.cs</LastGenOutput>
  637. </EmbeddedResource>
  638. <EmbeddedResource Include="Properties\Resources.resx">
  639. <Generator>PublicResXFileCodeGenerator</Generator>
  640. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  641. <SubType>Designer</SubType>
  642. </EmbeddedResource>
  643. <Compile Include="Properties\Resources.Designer.cs">
  644. <AutoGen>True</AutoGen>
  645. <DependentUpon>Resources.resx</DependentUpon>
  646. <DesignTime>True</DesignTime>
  647. </Compile>
  648. <EmbeddedResource Include="5-OTSMeasureStatuImageFun\ToolWindow.resx">
  649. <DependentUpon>ToolWindow.cs</DependentUpon>
  650. </EmbeddedResource>
  651. <None Include="0-OTSModel\Measure\3-MeasureFlow\Measurethread.cd" />
  652. <None Include="0-OTSModel\Measure\BSEPicData\OTSFieldDataMgr.cd" />
  653. <None Include="0-OTSModel\Measure\ParamData\COTSResultData.cd" />
  654. <None Include="0-OTSModel\OTSDataType\COTSSample.cd" />
  655. <None Include="1-OTSMeasure\MeasureRetThread.cd" />
  656. <None Include="2-OTSMeasureParamManage\MeasureParam.cd" />
  657. <None Include="4-OTSSamplespaceGraphicsPanel\sampleSpaceObject.cd" />
  658. <None Include="app.manifest" />
  659. <None Include="packages.config" />
  660. <None Include="Properties\Settings.settings">
  661. <Generator>SettingsSingleFileGenerator</Generator>
  662. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  663. </None>
  664. <Compile Include="Properties\Settings.Designer.cs">
  665. <AutoGen>True</AutoGen>
  666. <DependentUpon>Settings.settings</DependentUpon>
  667. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  668. </Compile>
  669. </ItemGroup>
  670. <ItemGroup>
  671. <None Include="App.config" />
  672. </ItemGroup>
  673. <ItemGroup>
  674. <None Include="Resources\Image\保存.png" />
  675. <None Include="Resources\Image\编辑.png" />
  676. <None Include="Resources\Image\标尺.png" />
  677. <None Include="Resources\Image\返回.png" />
  678. <None Include="Resources\Image\复位.png" />
  679. <None Include="Resources\Image\关机.png" />
  680. <None Include="Resources\Image\画方.png" />
  681. <None Include="Resources\Image\画圆.png" />
  682. <None Include="Resources\Image\检测参数.png" />
  683. <None Include="Resources\Image\开始.png" />
  684. <None Include="Resources\Image\另存为.png" />
  685. <None Include="Resources\Image\前进.png" />
  686. <None Include="Resources\Image\删除样品.png" />
  687. <None Include="Resources\Image\添加样品.png" />
  688. <None Include="Resources\Image\停止.png" />
  689. <None Include="Resources\Image\新建.png" />
  690. <None Include="Resources\Image\关闭电镜.png" />
  691. <None Include="Resources\Image\透明.png" />
  692. <None Include="Resources\Image\透明选中.png" />
  693. <None Include="Resources\option_16.png" />
  694. <None Include="Resources\logo_32.png" />
  695. <None Include="Resources\logo_40.png" />
  696. <None Include="Resources\DelSemData_32.png" />
  697. <None Include="Resources\DelSemData_16.png" />
  698. <None Include="Resources\GetSemData_16.png" />
  699. <None Include="Resources\GetSemData_32.png" />
  700. <None Include="Resources\SetSemData.png" />
  701. <None Include="Resources\GetSampleImage.png" />
  702. <None Include="Resources\DeleteSampleImage.png" />
  703. <None Include="Resources\MoveToCenter_32.png" />
  704. <None Include="Resources\SEMMoveToCenter_32.png" />
  705. <None Include="Resources\SEMMoveToCurrent_32.png" />
  706. <None Include="Resources\OTSSysMgr.ico" />
  707. <None Include="Resources\OTSIncAMeasure.ico" />
  708. <None Include="Resources\OTSIncAReport.ico" />
  709. <Content Include="OTSPeriodicTable\images\Cancel.png" />
  710. <Content Include="OTSPeriodicTable\images\cubic.gif" />
  711. <Content Include="OTSPeriodicTable\images\cubicbodycentered.gif" />
  712. <Content Include="OTSPeriodicTable\images\cubicfacecentered.gif" />
  713. <Content Include="OTSPeriodicTable\images\Hexagonal.gif" />
  714. <Content Include="OTSPeriodicTable\images\Monoclinic.gif" />
  715. <Content Include="OTSPeriodicTable\images\OK.png" />
  716. <Content Include="OTSPeriodicTable\images\orthohombic.gif" />
  717. <Content Include="OTSPeriodicTable\images\rhombohedral.gif" />
  718. <Content Include="OTSPeriodicTable\images\teragonal.gif" />
  719. <None Include="Resources\ConnnectHardware.png" />
  720. <None Include="Resources\DisconnnectHardware.png" />
  721. <None Include="Resources\interrupt.png" />
  722. <None Include="Resources\AutoBeamOff_off.png" />
  723. <None Include="Resources\AutoBeamOff_on.png" />
  724. <None Include="Resources\Pause.png" />
  725. <Content Include="Resources\toopstripbackimage.png" />
  726. <Content Include="Resources\保存.png" />
  727. <None Include="Resources\删除32.png" />
  728. <None Include="Resources\停止32.png" />
  729. <None Include="Resources\关闭32.png" />
  730. <None Include="Resources\关闭二16.png" />
  731. <Content Include="Resources\关闭二32.png" />
  732. <Content Include="Resources\另存为.png" />
  733. <None Include="Resources\添加32.png" />
  734. <None Include="Resources\复位32.png" />
  735. <None Include="Resources\圆形32.png" />
  736. <None Include="Resources\矩形32.png" />
  737. <None Include="Resources\开始32.png" />
  738. <None Include="Resources\检测32.png" />
  739. <None Include="Resources\标尺32.png" />
  740. <None Include="Resources\样品孔照片32.png" />
  741. <None Include="Resources\样品孔名称32.png" />
  742. <None Include="Resources\恢复32.png" />
  743. <Content Include="Resources\编辑.png" />
  744. <None Include="Resources\Add Sample16.png" />
  745. <None Include="Resources\Add Sample32.png" />
  746. <None Include="Resources\Add Sample161.png" />
  747. <Content Include="Resources\Add Sample321.png">
  748. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  749. </Content>
  750. <Content Include="Resources\addons32.png" />
  751. <Content Include="Resources\bold16.png" />
  752. <Content Include="Resources\borderbottom16.png" />
  753. <Content Include="Resources\casing16.png" />
  754. <None Include="Resources\Circle16.png" />
  755. <None Include="Resources\Circle32.png" />
  756. <None Include="Resources\Circle161.png" />
  757. <None Include="Resources\Circle321.png" />
  758. <Content Include="Resources\close32.png" />
  759. <Content Include="Resources\copy16.png" />
  760. <Content Include="Resources\copyformat16.png" />
  761. <Content Include="Resources\cut16.png" />
  762. <None Include="Resources\delete16.png" />
  763. <None Include="Resources\delete32.png" />
  764. <None Include="Resources\deletefile16.png" />
  765. <None Include="Resources\deletefile32.png" />
  766. <None Include="Resources\delete161.png" />
  767. <None Include="Resources\delete321.png" />
  768. <None Include="Resources\deletefile161.png" />
  769. <None Include="Resources\deletefile321.png" />
  770. <Content Include="Resources\eraseformat16.png" />
  771. <Content Include="Resources\exit16.png" />
  772. <Content Include="Resources\fill16.png" />
  773. <Content Include="Resources\find32.png" />
  774. <Content Include="Resources\fontcolor16.png" />
  775. <Content Include="Resources\fontsizedecrease16.png" />
  776. <Content Include="Resources\fontsizeincrease16.png" />
  777. <Content Include="Resources\goto16.png" />
  778. <Content Include="Resources\hilight16.png" />
  779. <Content Include="Resources\indentdecrease16.png" />
  780. <Content Include="Resources\indentdecrease161.png" />
  781. <Content Include="Resources\indentincrease16.png" />
  782. <Content Include="Resources\invisiblechars16.png" />
  783. <Content Include="Resources\italic16.png" />
  784. <Content Include="Resources\multilevellist16.png" />
  785. <None Include="Resources\NewDocment.png" />
  786. <Content Include="Resources\newdocument32.png" />
  787. <Content Include="Resources\open16.png" />
  788. <None Include="Resources\Open161.png" />
  789. <Content Include="Resources\open32.png" />
  790. <Content Include="Resources\options16.png" />
  791. <Content Include="Resources\orderedlist16.png" />
  792. <Content Include="Resources\pageblank16.png" />
  793. <Content Include="Resources\paragraphspacing16.png" />
  794. <Content Include="Resources\paste16.png" />
  795. <Content Include="Resources\paste32.png" />
  796. <Content Include="Resources\paste321.png" />
  797. <Content Include="Resources\pastelink16.png" />
  798. <Content Include="Resources\pastespecial16.png" />
  799. <None Include="Resources\Polygon16.png" />
  800. <None Include="Resources\Polygon32.png" />
  801. <None Include="Resources\Polygon161.png" />
  802. <None Include="Resources\Polygon321.png" />
  803. <None Include="Resources\Prepare16.png" />
  804. <None Include="Resources\Power.png" />
  805. <Content Include="Resources\prepare32.png" />
  806. <Content Include="Resources\print32.png" />
  807. <Content Include="Resources\print321.png" />
  808. <Content Include="Resources\printpreview32.png" />
  809. <Content Include="Resources\printquick16.png" />
  810. <Content Include="Resources\printquick32.png" />
  811. <Content Include="Resources\publish32.png" />
  812. <None Include="Resources\Recover16.png" />
  813. <None Include="Resources\Recover32.png" />
  814. <None Include="Resources\Rectangle16.png" />
  815. <None Include="Resources\Rectangle32.png" />
  816. <None Include="Resources\Recover16new.png" />
  817. <None Include="Resources\Recover32New.png" />
  818. <None Include="Resources\Recover161.png" />
  819. <None Include="Resources\Recover16new1.png" />
  820. <None Include="Resources\Recover321.png" />
  821. <None Include="Resources\Recover32New1.png" />
  822. <None Include="Resources\Rectangle161.png" />
  823. <None Include="Resources\Rectangle321.png" />
  824. <Content Include="Resources\replace16.png" />
  825. <None Include="Resources\Reset16.png" />
  826. <None Include="Resources\Reset32.png" />
  827. <None Include="Resources\Ruler16.png" />
  828. <None Include="Resources\Ruler32.png" />
  829. <None Include="Resources\Reset161.png" />
  830. <None Include="Resources\Reset321.png" />
  831. <None Include="Resources\Ruler161.png" />
  832. <None Include="Resources\Ruler321.png" />
  833. <None Include="Resources\Ruler162.png" />
  834. <Content Include="Resources\save16.png" />
  835. <None Include="Resources\Save161.png" />
  836. <Content Include="Resources\save32.png" />
  837. <None Include="Resources\SaveAs16.png" />
  838. <Content Include="Resources\saveas32.png" />
  839. <Content Include="Resources\saveas321.png" />
  840. <Content Include="Resources\select16.png" />
  841. <None Include="Resources\sem16.png" />
  842. <None Include="Resources\sem32.png" />
  843. <None Include="Resources\sem161.png" />
  844. <None Include="Resources\sem321.png" />
  845. <None Include="Resources\sem162.png" />
  846. <Content Include="Resources\send32.png" />
  847. <None Include="Resources\set16.png" />
  848. <None Include="Resources\set32.png" />
  849. <None Include="Resources\SmapleName16.png" />
  850. <None Include="Resources\SmapleName32.png" />
  851. <None Include="Resources\SmaplePhoto16.png" />
  852. <None Include="Resources\SmaplePhoto32.png" />
  853. <None Include="Resources\set161.png" />
  854. <None Include="Resources\set321.png" />
  855. <None Include="Resources\SmapleName161.png" />
  856. <None Include="Resources\SmapleName321.png" />
  857. <None Include="Resources\SmaplePhoto161.png" />
  858. <None Include="Resources\SmaplePhoto321.png" />
  859. <Content Include="Resources\sort16.png" />
  860. <None Include="Resources\start16.png" />
  861. <None Include="Resources\start32.png" />
  862. <None Include="Resources\stop16.png" />
  863. <None Include="Resources\stop32.png" />
  864. <None Include="Resources\start161.png" />
  865. <None Include="Resources\start321.png" />
  866. <None Include="Resources\stop161.png" />
  867. <None Include="Resources\stop321.png" />
  868. <Content Include="Resources\strikethru16.png" />
  869. <Content Include="Resources\style16.png" />
  870. <Content Include="Resources\stylechange32.png" />
  871. <Content Include="Resources\styleset16.png" />
  872. <Content Include="Resources\subindex16.png" />
  873. <Content Include="Resources\superindex16.png" />
  874. <None Include="Resources\test16.png" />
  875. <None Include="Resources\test32.png" />
  876. <None Include="Resources\test161.png" />
  877. <None Include="Resources\test321.png" />
  878. <Content Include="Resources\textaligncenter16.png" />
  879. <Content Include="Resources\textalignjustify16.png" />
  880. <Content Include="Resources\textalignleft16.png" />
  881. <Content Include="Resources\textalignright16.png" />
  882. <Content Include="Resources\themefont.png" />
  883. <Content Include="Resources\underline16.png" />
  884. <Content Include="Resources\undo16.png" />
  885. <Content Include="Resources\unorderedlist16.png" />
  886. <Content Include="Resources\word2003doc32.png" />
  887. <Content Include="Resources\worddocument32.png" />
  888. <Content Include="Resources\wordtemplate32.png" />
  889. </ItemGroup>
  890. <ItemGroup>
  891. <WCFMetadata Include="Connected Services\" />
  892. </ItemGroup>
  893. <ItemGroup>
  894. <BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
  895. <Visible>False</Visible>
  896. <ProductName>Microsoft .NET Framework 4.5.2 %28x86 和 x64%29</ProductName>
  897. <Install>true</Install>
  898. </BootstrapperPackage>
  899. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  900. <Visible>False</Visible>
  901. <ProductName>.NET Framework 3.5 SP1</ProductName>
  902. <Install>false</Install>
  903. </BootstrapperPackage>
  904. </ItemGroup>
  905. <ItemGroup>
  906. <ProjectReference Include="..\OTSCommon\OTSCommon.csproj">
  907. <Project>{3b7695aa-8231-45ac-b493-84390a945d02}</Project>
  908. <Name>OTSCommon</Name>
  909. </ProjectReference>
  910. </ItemGroup>
  911. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  912. <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
  913. <PropertyGroup>
  914. <ErrorText>这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。</ErrorText>
  915. </PropertyGroup>
  916. <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.props'))" />
  917. <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.targets'))" />
  918. </Target>
  919. <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.targets" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" />
  920. </Project>