UAS-MES.csproj 91 KB

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