UAS-MES.csproj 77 KB

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