UAS_MES_ZDXW.csproj 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{C2201B4A-3D50-4FE8-A32B-DAF1C1652A63}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>UAS_MES_NEW</RootNamespace>
  11. <AssemblyName>UAS_MES_NEW</AssemblyName>
  12. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  13. <FileAlignment>512</FileAlignment>
  14. <IsWebBootstrapper>true</IsWebBootstrapper>
  15. <TargetFrameworkProfile />
  16. <PublishUrl>ftp://yitoadt.wicp.io:21/</PublishUrl>
  17. <Install>true</Install>
  18. <InstallFrom>Web</InstallFrom>
  19. <UpdateEnabled>true</UpdateEnabled>
  20. <UpdateMode>Foreground</UpdateMode>
  21. <UpdateInterval>7</UpdateInterval>
  22. <UpdateIntervalUnits>Days</UpdateIntervalUnits>
  23. <UpdatePeriodically>false</UpdatePeriodically>
  24. <UpdateRequired>false</UpdateRequired>
  25. <MapFileExtensions>true</MapFileExtensions>
  26. <InstallUrl>http://192.168.1.37/</InstallUrl>
  27. <CreateWebPageOnPublish>true</CreateWebPageOnPublish>
  28. <WebPage>publish.htm</WebPage>
  29. <ApplicationRevision>2</ApplicationRevision>
  30. <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
  31. <UseApplicationTrust>false</UseApplicationTrust>
  32. <CreateDesktopShortcut>true</CreateDesktopShortcut>
  33. <PublishWizardCompleted>true</PublishWizardCompleted>
  34. <BootstrapperEnabled>true</BootstrapperEnabled>
  35. </PropertyGroup>
  36. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  37. <PlatformTarget>x86</PlatformTarget>
  38. <DebugSymbols>true</DebugSymbols>
  39. <DebugType>full</DebugType>
  40. <Optimize>false</Optimize>
  41. <OutputPath>bin\Debug\</OutputPath>
  42. <DefineConstants>DEBUG;TRACE</DefineConstants>
  43. <ErrorReport>prompt</ErrorReport>
  44. <WarningLevel>4</WarningLevel>
  45. <Prefer32Bit>false</Prefer32Bit>
  46. </PropertyGroup>
  47. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  48. <PlatformTarget>x86</PlatformTarget>
  49. <DebugType>pdbonly</DebugType>
  50. <Optimize>true</Optimize>
  51. <OutputPath>bin\Release\</OutputPath>
  52. <DefineConstants>TRACE</DefineConstants>
  53. <ErrorReport>prompt</ErrorReport>
  54. <WarningLevel>4</WarningLevel>
  55. <Prefer32Bit>false</Prefer32Bit>
  56. </PropertyGroup>
  57. <PropertyGroup>
  58. <ApplicationIcon>Resources\U_Icon.ico</ApplicationIcon>
  59. </PropertyGroup>
  60. <PropertyGroup>
  61. <NoWin32Manifest>true</NoWin32Manifest>
  62. </PropertyGroup>
  63. <PropertyGroup>
  64. <ManifestCertificateThumbprint>F3A5CD54CA817EDB2CCE2469388F562C52E41F26</ManifestCertificateThumbprint>
  65. </PropertyGroup>
  66. <PropertyGroup>
  67. <ManifestKeyFile>UAS_MES_NEW_TemporaryKey.pfx</ManifestKeyFile>
  68. </PropertyGroup>
  69. <PropertyGroup>
  70. <GenerateManifests>true</GenerateManifests>
  71. </PropertyGroup>
  72. <PropertyGroup>
  73. <SignManifests>false</SignManifests>
  74. </PropertyGroup>
  75. <PropertyGroup>
  76. <StartupObject>UAS_MES_NEW.Program</StartupObject>
  77. </PropertyGroup>
  78. <ItemGroup>
  79. <Reference Include="DevComponents.DotNetBar2, Version=6.7.2.0, Culture=neutral, PublicKeyToken=bd7258ab2241255c, processorArchitecture=MSIL">
  80. <SpecificVersion>False</SpecificVersion>
  81. <HintPath>Tool\DevComponents.DotNetBar2.dll</HintPath>
  82. </Reference>
  83. <Reference Include="DevExpress.BonusSkins.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
  84. <SpecificVersion>False</SpecificVersion>
  85. <HintPath>Tool\DevExpress.BonusSkins.v15.2.dll</HintPath>
  86. </Reference>
  87. <Reference Include="DevExpress.Charts.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  88. <Reference Include="DevExpress.Data.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  89. <Reference Include="DevExpress.DataAccess.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  90. <Reference Include="DevExpress.Map.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  91. <Reference Include="DevExpress.PivotGrid.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  92. <Reference Include="DevExpress.Printing.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  93. <Reference Include="DevExpress.Sparkline.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  94. <Reference Include="DevExpress.SpellChecker.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  95. <Reference Include="DevExpress.Utils.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
  96. <SpecificVersion>False</SpecificVersion>
  97. <HintPath>Tool\DevExpress.Utils.v15.2.dll</HintPath>
  98. </Reference>
  99. <Reference Include="DevExpress.Xpo.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
  100. <Reference Include="DevExpress.XtraBars.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
  101. <SpecificVersion>False</SpecificVersion>
  102. <HintPath>Tool\DevExpress.XtraBars.v15.2.dll</HintPath>
  103. </Reference>
  104. <Reference Include="DevExpress.XtraCharts.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  105. <Reference Include="DevExpress.XtraCharts.v15.2.UI, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
  106. <Reference Include="DevExpress.XtraCharts.v15.2.Wizard, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  107. <Reference Include="DevExpress.XtraEditors.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
  108. <SpecificVersion>False</SpecificVersion>
  109. <HintPath>Tool\DevExpress.XtraEditors.v15.2.dll</HintPath>
  110. </Reference>
  111. <Reference Include="DevExpress.XtraGauges.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  112. <Reference Include="DevExpress.XtraGauges.v15.2.Win, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
  113. <Reference Include="DevExpress.XtraGrid.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
  114. <Reference Include="DevExpress.XtraLayout.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  115. <Reference Include="DevExpress.XtraMap.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
  116. <Reference Include="DevExpress.XtraNavBar.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
  117. <SpecificVersion>False</SpecificVersion>
  118. <HintPath>Tool\DevExpress.XtraNavBar.v15.2.dll</HintPath>
  119. </Reference>
  120. <Reference Include="DevExpress.XtraPivotGrid.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
  121. <Reference Include="DevExpress.XtraPrinting.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  122. <Reference Include="DevExpress.XtraScheduler.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  123. <Reference Include="DevExpress.XtraScheduler.v15.2.Core, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  124. <Reference Include="DevExpress.XtraScheduler.v15.2.Extensions, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
  125. <Reference Include="DevExpress.XtraSpellChecker.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  126. <Reference Include="DevExpress.XtraTreeList.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" />
  127. <Reference Include="ExcelHelper, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
  128. <SpecificVersion>False</SpecificVersion>
  129. <HintPath>Tool\ExcelHelper.dll</HintPath>
  130. </Reference>
  131. <Reference Include="HslCommunication, Version=9.7.0.0, Culture=neutral, PublicKeyToken=cdb2261fa039ed67, processorArchitecture=MSIL">
  132. <HintPath>..\packages\HslCommunication.9.7.0\lib\net35\HslCommunication.dll</HintPath>
  133. <Private>True</Private>
  134. </Reference>
  135. <Reference Include="Interop.BarTender">
  136. <HintPath>..\UAS_MES_LT\Tool\Interop.BarTender.dll</HintPath>
  137. <EmbedInteropTypes>True</EmbedInteropTypes>
  138. </Reference>
  139. <Reference Include="Interop.LabelManager2">
  140. <HintPath>Tool\Interop.LabelManager2.dll</HintPath>
  141. <EmbedInteropTypes>False</EmbedInteropTypes>
  142. </Reference>
  143. <Reference Include="Interop.SpeechLib, Version=5.4.0.0, Culture=neutral, processorArchitecture=MSIL">
  144. <SpecificVersion>False</SpecificVersion>
  145. <EmbedInteropTypes>False</EmbedInteropTypes>
  146. <HintPath>Tool\Interop.SpeechLib.dll</HintPath>
  147. </Reference>
  148. <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
  149. <HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net40\Newtonsoft.Json.dll</HintPath>
  150. <Private>True</Private>
  151. </Reference>
  152. <Reference Include="NPOI, Version=1.2.5.0, Culture=neutral, PublicKeyToken=0df73ec7942b34e1, processorArchitecture=MSIL">
  153. <SpecificVersion>False</SpecificVersion>
  154. <HintPath>Tool\NPOI.dll</HintPath>
  155. </Reference>
  156. <Reference Include="Oracle.ManagedDataAccess, Version=4.121.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342, processorArchitecture=MSIL">
  157. <SpecificVersion>False</SpecificVersion>
  158. <HintPath>Tool\Oracle.ManagedDataAccess.dll</HintPath>
  159. </Reference>
  160. <Reference Include="Seagull.BarTender.Print, Version=10.1.3.1, Culture=neutral, PublicKeyToken=109ff779a1b4cbc7, processorArchitecture=x86">
  161. <SpecificVersion>False</SpecificVersion>
  162. <HintPath>Tool\Seagull.BarTender.Print.dll</HintPath>
  163. </Reference>
  164. <Reference Include="System" />
  165. <Reference Include="System.Configuration" />
  166. <Reference Include="System.Core" />
  167. <Reference Include="System.Management" />
  168. <Reference Include="System.Runtime.Serialization" />
  169. <Reference Include="System.ServiceModel" />
  170. <Reference Include="System.Web" />
  171. <Reference Include="System.Web.Services" />
  172. <Reference Include="System.Windows.Forms.DataVisualization" />
  173. <Reference Include="System.Xml.Linq" />
  174. <Reference Include="System.Data.DataSetExtensions" />
  175. <Reference Include="Microsoft.CSharp" />
  176. <Reference Include="System.Data" />
  177. <Reference Include="System.Deployment" />
  178. <Reference Include="System.Drawing" />
  179. <Reference Include="System.Windows.Forms" />
  180. <Reference Include="System.Xml" />
  181. </ItemGroup>
  182. <ItemGroup>
  183. <Compile Include="CustomControl\AccordionMenu\AccordionMenu.cs">
  184. <SubType>UserControl</SubType>
  185. </Compile>
  186. <Compile Include="CustomControl\AccordionMenu\AccordionMenu.Designer.cs">
  187. <DependentUpon>AccordionMenu.cs</DependentUpon>
  188. </Compile>
  189. <Compile Include="CustomControl\AccordionMenu\NavagationBar.cs">
  190. <SubType>Component</SubType>
  191. </Compile>
  192. <Compile Include="CustomControl\AccordionMenu\NavagationBar.Designer.cs">
  193. <DependentUpon>NavagationBar.cs</DependentUpon>
  194. </Compile>
  195. <Compile Include="CustomControl\BaseForm\BaseForm.cs">
  196. <SubType>Form</SubType>
  197. </Compile>
  198. <Compile Include="CustomControl\BaseForm\BaseForm.Designer.cs">
  199. <DependentUpon>BaseForm.cs</DependentUpon>
  200. </Compile>
  201. <Compile Include="CustomControl\ButtonUtil\ArrowLeftButton.cs">
  202. <SubType>Component</SubType>
  203. </Compile>
  204. <Compile Include="CustomControl\ButtonUtil\ArrowLeftButton.Designer.cs">
  205. <DependentUpon>ArrowLeftButton.cs</DependentUpon>
  206. </Compile>
  207. <Compile Include="CustomControl\ButtonUtil\ArrowRightButton.cs">
  208. <SubType>Component</SubType>
  209. </Compile>
  210. <Compile Include="CustomControl\ButtonUtil\ArrowRightButton.Designer.cs">
  211. <DependentUpon>ArrowRightButton.cs</DependentUpon>
  212. </Compile>
  213. <Compile Include="CustomControl\ButtonUtil\ChooseAllButton.cs">
  214. <SubType>Component</SubType>
  215. </Compile>
  216. <Compile Include="CustomControl\ButtonUtil\ChooseAllButton.Designer.cs">
  217. <DependentUpon>ChooseAllButton.cs</DependentUpon>
  218. </Compile>
  219. <Compile Include="CustomControl\ButtonUtil\CloseButton.cs">
  220. <SubType>Component</SubType>
  221. </Compile>
  222. <Compile Include="CustomControl\ButtonUtil\CloseButton.Designer.cs">
  223. <DependentUpon>CloseButton.cs</DependentUpon>
  224. </Compile>
  225. <Compile Include="CustomControl\ButtonUtil\DeleteButton.cs">
  226. <SubType>Component</SubType>
  227. </Compile>
  228. <Compile Include="CustomControl\ButtonUtil\DeleteButton.Designer.cs">
  229. <DependentUpon>DeleteButton.cs</DependentUpon>
  230. </Compile>
  231. <Compile Include="CustomControl\ButtonUtil\LockMakeCode.cs">
  232. <SubType>Component</SubType>
  233. </Compile>
  234. <Compile Include="CustomControl\ButtonUtil\LockMakeCode.Designer.cs">
  235. <DependentUpon>LockMakeCode.cs</DependentUpon>
  236. </Compile>
  237. <Compile Include="CustomControl\ButtonUtil\NormalButton.cs">
  238. <SubType>Component</SubType>
  239. </Compile>
  240. <Compile Include="CustomControl\ButtonUtil\NormalButton.Designer.cs">
  241. <DependentUpon>NormalButton.cs</DependentUpon>
  242. </Compile>
  243. <Compile Include="CustomControl\ClickPicBox\ClickPicBox.cs">
  244. <SubType>Component</SubType>
  245. </Compile>
  246. <Compile Include="CustomControl\ClickPicBox\ClickPicBox.Designer.cs">
  247. <DependentUpon>ClickPicBox.cs</DependentUpon>
  248. </Compile>
  249. <Compile Include="CustomControl\ClickPicBox\LockIcon.cs">
  250. <SubType>Component</SubType>
  251. </Compile>
  252. <Compile Include="CustomControl\ClickPicBox\LockIcon.Designer.cs">
  253. <DependentUpon>LockIcon.cs</DependentUpon>
  254. </Compile>
  255. <Compile Include="CustomControl\ComBoxWithFocus\ComBoxWithFocus.cs">
  256. <SubType>Component</SubType>
  257. </Compile>
  258. <Compile Include="CustomControl\ComBoxWithFocus\ComBoxWithFocus.Designer.cs">
  259. <DependentUpon>ComBoxWithFocus.cs</DependentUpon>
  260. </Compile>
  261. <Compile Include="CustomControl\ComBoxWithFocus\ComboxWithTip.cs">
  262. <SubType>Component</SubType>
  263. </Compile>
  264. <Compile Include="CustomControl\ComBoxWithFocus\ComboxWithTip.Designer.cs">
  265. <DependentUpon>ComboxWithTip.cs</DependentUpon>
  266. </Compile>
  267. <Compile Include="CustomControl\ComBoxWithFocus\PrinterCombox.cs">
  268. <SubType>UserControl</SubType>
  269. </Compile>
  270. <Compile Include="CustomControl\ComBoxWithFocus\PrinterCombox.Designer.cs">
  271. <DependentUpon>PrinterCombox.cs</DependentUpon>
  272. </Compile>
  273. <Compile Include="CustomControl\ComBoxWithFocus\SerialPortCombox.cs">
  274. <SubType>UserControl</SubType>
  275. </Compile>
  276. <Compile Include="CustomControl\ComBoxWithFocus\SerialPortCombox.Designer.cs">
  277. <DependentUpon>SerialPortCombox.cs</DependentUpon>
  278. </Compile>
  279. <Compile Include="CustomControl\CustomCheckBox\AutoPrintCheckBox.cs">
  280. <SubType>UserControl</SubType>
  281. </Compile>
  282. <Compile Include="CustomControl\CustomCheckBox\AutoPrintCheckBox.Designer.cs">
  283. <DependentUpon>AutoPrintCheckBox.cs</DependentUpon>
  284. </Compile>
  285. <Compile Include="CustomControl\CustomCheckBox\CustomCheckBox.cs">
  286. <SubType>Component</SubType>
  287. </Compile>
  288. <Compile Include="CustomControl\CustomCheckBox\CustomCheckBox.Designer.cs">
  289. <DependentUpon>CustomCheckBox.cs</DependentUpon>
  290. </Compile>
  291. <Compile Include="CustomControl\CustomCheckBox\LockCheckBox.cs">
  292. <SubType>Component</SubType>
  293. </Compile>
  294. <Compile Include="CustomControl\CustomCheckBox\LockCheckBox.Designer.cs">
  295. <DependentUpon>LockCheckBox.cs</DependentUpon>
  296. </Compile>
  297. <Compile Include="CustomControl\CustomCheckBox\ReSetCheckBox.cs">
  298. <SubType>Component</SubType>
  299. </Compile>
  300. <Compile Include="CustomControl\CustomCheckBox\ReSetCheckBox.Designer.cs">
  301. <DependentUpon>ReSetCheckBox.cs</DependentUpon>
  302. </Compile>
  303. <Compile Include="CustomControl\CustomTabControl\CustomTabControl.cs">
  304. <SubType>Component</SubType>
  305. </Compile>
  306. <Compile Include="CustomControl\CustomTabControl\CustomTabControl.Designer.cs">
  307. <DependentUpon>CustomTabControl.cs</DependentUpon>
  308. </Compile>
  309. <Compile Include="CustomControl\CustomTabControl\ThemedColors.cs" />
  310. <Compile Include="CustomControl\DataGrid_View\DataGridViewExpand.cs">
  311. <SubType>Component</SubType>
  312. </Compile>
  313. <Compile Include="CustomControl\DataGrid_View\DataGridViewExpand.Designer.cs">
  314. <DependentUpon>DataGridViewExpand.cs</DependentUpon>
  315. </Compile>
  316. <Compile Include="CustomControl\DataGrid_View\DataGridViewWithCheckBox.cs">
  317. <SubType>Component</SubType>
  318. </Compile>
  319. <Compile Include="CustomControl\DataGrid_View\DataGridViewWithCheckBox.Designer.cs">
  320. <DependentUpon>DataGridViewWithCheckBox.cs</DependentUpon>
  321. </Compile>
  322. <Compile Include="CustomControl\DataGrid_View\DataGridViewWithFilter.cs">
  323. <SubType>Component</SubType>
  324. </Compile>
  325. <Compile Include="CustomControl\DataGrid_View\DataGridViewWithFilter.Designer.cs">
  326. <DependentUpon>DataGridViewWithFilter.cs</DependentUpon>
  327. </Compile>
  328. <Compile Include="CustomControl\DataGrid_View\DataGridViewWithSerialNum.cs">
  329. <SubType>Component</SubType>
  330. </Compile>
  331. <Compile Include="CustomControl\DataGrid_View\DataGridViewWithSerialNum.Designer.cs">
  332. <DependentUpon>DataGridViewWithSerialNum.cs</DependentUpon>
  333. </Compile>
  334. <Compile Include="CustomControl\GroupBoxWithBorder\GroupBoxWithBorder.cs">
  335. <SubType>Component</SubType>
  336. </Compile>
  337. <Compile Include="CustomControl\GroupBoxWithBorder\GroupBoxWithBorder.Designer.cs">
  338. <DependentUpon>GroupBoxWithBorder.cs</DependentUpon>
  339. </Compile>
  340. <Compile Include="CustomControl\HeadBar\HeadBar.cs">
  341. <SubType>UserControl</SubType>
  342. </Compile>
  343. <Compile Include="CustomControl\HeadBar\HeadBar.Designer.cs">
  344. <DependentUpon>HeadBar.cs</DependentUpon>
  345. </Compile>
  346. <Compile Include="CustomControl\ListViewExpand\ListViewExpand.cs">
  347. <SubType>Component</SubType>
  348. </Compile>
  349. <Compile Include="CustomControl\ListViewExpand\ListViewExpand.Designer.cs">
  350. <DependentUpon>ListViewExpand.cs</DependentUpon>
  351. </Compile>
  352. <Compile Include="CustomControl\Pagination\Pagination.cs">
  353. <SubType>UserControl</SubType>
  354. </Compile>
  355. <Compile Include="CustomControl\Pagination\Pagination.Designer.cs">
  356. <DependentUpon>Pagination.cs</DependentUpon>
  357. </Compile>
  358. <Compile Include="CustomControl\Pagination\PaginationDbFind.cs">
  359. <SubType>UserControl</SubType>
  360. </Compile>
  361. <Compile Include="CustomControl\Pagination\PaginationDbFind.Designer.cs">
  362. <DependentUpon>PaginationDbFind.cs</DependentUpon>
  363. </Compile>
  364. <Compile Include="CustomControl\PowerControlForm\PowerControlForm.cs">
  365. <SubType>Form</SubType>
  366. </Compile>
  367. <Compile Include="CustomControl\PowerControlForm\PowerControlForm.Designer.cs">
  368. <DependentUpon>PowerControlForm.cs</DependentUpon>
  369. </Compile>
  370. <Compile Include="CustomControl\ProcessBar\ProcessBar.cs">
  371. <SubType>UserControl</SubType>
  372. </Compile>
  373. <Compile Include="CustomControl\ProcessBar\ProcessBar.Designer.cs">
  374. <DependentUpon>ProcessBar.cs</DependentUpon>
  375. </Compile>
  376. <Compile Include="CustomControl\RichText\RichTextAutoBottom.cs">
  377. <SubType>Component</SubType>
  378. </Compile>
  379. <Compile Include="CustomControl\RichText\RichTextAutoBottom.Designer.cs">
  380. <DependentUpon>RichTextAutoBottom.cs</DependentUpon>
  381. </Compile>
  382. <Compile Include="CustomControl\SetLoading\LoadingCircle.cs">
  383. <SubType>Component</SubType>
  384. </Compile>
  385. <Compile Include="CustomControl\SetLoading\LoadingCircle.Designer.cs">
  386. <DependentUpon>LoadingCircle.cs</DependentUpon>
  387. </Compile>
  388. <Compile Include="CustomControl\TextBoxWithIcon\BlurSearch.cs">
  389. <SubType>UserControl</SubType>
  390. </Compile>
  391. <Compile Include="CustomControl\TextBoxWithIcon\BlurSearch.Designer.cs">
  392. <DependentUpon>BlurSearch.cs</DependentUpon>
  393. </Compile>
  394. <Compile Include="CustomControl\TextBoxWithIcon\EnterTextBox.cs">
  395. <SubType>Component</SubType>
  396. </Compile>
  397. <Compile Include="CustomControl\TextBoxWithIcon\EnterTextBox.Designer.cs">
  398. <DependentUpon>EnterTextBox.cs</DependentUpon>
  399. </Compile>
  400. <Compile Include="CustomControl\TextBoxWithIcon\MaCodeSearchTextBox.cs">
  401. <SubType>UserControl</SubType>
  402. </Compile>
  403. <Compile Include="CustomControl\TextBoxWithIcon\MaCodeSearchTextBox.Designer.cs">
  404. <DependentUpon>MaCodeSearchTextBox.cs</DependentUpon>
  405. </Compile>
  406. <Compile Include="CustomControl\TextBoxWithIcon\MaCodeTextBox.cs">
  407. <SubType>Component</SubType>
  408. </Compile>
  409. <Compile Include="CustomControl\TextBoxWithIcon\MaCodeTextBox.Designer.cs">
  410. <DependentUpon>MaCodeTextBox.cs</DependentUpon>
  411. </Compile>
  412. <Compile Include="CustomControl\TextBoxWithIcon\NumOnlyTextBox.cs">
  413. <SubType>Component</SubType>
  414. </Compile>
  415. <Compile Include="CustomControl\TextBoxWithIcon\NumOnlyTextBox.Designer.cs">
  416. <DependentUpon>NumOnlyTextBox.cs</DependentUpon>
  417. </Compile>
  418. <Compile Include="CustomControl\TextBoxWithIcon\RoundTextBox.cs">
  419. <SubType>UserControl</SubType>
  420. </Compile>
  421. <Compile Include="CustomControl\TextBoxWithIcon\RoundTextBox.Designer.cs">
  422. <DependentUpon>RoundTextBox.cs</DependentUpon>
  423. </Compile>
  424. <Compile Include="CustomControl\TextBoxWithIcon\SearchTextBox.cs">
  425. <SubType>UserControl</SubType>
  426. </Compile>
  427. <Compile Include="CustomControl\TextBoxWithIcon\SearchTextBox.Designer.cs">
  428. <DependentUpon>SearchTextBox.cs</DependentUpon>
  429. </Compile>
  430. <Compile Include="CustomControl\TextBoxWithIcon\SNCodeEnterTextBox.cs">
  431. <SubType>Component</SubType>
  432. </Compile>
  433. <Compile Include="CustomControl\TextBoxWithIcon\SNCodeEnterTextBox.Designer.cs">
  434. <DependentUpon>SNCodeEnterTextBox.cs</DependentUpon>
  435. </Compile>
  436. <Compile Include="CustomControl\TextBoxWithIcon\SnCollectionBox.cs">
  437. <SubType>Component</SubType>
  438. </Compile>
  439. <Compile Include="CustomControl\TextBoxWithIcon\SnCollectionBox.Designer.cs">
  440. <DependentUpon>SnCollectionBox.cs</DependentUpon>
  441. </Compile>
  442. <Compile Include="CustomControl\TextBoxWithIcon\SourceStepCountPre.cs">
  443. <SubType>UserControl</SubType>
  444. </Compile>
  445. <Compile Include="CustomControl\TextBoxWithIcon\SourceStepCountPre.Designer.cs">
  446. <DependentUpon>SourceStepCountPre.cs</DependentUpon>
  447. </Compile>
  448. <Compile Include="CustomControl\TextBoxWithIcon\SourceStepCount.cs">
  449. <SubType>UserControl</SubType>
  450. </Compile>
  451. <Compile Include="CustomControl\TextBoxWithIcon\SourceStepCount.Designer.cs">
  452. <DependentUpon>SourceStepCount.cs</DependentUpon>
  453. </Compile>
  454. <Compile Include="CustomControl\TextBoxWithIcon\TextAreaForm.cs">
  455. <SubType>Form</SubType>
  456. </Compile>
  457. <Compile Include="CustomControl\TextBoxWithIcon\TextAreaForm.Designer.cs">
  458. <DependentUpon>TextAreaForm.cs</DependentUpon>
  459. </Compile>
  460. <Compile Include="CustomControl\TextBoxWithIcon\TextBoxGeneratePaCode.cs">
  461. <SubType>UserControl</SubType>
  462. </Compile>
  463. <Compile Include="CustomControl\TextBoxWithIcon\TextBoxGeneratePaCode.Designer.cs">
  464. <DependentUpon>TextBoxGeneratePaCode.cs</DependentUpon>
  465. </Compile>
  466. <Compile Include="CustomControl\TextBoxWithIcon\TextBoxNumOnly.cs">
  467. <SubType>Component</SubType>
  468. </Compile>
  469. <Compile Include="CustomControl\TextBoxWithIcon\TextBoxNumOnly.Designer.cs">
  470. <DependentUpon>TextBoxNumOnly.cs</DependentUpon>
  471. </Compile>
  472. <Compile Include="CustomControl\TextBoxWithIcon\TextBoxWithPlaceHolder.cs">
  473. <SubType>UserControl</SubType>
  474. </Compile>
  475. <Compile Include="CustomControl\TextBoxWithIcon\TextBoxWithPlaceHolder.Designer.cs">
  476. <DependentUpon>TextBoxWithPlaceHolder.cs</DependentUpon>
  477. </Compile>
  478. <Compile Include="CustomControl\TextBoxWithIcon\TextBoxWithTextArea.cs">
  479. <SubType>UserControl</SubType>
  480. </Compile>
  481. <Compile Include="CustomControl\TextBoxWithIcon\TextBoxWithTextArea.Designer.cs">
  482. <DependentUpon>TextBoxWithTextArea.cs</DependentUpon>
  483. </Compile>
  484. <Compile Include="CustomControl\TimePickerWithCombo\TimePickerWithCombo.cs">
  485. <SubType>UserControl</SubType>
  486. </Compile>
  487. <Compile Include="CustomControl\TimePickerWithCombo\TimePickerWithCombo.Designer.cs">
  488. <DependentUpon>TimePickerWithCombo.cs</DependentUpon>
  489. </Compile>
  490. <Compile Include="CustomControl\ValueLabel\ValueLabel.cs">
  491. <SubType>Component</SubType>
  492. </Compile>
  493. <Compile Include="CustomControl\ValueLabel\ValueLabel.Designer.cs">
  494. <DependentUpon>ValueLabel.cs</DependentUpon>
  495. </Compile>
  496. <Compile Include="CustomControl\ValueLabel\ValueNumLabel.cs">
  497. <SubType>Component</SubType>
  498. </Compile>
  499. <Compile Include="CustomControl\ValueLabel\ValueNumLabel.Designer.cs">
  500. <DependentUpon>ValueNumLabel.cs</DependentUpon>
  501. </Compile>
  502. <Compile Include="DataOperate\AccessDBHelper.cs" />
  503. <Compile Include="DataOperate\DataHelper.cs" />
  504. <Compile Include="DataOperate\ExcelHandler.cs" />
  505. <Compile Include="DbFind.cs">
  506. <SubType>Form</SubType>
  507. </Compile>
  508. <Compile Include="DbFind.Designer.cs">
  509. <DependentUpon>DbFind.cs</DependentUpon>
  510. </Compile>
  511. <Compile Include="Entity\ItemObject.cs" />
  512. <Compile Include="Entity\Status.cs" />
  513. <Compile Include="Entity\SystemInf.cs" />
  514. <Compile Include="Entity\User.cs" />
  515. <Compile Include="Enum\EMouseState.cs" />
  516. <Compile Include="Form1.cs">
  517. <SubType>Form</SubType>
  518. </Compile>
  519. <Compile Include="Form1.Designer.cs">
  520. <DependentUpon>Form1.cs</DependentUpon>
  521. </Compile>
  522. <Compile Include="FunctionCode\Employee\Employee_ChooseUserToGroup.cs">
  523. <SubType>Form</SubType>
  524. </Compile>
  525. <Compile Include="FunctionCode\Employee\Employee_ChooseUserToGroup.Designer.cs">
  526. <DependentUpon>Employee_ChooseUserToGroup.cs</DependentUpon>
  527. </Compile>
  528. <Compile Include="FunctionCode\Employee\Employee_Data.cs">
  529. <SubType>Form</SubType>
  530. </Compile>
  531. <Compile Include="FunctionCode\Employee\Employee_Data.Designer.cs">
  532. <DependentUpon>Employee_Data.cs</DependentUpon>
  533. </Compile>
  534. <Compile Include="FunctionCode\Employee\Employee_Group.cs">
  535. <SubType>Form</SubType>
  536. </Compile>
  537. <Compile Include="FunctionCode\Employee\Employee_Group.Designer.cs">
  538. <DependentUpon>Employee_Group.cs</DependentUpon>
  539. </Compile>
  540. <Compile Include="FunctionCode\Employee\Employee_NewGroup.cs">
  541. <SubType>Form</SubType>
  542. </Compile>
  543. <Compile Include="FunctionCode\Employee\Employee_NewGroup.Designer.cs">
  544. <DependentUpon>Employee_NewGroup.cs</DependentUpon>
  545. </Compile>
  546. <Compile Include="FunctionCode\Employee\Employee_Power.cs">
  547. <SubType>Form</SubType>
  548. </Compile>
  549. <Compile Include="FunctionCode\Employee\Employee_Power.Designer.cs">
  550. <DependentUpon>Employee_Power.cs</DependentUpon>
  551. </Compile>
  552. <Compile Include="FunctionCode\Employee\Employee_PowerSarch.cs">
  553. <SubType>Form</SubType>
  554. </Compile>
  555. <Compile Include="FunctionCode\Employee\Employee_PowerSarch.Designer.cs">
  556. <DependentUpon>Employee_PowerSarch.cs</DependentUpon>
  557. </Compile>
  558. <Compile Include="FunctionCode\Make\Make_CollectElec.cs">
  559. <SubType>Form</SubType>
  560. </Compile>
  561. <Compile Include="FunctionCode\Make\Make_CollectElec.Designer.cs">
  562. <DependentUpon>Make_CollectElec.cs</DependentUpon>
  563. </Compile>
  564. <Compile Include="FunctionCode\Make\Make_ColorBoxLoadPrintBZ.cs">
  565. <SubType>Form</SubType>
  566. </Compile>
  567. <Compile Include="FunctionCode\Make\Make_ColorBoxLoadPrintBZ.Designer.cs">
  568. <DependentUpon>Make_ColorBoxLoadPrintBZ.cs</DependentUpon>
  569. </Compile>
  570. <Compile Include="FunctionCode\Make\Make_FeedingCollectionCombineFix.cs">
  571. <SubType>Form</SubType>
  572. </Compile>
  573. <Compile Include="FunctionCode\Make\Make_FeedingCollectionCombineFix.Designer.cs">
  574. <DependentUpon>Make_FeedingCollectionCombineFix.cs</DependentUpon>
  575. </Compile>
  576. <Compile Include="FunctionCode\Make\Make_FeedingCollectionCombine.cs">
  577. <SubType>Form</SubType>
  578. </Compile>
  579. <Compile Include="FunctionCode\Make\Make_FeedingCollectionCombine.Designer.cs">
  580. <DependentUpon>Make_FeedingCollectionCombine.cs</DependentUpon>
  581. </Compile>
  582. <Compile Include="FunctionCode\Make\Make_GetTestFileData.cs">
  583. <SubType>Form</SubType>
  584. </Compile>
  585. <Compile Include="FunctionCode\Make\Make_GetTestFileData.Designer.cs">
  586. <DependentUpon>Make_GetTestFileData.cs</DependentUpon>
  587. </Compile>
  588. <Compile Include="FunctionCode\Make\Make_ReadWriteInfo.cs">
  589. <SubType>Form</SubType>
  590. </Compile>
  591. <Compile Include="FunctionCode\Make\Make_ReadWriteInfo.Designer.cs">
  592. <DependentUpon>Make_ReadWriteInfo.cs</DependentUpon>
  593. </Compile>
  594. <Compile Include="FunctionCode\Make\Make_InfoCheck.cs">
  595. <SubType>Form</SubType>
  596. </Compile>
  597. <Compile Include="FunctionCode\Make\Make_InfoCheck.Designer.cs">
  598. <DependentUpon>Make_InfoCheck.cs</DependentUpon>
  599. </Compile>
  600. <Compile Include="FunctionCode\Make\Make_PreFeedingCollection.cs">
  601. <SubType>Form</SubType>
  602. </Compile>
  603. <Compile Include="FunctionCode\Make\Make_PreFeedingCollection.Designer.cs">
  604. <DependentUpon>Make_PreFeedingCollection.cs</DependentUpon>
  605. </Compile>
  606. <Compile Include="FunctionCode\Make\Make_SeqTransformPrint.cs">
  607. <SubType>Form</SubType>
  608. </Compile>
  609. <Compile Include="FunctionCode\Make\Make_SeqTransformPrint.Designer.cs">
  610. <DependentUpon>Make_SeqTransformPrint.cs</DependentUpon>
  611. </Compile>
  612. <Compile Include="FunctionCode\Make\Make_SmtTestCollection.cs">
  613. <SubType>Form</SubType>
  614. </Compile>
  615. <Compile Include="FunctionCode\Make\Make_SmtTestCollection.Designer.cs">
  616. <DependentUpon>Make_SmtTestCollection.cs</DependentUpon>
  617. </Compile>
  618. <Compile Include="FunctionCode\Packing\Packing_BigBoxCollection.cs">
  619. <SubType>Form</SubType>
  620. </Compile>
  621. <Compile Include="FunctionCode\Packing\Packing_BigBoxCollection.Designer.cs">
  622. <DependentUpon>Packing_BigBoxCollection.cs</DependentUpon>
  623. </Compile>
  624. <Compile Include="FunctionCode\Packing\Packing_BigBoxWeight.cs">
  625. <SubType>Form</SubType>
  626. </Compile>
  627. <Compile Include="FunctionCode\Packing\Packing_BigBoxWeight.Designer.cs">
  628. <DependentUpon>Packing_BigBoxWeight.cs</DependentUpon>
  629. </Compile>
  630. <Compile Include="FunctionCode\Packing\Packing_CartonBoxSNWeigh.cs">
  631. <SubType>Form</SubType>
  632. </Compile>
  633. <Compile Include="FunctionCode\Packing\Packing_CartonBoxSNWeigh.Designer.cs">
  634. <DependentUpon>Packing_CartonBoxSNWeigh.cs</DependentUpon>
  635. </Compile>
  636. <Compile Include="FunctionCode\Packing\Packing_CartonBoxWeigh.cs">
  637. <SubType>Form</SubType>
  638. </Compile>
  639. <Compile Include="FunctionCode\Packing\Packing_CartonBoxWeigh.Designer.cs">
  640. <DependentUpon>Packing_CartonBoxWeigh.cs</DependentUpon>
  641. </Compile>
  642. <Compile Include="FunctionCode\Make\Make_CheckNoRelpace.cs">
  643. <SubType>Form</SubType>
  644. </Compile>
  645. <Compile Include="FunctionCode\Make\Make_CheckNoRelpace.Designer.cs">
  646. <DependentUpon>Make_CheckNoRelpace.cs</DependentUpon>
  647. </Compile>
  648. <Compile Include="FunctionCode\Make\Make_CollectBTMAC.cs">
  649. <SubType>Form</SubType>
  650. </Compile>
  651. <Compile Include="FunctionCode\Make\Make_CollectBTMAC.Designer.cs">
  652. <DependentUpon>Make_CollectBTMAC.cs</DependentUpon>
  653. </Compile>
  654. <Compile Include="FunctionCode\Make\Make_CollectNetCode.cs">
  655. <SubType>Form</SubType>
  656. </Compile>
  657. <Compile Include="FunctionCode\Make\Make_CollectNetCode.Designer.cs">
  658. <DependentUpon>Make_CollectNetCode.cs</DependentUpon>
  659. </Compile>
  660. <Compile Include="FunctionCode\Make\Make_ColorBoxLabelPrint.cs">
  661. <SubType>Form</SubType>
  662. </Compile>
  663. <Compile Include="FunctionCode\Make\Make_ColorBoxLabelPrint.Designer.cs">
  664. <DependentUpon>Make_ColorBoxLabelPrint.cs</DependentUpon>
  665. </Compile>
  666. <Compile Include="FunctionCode\Make\Make_ColorBoxLoadPrint.cs">
  667. <SubType>Form</SubType>
  668. </Compile>
  669. <Compile Include="FunctionCode\Make\Make_ColorBoxLoadPrint.Designer.cs">
  670. <DependentUpon>Make_ColorBoxLoadPrint.cs</DependentUpon>
  671. </Compile>
  672. <Compile Include="FunctionCode\Make\Make_ColorBoxWeigh.cs">
  673. <SubType>Form</SubType>
  674. </Compile>
  675. <Compile Include="FunctionCode\Make\Make_ColorBoxWeigh.Designer.cs">
  676. <DependentUpon>Make_ColorBoxWeigh.cs</DependentUpon>
  677. </Compile>
  678. <Compile Include="FunctionCode\Make\Make_CustomLabelPrint.cs">
  679. <SubType>Form</SubType>
  680. </Compile>
  681. <Compile Include="FunctionCode\Make\Make_CustomLabelPrint.Designer.cs">
  682. <DependentUpon>Make_CustomLabelPrint.cs</DependentUpon>
  683. </Compile>
  684. <Compile Include="FunctionCode\Make\Make_Decompose.cs">
  685. <SubType>Form</SubType>
  686. </Compile>
  687. <Compile Include="FunctionCode\Make\Make_Decompose.Designer.cs">
  688. <DependentUpon>Make_Decompose.cs</DependentUpon>
  689. </Compile>
  690. <Compile Include="FunctionCode\Make\Make_FeedingCollection.cs">
  691. <SubType>Form</SubType>
  692. </Compile>
  693. <Compile Include="FunctionCode\Make\Make_FeedingCollection.Designer.cs">
  694. <DependentUpon>Make_FeedingCollection.cs</DependentUpon>
  695. </Compile>
  696. <Compile Include="FunctionCode\Make\Make_FuselageLabelPrint.cs">
  697. <SubType>Form</SubType>
  698. </Compile>
  699. <Compile Include="FunctionCode\Make\Make_FuselageLabelPrint.Designer.cs">
  700. <DependentUpon>Make_FuselageLabelPrint.cs</DependentUpon>
  701. </Compile>
  702. <Compile Include="FunctionCode\Make\Make_GetReMakeSN.cs">
  703. <SubType>Form</SubType>
  704. </Compile>
  705. <Compile Include="FunctionCode\Make\Make_GetReMakeSN.Designer.cs">
  706. <DependentUpon>Make_GetReMakeSN.cs</DependentUpon>
  707. </Compile>
  708. <Compile Include="FunctionCode\Make\Make_ImeiCheck.cs">
  709. <SubType>Form</SubType>
  710. </Compile>
  711. <Compile Include="FunctionCode\Make\Make_ImeiCheck.Designer.cs">
  712. <DependentUpon>Make_ImeiCheck.cs</DependentUpon>
  713. </Compile>
  714. <Compile Include="FunctionCode\Make\Make_LabelCheck.cs">
  715. <SubType>Form</SubType>
  716. </Compile>
  717. <Compile Include="FunctionCode\Make\Make_LabelCheck.Designer.cs">
  718. <DependentUpon>Make_LabelCheck.cs</DependentUpon>
  719. </Compile>
  720. <Compile Include="FunctionCode\Make\Make_MakeCancelDown.cs">
  721. <SubType>Form</SubType>
  722. </Compile>
  723. <Compile Include="FunctionCode\Make\Make_MakeCancelDown.Designer.cs">
  724. <DependentUpon>Make_MakeCancelDown.cs</DependentUpon>
  725. </Compile>
  726. <Compile Include="FunctionCode\Make\Make_MakeDown.cs">
  727. <SubType>Form</SubType>
  728. </Compile>
  729. <Compile Include="FunctionCode\Make\Make_MakeDown.Designer.cs">
  730. <DependentUpon>Make_MakeDown.cs</DependentUpon>
  731. </Compile>
  732. <Compile Include="FunctionCode\Make\Make_NewBadCode.cs">
  733. <SubType>Form</SubType>
  734. </Compile>
  735. <Compile Include="FunctionCode\Make\Make_NewBadCode.Designer.cs">
  736. <DependentUpon>Make_NewBadCode.cs</DependentUpon>
  737. </Compile>
  738. <Compile Include="FunctionCode\Make\Make_NewBadCode_DE.cs">
  739. <SubType>Form</SubType>
  740. </Compile>
  741. <Compile Include="FunctionCode\Make\Make_NewBadCode_DE.Designer.cs">
  742. <DependentUpon>Make_NewBadCode_DE.cs</DependentUpon>
  743. </Compile>
  744. <Compile Include="FunctionCode\Packing\Packing_NewBigBox.cs">
  745. <SubType>Form</SubType>
  746. </Compile>
  747. <Compile Include="FunctionCode\Packing\Packing_NewBigBox.Designer.cs">
  748. <DependentUpon>Packing_NewBigBox.cs</DependentUpon>
  749. </Compile>
  750. <Compile Include="FunctionCode\Make\Make_NewMatainInf.cs">
  751. <SubType>Form</SubType>
  752. </Compile>
  753. <Compile Include="FunctionCode\Make\Make_NewMatainInf.Designer.cs">
  754. <DependentUpon>Make_NewMatainInf.cs</DependentUpon>
  755. </Compile>
  756. <Compile Include="FunctionCode\Packing\Packing_NewPallet.cs">
  757. <SubType>Form</SubType>
  758. </Compile>
  759. <Compile Include="FunctionCode\Packing\Packing_NewPallet.Designer.cs">
  760. <DependentUpon>Packing_NewPallet.cs</DependentUpon>
  761. </Compile>
  762. <Compile Include="FunctionCode\Packing\Packing_PackageCollection.cs">
  763. <SubType>Form</SubType>
  764. </Compile>
  765. <Compile Include="FunctionCode\Packing\Packing_PackageCollection.Designer.cs">
  766. <DependentUpon>Packing_PackageCollection.cs</DependentUpon>
  767. </Compile>
  768. <Compile Include="FunctionCode\Packing\Packing_PackageCollectionWeigh.cs">
  769. <SubType>Form</SubType>
  770. </Compile>
  771. <Compile Include="FunctionCode\Packing\Packing_PackageCollectionWeigh.Designer.cs">
  772. <DependentUpon>Packing_PackageCollectionWeigh.cs</DependentUpon>
  773. </Compile>
  774. <Compile Include="FunctionCode\Packing\Packing_PalletCollection.cs">
  775. <SubType>Form</SubType>
  776. </Compile>
  777. <Compile Include="FunctionCode\Packing\Packing_PalletCollection.Designer.cs">
  778. <DependentUpon>Packing_PalletCollection.cs</DependentUpon>
  779. </Compile>
  780. <Compile Include="FunctionCode\Packing\Packing_PalletWeigh.cs">
  781. <SubType>Form</SubType>
  782. </Compile>
  783. <Compile Include="FunctionCode\Packing\Packing_PalletWeigh.Designer.cs">
  784. <DependentUpon>Packing_PalletWeigh.cs</DependentUpon>
  785. </Compile>
  786. <Compile Include="FunctionCode\Packing\Packing_PalletWeightRecord.cs">
  787. <SubType>Form</SubType>
  788. </Compile>
  789. <Compile Include="FunctionCode\Packing\Packing_PalletWeightRecord.Designer.cs">
  790. <DependentUpon>Packing_PalletWeightRecord.cs</DependentUpon>
  791. </Compile>
  792. <Compile Include="FunctionCode\Packing\Packing_PalletWightCollection.cs">
  793. <SubType>Form</SubType>
  794. </Compile>
  795. <Compile Include="FunctionCode\Packing\Packing_PalletWightCollection.Designer.cs">
  796. <DependentUpon>Packing_PalletWightCollection.cs</DependentUpon>
  797. </Compile>
  798. <Compile Include="FunctionCode\Make\Make_PositionStock.cs">
  799. <SubType>Form</SubType>
  800. </Compile>
  801. <Compile Include="FunctionCode\Make\Make_PositionStock.Designer.cs">
  802. <DependentUpon>Make_PositionStock.cs</DependentUpon>
  803. </Compile>
  804. <Compile Include="FunctionCode\Make\Make_Repair.cs">
  805. <SubType>Form</SubType>
  806. </Compile>
  807. <Compile Include="FunctionCode\Make\Make_Repair.Designer.cs">
  808. <DependentUpon>Make_Repair.cs</DependentUpon>
  809. </Compile>
  810. <Compile Include="FunctionCode\Make\Make_RePrintLabel.cs">
  811. <SubType>Form</SubType>
  812. </Compile>
  813. <Compile Include="FunctionCode\Make\Make_RePrintLabel.Designer.cs">
  814. <DependentUpon>Make_RePrintLabel.cs</DependentUpon>
  815. </Compile>
  816. <Compile Include="FunctionCode\Make\Make_SeqProgramTransform.cs">
  817. <SubType>Form</SubType>
  818. </Compile>
  819. <Compile Include="FunctionCode\Make\Make_SeqProgramTransform.Designer.cs">
  820. <DependentUpon>Make_SeqProgramTransform.cs</DependentUpon>
  821. </Compile>
  822. <Compile Include="FunctionCode\Make\Make_SeqTransform.cs">
  823. <SubType>Form</SubType>
  824. </Compile>
  825. <Compile Include="FunctionCode\Make\Make_SeqTransform.Designer.cs">
  826. <DependentUpon>Make_SeqTransform.cs</DependentUpon>
  827. </Compile>
  828. <Compile Include="FunctionCode\Make\Make_SpecialCartonPack.cs">
  829. <SubType>Form</SubType>
  830. </Compile>
  831. <Compile Include="FunctionCode\Make\Make_SpecialCartonPack.Designer.cs">
  832. <DependentUpon>Make_SpecialCartonPack.cs</DependentUpon>
  833. </Compile>
  834. <Compile Include="FunctionCode\Make\Make_SplitBoard.cs">
  835. <SubType>Form</SubType>
  836. </Compile>
  837. <Compile Include="FunctionCode\Make\Make_SplitBoard.Designer.cs">
  838. <DependentUpon>Make_SplitBoard.cs</DependentUpon>
  839. </Compile>
  840. <Compile Include="FunctionCode\Make\Make_TestCollection.cs">
  841. <SubType>Form</SubType>
  842. </Compile>
  843. <Compile Include="FunctionCode\Make\Make_TestCollection.Designer.cs">
  844. <DependentUpon>Make_TestCollection.cs</DependentUpon>
  845. </Compile>
  846. <Compile Include="FunctionCode\Make\Make_UpdateCollectCode.cs">
  847. <SubType>Form</SubType>
  848. </Compile>
  849. <Compile Include="FunctionCode\Make\Make_UpdateCollectCode.Designer.cs">
  850. <DependentUpon>Make_UpdateCollectCode.cs</DependentUpon>
  851. </Compile>
  852. <Compile Include="FunctionCode\OQC\OQC_BatchResultJudge.cs">
  853. <SubType>Form</SubType>
  854. </Compile>
  855. <Compile Include="FunctionCode\OQC\OQC_BatchResultJudge.Designer.cs">
  856. <DependentUpon>OQC_BatchResultJudge.cs</DependentUpon>
  857. </Compile>
  858. <Compile Include="FunctionCode\OQC\OQC_CheckNoSplit.cs">
  859. <SubType>Form</SubType>
  860. </Compile>
  861. <Compile Include="FunctionCode\OQC\OQC_CheckNoSplit.Designer.cs">
  862. <DependentUpon>OQC_CheckNoSplit.cs</DependentUpon>
  863. </Compile>
  864. <Compile Include="FunctionCode\OQC\OQC_Inspection.cs">
  865. <SubType>Form</SubType>
  866. </Compile>
  867. <Compile Include="FunctionCode\OQC\OQC_Inspection.Designer.cs">
  868. <DependentUpon>OQC_Inspection.cs</DependentUpon>
  869. </Compile>
  870. <Compile Include="FunctionCode\OQC\OQC_PlanMaintain.cs">
  871. <SubType>Form</SubType>
  872. </Compile>
  873. <Compile Include="FunctionCode\OQC\OQC_PlanMaintain.designer.cs">
  874. <DependentUpon>OQC_PlanMaintain.cs</DependentUpon>
  875. </Compile>
  876. <Compile Include="FunctionCode\OQC\OQC_SamplingDataCollection.cs">
  877. <SubType>Form</SubType>
  878. </Compile>
  879. <Compile Include="FunctionCode\OQC\OQC_SamplingDataCollection.Designer.cs">
  880. <DependentUpon>OQC_SamplingDataCollection.cs</DependentUpon>
  881. </Compile>
  882. <Compile Include="FunctionCode\Packing\Packing_CartonSplit.cs">
  883. <SubType>Form</SubType>
  884. </Compile>
  885. <Compile Include="FunctionCode\Packing\Packing_CartonSplit.Designer.cs">
  886. <DependentUpon>Packing_CartonSplit.cs</DependentUpon>
  887. </Compile>
  888. <Compile Include="FunctionCode\Packing\Packing_CartonTransfer.cs">
  889. <SubType>Form</SubType>
  890. </Compile>
  891. <Compile Include="FunctionCode\Packing\Packing_CartonTransfer.Designer.cs">
  892. <DependentUpon>Packing_CartonTransfer.cs</DependentUpon>
  893. </Compile>
  894. <Compile Include="FunctionCode\Packing\Packing_ProdWeightSet.cs">
  895. <SubType>Form</SubType>
  896. </Compile>
  897. <Compile Include="FunctionCode\Packing\Packing_ProdWeightSet.Designer.cs">
  898. <DependentUpon>Packing_ProdWeightSet.cs</DependentUpon>
  899. </Compile>
  900. <Compile Include="FunctionCode\Query\Query_ExeProgress.cs">
  901. <SubType>Form</SubType>
  902. </Compile>
  903. <Compile Include="FunctionCode\Query\Query_ExeProgress.Designer.cs">
  904. <DependentUpon>Query_ExeProgress.cs</DependentUpon>
  905. </Compile>
  906. <Compile Include="FunctionCode\Query\Query_MakeInf.cs">
  907. <SubType>Form</SubType>
  908. </Compile>
  909. <Compile Include="FunctionCode\Query\Query_MakeInf.Designer.cs">
  910. <DependentUpon>Query_MakeInf.cs</DependentUpon>
  911. </Compile>
  912. <Compile Include="FunctionCode\Query\Query_MakeInfo.cs">
  913. <SubType>Form</SubType>
  914. </Compile>
  915. <Compile Include="FunctionCode\Query\Query_MakeInfo.Designer.cs">
  916. <DependentUpon>Query_MakeInfo.cs</DependentUpon>
  917. </Compile>
  918. <Compile Include="FunctionCode\Query\Query_OnlineTraceBack.cs">
  919. <SubType>Form</SubType>
  920. </Compile>
  921. <Compile Include="FunctionCode\Query\Query_OnlineTraceBack.Designer.cs">
  922. <DependentUpon>Query_OnlineTraceBack.cs</DependentUpon>
  923. </Compile>
  924. <Compile Include="FunctionCode\Query\Query_ProductTraceBack.cs">
  925. <SubType>Form</SubType>
  926. </Compile>
  927. <Compile Include="FunctionCode\Query\Query_ProductTraceBack.Designer.cs">
  928. <DependentUpon>Query_ProductTraceBack.cs</DependentUpon>
  929. </Compile>
  930. <Compile Include="FunctionCode\Query\Query_DateRate.cs">
  931. <SubType>Form</SubType>
  932. </Compile>
  933. <Compile Include="FunctionCode\Query\Query_DateRate.Designer.cs">
  934. <DependentUpon>Query_DateRate.cs</DependentUpon>
  935. </Compile>
  936. <Compile Include="FunctionCode\Query\Query_SN.cs">
  937. <SubType>Form</SubType>
  938. </Compile>
  939. <Compile Include="FunctionCode\Query\Query_SN.Designer.cs">
  940. <DependentUpon>Query_SN.cs</DependentUpon>
  941. </Compile>
  942. <Compile Include="FunctionCode\Query\Query_SOP.cs">
  943. <SubType>Form</SubType>
  944. </Compile>
  945. <Compile Include="FunctionCode\Query\Query_SOP.Designer.cs">
  946. <DependentUpon>Query_SOP.cs</DependentUpon>
  947. </Compile>
  948. <Compile Include="FunctionCode\Query\Query_SpecialReport.cs">
  949. <SubType>Form</SubType>
  950. </Compile>
  951. <Compile Include="FunctionCode\Query\Query_SpecialReport.Designer.cs">
  952. <DependentUpon>Query_SpecialReport.cs</DependentUpon>
  953. </Compile>
  954. <Compile Include="FunctionCode\SMT\SMT_ChangeLine.cs">
  955. <SubType>Form</SubType>
  956. </Compile>
  957. <Compile Include="FunctionCode\SMT\SMT_ChangeLine.Designer.cs">
  958. <DependentUpon>SMT_ChangeLine.cs</DependentUpon>
  959. </Compile>
  960. <Compile Include="FunctionCode\SMT\SMT_Feeding.cs">
  961. <SubType>Form</SubType>
  962. </Compile>
  963. <Compile Include="FunctionCode\SMT\SMT_Feeding.Designer.cs">
  964. <DependentUpon>SMT_Feeding.cs</DependentUpon>
  965. </Compile>
  966. <Compile Include="FunctionCode\SMT\SMT_MakeShift.cs">
  967. <SubType>Form</SubType>
  968. </Compile>
  969. <Compile Include="FunctionCode\SMT\SMT_MakeShift.Designer.cs">
  970. <DependentUpon>SMT_MakeShift.cs</DependentUpon>
  971. </Compile>
  972. <Compile Include="FunctionCode\SMT\SMT_MaterialsWaring.cs">
  973. <SubType>Form</SubType>
  974. </Compile>
  975. <Compile Include="FunctionCode\SMT\SMT_MaterialsWaring.Designer.cs">
  976. <DependentUpon>SMT_MaterialsWaring.cs</DependentUpon>
  977. </Compile>
  978. <Compile Include="FunctionCode\SMT\SMT_PreMaterials.cs">
  979. <SubType>Form</SubType>
  980. </Compile>
  981. <Compile Include="FunctionCode\SMT\SMT_PreMaterials.Designer.cs">
  982. <DependentUpon>SMT_PreMaterials.cs</DependentUpon>
  983. </Compile>
  984. <Compile Include="FunctionCode\SMT\SMT_WaringSetting.cs">
  985. <SubType>Form</SubType>
  986. </Compile>
  987. <Compile Include="FunctionCode\SMT\SMT_WaringSetting.Designer.cs">
  988. <DependentUpon>SMT_WaringSetting.cs</DependentUpon>
  989. </Compile>
  990. <Compile Include="FunctionCode\Special\Special_AfterSaleOut.cs">
  991. <SubType>Form</SubType>
  992. </Compile>
  993. <Compile Include="FunctionCode\Special\Special_AfterSaleOut.Designer.cs">
  994. <DependentUpon>Special_AfterSaleOut.cs</DependentUpon>
  995. </Compile>
  996. <Compile Include="FunctionCode\Special\Special_AfterSaleIn.cs">
  997. <SubType>Form</SubType>
  998. </Compile>
  999. <Compile Include="FunctionCode\Special\Special_AfterSaleIn.Designer.cs">
  1000. <DependentUpon>Special_AfterSaleIn.cs</DependentUpon>
  1001. </Compile>
  1002. <Compile Include="FunctionCode\Special\Special_BoxSplit.cs">
  1003. <SubType>Form</SubType>
  1004. </Compile>
  1005. <Compile Include="FunctionCode\Special\Special_BoxSplit.Designer.cs">
  1006. <DependentUpon>Special_BoxSplit.cs</DependentUpon>
  1007. </Compile>
  1008. <Compile Include="FunctionCode\Special\Special_CancelCollection.cs">
  1009. <SubType>Form</SubType>
  1010. </Compile>
  1011. <Compile Include="FunctionCode\Special\Special_CancelCollection.Designer.cs">
  1012. <DependentUpon>Special_CancelCollection.cs</DependentUpon>
  1013. </Compile>
  1014. <Compile Include="FunctionCode\Special\Special_CancelProdinout.cs">
  1015. <SubType>Form</SubType>
  1016. </Compile>
  1017. <Compile Include="FunctionCode\Special\Special_CancelProdinout.Designer.cs">
  1018. <DependentUpon>Special_CancelProdinout.cs</DependentUpon>
  1019. </Compile>
  1020. <Compile Include="FunctionCode\Special\Special_MendLabel.cs">
  1021. <SubType>Form</SubType>
  1022. </Compile>
  1023. <Compile Include="FunctionCode\Special\Special_MendLabel.Designer.cs">
  1024. <DependentUpon>Special_MendLabel.cs</DependentUpon>
  1025. </Compile>
  1026. <Compile Include="FunctionCode\Special\Special_MixPackage.cs">
  1027. <SubType>Form</SubType>
  1028. </Compile>
  1029. <Compile Include="FunctionCode\Special\Special_MixPackage.Designer.cs">
  1030. <DependentUpon>Special_MixPackage.cs</DependentUpon>
  1031. </Compile>
  1032. <Compile Include="FunctionCode\Special\Special_QCForce.cs">
  1033. <SubType>Form</SubType>
  1034. </Compile>
  1035. <Compile Include="FunctionCode\Special\Special_QCForce.Designer.cs">
  1036. <DependentUpon>Special_QCForce.cs</DependentUpon>
  1037. </Compile>
  1038. <Compile Include="FunctionCode\Special\Special_SeqTransform.cs">
  1039. <SubType>Form</SubType>
  1040. </Compile>
  1041. <Compile Include="FunctionCode\Special\Special_SeqTransform.Designer.cs">
  1042. <DependentUpon>Special_SeqTransform.cs</DependentUpon>
  1043. </Compile>
  1044. <Compile Include="FunctionCode\Stock\Sotck_StorageTransform.cs">
  1045. <SubType>Form</SubType>
  1046. </Compile>
  1047. <Compile Include="FunctionCode\Stock\Sotck_StorageTransform.Designer.cs">
  1048. <DependentUpon>Sotck_StorageTransform.cs</DependentUpon>
  1049. </Compile>
  1050. <Compile Include="FunctionCode\Stock\Stock_BarcodeInf.cs">
  1051. <SubType>Form</SubType>
  1052. </Compile>
  1053. <Compile Include="FunctionCode\Stock\Stock_BarcodeInf.Designer.cs">
  1054. <DependentUpon>Stock_BarcodeInf.cs</DependentUpon>
  1055. </Compile>
  1056. <Compile Include="FunctionCode\Stock\Stock_Combine.cs">
  1057. <SubType>Form</SubType>
  1058. </Compile>
  1059. <Compile Include="FunctionCode\Stock\Stock_Combine.Designer.cs">
  1060. <DependentUpon>Stock_Combine.cs</DependentUpon>
  1061. </Compile>
  1062. <Compile Include="FunctionCode\Stock\Stock_Split.cs">
  1063. <SubType>Form</SubType>
  1064. </Compile>
  1065. <Compile Include="FunctionCode\Stock\Stock_Split.Designer.cs">
  1066. <DependentUpon>Stock_Split.cs</DependentUpon>
  1067. </Compile>
  1068. <Compile Include="FunctionCode\Stock\Stock_WarehouseTransform.cs">
  1069. <SubType>Form</SubType>
  1070. </Compile>
  1071. <Compile Include="FunctionCode\Stock\Stock_WarehouseTransform.Designer.cs">
  1072. <DependentUpon>Stock_WarehouseTransform.cs</DependentUpon>
  1073. </Compile>
  1074. <Compile Include="FunctionCode\SystemSetting\SystemSetting_LabelMaintain.cs">
  1075. <SubType>Form</SubType>
  1076. </Compile>
  1077. <Compile Include="FunctionCode\SystemSetting\SystemSetting_LabelMaintain.designer.cs">
  1078. <DependentUpon>SystemSetting_LabelMaintain.cs</DependentUpon>
  1079. </Compile>
  1080. <Compile Include="FunctionCode\SystemSetting\SystemSetting_PrinterTest.cs">
  1081. <SubType>Form</SubType>
  1082. </Compile>
  1083. <Compile Include="FunctionCode\SystemSetting\SystemSetting_PrinterTest.designer.cs">
  1084. <DependentUpon>SystemSetting_PrinterTest.cs</DependentUpon>
  1085. </Compile>
  1086. <Compile Include="FunctionCode\SystemSetting\SystemSetting_ScaleTest.cs">
  1087. <SubType>Form</SubType>
  1088. </Compile>
  1089. <Compile Include="FunctionCode\SystemSetting\SystemSetting_ScaleTest.Designer.cs">
  1090. <DependentUpon>SystemSetting_ScaleTest.cs</DependentUpon>
  1091. </Compile>
  1092. <Compile Include="FunctionCode\SystemSetting\SystemSetting_SysNav.cs">
  1093. <SubType>Form</SubType>
  1094. </Compile>
  1095. <Compile Include="FunctionCode\SystemSetting\SystemSetting_SysNav.designer.cs">
  1096. <DependentUpon>SystemSetting_SysNav.cs</DependentUpon>
  1097. </Compile>
  1098. <Compile Include="FunctionCode\SystemSetting\标签模板维护.cs">
  1099. <SubType>Form</SubType>
  1100. </Compile>
  1101. <Compile Include="FunctionCode\SystemSetting\标签模板维护.designer.cs">
  1102. <DependentUpon>标签模板维护.cs</DependentUpon>
  1103. </Compile>
  1104. <Compile Include="FunctionCode\Warehouse\Warehouse_FinishedProductIn.cs">
  1105. <SubType>Form</SubType>
  1106. </Compile>
  1107. <Compile Include="FunctionCode\Warehouse\Warehouse_FinishedProductIn.Designer.cs">
  1108. <DependentUpon>Warehouse_FinishedProductIn.cs</DependentUpon>
  1109. </Compile>
  1110. <Compile Include="FunctionCode\Warehouse\Warehouse_FinishedProductOut.cs">
  1111. <SubType>Form</SubType>
  1112. </Compile>
  1113. <Compile Include="FunctionCode\Warehouse\Warehouse_FinishedProductOut.Designer.cs">
  1114. <DependentUpon>Warehouse_FinishedProductOut.cs</DependentUpon>
  1115. </Compile>
  1116. <Compile Include="FunctionCode\Warehouse\Warehouse_In.cs">
  1117. <SubType>Form</SubType>
  1118. </Compile>
  1119. <Compile Include="FunctionCode\Warehouse\Warehouse_In.Designer.cs">
  1120. <DependentUpon>Warehouse_In.cs</DependentUpon>
  1121. </Compile>
  1122. <Compile Include="FunctionCode\Warehouse\Warehouse_NewPiInOut.cs">
  1123. <SubType>Form</SubType>
  1124. </Compile>
  1125. <Compile Include="FunctionCode\Warehouse\Warehouse_NewPiInOut.Designer.cs">
  1126. <DependentUpon>Warehouse_NewPiInOut.cs</DependentUpon>
  1127. </Compile>
  1128. <Compile Include="FunctionCode\Warehouse\Warehouse_Out.cs">
  1129. <SubType>Form</SubType>
  1130. </Compile>
  1131. <Compile Include="FunctionCode\Warehouse\Warehouse_Out.Designer.cs">
  1132. <DependentUpon>Warehouse_Out.cs</DependentUpon>
  1133. </Compile>
  1134. <Compile Include="FunctionCode\Warehouse\Warehouse_ProdDetail.cs">
  1135. <SubType>Form</SubType>
  1136. </Compile>
  1137. <Compile Include="FunctionCode\Warehouse\Warehouse_ProdDetail.Designer.cs">
  1138. <DependentUpon>Warehouse_ProdDetail.cs</DependentUpon>
  1139. </Compile>
  1140. <Compile Include="FunctionCode\Warehouse\Warehouse_ProductMakeIn.cs">
  1141. <SubType>Form</SubType>
  1142. </Compile>
  1143. <Compile Include="FunctionCode\Warehouse\Warehouse_ProductMakeIn.Designer.cs">
  1144. <DependentUpon>Warehouse_ProductMakeIn.cs</DependentUpon>
  1145. </Compile>
  1146. <Compile Include="Login.cs">
  1147. <SubType>Form</SubType>
  1148. </Compile>
  1149. <Compile Include="Login.Designer.cs">
  1150. <DependentUpon>Login.cs</DependentUpon>
  1151. </Compile>
  1152. <Compile Include="Main.cs">
  1153. <SubType>Form</SubType>
  1154. </Compile>
  1155. <Compile Include="Main.Designer.cs">
  1156. <DependentUpon>Main.cs</DependentUpon>
  1157. </Compile>
  1158. <Compile Include="Program.cs" />
  1159. <Compile Include="Properties\AssemblyInfo.cs" />
  1160. <Compile Include="Properties\Resources.Designer.cs">
  1161. <AutoGen>True</AutoGen>
  1162. <DesignTime>True</DesignTime>
  1163. <DependentUpon>Resources.resx</DependentUpon>
  1164. </Compile>
  1165. <Compile Include="Properties\Settings.Designer.cs">
  1166. <AutoGen>True</AutoGen>
  1167. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  1168. <DependentUpon>Settings.settings</DependentUpon>
  1169. </Compile>
  1170. <Compile Include="PublicForm\ChangePwd.cs">
  1171. <SubType>Form</SubType>
  1172. </Compile>
  1173. <Compile Include="PublicForm\ChangePwd.Designer.cs">
  1174. <DependentUpon>ChangePwd.cs</DependentUpon>
  1175. </Compile>
  1176. <Compile Include="PublicForm\DataChooseForm.cs">
  1177. <SubType>Form</SubType>
  1178. </Compile>
  1179. <Compile Include="PublicForm\DataChooseForm.Designer.cs">
  1180. <DependentUpon>DataChooseForm.cs</DependentUpon>
  1181. </Compile>
  1182. <Compile Include="PublicForm\SetCheck.cs">
  1183. <SubType>Form</SubType>
  1184. </Compile>
  1185. <Compile Include="PublicForm\SetCheck.Designer.cs">
  1186. <DependentUpon>SetCheck.cs</DependentUpon>
  1187. </Compile>
  1188. <Compile Include="PublicForm\SetLoadingWindow.cs">
  1189. <SubType>Form</SubType>
  1190. </Compile>
  1191. <Compile Include="PublicForm\SetLoadingWindow.Designer.cs">
  1192. <DependentUpon>SetLoadingWindow.cs</DependentUpon>
  1193. </Compile>
  1194. <Compile Include="PublicMethod\AssemblyHelper.cs" />
  1195. <Compile Include="PublicMethod\AutoSizeControl.cs" />
  1196. <Compile Include="PublicMethod\AutoSizeFormClass.cs" />
  1197. <Compile Include="PublicMethod\BaseUtil.cs" />
  1198. <Compile Include="PublicMethod\DrawHelper.cs" />
  1199. <Compile Include="PublicMethod\Encryption.cs" />
  1200. <Compile Include="PublicMethod\ExceptionHandler.cs" />
  1201. <Compile Include="PublicMethod\ftpOperater.cs" />
  1202. <Compile Include="PublicMethod\GlobalEventsHandler.cs" />
  1203. <Compile Include="PublicMethod\LogicHandler.cs" />
  1204. <Compile Include="PublicMethod\LogManager.cs" />
  1205. <Compile Include="PublicMethod\LogStringBuilder.cs" />
  1206. <Compile Include="PublicMethod\ModeBusTCPServer.cs" />
  1207. <Compile Include="PublicMethod\Print.cs" />
  1208. <Compile Include="PublicMethod\ReadDataFromSerialPort.cs" />
  1209. <EmbeddedResource Include="CustomControl\AccordionMenu\AccordionMenu.resx">
  1210. <DependentUpon>AccordionMenu.cs</DependentUpon>
  1211. </EmbeddedResource>
  1212. <EmbeddedResource Include="CustomControl\AccordionMenu\NavagationBar.resx">
  1213. <DependentUpon>NavagationBar.cs</DependentUpon>
  1214. </EmbeddedResource>
  1215. <EmbeddedResource Include="CustomControl\BaseForm\BaseForm.resx">
  1216. <DependentUpon>BaseForm.cs</DependentUpon>
  1217. </EmbeddedResource>
  1218. <EmbeddedResource Include="CustomControl\ClickPicBox\ClickPicBox.resx">
  1219. <DependentUpon>ClickPicBox.cs</DependentUpon>
  1220. </EmbeddedResource>
  1221. <EmbeddedResource Include="CustomControl\ComBoxWithFocus\ComboxWithTip.resx">
  1222. <DependentUpon>ComboxWithTip.cs</DependentUpon>
  1223. </EmbeddedResource>
  1224. <EmbeddedResource Include="CustomControl\ComBoxWithFocus\PrinterCombox.resx">
  1225. <DependentUpon>PrinterCombox.cs</DependentUpon>
  1226. </EmbeddedResource>
  1227. <EmbeddedResource Include="CustomControl\ComBoxWithFocus\SerialPortCombox.resx">
  1228. <DependentUpon>SerialPortCombox.cs</DependentUpon>
  1229. </EmbeddedResource>
  1230. <EmbeddedResource Include="CustomControl\CustomCheckBox\AutoPrintCheckBox.resx">
  1231. <DependentUpon>AutoPrintCheckBox.cs</DependentUpon>
  1232. </EmbeddedResource>
  1233. <EmbeddedResource Include="CustomControl\CustomCheckBox\LockCheckBox.resx">
  1234. <DependentUpon>LockCheckBox.cs</DependentUpon>
  1235. </EmbeddedResource>
  1236. <EmbeddedResource Include="CustomControl\CustomCheckBox\ReSetCheckBox.resx">
  1237. <DependentUpon>ReSetCheckBox.cs</DependentUpon>
  1238. </EmbeddedResource>
  1239. <EmbeddedResource Include="CustomControl\CustomTabControl\CustomTabControl.resx">
  1240. <DependentUpon>CustomTabControl.cs</DependentUpon>
  1241. </EmbeddedResource>
  1242. <EmbeddedResource Include="CustomControl\DataGrid_View\DataGridViewExpand.resx">
  1243. <DependentUpon>DataGridViewExpand.cs</DependentUpon>
  1244. </EmbeddedResource>
  1245. <EmbeddedResource Include="CustomControl\DataGrid_View\DataGridViewWithCheckBox.resx">
  1246. <DependentUpon>DataGridViewWithCheckBox.cs</DependentUpon>
  1247. </EmbeddedResource>
  1248. <EmbeddedResource Include="CustomControl\DataGrid_View\DataGridViewWithFilter.resx">
  1249. <DependentUpon>DataGridViewWithFilter.cs</DependentUpon>
  1250. </EmbeddedResource>
  1251. <EmbeddedResource Include="CustomControl\DataGrid_View\DataGridViewWithSerialNum.resx">
  1252. <DependentUpon>DataGridViewWithSerialNum.cs</DependentUpon>
  1253. </EmbeddedResource>
  1254. <EmbeddedResource Include="CustomControl\HeadBar\HeadBar.resx">
  1255. <DependentUpon>HeadBar.cs</DependentUpon>
  1256. </EmbeddedResource>
  1257. <EmbeddedResource Include="CustomControl\HeadBar\HeadBar.zu.resx">
  1258. <DependentUpon>HeadBar.cs</DependentUpon>
  1259. </EmbeddedResource>
  1260. <EmbeddedResource Include="CustomControl\Pagination\Pagination.resx">
  1261. <DependentUpon>Pagination.cs</DependentUpon>
  1262. </EmbeddedResource>
  1263. <EmbeddedResource Include="CustomControl\Pagination\PaginationDbFind.resx">
  1264. <DependentUpon>PaginationDbFind.cs</DependentUpon>
  1265. </EmbeddedResource>
  1266. <EmbeddedResource Include="CustomControl\PowerControlForm\PowerControlForm.resx">
  1267. <DependentUpon>PowerControlForm.cs</DependentUpon>
  1268. </EmbeddedResource>
  1269. <EmbeddedResource Include="CustomControl\ProcessBar\ProcessBar.resx">
  1270. <DependentUpon>ProcessBar.cs</DependentUpon>
  1271. </EmbeddedResource>
  1272. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\BlurSearch.resx">
  1273. <DependentUpon>BlurSearch.cs</DependentUpon>
  1274. </EmbeddedResource>
  1275. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\EnterTextBox.resx">
  1276. <DependentUpon>EnterTextBox.cs</DependentUpon>
  1277. </EmbeddedResource>
  1278. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\MaCodeSearchTextBox.resx">
  1279. <DependentUpon>MaCodeSearchTextBox.cs</DependentUpon>
  1280. </EmbeddedResource>
  1281. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\MaCodeTextBox.resx">
  1282. <DependentUpon>MaCodeTextBox.cs</DependentUpon>
  1283. </EmbeddedResource>
  1284. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\NumOnlyTextBox.resx">
  1285. <DependentUpon>NumOnlyTextBox.cs</DependentUpon>
  1286. </EmbeddedResource>
  1287. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\RoundTextBox.resx">
  1288. <DependentUpon>RoundTextBox.cs</DependentUpon>
  1289. </EmbeddedResource>
  1290. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\SearchTextBox.resx">
  1291. <DependentUpon>SearchTextBox.cs</DependentUpon>
  1292. </EmbeddedResource>
  1293. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\SNCodeEnterTextBox.resx">
  1294. <DependentUpon>SNCodeEnterTextBox.cs</DependentUpon>
  1295. </EmbeddedResource>
  1296. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\SnCollectionBox.resx">
  1297. <DependentUpon>SnCollectionBox.cs</DependentUpon>
  1298. </EmbeddedResource>
  1299. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\SourceStepCountPre.resx">
  1300. <DependentUpon>SourceStepCountPre.cs</DependentUpon>
  1301. </EmbeddedResource>
  1302. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\SourceStepCount.resx">
  1303. <DependentUpon>SourceStepCount.cs</DependentUpon>
  1304. </EmbeddedResource>
  1305. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\TextAreaForm.resx">
  1306. <DependentUpon>TextAreaForm.cs</DependentUpon>
  1307. </EmbeddedResource>
  1308. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\TextBoxGeneratePaCode.resx">
  1309. <DependentUpon>TextBoxGeneratePaCode.cs</DependentUpon>
  1310. </EmbeddedResource>
  1311. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\TextBoxNumOnly.resx">
  1312. <DependentUpon>TextBoxNumOnly.cs</DependentUpon>
  1313. </EmbeddedResource>
  1314. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\TextBoxWithPlaceHolder.resx">
  1315. <DependentUpon>TextBoxWithPlaceHolder.cs</DependentUpon>
  1316. </EmbeddedResource>
  1317. <EmbeddedResource Include="CustomControl\TextBoxWithIcon\TextBoxWithTextArea.resx">
  1318. <DependentUpon>TextBoxWithTextArea.cs</DependentUpon>
  1319. </EmbeddedResource>
  1320. <EmbeddedResource Include="CustomControl\TimePickerWithCombo\TimePickerWithCombo.resx">
  1321. <DependentUpon>TimePickerWithCombo.cs</DependentUpon>
  1322. </EmbeddedResource>
  1323. <EmbeddedResource Include="CustomControl\ValueLabel\ValueLabel.resx">
  1324. <DependentUpon>ValueLabel.cs</DependentUpon>
  1325. </EmbeddedResource>
  1326. <EmbeddedResource Include="DbFind.resx">
  1327. <DependentUpon>DbFind.cs</DependentUpon>
  1328. </EmbeddedResource>
  1329. <EmbeddedResource Include="Form1.resx">
  1330. <DependentUpon>Form1.cs</DependentUpon>
  1331. </EmbeddedResource>
  1332. <EmbeddedResource Include="FunctionCode\Employee\Employee_ChooseUserToGroup.resx">
  1333. <DependentUpon>Employee_ChooseUserToGroup.cs</DependentUpon>
  1334. </EmbeddedResource>
  1335. <EmbeddedResource Include="FunctionCode\Employee\Employee_Data.resx">
  1336. <DependentUpon>Employee_Data.cs</DependentUpon>
  1337. </EmbeddedResource>
  1338. <EmbeddedResource Include="FunctionCode\Employee\Employee_Group.resx">
  1339. <DependentUpon>Employee_Group.cs</DependentUpon>
  1340. </EmbeddedResource>
  1341. <EmbeddedResource Include="FunctionCode\Employee\Employee_NewGroup.resx">
  1342. <DependentUpon>Employee_NewGroup.cs</DependentUpon>
  1343. </EmbeddedResource>
  1344. <EmbeddedResource Include="FunctionCode\Employee\Employee_Power.resx">
  1345. <DependentUpon>Employee_Power.cs</DependentUpon>
  1346. </EmbeddedResource>
  1347. <EmbeddedResource Include="FunctionCode\Employee\Employee_PowerSarch.resx">
  1348. <DependentUpon>Employee_PowerSarch.cs</DependentUpon>
  1349. </EmbeddedResource>
  1350. <EmbeddedResource Include="FunctionCode\Make\Make_CollectElec.resx">
  1351. <DependentUpon>Make_CollectElec.cs</DependentUpon>
  1352. </EmbeddedResource>
  1353. <EmbeddedResource Include="FunctionCode\Make\Make_ColorBoxLoadPrintBZ.resx">
  1354. <DependentUpon>Make_ColorBoxLoadPrintBZ.cs</DependentUpon>
  1355. </EmbeddedResource>
  1356. <EmbeddedResource Include="FunctionCode\Make\Make_FeedingCollectionCombineFix.resx">
  1357. <DependentUpon>Make_FeedingCollectionCombineFix.cs</DependentUpon>
  1358. </EmbeddedResource>
  1359. <EmbeddedResource Include="FunctionCode\Make\Make_FeedingCollectionCombine.resx">
  1360. <DependentUpon>Make_FeedingCollectionCombine.cs</DependentUpon>
  1361. </EmbeddedResource>
  1362. <EmbeddedResource Include="FunctionCode\Make\Make_GetTestFileData.resx">
  1363. <DependentUpon>Make_GetTestFileData.cs</DependentUpon>
  1364. </EmbeddedResource>
  1365. <EmbeddedResource Include="FunctionCode\Make\Make_ReadWriteInfo.resx">
  1366. <DependentUpon>Make_ReadWriteInfo.cs</DependentUpon>
  1367. </EmbeddedResource>
  1368. <EmbeddedResource Include="FunctionCode\Make\Make_InfoCheck.resx">
  1369. <DependentUpon>Make_InfoCheck.cs</DependentUpon>
  1370. </EmbeddedResource>
  1371. <EmbeddedResource Include="FunctionCode\Make\Make_PreFeedingCollection.resx">
  1372. <DependentUpon>Make_PreFeedingCollection.cs</DependentUpon>
  1373. </EmbeddedResource>
  1374. <EmbeddedResource Include="FunctionCode\Make\Make_SeqTransformPrint.resx">
  1375. <DependentUpon>Make_SeqTransformPrint.cs</DependentUpon>
  1376. </EmbeddedResource>
  1377. <EmbeddedResource Include="FunctionCode\Make\Make_SmtTestCollection.resx">
  1378. <DependentUpon>Make_SmtTestCollection.cs</DependentUpon>
  1379. </EmbeddedResource>
  1380. <EmbeddedResource Include="FunctionCode\Packing\Packing_BigBoxCollection.resx">
  1381. <DependentUpon>Packing_BigBoxCollection.cs</DependentUpon>
  1382. </EmbeddedResource>
  1383. <EmbeddedResource Include="FunctionCode\Packing\Packing_BigBoxWeight.resx">
  1384. <DependentUpon>Packing_BigBoxWeight.cs</DependentUpon>
  1385. </EmbeddedResource>
  1386. <EmbeddedResource Include="FunctionCode\Packing\Packing_CartonBoxSNWeigh.resx">
  1387. <DependentUpon>Packing_CartonBoxSNWeigh.cs</DependentUpon>
  1388. </EmbeddedResource>
  1389. <EmbeddedResource Include="FunctionCode\Packing\Packing_CartonBoxWeigh.resx">
  1390. <DependentUpon>Packing_CartonBoxWeigh.cs</DependentUpon>
  1391. </EmbeddedResource>
  1392. <EmbeddedResource Include="FunctionCode\Make\Make_CheckNoRelpace.resx">
  1393. <DependentUpon>Make_CheckNoRelpace.cs</DependentUpon>
  1394. </EmbeddedResource>
  1395. <EmbeddedResource Include="FunctionCode\Make\Make_CollectBTMAC.resx">
  1396. <DependentUpon>Make_CollectBTMAC.cs</DependentUpon>
  1397. </EmbeddedResource>
  1398. <EmbeddedResource Include="FunctionCode\Make\Make_CollectNetCode.resx">
  1399. <DependentUpon>Make_CollectNetCode.cs</DependentUpon>
  1400. </EmbeddedResource>
  1401. <EmbeddedResource Include="FunctionCode\Make\Make_ColorBoxLabelPrint.resx">
  1402. <DependentUpon>Make_ColorBoxLabelPrint.cs</DependentUpon>
  1403. </EmbeddedResource>
  1404. <EmbeddedResource Include="FunctionCode\Make\Make_ColorBoxLoadPrint.resx">
  1405. <DependentUpon>Make_ColorBoxLoadPrint.cs</DependentUpon>
  1406. </EmbeddedResource>
  1407. <EmbeddedResource Include="FunctionCode\Make\Make_ColorBoxWeigh.resx">
  1408. <DependentUpon>Make_ColorBoxWeigh.cs</DependentUpon>
  1409. </EmbeddedResource>
  1410. <EmbeddedResource Include="FunctionCode\Make\Make_CustomLabelPrint.resx">
  1411. <DependentUpon>Make_CustomLabelPrint.cs</DependentUpon>
  1412. </EmbeddedResource>
  1413. <EmbeddedResource Include="FunctionCode\Make\Make_Decompose.resx">
  1414. <DependentUpon>Make_Decompose.cs</DependentUpon>
  1415. </EmbeddedResource>
  1416. <EmbeddedResource Include="FunctionCode\Make\Make_FeedingCollection.resx">
  1417. <DependentUpon>Make_FeedingCollection.cs</DependentUpon>
  1418. </EmbeddedResource>
  1419. <EmbeddedResource Include="FunctionCode\Make\Make_FuselageLabelPrint.resx">
  1420. <DependentUpon>Make_FuselageLabelPrint.cs</DependentUpon>
  1421. </EmbeddedResource>
  1422. <EmbeddedResource Include="FunctionCode\Make\Make_GetReMakeSN.resx">
  1423. <DependentUpon>Make_GetReMakeSN.cs</DependentUpon>
  1424. </EmbeddedResource>
  1425. <EmbeddedResource Include="FunctionCode\Make\Make_ImeiCheck.resx">
  1426. <DependentUpon>Make_ImeiCheck.cs</DependentUpon>
  1427. </EmbeddedResource>
  1428. <EmbeddedResource Include="FunctionCode\Make\Make_LabelCheck.resx">
  1429. <DependentUpon>Make_LabelCheck.cs</DependentUpon>
  1430. </EmbeddedResource>
  1431. <EmbeddedResource Include="FunctionCode\Make\Make_MakeCancelDown.resx">
  1432. <DependentUpon>Make_MakeCancelDown.cs</DependentUpon>
  1433. </EmbeddedResource>
  1434. <EmbeddedResource Include="FunctionCode\Make\Make_MakeDown.resx">
  1435. <DependentUpon>Make_MakeDown.cs</DependentUpon>
  1436. </EmbeddedResource>
  1437. <EmbeddedResource Include="FunctionCode\Make\Make_NewBadCode.resx">
  1438. <DependentUpon>Make_NewBadCode.cs</DependentUpon>
  1439. </EmbeddedResource>
  1440. <EmbeddedResource Include="FunctionCode\Make\Make_NewBadCode_DE.resx">
  1441. <DependentUpon>Make_NewBadCode_DE.cs</DependentUpon>
  1442. </EmbeddedResource>
  1443. <EmbeddedResource Include="FunctionCode\Packing\Packing_NewBigBox.resx">
  1444. <DependentUpon>Packing_NewBigBox.cs</DependentUpon>
  1445. </EmbeddedResource>
  1446. <EmbeddedResource Include="FunctionCode\Make\Make_NewMatainInf.resx">
  1447. <DependentUpon>Make_NewMatainInf.cs</DependentUpon>
  1448. </EmbeddedResource>
  1449. <EmbeddedResource Include="FunctionCode\Packing\Packing_NewPallet.resx">
  1450. <DependentUpon>Packing_NewPallet.cs</DependentUpon>
  1451. </EmbeddedResource>
  1452. <EmbeddedResource Include="FunctionCode\Packing\Packing_PackageCollection.resx">
  1453. <DependentUpon>Packing_PackageCollection.cs</DependentUpon>
  1454. </EmbeddedResource>
  1455. <EmbeddedResource Include="FunctionCode\Packing\Packing_PackageCollectionWeigh.resx">
  1456. <DependentUpon>Packing_PackageCollectionWeigh.cs</DependentUpon>
  1457. </EmbeddedResource>
  1458. <EmbeddedResource Include="FunctionCode\Packing\Packing_PalletCollection.resx">
  1459. <DependentUpon>Packing_PalletCollection.cs</DependentUpon>
  1460. </EmbeddedResource>
  1461. <EmbeddedResource Include="FunctionCode\Packing\Packing_PalletWeigh.resx">
  1462. <DependentUpon>Packing_PalletWeigh.cs</DependentUpon>
  1463. </EmbeddedResource>
  1464. <EmbeddedResource Include="FunctionCode\Packing\Packing_PalletWeightRecord.resx">
  1465. <DependentUpon>Packing_PalletWeightRecord.cs</DependentUpon>
  1466. </EmbeddedResource>
  1467. <EmbeddedResource Include="FunctionCode\Packing\Packing_PalletWightCollection.resx">
  1468. <DependentUpon>Packing_PalletWightCollection.cs</DependentUpon>
  1469. </EmbeddedResource>
  1470. <EmbeddedResource Include="FunctionCode\Make\Make_PositionStock.resx">
  1471. <DependentUpon>Make_PositionStock.cs</DependentUpon>
  1472. </EmbeddedResource>
  1473. <EmbeddedResource Include="FunctionCode\Make\Make_Repair.resx">
  1474. <DependentUpon>Make_Repair.cs</DependentUpon>
  1475. </EmbeddedResource>
  1476. <EmbeddedResource Include="FunctionCode\Make\Make_RePrintLabel.resx">
  1477. <DependentUpon>Make_RePrintLabel.cs</DependentUpon>
  1478. </EmbeddedResource>
  1479. <EmbeddedResource Include="FunctionCode\Make\Make_SeqProgramTransform.resx">
  1480. <DependentUpon>Make_SeqProgramTransform.cs</DependentUpon>
  1481. </EmbeddedResource>
  1482. <EmbeddedResource Include="FunctionCode\Make\Make_SeqTransform.resx">
  1483. <DependentUpon>Make_SeqTransform.cs</DependentUpon>
  1484. </EmbeddedResource>
  1485. <EmbeddedResource Include="FunctionCode\Make\Make_SpecialCartonPack.resx">
  1486. <DependentUpon>Make_SpecialCartonPack.cs</DependentUpon>
  1487. </EmbeddedResource>
  1488. <EmbeddedResource Include="FunctionCode\Make\Make_SplitBoard.resx">
  1489. <DependentUpon>Make_SplitBoard.cs</DependentUpon>
  1490. </EmbeddedResource>
  1491. <EmbeddedResource Include="FunctionCode\Make\Make_TestCollection.resx">
  1492. <DependentUpon>Make_TestCollection.cs</DependentUpon>
  1493. </EmbeddedResource>
  1494. <EmbeddedResource Include="FunctionCode\Make\Make_UpdateCollectCode.resx">
  1495. <DependentUpon>Make_UpdateCollectCode.cs</DependentUpon>
  1496. </EmbeddedResource>
  1497. <EmbeddedResource Include="FunctionCode\OQC\OQC_BatchResultJudge.resx">
  1498. <DependentUpon>OQC_BatchResultJudge.cs</DependentUpon>
  1499. </EmbeddedResource>
  1500. <EmbeddedResource Include="FunctionCode\OQC\OQC_CheckNoSplit.resx">
  1501. <DependentUpon>OQC_CheckNoSplit.cs</DependentUpon>
  1502. </EmbeddedResource>
  1503. <EmbeddedResource Include="FunctionCode\OQC\OQC_Inspection.resx">
  1504. <DependentUpon>OQC_Inspection.cs</DependentUpon>
  1505. </EmbeddedResource>
  1506. <EmbeddedResource Include="FunctionCode\OQC\OQC_PlanMaintain.resx">
  1507. <DependentUpon>OQC_PlanMaintain.cs</DependentUpon>
  1508. </EmbeddedResource>
  1509. <EmbeddedResource Include="FunctionCode\OQC\OQC_SamplingDataCollection.resx">
  1510. <DependentUpon>OQC_SamplingDataCollection.cs</DependentUpon>
  1511. </EmbeddedResource>
  1512. <EmbeddedResource Include="FunctionCode\Packing\Packing_CartonSplit.resx">
  1513. <DependentUpon>Packing_CartonSplit.cs</DependentUpon>
  1514. </EmbeddedResource>
  1515. <EmbeddedResource Include="FunctionCode\Packing\Packing_CartonTransfer.resx">
  1516. <DependentUpon>Packing_CartonTransfer.cs</DependentUpon>
  1517. </EmbeddedResource>
  1518. <EmbeddedResource Include="FunctionCode\Packing\Packing_ProdWeightSet.resx">
  1519. <DependentUpon>Packing_ProdWeightSet.cs</DependentUpon>
  1520. </EmbeddedResource>
  1521. <EmbeddedResource Include="FunctionCode\Query\Query_ExeProgress.resx">
  1522. <DependentUpon>Query_ExeProgress.cs</DependentUpon>
  1523. </EmbeddedResource>
  1524. <EmbeddedResource Include="FunctionCode\Query\Query_MakeInf.resx">
  1525. <DependentUpon>Query_MakeInf.cs</DependentUpon>
  1526. </EmbeddedResource>
  1527. <EmbeddedResource Include="FunctionCode\Query\Query_MakeInfo.resx">
  1528. <DependentUpon>Query_MakeInfo.cs</DependentUpon>
  1529. </EmbeddedResource>
  1530. <EmbeddedResource Include="FunctionCode\Query\Query_OnlineTraceBack.resx">
  1531. <DependentUpon>Query_OnlineTraceBack.cs</DependentUpon>
  1532. </EmbeddedResource>
  1533. <EmbeddedResource Include="FunctionCode\Query\Query_ProductTraceBack.resx">
  1534. <DependentUpon>Query_ProductTraceBack.cs</DependentUpon>
  1535. </EmbeddedResource>
  1536. <EmbeddedResource Include="FunctionCode\Query\Query_DateRate.resx">
  1537. <DependentUpon>Query_DateRate.cs</DependentUpon>
  1538. </EmbeddedResource>
  1539. <EmbeddedResource Include="FunctionCode\Query\Query_SN.resx">
  1540. <DependentUpon>Query_SN.cs</DependentUpon>
  1541. </EmbeddedResource>
  1542. <EmbeddedResource Include="FunctionCode\Query\Query_SOP.resx">
  1543. <DependentUpon>Query_SOP.cs</DependentUpon>
  1544. </EmbeddedResource>
  1545. <EmbeddedResource Include="FunctionCode\Query\Query_SpecialReport.resx">
  1546. <DependentUpon>Query_SpecialReport.cs</DependentUpon>
  1547. </EmbeddedResource>
  1548. <EmbeddedResource Include="FunctionCode\SMT\SMT_ChangeLine.resx">
  1549. <DependentUpon>SMT_ChangeLine.cs</DependentUpon>
  1550. </EmbeddedResource>
  1551. <EmbeddedResource Include="FunctionCode\SMT\SMT_Feeding.resx">
  1552. <DependentUpon>SMT_Feeding.cs</DependentUpon>
  1553. </EmbeddedResource>
  1554. <EmbeddedResource Include="FunctionCode\SMT\SMT_MakeShift.resx">
  1555. <DependentUpon>SMT_MakeShift.cs</DependentUpon>
  1556. </EmbeddedResource>
  1557. <EmbeddedResource Include="FunctionCode\SMT\SMT_MaterialsWaring.resx">
  1558. <DependentUpon>SMT_MaterialsWaring.cs</DependentUpon>
  1559. </EmbeddedResource>
  1560. <EmbeddedResource Include="FunctionCode\SMT\SMT_PreMaterials.resx">
  1561. <DependentUpon>SMT_PreMaterials.cs</DependentUpon>
  1562. </EmbeddedResource>
  1563. <EmbeddedResource Include="FunctionCode\SMT\SMT_WaringSetting.resx">
  1564. <DependentUpon>SMT_WaringSetting.cs</DependentUpon>
  1565. </EmbeddedResource>
  1566. <EmbeddedResource Include="FunctionCode\Special\Special_AfterSaleOut.resx">
  1567. <DependentUpon>Special_AfterSaleOut.cs</DependentUpon>
  1568. </EmbeddedResource>
  1569. <EmbeddedResource Include="FunctionCode\Special\Special_AfterSaleIn.resx">
  1570. <DependentUpon>Special_AfterSaleIn.cs</DependentUpon>
  1571. </EmbeddedResource>
  1572. <EmbeddedResource Include="FunctionCode\Special\Special_BoxSplit.resx">
  1573. <DependentUpon>Special_BoxSplit.cs</DependentUpon>
  1574. </EmbeddedResource>
  1575. <EmbeddedResource Include="FunctionCode\Special\Special_CancelCollection.resx">
  1576. <DependentUpon>Special_CancelCollection.cs</DependentUpon>
  1577. </EmbeddedResource>
  1578. <EmbeddedResource Include="FunctionCode\Special\Special_CancelProdinout.resx">
  1579. <DependentUpon>Special_CancelProdinout.cs</DependentUpon>
  1580. </EmbeddedResource>
  1581. <EmbeddedResource Include="FunctionCode\Special\Special_MendLabel.resx">
  1582. <DependentUpon>Special_MendLabel.cs</DependentUpon>
  1583. </EmbeddedResource>
  1584. <EmbeddedResource Include="FunctionCode\Special\Special_MixPackage.resx">
  1585. <DependentUpon>Special_MixPackage.cs</DependentUpon>
  1586. </EmbeddedResource>
  1587. <EmbeddedResource Include="FunctionCode\Special\Special_QCForce.resx">
  1588. <DependentUpon>Special_QCForce.cs</DependentUpon>
  1589. </EmbeddedResource>
  1590. <EmbeddedResource Include="FunctionCode\Special\Special_SeqTransform.resx">
  1591. <DependentUpon>Special_SeqTransform.cs</DependentUpon>
  1592. </EmbeddedResource>
  1593. <EmbeddedResource Include="FunctionCode\Stock\Stock_Split.resx">
  1594. <DependentUpon>Stock_Split.cs</DependentUpon>
  1595. </EmbeddedResource>
  1596. <EmbeddedResource Include="FunctionCode\Stock\Stock_WarehouseTransform.resx">
  1597. <DependentUpon>Stock_WarehouseTransform.cs</DependentUpon>
  1598. </EmbeddedResource>
  1599. <EmbeddedResource Include="FunctionCode\SystemSetting\SystemSetting_LabelMaintain.resx">
  1600. <DependentUpon>SystemSetting_LabelMaintain.cs</DependentUpon>
  1601. </EmbeddedResource>
  1602. <EmbeddedResource Include="FunctionCode\SystemSetting\SystemSetting_PrinterTest.resx">
  1603. <DependentUpon>SystemSetting_PrinterTest.cs</DependentUpon>
  1604. </EmbeddedResource>
  1605. <EmbeddedResource Include="FunctionCode\SystemSetting\SystemSetting_ScaleTest.resx">
  1606. <DependentUpon>SystemSetting_ScaleTest.cs</DependentUpon>
  1607. </EmbeddedResource>
  1608. <EmbeddedResource Include="FunctionCode\SystemSetting\SystemSetting_SysNav.resx">
  1609. <DependentUpon>SystemSetting_SysNav.cs</DependentUpon>
  1610. </EmbeddedResource>
  1611. <EmbeddedResource Include="FunctionCode\SystemSetting\标签模板维护.resx">
  1612. <DependentUpon>标签模板维护.cs</DependentUpon>
  1613. </EmbeddedResource>
  1614. <EmbeddedResource Include="FunctionCode\Warehouse\Warehouse_FinishedProductIn.resx">
  1615. <DependentUpon>Warehouse_FinishedProductIn.cs</DependentUpon>
  1616. </EmbeddedResource>
  1617. <EmbeddedResource Include="FunctionCode\Warehouse\Warehouse_FinishedProductOut.resx">
  1618. <DependentUpon>Warehouse_FinishedProductOut.cs</DependentUpon>
  1619. </EmbeddedResource>
  1620. <EmbeddedResource Include="FunctionCode\Warehouse\Warehouse_In.resx">
  1621. <DependentUpon>Warehouse_In.cs</DependentUpon>
  1622. </EmbeddedResource>
  1623. <EmbeddedResource Include="FunctionCode\Warehouse\Warehouse_NewPiInOut.resx">
  1624. <DependentUpon>Warehouse_NewPiInOut.cs</DependentUpon>
  1625. </EmbeddedResource>
  1626. <EmbeddedResource Include="FunctionCode\Warehouse\Warehouse_Out.resx">
  1627. <DependentUpon>Warehouse_Out.cs</DependentUpon>
  1628. </EmbeddedResource>
  1629. <EmbeddedResource Include="FunctionCode\Warehouse\Warehouse_ProdDetail.resx">
  1630. <DependentUpon>Warehouse_ProdDetail.cs</DependentUpon>
  1631. </EmbeddedResource>
  1632. <EmbeddedResource Include="FunctionCode\Warehouse\Warehouse_ProductMakeIn.resx">
  1633. <DependentUpon>Warehouse_ProductMakeIn.cs</DependentUpon>
  1634. </EmbeddedResource>
  1635. <EmbeddedResource Include="Login.resx">
  1636. <DependentUpon>Login.cs</DependentUpon>
  1637. </EmbeddedResource>
  1638. <EmbeddedResource Include="Main.resx">
  1639. <DependentUpon>Main.cs</DependentUpon>
  1640. </EmbeddedResource>
  1641. <EmbeddedResource Include="Properties\Resources.resx">
  1642. <Generator>ResXFileCodeGenerator</Generator>
  1643. <SubType>Designer</SubType>
  1644. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  1645. </EmbeddedResource>
  1646. <EmbeddedResource Include="PublicForm\ChangePwd.resx">
  1647. <DependentUpon>ChangePwd.cs</DependentUpon>
  1648. </EmbeddedResource>
  1649. <EmbeddedResource Include="PublicForm\DataChooseForm.resx">
  1650. <DependentUpon>DataChooseForm.cs</DependentUpon>
  1651. </EmbeddedResource>
  1652. <EmbeddedResource Include="PublicForm\SetCheck.resx">
  1653. <DependentUpon>SetCheck.cs</DependentUpon>
  1654. </EmbeddedResource>
  1655. <EmbeddedResource Include="PublicForm\SetLoadingWindow.resx">
  1656. <DependentUpon>SetLoadingWindow.cs</DependentUpon>
  1657. </EmbeddedResource>
  1658. <None Include="adbtool\mke2fs.conf" />
  1659. <None Include="adbtool\source.properties" />
  1660. <None Include="App.config">
  1661. <SubType>Designer</SubType>
  1662. </None>
  1663. <None Include="packages.config" />
  1664. <None Include="Properties\Settings.settings">
  1665. <Generator>SettingsSingleFileGenerator</Generator>
  1666. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  1667. </None>
  1668. </ItemGroup>
  1669. <ItemGroup>
  1670. <Content Include="adbtool\adb.exe" />
  1671. <Content Include="adbtool\AdbWinApi.dll" />
  1672. <Content Include="adbtool\AdbWinUsbApi.dll" />
  1673. <Content Include="adbtool\dmtracedump.exe" />
  1674. <Content Include="adbtool\etc1tool.exe" />
  1675. <Content Include="adbtool\fastboot.exe" />
  1676. <Content Include="adbtool\hprof-conv.exe" />
  1677. <Content Include="adbtool\libwinpthread-1.dll" />
  1678. <Content Include="adbtool\make_f2fs.exe" />
  1679. <Content Include="adbtool\make_f2fs_casefold.exe" />
  1680. <Content Include="adbtool\mke2fs.exe" />
  1681. <Content Include="adbtool\NOTICE.txt" />
  1682. <Content Include="adbtool\sqlite3.exe" />
  1683. <Content Include="Resources\07.gif" />
  1684. <Content Include="Resources\0802192135.png" />
  1685. <Content Include="Resources\2-0btn_04.png" />
  1686. <Content Include="Resources\2-0btn_07.png" />
  1687. <Content Include="Resources\2-0btn_36.png" />
  1688. <Content Include="Resources\20130711113247276.png" />
  1689. <Content Include="Resources\20170322091001575_easyicon_net_64.ico" />
  1690. <Content Include="Resources\46.gif" />
  1691. <Content Include="Resources\5600c803afc2d.png" />
  1692. <Content Include="Resources\83.gif" />
  1693. <Content Include="Resources\Barcode_48px_1072745_easyicon.net.png" />
  1694. <Content Include="Resources\bindingNavigatorAddNewItem.Image.png" />
  1695. <Content Include="Resources\bindingNavigatorDeleteItem.Image.png" />
  1696. <Content Include="Resources\bindingNavigatorMoveFirstItem.Image.png" />
  1697. <Content Include="Resources\bindingNavigatorMoveLastItem.Image.png" />
  1698. <Content Include="Resources\bindingNavigatorMoveNextItem.Image.png" />
  1699. <Content Include="Resources\bindingNavigatorMovePreviousItem.Image.png" />
  1700. <Content Include="Resources\box_17.453077699294px_1191579_easyicon.net.png" />
  1701. <Content Include="Resources\box_26.17961654894px_1191579_easyicon.net.png" />
  1702. <Content Include="Resources\btncheckoff1.png" />
  1703. <Content Include="Resources\btncheckoff2.png" />
  1704. <Content Include="Resources\btncheckoff3.png" />
  1705. <Content Include="Resources\btncheckoff4.png" />
  1706. <Content Include="Resources\btncheckoff5.png" />
  1707. <Content Include="Resources\btncheckoff6.png" />
  1708. <Content Include="Resources\btncheckon1.png" />
  1709. <Content Include="Resources\btncheckon2.png" />
  1710. <Content Include="Resources\btncheckon3.png" />
  1711. <Content Include="Resources\btncheckon4.png" />
  1712. <Content Include="Resources\btncheckon5.png" />
  1713. <Content Include="Resources\btncheckon6.png" />
  1714. <Content Include="Resources\Button\down.png" />
  1715. <Content Include="Resources\Button\focus.png" />
  1716. <Content Include="Resources\Button\gray.png" />
  1717. <Content Include="Resources\Button\highlight.png" />
  1718. <Content Include="Resources\Button\Light.png" />
  1719. <Content Include="Resources\Button\normal.png" />
  1720. <Content Include="Resources\Button\White-side.png" />
  1721. <Content Include="Resources\change_password.png" />
  1722. <None Include="Resources\Sound\4082.wav" />
  1723. <Content Include="Tool\DevComponents.DotNetBar2.dll" />
  1724. <Content Include="Tool\DevExpress.BonusSkins.v15.2.dll" />
  1725. <Content Include="Tool\DevExpress.Data.v15.2.dll" />
  1726. <Content Include="Tool\DevExpress.Printing.v15.2.Core.dll" />
  1727. <Content Include="Tool\DevExpress.RichEdit.v15.2.Core.dll" />
  1728. <Content Include="Tool\DevExpress.Sparkline.v15.2.Core.dll" />
  1729. <Content Include="Tool\DevExpress.Utils.v15.2.dll" />
  1730. <Content Include="Tool\DevExpress.XtraBars.v15.2.dll" />
  1731. <Content Include="Tool\DevExpress.XtraEditors.v15.2.dll" />
  1732. <Content Include="Tool\DevExpress.XtraNavBar.v15.2.dll" />
  1733. <Content Include="Tool\DevExpress.XtraRichEdit.v15.2.dll" />
  1734. <Content Include="Tool\DevExpress.XtraScheduler.v15.2.Core.dll" />
  1735. <Content Include="Tool\ExcelHelper.dll" />
  1736. <Content Include="Tool\ICSharpCode.SharpZipLib.dll" />
  1737. <Content Include="Tool\Interop.SpeechLib.dll" />
  1738. <Content Include="Tool\log4net.dll" />
  1739. <Content Include="Tool\Microsoft.Office.Interop.Excel.dll" />
  1740. <Content Include="Tool\NPOI.dll" />
  1741. <Content Include="Tool\Oracle.DataAccess%2811g%29.dll" />
  1742. <Content Include="Tool\Oracle.ManagedDataAccess.dll" />
  1743. <Content Include="Tool\Seagull.BarTender.Print.dll" />
  1744. <Content Include="Tool\System.Data.OracleClient.dll" />
  1745. <None Include="Resources\close.png" />
  1746. <Content Include="Resources\close_16px_558195_easyicon.net.png" />
  1747. <Content Include="Resources\CLOSE_24px_1115282_easyicon.net.png" />
  1748. <Content Include="Resources\close_24px_1139093_easyicon.net.png" />
  1749. <None Include="Resources\close_24px_1139293_easyicon.net.png" />
  1750. <Content Include="Resources\close_32px_1181428_easyicon.net.png" />
  1751. <Content Include="Resources\Close_up_32px_1181430_easyicon.net.png" />
  1752. <None Include="Resources\defaulticon.png" />
  1753. <Content Include="Resources\dialog_close_24px_1173781_easyicon.net.png" />
  1754. <Content Include="Resources\dialog_error_5_48px_542794_easyicon.net.png" />
  1755. <Content Include="Resources\download_14.926374650513px_1191613_easyicon.net.png" />
  1756. <Content Include="Resources\download_17.519713261649px_1200629_easyicon.net %281%29.png" />
  1757. <Content Include="Resources\download_17.519713261649px_1200629_easyicon.net.png" />
  1758. <Content Include="Resources\excel.png" />
  1759. <Content Include="Resources\Excel_2010_16px_1180011_easyicon.net.png" />
  1760. <Content Include="Resources\Excel_2013_16px_1180012_easyicon.net.png" />
  1761. <Content Include="Resources\file.png" />
  1762. <Content Include="Resources\file_24px_1133611_easyicon.net.png" />
  1763. <Content Include="Resources\file_24px_1175380_easyicon.net.png" />
  1764. <Content Include="Resources\file_info_64px_1176626_easyicon.net.png" />
  1765. <Content Include="Resources\file_manager_24px_1145241_easyicon.net.png" />
  1766. <Content Include="Resources\icon_title.png" />
  1767. <Content Include="Resources\Image1.bmp" />
  1768. <Content Include="Resources\Internet_Explorer_Windows_8_Windows8_32px_566667_easyicon.net.ico" />
  1769. <Content Include="Resources\LoadingError.gif" />
  1770. <Content Include="Resources\LoadingFormat.gif" />
  1771. <Content Include="Resources\Lock.ico" />
  1772. <Content Include="Resources\Lock16px.ico" />
  1773. <Content Include="Resources\Lock24px.ico" />
  1774. <Content Include="Resources\Lock24px.png" />
  1775. <Content Include="Resources\lock_lock_24px.png" />
  1776. <Content Include="Resources\lock_open_24px.png" />
  1777. <Content Include="Resources\LoginBG.jpg" />
  1778. <Content Include="Resources\Logout_32px_581264_easyicon.net.png" />
  1779. <Content Include="Resources\matte_white_square_icon_business_tool_hammer_128px_571061_easyicon.net.ico" />
  1780. <Content Include="Resources\matte_white_square_icon_business_tool_hammer_96px_571061_easyicon.net.ico" />
  1781. <Content Include="Resources\minus.gif" />
  1782. <Content Include="Resources\notice_text_editor_16px_11373_easyicon.net.png" />
  1783. <None Include="Resources\系统设置.png" />
  1784. <None Include="Resources\特殊作业.png" />
  1785. <None Include="Resources\人员管理.png" />
  1786. <None Include="Resources\产线作业.png" />
  1787. <None Include="Resources\查询分析.png" />
  1788. <None Include="Resources\仓库作业.png" />
  1789. <None Include="Resources\包装作业.png" />
  1790. <None Include="Resources\OQC作业.png" />
  1791. <Content Include="Resources\People_48px_500819_easyicon.net.png" />
  1792. <Content Include="Resources\plus.gif" />
  1793. <Content Include="Resources\pluslogo.png" />
  1794. <Content Include="Resources\preview_16px_25980_easyicon.net.png" />
  1795. <Content Include="Resources\pwd.png" />
  1796. <Content Include="Resources\refresh.png" />
  1797. <Content Include="Resources\search_16px_1202802_easyicon.net.png" />
  1798. <Content Include="Resources\Sound\3291.wav" />
  1799. <Content Include="Resources\Sound\5185.wav" />
  1800. <Content Include="Resources\Sound\8378.wav" />
  1801. <Content Include="Resources\Sound\Windows Background.wav" />
  1802. <Content Include="Resources\timg.jpg" />
  1803. <Content Include="Resources\two_arrow_left.png" />
  1804. <Content Include="Resources\two_arrow_right.png" />
  1805. <Content Include="Resources\uas_blue.png" />
  1806. <Content Include="Resources\updating.gif" />
  1807. <Content Include="Resources\upload_17.459649122807px_1200703_easyicon.net %281%29.png" />
  1808. <Content Include="Resources\upload_17.459649122807px_1200703_easyicon.net.png" />
  1809. <None Include="Resources\upload_icon1.png" />
  1810. <Content Include="Resources\U_Icon.ico" />
  1811. <Content Include="Resources\WhiteImage.png" />
  1812. <Content Include="Resources\Windows_32px_1063981_easyicon.net.ico" />
  1813. <Content Include="Resources\write_15.893687707641px_1181413_easyicon.net.png" />
  1814. <Content Include="Resources\zxing_android_code_48px_1107946_easyicon.net.png" />
  1815. </ItemGroup>
  1816. <ItemGroup>
  1817. <COMReference Include="stdole">
  1818. <Guid>{00020430-0000-0000-C000-000000000046}</Guid>
  1819. <VersionMajor>2</VersionMajor>
  1820. <VersionMinor>0</VersionMinor>
  1821. <Lcid>0</Lcid>
  1822. <WrapperTool>primary</WrapperTool>
  1823. <Isolated>False</Isolated>
  1824. <EmbedInteropTypes>True</EmbedInteropTypes>
  1825. </COMReference>
  1826. </ItemGroup>
  1827. <ItemGroup>
  1828. <Folder Include="Cert\" />
  1829. </ItemGroup>
  1830. <ItemGroup>
  1831. <BootstrapperPackage Include=".NETFramework,Version=v4.0">
  1832. <Visible>False</Visible>
  1833. <ProductName>Microsoft .NET Framework 4 %28x86 和 x64%29</ProductName>
  1834. <Install>true</Install>
  1835. </BootstrapperPackage>
  1836. <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
  1837. <Visible>False</Visible>
  1838. <ProductName>.NET Framework 3.5 SP1</ProductName>
  1839. <Install>false</Install>
  1840. </BootstrapperPackage>
  1841. </ItemGroup>
  1842. <ItemGroup>
  1843. <PublishFile Include="Resources\pluslogo.png">
  1844. <Visible>False</Visible>
  1845. <Group>
  1846. </Group>
  1847. <TargetPath>
  1848. </TargetPath>
  1849. <PublishState>DataFile</PublishState>
  1850. <IncludeHash>True</IncludeHash>
  1851. <FileType>File</FileType>
  1852. </PublishFile>
  1853. <PublishFile Include="Resources\preview_16px_25980_easyicon.net.png">
  1854. <Visible>False</Visible>
  1855. <Group>
  1856. </Group>
  1857. <TargetPath>
  1858. </TargetPath>
  1859. <PublishState>DataFile</PublishState>
  1860. <IncludeHash>True</IncludeHash>
  1861. <FileType>File</FileType>
  1862. </PublishFile>
  1863. </ItemGroup>
  1864. <ItemGroup>
  1865. <WCFMetadata Include="Service References\" />
  1866. </ItemGroup>
  1867. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  1868. <PropertyGroup>
  1869. <PostBuildEvent>xcopy $(ProjectDir)Resources $(ProjectDir)$(OutDir)Resources /s /e /k /i /y</PostBuildEvent>
  1870. </PropertyGroup>
  1871. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  1872. Other similar extension points exist, see Microsoft.Common.targets.
  1873. <Target Name="BeforeBuild">
  1874. </Target>
  1875. <Target Name="AfterBuild">
  1876. </Target>
  1877. -->
  1878. </Project>