ThCardReaderSetup.vdproj 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947
  1. "DeployProject"
  2. {
  3. "VSVersion" = "3:800"
  4. "ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
  5. "IsWebType" = "8:FALSE"
  6. "ProjectName" = "8:读卡插件"
  7. "LanguageId" = "3:2052"
  8. "CodePage" = "3:936"
  9. "UILanguageId" = "3:2052"
  10. "SccProjectName" = "8:"
  11. "SccLocalPath" = "8:"
  12. "SccAuxPath" = "8:"
  13. "SccProvider" = "8:"
  14. "Hierarchy"
  15. {
  16. "Entry"
  17. {
  18. "MsmKey" = "8:_1787EC9B4603DECFF1BFE5C19A56B023"
  19. "OwnerKey" = "8:_E4D308EB4957F71B0830D136E9534F08"
  20. "MsmSig" = "8:_UNDEFINED"
  21. }
  22. "Entry"
  23. {
  24. "MsmKey" = "8:_1787EC9B4603DECFF1BFE5C19A56B023"
  25. "OwnerKey" = "8:_A00532ADD45DA61966E056289D5999D7"
  26. "MsmSig" = "8:_UNDEFINED"
  27. }
  28. "Entry"
  29. {
  30. "MsmKey" = "8:_1787EC9B4603DECFF1BFE5C19A56B023"
  31. "OwnerKey" = "8:_EE36B83D27ABBD94988DC078D562D8AF"
  32. "MsmSig" = "8:_UNDEFINED"
  33. }
  34. "Entry"
  35. {
  36. "MsmKey" = "8:_23B256226BB140DF9544B10582B39AA3"
  37. "OwnerKey" = "8:_UNDEFINED"
  38. "MsmSig" = "8:_UNDEFINED"
  39. }
  40. "Entry"
  41. {
  42. "MsmKey" = "8:_2ECB4669FCD847FD94A82623FF92D48F"
  43. "OwnerKey" = "8:_UNDEFINED"
  44. "MsmSig" = "8:_UNDEFINED"
  45. }
  46. "Entry"
  47. {
  48. "MsmKey" = "8:_34DD151047B24FA39732C74202B7FEAA"
  49. "OwnerKey" = "8:_UNDEFINED"
  50. "MsmSig" = "8:_UNDEFINED"
  51. }
  52. "Entry"
  53. {
  54. "MsmKey" = "8:_368C11B3EC3A2A28FB24072F883919C6"
  55. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  56. "MsmSig" = "8:_UNDEFINED"
  57. }
  58. "Entry"
  59. {
  60. "MsmKey" = "8:_3A295168D6C64C40B40BE5E66FD610C6"
  61. "OwnerKey" = "8:_UNDEFINED"
  62. "MsmSig" = "8:_UNDEFINED"
  63. }
  64. "Entry"
  65. {
  66. "MsmKey" = "8:_4437A0E4CFEB4E449CB6790492933B4F"
  67. "OwnerKey" = "8:_UNDEFINED"
  68. "MsmSig" = "8:_UNDEFINED"
  69. }
  70. "Entry"
  71. {
  72. "MsmKey" = "8:_552D2804C6C5CEAECADD8E8692FFE32E"
  73. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  74. "MsmSig" = "8:_UNDEFINED"
  75. }
  76. "Entry"
  77. {
  78. "MsmKey" = "8:_552D2804C6C5CEAECADD8E8692FFE32E"
  79. "OwnerKey" = "8:_F33E21B1544F6D644F67A2943A5CDCF7"
  80. "MsmSig" = "8:_UNDEFINED"
  81. }
  82. "Entry"
  83. {
  84. "MsmKey" = "8:_5533B8BC72B94AB6A2492713DF427D15"
  85. "OwnerKey" = "8:_UNDEFINED"
  86. "MsmSig" = "8:_UNDEFINED"
  87. }
  88. "Entry"
  89. {
  90. "MsmKey" = "8:_59D6108294F54D39967FD88A5195E0B6"
  91. "OwnerKey" = "8:_UNDEFINED"
  92. "MsmSig" = "8:_UNDEFINED"
  93. }
  94. "Entry"
  95. {
  96. "MsmKey" = "8:_5B21F892174347CA9B539EA61F9C4264"
  97. "OwnerKey" = "8:_UNDEFINED"
  98. "MsmSig" = "8:_UNDEFINED"
  99. }
  100. "Entry"
  101. {
  102. "MsmKey" = "8:_5B3BA8BC4B2307D5A502E875822A8D29"
  103. "OwnerKey" = "8:_E4D308EB4957F71B0830D136E9534F08"
  104. "MsmSig" = "8:_UNDEFINED"
  105. }
  106. "Entry"
  107. {
  108. "MsmKey" = "8:_5B3BA8BC4B2307D5A502E875822A8D29"
  109. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  110. "MsmSig" = "8:_UNDEFINED"
  111. }
  112. "Entry"
  113. {
  114. "MsmKey" = "8:_5B3BA8BC4B2307D5A502E875822A8D29"
  115. "OwnerKey" = "8:_EE36B83D27ABBD94988DC078D562D8AF"
  116. "MsmSig" = "8:_UNDEFINED"
  117. }
  118. "Entry"
  119. {
  120. "MsmKey" = "8:_5C6D1F52904243D69CCDE17FF55BA775"
  121. "OwnerKey" = "8:_UNDEFINED"
  122. "MsmSig" = "8:_UNDEFINED"
  123. }
  124. "Entry"
  125. {
  126. "MsmKey" = "8:_6F81BA572117450A828B74387557CE92"
  127. "OwnerKey" = "8:_UNDEFINED"
  128. "MsmSig" = "8:_UNDEFINED"
  129. }
  130. "Entry"
  131. {
  132. "MsmKey" = "8:_7E90D924E2F0B38E2EB68DD4BB46E7C0"
  133. "OwnerKey" = "8:_A00532ADD45DA61966E056289D5999D7"
  134. "MsmSig" = "8:_UNDEFINED"
  135. }
  136. "Entry"
  137. {
  138. "MsmKey" = "8:_7E90D924E2F0B38E2EB68DD4BB46E7C0"
  139. "OwnerKey" = "8:_CAC9A52D665B5871A5F32ED90809CDCE"
  140. "MsmSig" = "8:_UNDEFINED"
  141. }
  142. "Entry"
  143. {
  144. "MsmKey" = "8:_7E90D924E2F0B38E2EB68DD4BB46E7C0"
  145. "OwnerKey" = "8:_368C11B3EC3A2A28FB24072F883919C6"
  146. "MsmSig" = "8:_UNDEFINED"
  147. }
  148. "Entry"
  149. {
  150. "MsmKey" = "8:_7E90D924E2F0B38E2EB68DD4BB46E7C0"
  151. "OwnerKey" = "8:_F33E21B1544F6D644F67A2943A5CDCF7"
  152. "MsmSig" = "8:_UNDEFINED"
  153. }
  154. "Entry"
  155. {
  156. "MsmKey" = "8:_7E90D924E2F0B38E2EB68DD4BB46E7C0"
  157. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  158. "MsmSig" = "8:_UNDEFINED"
  159. }
  160. "Entry"
  161. {
  162. "MsmKey" = "8:_9D9832D0C9B9430EBB915996CD55D615"
  163. "OwnerKey" = "8:_UNDEFINED"
  164. "MsmSig" = "8:_UNDEFINED"
  165. }
  166. "Entry"
  167. {
  168. "MsmKey" = "8:_A00532ADD45DA61966E056289D5999D7"
  169. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  170. "MsmSig" = "8:_UNDEFINED"
  171. }
  172. "Entry"
  173. {
  174. "MsmKey" = "8:_A1ABAA46B5FA4DFCAC8815EF1A244B1D"
  175. "OwnerKey" = "8:_UNDEFINED"
  176. "MsmSig" = "8:_UNDEFINED"
  177. }
  178. "Entry"
  179. {
  180. "MsmKey" = "8:_A31998CFBCF448059B8FE3B7EF407552"
  181. "OwnerKey" = "8:_UNDEFINED"
  182. "MsmSig" = "8:_UNDEFINED"
  183. }
  184. "Entry"
  185. {
  186. "MsmKey" = "8:_A8FD811B288145F480B1049DFA4628E4"
  187. "OwnerKey" = "8:_UNDEFINED"
  188. "MsmSig" = "8:_UNDEFINED"
  189. }
  190. "Entry"
  191. {
  192. "MsmKey" = "8:_AD160FE8EAC442B5AE663E77B5B84156"
  193. "OwnerKey" = "8:_UNDEFINED"
  194. "MsmSig" = "8:_UNDEFINED"
  195. }
  196. "Entry"
  197. {
  198. "MsmKey" = "8:_C4F4058F3531485297AE8CC4AACB43A1"
  199. "OwnerKey" = "8:_UNDEFINED"
  200. "MsmSig" = "8:_UNDEFINED"
  201. }
  202. "Entry"
  203. {
  204. "MsmKey" = "8:_C78428E45D364BD9AA7FD1A4D5E70268"
  205. "OwnerKey" = "8:_UNDEFINED"
  206. "MsmSig" = "8:_UNDEFINED"
  207. }
  208. "Entry"
  209. {
  210. "MsmKey" = "8:_C82E2389856D2F755D2763F986637EA6"
  211. "OwnerKey" = "8:_7E90D924E2F0B38E2EB68DD4BB46E7C0"
  212. "MsmSig" = "8:_UNDEFINED"
  213. }
  214. "Entry"
  215. {
  216. "MsmKey" = "8:_C82E2389856D2F755D2763F986637EA6"
  217. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  218. "MsmSig" = "8:_UNDEFINED"
  219. }
  220. "Entry"
  221. {
  222. "MsmKey" = "8:_C82E2389856D2F755D2763F986637EA6"
  223. "OwnerKey" = "8:_CAC9A52D665B5871A5F32ED90809CDCE"
  224. "MsmSig" = "8:_UNDEFINED"
  225. }
  226. "Entry"
  227. {
  228. "MsmKey" = "8:_C82E2389856D2F755D2763F986637EA6"
  229. "OwnerKey" = "8:_368C11B3EC3A2A28FB24072F883919C6"
  230. "MsmSig" = "8:_UNDEFINED"
  231. }
  232. "Entry"
  233. {
  234. "MsmKey" = "8:_C82E2389856D2F755D2763F986637EA6"
  235. "OwnerKey" = "8:_F33E21B1544F6D644F67A2943A5CDCF7"
  236. "MsmSig" = "8:_UNDEFINED"
  237. }
  238. "Entry"
  239. {
  240. "MsmKey" = "8:_C82E2389856D2F755D2763F986637EA6"
  241. "OwnerKey" = "8:_A00532ADD45DA61966E056289D5999D7"
  242. "MsmSig" = "8:_UNDEFINED"
  243. }
  244. "Entry"
  245. {
  246. "MsmKey" = "8:_CAC9A52D665B5871A5F32ED90809CDCE"
  247. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  248. "MsmSig" = "8:_UNDEFINED"
  249. }
  250. "Entry"
  251. {
  252. "MsmKey" = "8:_CF4A96BD1BB06C78DFAF1DA762000E90"
  253. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  254. "MsmSig" = "8:_UNDEFINED"
  255. }
  256. "Entry"
  257. {
  258. "MsmKey" = "8:_D08463569CE0429A8A4DE0EEE76B425D"
  259. "OwnerKey" = "8:_UNDEFINED"
  260. "MsmSig" = "8:_UNDEFINED"
  261. }
  262. "Entry"
  263. {
  264. "MsmKey" = "8:_E0DE75E58EED4E62B0F104FB5B0BDDBF"
  265. "OwnerKey" = "8:_UNDEFINED"
  266. "MsmSig" = "8:_UNDEFINED"
  267. }
  268. "Entry"
  269. {
  270. "MsmKey" = "8:_E4D308EB4957F71B0830D136E9534F08"
  271. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  272. "MsmSig" = "8:_UNDEFINED"
  273. }
  274. "Entry"
  275. {
  276. "MsmKey" = "8:_E4D308EB4957F71B0830D136E9534F08"
  277. "OwnerKey" = "8:_A00532ADD45DA61966E056289D5999D7"
  278. "MsmSig" = "8:_UNDEFINED"
  279. }
  280. "Entry"
  281. {
  282. "MsmKey" = "8:_E4D308EB4957F71B0830D136E9534F08"
  283. "OwnerKey" = "8:_EE36B83D27ABBD94988DC078D562D8AF"
  284. "MsmSig" = "8:_UNDEFINED"
  285. }
  286. "Entry"
  287. {
  288. "MsmKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  289. "OwnerKey" = "8:_UNDEFINED"
  290. "MsmSig" = "8:_UNDEFINED"
  291. }
  292. "Entry"
  293. {
  294. "MsmKey" = "8:_EDC9CAE7330C1AC13CA5710FA2B3171E"
  295. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  296. "MsmSig" = "8:_UNDEFINED"
  297. }
  298. "Entry"
  299. {
  300. "MsmKey" = "8:_EE36B83D27ABBD94988DC078D562D8AF"
  301. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  302. "MsmSig" = "8:_UNDEFINED"
  303. }
  304. "Entry"
  305. {
  306. "MsmKey" = "8:_EE36B83D27ABBD94988DC078D562D8AF"
  307. "OwnerKey" = "8:_A00532ADD45DA61966E056289D5999D7"
  308. "MsmSig" = "8:_UNDEFINED"
  309. }
  310. "Entry"
  311. {
  312. "MsmKey" = "8:_F33E21B1544F6D644F67A2943A5CDCF7"
  313. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  314. "MsmSig" = "8:_UNDEFINED"
  315. }
  316. "Entry"
  317. {
  318. "MsmKey" = "8:_F8B39BE0F4204119A376EF8C6EDBA51D"
  319. "OwnerKey" = "8:_UNDEFINED"
  320. "MsmSig" = "8:_UNDEFINED"
  321. }
  322. "Entry"
  323. {
  324. "MsmKey" = "8:_UNDEFINED"
  325. "OwnerKey" = "8:_CF4A96BD1BB06C78DFAF1DA762000E90"
  326. "MsmSig" = "8:_UNDEFINED"
  327. }
  328. "Entry"
  329. {
  330. "MsmKey" = "8:_UNDEFINED"
  331. "OwnerKey" = "8:_EA6E85C582BB4533AD00BF337D166733"
  332. "MsmSig" = "8:_UNDEFINED"
  333. }
  334. "Entry"
  335. {
  336. "MsmKey" = "8:_UNDEFINED"
  337. "OwnerKey" = "8:_CAC9A52D665B5871A5F32ED90809CDCE"
  338. "MsmSig" = "8:_UNDEFINED"
  339. }
  340. "Entry"
  341. {
  342. "MsmKey" = "8:_UNDEFINED"
  343. "OwnerKey" = "8:_368C11B3EC3A2A28FB24072F883919C6"
  344. "MsmSig" = "8:_UNDEFINED"
  345. }
  346. "Entry"
  347. {
  348. "MsmKey" = "8:_UNDEFINED"
  349. "OwnerKey" = "8:_EDC9CAE7330C1AC13CA5710FA2B3171E"
  350. "MsmSig" = "8:_UNDEFINED"
  351. }
  352. "Entry"
  353. {
  354. "MsmKey" = "8:_UNDEFINED"
  355. "OwnerKey" = "8:_F33E21B1544F6D644F67A2943A5CDCF7"
  356. "MsmSig" = "8:_UNDEFINED"
  357. }
  358. "Entry"
  359. {
  360. "MsmKey" = "8:_UNDEFINED"
  361. "OwnerKey" = "8:_A00532ADD45DA61966E056289D5999D7"
  362. "MsmSig" = "8:_UNDEFINED"
  363. }
  364. "Entry"
  365. {
  366. "MsmKey" = "8:_UNDEFINED"
  367. "OwnerKey" = "8:_7E90D924E2F0B38E2EB68DD4BB46E7C0"
  368. "MsmSig" = "8:_UNDEFINED"
  369. }
  370. "Entry"
  371. {
  372. "MsmKey" = "8:_UNDEFINED"
  373. "OwnerKey" = "8:_C82E2389856D2F755D2763F986637EA6"
  374. "MsmSig" = "8:_UNDEFINED"
  375. }
  376. "Entry"
  377. {
  378. "MsmKey" = "8:_UNDEFINED"
  379. "OwnerKey" = "8:_EE36B83D27ABBD94988DC078D562D8AF"
  380. "MsmSig" = "8:_UNDEFINED"
  381. }
  382. "Entry"
  383. {
  384. "MsmKey" = "8:_UNDEFINED"
  385. "OwnerKey" = "8:_E4D308EB4957F71B0830D136E9534F08"
  386. "MsmSig" = "8:_UNDEFINED"
  387. }
  388. "Entry"
  389. {
  390. "MsmKey" = "8:_UNDEFINED"
  391. "OwnerKey" = "8:_5B3BA8BC4B2307D5A502E875822A8D29"
  392. "MsmSig" = "8:_UNDEFINED"
  393. }
  394. "Entry"
  395. {
  396. "MsmKey" = "8:_UNDEFINED"
  397. "OwnerKey" = "8:_1787EC9B4603DECFF1BFE5C19A56B023"
  398. "MsmSig" = "8:_UNDEFINED"
  399. }
  400. "Entry"
  401. {
  402. "MsmKey" = "8:_UNDEFINED"
  403. "OwnerKey" = "8:_552D2804C6C5CEAECADD8E8692FFE32E"
  404. "MsmSig" = "8:_UNDEFINED"
  405. }
  406. }
  407. "Configurations"
  408. {
  409. "Debug"
  410. {
  411. "DisplayName" = "8:Debug"
  412. "IsDebugOnly" = "11:TRUE"
  413. "IsReleaseOnly" = "11:FALSE"
  414. "OutputFilename" = "8:Release\\ThCardReaderSetup.msi"
  415. "PackageFilesAs" = "3:2"
  416. "PackageFileSize" = "3:-2147483648"
  417. "CabType" = "3:1"
  418. "Compression" = "3:2"
  419. "SignOutput" = "11:FALSE"
  420. "CertificateFile" = "8:"
  421. "PrivateKeyFile" = "8:"
  422. "TimeStampServer" = "8:"
  423. "InstallerBootstrapper" = "3:2"
  424. "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}"
  425. {
  426. "Enabled" = "11:TRUE"
  427. "PromptEnabled" = "11:TRUE"
  428. "PrerequisitesLocation" = "2:3"
  429. "Url" = "8:"
  430. "ComponentsUrl" = "8:http://webhis.thyy.cn:8080/download/readcard/.NET Framework 4.8.exe"
  431. "Items"
  432. {
  433. "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.8"
  434. {
  435. "Name" = "8:Microsoft .NET Framework 4.8 (x86 和 x64)"
  436. "ProductCode" = "8:.NETFramework,Version=v4.8"
  437. }
  438. }
  439. }
  440. }
  441. "Release"
  442. {
  443. "DisplayName" = "8:Release"
  444. "IsDebugOnly" = "11:FALSE"
  445. "IsReleaseOnly" = "11:TRUE"
  446. "OutputFilename" = "8:Release\\读卡插件.msi"
  447. "PackageFilesAs" = "3:2"
  448. "PackageFileSize" = "3:-2147483648"
  449. "CabType" = "3:1"
  450. "Compression" = "3:2"
  451. "SignOutput" = "11:FALSE"
  452. "CertificateFile" = "8:"
  453. "PrivateKeyFile" = "8:"
  454. "TimeStampServer" = "8:"
  455. "InstallerBootstrapper" = "3:2"
  456. }
  457. }
  458. "Deployable"
  459. {
  460. "CustomAction"
  461. {
  462. }
  463. "DefaultFeature"
  464. {
  465. "Name" = "8:DefaultFeature"
  466. "Title" = "8:"
  467. "Description" = "8:"
  468. }
  469. "ExternalPersistence"
  470. {
  471. "LaunchCondition"
  472. {
  473. "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_52FE6CF2C7944C3F86B5879B36AA4CF6"
  474. {
  475. "Name" = "8:.NET Framework"
  476. "Message" = "8:[VSDNETMSG]"
  477. "FrameworkVersion" = "8:.NETFramework,Version=v4.7.2"
  478. "AllowLaterVersions" = "11:FALSE"
  479. "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262"
  480. }
  481. }
  482. }
  483. "File"
  484. {
  485. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1787EC9B4603DECFF1BFE5C19A56B023"
  486. {
  487. "AssemblyRegister" = "3:1"
  488. "AssemblyIsInGAC" = "11:TRUE"
  489. "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
  490. "ScatterAssemblies"
  491. {
  492. "_1787EC9B4603DECFF1BFE5C19A56B023"
  493. {
  494. "Name" = "8:System.Net.Http.dll"
  495. "Attributes" = "3:512"
  496. }
  497. }
  498. "SourcePath" = "8:System.Net.Http.dll"
  499. "TargetName" = "8:"
  500. "Tag" = "8:"
  501. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  502. "Condition" = "8:"
  503. "Transitive" = "11:FALSE"
  504. "Vital" = "11:TRUE"
  505. "ReadOnly" = "11:FALSE"
  506. "Hidden" = "11:FALSE"
  507. "System" = "11:FALSE"
  508. "Permanent" = "11:FALSE"
  509. "SharedLegacy" = "11:FALSE"
  510. "PackageAs" = "3:1"
  511. "Register" = "3:1"
  512. "Exclude" = "11:FALSE"
  513. "IsDependency" = "11:TRUE"
  514. "IsolateTo" = "8:"
  515. }
  516. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_23B256226BB140DF9544B10582B39AA3"
  517. {
  518. "SourcePath" = "8:C:\\Windows\\System32\\msiexec.exe"
  519. "TargetName" = "8:msiexec.exe"
  520. "Tag" = "8:"
  521. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  522. "Condition" = "8:"
  523. "Transitive" = "11:FALSE"
  524. "Vital" = "11:TRUE"
  525. "ReadOnly" = "11:FALSE"
  526. "Hidden" = "11:FALSE"
  527. "System" = "11:FALSE"
  528. "Permanent" = "11:FALSE"
  529. "SharedLegacy" = "11:FALSE"
  530. "PackageAs" = "3:1"
  531. "Register" = "3:1"
  532. "Exclude" = "11:FALSE"
  533. "IsDependency" = "11:FALSE"
  534. "IsolateTo" = "8:"
  535. }
  536. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2ECB4669FCD847FD94A82623FF92D48F"
  537. {
  538. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\Microsoft.Owin.Hosting.xml"
  539. "TargetName" = "8:Microsoft.Owin.Hosting.xml"
  540. "Tag" = "8:"
  541. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  542. "Condition" = "8:"
  543. "Transitive" = "11:FALSE"
  544. "Vital" = "11:TRUE"
  545. "ReadOnly" = "11:FALSE"
  546. "Hidden" = "11:FALSE"
  547. "System" = "11:FALSE"
  548. "Permanent" = "11:FALSE"
  549. "SharedLegacy" = "11:FALSE"
  550. "PackageAs" = "3:1"
  551. "Register" = "3:1"
  552. "Exclude" = "11:FALSE"
  553. "IsDependency" = "11:FALSE"
  554. "IsolateTo" = "8:"
  555. }
  556. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_34DD151047B24FA39732C74202B7FEAA"
  557. {
  558. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\System.Web.Http.xml"
  559. "TargetName" = "8:System.Web.Http.xml"
  560. "Tag" = "8:"
  561. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  562. "Condition" = "8:"
  563. "Transitive" = "11:FALSE"
  564. "Vital" = "11:TRUE"
  565. "ReadOnly" = "11:FALSE"
  566. "Hidden" = "11:FALSE"
  567. "System" = "11:FALSE"
  568. "Permanent" = "11:FALSE"
  569. "SharedLegacy" = "11:FALSE"
  570. "PackageAs" = "3:1"
  571. "Register" = "3:1"
  572. "Exclude" = "11:FALSE"
  573. "IsDependency" = "11:FALSE"
  574. "IsolateTo" = "8:"
  575. }
  576. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_368C11B3EC3A2A28FB24072F883919C6"
  577. {
  578. "AssemblyRegister" = "3:1"
  579. "AssemblyIsInGAC" = "11:FALSE"
  580. "AssemblyAsmDisplayName" = "8:Microsoft.Owin.Host.SystemWeb, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  581. "ScatterAssemblies"
  582. {
  583. "_368C11B3EC3A2A28FB24072F883919C6"
  584. {
  585. "Name" = "8:Microsoft.Owin.Host.SystemWeb.dll"
  586. "Attributes" = "3:512"
  587. }
  588. }
  589. "SourcePath" = "8:Microsoft.Owin.Host.SystemWeb.dll"
  590. "TargetName" = "8:"
  591. "Tag" = "8:"
  592. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  593. "Condition" = "8:"
  594. "Transitive" = "11:FALSE"
  595. "Vital" = "11:TRUE"
  596. "ReadOnly" = "11:FALSE"
  597. "Hidden" = "11:FALSE"
  598. "System" = "11:FALSE"
  599. "Permanent" = "11:FALSE"
  600. "SharedLegacy" = "11:FALSE"
  601. "PackageAs" = "3:1"
  602. "Register" = "3:1"
  603. "Exclude" = "11:FALSE"
  604. "IsDependency" = "11:TRUE"
  605. "IsolateTo" = "8:"
  606. }
  607. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3A295168D6C64C40B40BE5E66FD610C6"
  608. {
  609. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\msvcp71.dll"
  610. "TargetName" = "8:msvcp71.dll"
  611. "Tag" = "8:"
  612. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  613. "Condition" = "8:"
  614. "Transitive" = "11:FALSE"
  615. "Vital" = "11:TRUE"
  616. "ReadOnly" = "11:FALSE"
  617. "Hidden" = "11:FALSE"
  618. "System" = "11:FALSE"
  619. "Permanent" = "11:FALSE"
  620. "SharedLegacy" = "11:FALSE"
  621. "PackageAs" = "3:1"
  622. "Register" = "3:1"
  623. "Exclude" = "11:FALSE"
  624. "IsDependency" = "11:FALSE"
  625. "IsolateTo" = "8:"
  626. }
  627. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_4437A0E4CFEB4E449CB6790492933B4F"
  628. {
  629. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\ThCardReader.pdb"
  630. "TargetName" = "8:ThCardReader.pdb"
  631. "Tag" = "8:"
  632. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  633. "Condition" = "8:"
  634. "Transitive" = "11:FALSE"
  635. "Vital" = "11:TRUE"
  636. "ReadOnly" = "11:FALSE"
  637. "Hidden" = "11:FALSE"
  638. "System" = "11:FALSE"
  639. "Permanent" = "11:FALSE"
  640. "SharedLegacy" = "11:FALSE"
  641. "PackageAs" = "3:1"
  642. "Register" = "3:1"
  643. "Exclude" = "11:FALSE"
  644. "IsDependency" = "11:FALSE"
  645. "IsolateTo" = "8:"
  646. }
  647. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_552D2804C6C5CEAECADD8E8692FFE32E"
  648. {
  649. "AssemblyRegister" = "3:1"
  650. "AssemblyIsInGAC" = "11:FALSE"
  651. "AssemblyAsmDisplayName" = "8:System.Web.Cors, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  652. "ScatterAssemblies"
  653. {
  654. "_552D2804C6C5CEAECADD8E8692FFE32E"
  655. {
  656. "Name" = "8:System.Web.Cors.dll"
  657. "Attributes" = "3:512"
  658. }
  659. }
  660. "SourcePath" = "8:System.Web.Cors.dll"
  661. "TargetName" = "8:"
  662. "Tag" = "8:"
  663. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  664. "Condition" = "8:"
  665. "Transitive" = "11:FALSE"
  666. "Vital" = "11:TRUE"
  667. "ReadOnly" = "11:FALSE"
  668. "Hidden" = "11:FALSE"
  669. "System" = "11:FALSE"
  670. "Permanent" = "11:FALSE"
  671. "SharedLegacy" = "11:FALSE"
  672. "PackageAs" = "3:1"
  673. "Register" = "3:1"
  674. "Exclude" = "11:FALSE"
  675. "IsDependency" = "11:TRUE"
  676. "IsolateTo" = "8:"
  677. }
  678. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5533B8BC72B94AB6A2492713DF427D15"
  679. {
  680. "SourcePath" = "8:..\\ThCardReader\\thcardreader.ico"
  681. "TargetName" = "8:thcardreader.ico"
  682. "Tag" = "8:"
  683. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  684. "Condition" = "8:"
  685. "Transitive" = "11:FALSE"
  686. "Vital" = "11:TRUE"
  687. "ReadOnly" = "11:FALSE"
  688. "Hidden" = "11:FALSE"
  689. "System" = "11:FALSE"
  690. "Permanent" = "11:FALSE"
  691. "SharedLegacy" = "11:FALSE"
  692. "PackageAs" = "3:1"
  693. "Register" = "3:1"
  694. "Exclude" = "11:FALSE"
  695. "IsDependency" = "11:FALSE"
  696. "IsolateTo" = "8:"
  697. }
  698. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_59D6108294F54D39967FD88A5195E0B6"
  699. {
  700. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\NationECCode.dll"
  701. "TargetName" = "8:NationECCode.dll"
  702. "Tag" = "8:"
  703. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  704. "Condition" = "8:"
  705. "Transitive" = "11:FALSE"
  706. "Vital" = "11:TRUE"
  707. "ReadOnly" = "11:FALSE"
  708. "Hidden" = "11:FALSE"
  709. "System" = "11:FALSE"
  710. "Permanent" = "11:FALSE"
  711. "SharedLegacy" = "11:FALSE"
  712. "PackageAs" = "3:1"
  713. "Register" = "3:1"
  714. "Exclude" = "11:FALSE"
  715. "IsDependency" = "11:FALSE"
  716. "IsolateTo" = "8:"
  717. }
  718. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5B21F892174347CA9B539EA61F9C4264"
  719. {
  720. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\Newtonsoft.Json.xml"
  721. "TargetName" = "8:Newtonsoft.Json.xml"
  722. "Tag" = "8:"
  723. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  724. "Condition" = "8:"
  725. "Transitive" = "11:FALSE"
  726. "Vital" = "11:TRUE"
  727. "ReadOnly" = "11:FALSE"
  728. "Hidden" = "11:FALSE"
  729. "System" = "11:FALSE"
  730. "Permanent" = "11:FALSE"
  731. "SharedLegacy" = "11:FALSE"
  732. "PackageAs" = "3:1"
  733. "Register" = "3:1"
  734. "Exclude" = "11:FALSE"
  735. "IsDependency" = "11:FALSE"
  736. "IsolateTo" = "8:"
  737. }
  738. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5B3BA8BC4B2307D5A502E875822A8D29"
  739. {
  740. "AssemblyRegister" = "3:1"
  741. "AssemblyIsInGAC" = "11:FALSE"
  742. "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"
  743. "ScatterAssemblies"
  744. {
  745. "_5B3BA8BC4B2307D5A502E875822A8D29"
  746. {
  747. "Name" = "8:Newtonsoft.Json.dll"
  748. "Attributes" = "3:512"
  749. }
  750. }
  751. "SourcePath" = "8:Newtonsoft.Json.dll"
  752. "TargetName" = "8:"
  753. "Tag" = "8:"
  754. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  755. "Condition" = "8:"
  756. "Transitive" = "11:FALSE"
  757. "Vital" = "11:TRUE"
  758. "ReadOnly" = "11:FALSE"
  759. "Hidden" = "11:FALSE"
  760. "System" = "11:FALSE"
  761. "Permanent" = "11:FALSE"
  762. "SharedLegacy" = "11:FALSE"
  763. "PackageAs" = "3:1"
  764. "Register" = "3:1"
  765. "Exclude" = "11:FALSE"
  766. "IsDependency" = "11:TRUE"
  767. "IsolateTo" = "8:"
  768. }
  769. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_5C6D1F52904243D69CCDE17FF55BA775"
  770. {
  771. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\PBSHR120.DLL"
  772. "TargetName" = "8:PBSHR120.DLL"
  773. "Tag" = "8:"
  774. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  775. "Condition" = "8:"
  776. "Transitive" = "11:FALSE"
  777. "Vital" = "11:TRUE"
  778. "ReadOnly" = "11:FALSE"
  779. "Hidden" = "11:FALSE"
  780. "System" = "11:FALSE"
  781. "Permanent" = "11:FALSE"
  782. "SharedLegacy" = "11:FALSE"
  783. "PackageAs" = "3:1"
  784. "Register" = "3:1"
  785. "Exclude" = "11:FALSE"
  786. "IsDependency" = "11:FALSE"
  787. "IsolateTo" = "8:"
  788. }
  789. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_6F81BA572117450A828B74387557CE92"
  790. {
  791. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\Microsoft.Owin.Host.SystemWeb.xml"
  792. "TargetName" = "8:Microsoft.Owin.Host.SystemWeb.xml"
  793. "Tag" = "8:"
  794. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  795. "Condition" = "8:"
  796. "Transitive" = "11:FALSE"
  797. "Vital" = "11:TRUE"
  798. "ReadOnly" = "11:FALSE"
  799. "Hidden" = "11:FALSE"
  800. "System" = "11:FALSE"
  801. "Permanent" = "11:FALSE"
  802. "SharedLegacy" = "11:FALSE"
  803. "PackageAs" = "3:1"
  804. "Register" = "3:1"
  805. "Exclude" = "11:FALSE"
  806. "IsDependency" = "11:FALSE"
  807. "IsolateTo" = "8:"
  808. }
  809. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7E90D924E2F0B38E2EB68DD4BB46E7C0"
  810. {
  811. "AssemblyRegister" = "3:1"
  812. "AssemblyIsInGAC" = "11:FALSE"
  813. "AssemblyAsmDisplayName" = "8:Microsoft.Owin, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  814. "ScatterAssemblies"
  815. {
  816. "_7E90D924E2F0B38E2EB68DD4BB46E7C0"
  817. {
  818. "Name" = "8:Microsoft.Owin.dll"
  819. "Attributes" = "3:512"
  820. }
  821. }
  822. "SourcePath" = "8:Microsoft.Owin.dll"
  823. "TargetName" = "8:"
  824. "Tag" = "8:"
  825. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  826. "Condition" = "8:"
  827. "Transitive" = "11:FALSE"
  828. "Vital" = "11:TRUE"
  829. "ReadOnly" = "11:FALSE"
  830. "Hidden" = "11:FALSE"
  831. "System" = "11:FALSE"
  832. "Permanent" = "11:FALSE"
  833. "SharedLegacy" = "11:FALSE"
  834. "PackageAs" = "3:1"
  835. "Register" = "3:1"
  836. "Exclude" = "11:FALSE"
  837. "IsDependency" = "11:TRUE"
  838. "IsolateTo" = "8:"
  839. }
  840. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_9D9832D0C9B9430EBB915996CD55D615"
  841. {
  842. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\libjutils.dll"
  843. "TargetName" = "8:libjutils.dll"
  844. "Tag" = "8:"
  845. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  846. "Condition" = "8:"
  847. "Transitive" = "11:FALSE"
  848. "Vital" = "11:TRUE"
  849. "ReadOnly" = "11:FALSE"
  850. "Hidden" = "11:FALSE"
  851. "System" = "11:FALSE"
  852. "Permanent" = "11:FALSE"
  853. "SharedLegacy" = "11:FALSE"
  854. "PackageAs" = "3:1"
  855. "Register" = "3:1"
  856. "Exclude" = "11:FALSE"
  857. "IsDependency" = "11:FALSE"
  858. "IsolateTo" = "8:"
  859. }
  860. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A00532ADD45DA61966E056289D5999D7"
  861. {
  862. "AssemblyRegister" = "3:1"
  863. "AssemblyIsInGAC" = "11:FALSE"
  864. "AssemblyAsmDisplayName" = "8:System.Web.Http.Owin, Version=5.2.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  865. "ScatterAssemblies"
  866. {
  867. "_A00532ADD45DA61966E056289D5999D7"
  868. {
  869. "Name" = "8:System.Web.Http.Owin.dll"
  870. "Attributes" = "3:512"
  871. }
  872. }
  873. "SourcePath" = "8:System.Web.Http.Owin.dll"
  874. "TargetName" = "8:"
  875. "Tag" = "8:"
  876. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  877. "Condition" = "8:"
  878. "Transitive" = "11:FALSE"
  879. "Vital" = "11:TRUE"
  880. "ReadOnly" = "11:FALSE"
  881. "Hidden" = "11:FALSE"
  882. "System" = "11:FALSE"
  883. "Permanent" = "11:FALSE"
  884. "SharedLegacy" = "11:FALSE"
  885. "PackageAs" = "3:1"
  886. "Register" = "3:1"
  887. "Exclude" = "11:FALSE"
  888. "IsDependency" = "11:TRUE"
  889. "IsolateTo" = "8:"
  890. }
  891. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A1ABAA46B5FA4DFCAC8815EF1A244B1D"
  892. {
  893. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\msvcr71.dll"
  894. "TargetName" = "8:msvcr71.dll"
  895. "Tag" = "8:"
  896. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  897. "Condition" = "8:"
  898. "Transitive" = "11:FALSE"
  899. "Vital" = "11:TRUE"
  900. "ReadOnly" = "11:FALSE"
  901. "Hidden" = "11:FALSE"
  902. "System" = "11:FALSE"
  903. "Permanent" = "11:FALSE"
  904. "SharedLegacy" = "11:FALSE"
  905. "PackageAs" = "3:1"
  906. "Register" = "3:1"
  907. "Exclude" = "11:FALSE"
  908. "IsDependency" = "11:FALSE"
  909. "IsolateTo" = "8:"
  910. }
  911. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A31998CFBCF448059B8FE3B7EF407552"
  912. {
  913. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\PBVM120.DLL"
  914. "TargetName" = "8:PBVM120.DLL"
  915. "Tag" = "8:"
  916. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  917. "Condition" = "8:"
  918. "Transitive" = "11:FALSE"
  919. "Vital" = "11:TRUE"
  920. "ReadOnly" = "11:FALSE"
  921. "Hidden" = "11:FALSE"
  922. "System" = "11:FALSE"
  923. "Permanent" = "11:FALSE"
  924. "SharedLegacy" = "11:FALSE"
  925. "PackageAs" = "3:1"
  926. "Register" = "3:1"
  927. "Exclude" = "11:FALSE"
  928. "IsDependency" = "11:FALSE"
  929. "IsolateTo" = "8:"
  930. }
  931. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A8FD811B288145F480B1049DFA4628E4"
  932. {
  933. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\ThCardReader.exe.config"
  934. "TargetName" = "8:ThCardReader.exe.config"
  935. "Tag" = "8:"
  936. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  937. "Condition" = "8:"
  938. "Transitive" = "11:FALSE"
  939. "Vital" = "11:TRUE"
  940. "ReadOnly" = "11:FALSE"
  941. "Hidden" = "11:FALSE"
  942. "System" = "11:FALSE"
  943. "Permanent" = "11:FALSE"
  944. "SharedLegacy" = "11:FALSE"
  945. "PackageAs" = "3:1"
  946. "Register" = "3:1"
  947. "Exclude" = "11:FALSE"
  948. "IsDependency" = "11:FALSE"
  949. "IsolateTo" = "8:"
  950. }
  951. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AD160FE8EAC442B5AE663E77B5B84156"
  952. {
  953. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\atl71.dll"
  954. "TargetName" = "8:atl71.dll"
  955. "Tag" = "8:"
  956. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  957. "Condition" = "8:"
  958. "Transitive" = "11:FALSE"
  959. "Vital" = "11:TRUE"
  960. "ReadOnly" = "11:FALSE"
  961. "Hidden" = "11:FALSE"
  962. "System" = "11:FALSE"
  963. "Permanent" = "11:FALSE"
  964. "SharedLegacy" = "11:FALSE"
  965. "PackageAs" = "3:1"
  966. "Register" = "3:1"
  967. "Exclude" = "11:FALSE"
  968. "IsDependency" = "11:FALSE"
  969. "IsolateTo" = "8:"
  970. }
  971. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C4F4058F3531485297AE8CC4AACB43A1"
  972. {
  973. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\Microsoft.Owin.Host.HttpListener.xml"
  974. "TargetName" = "8:Microsoft.Owin.Host.HttpListener.xml"
  975. "Tag" = "8:"
  976. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  977. "Condition" = "8:"
  978. "Transitive" = "11:FALSE"
  979. "Vital" = "11:TRUE"
  980. "ReadOnly" = "11:FALSE"
  981. "Hidden" = "11:FALSE"
  982. "System" = "11:FALSE"
  983. "Permanent" = "11:FALSE"
  984. "SharedLegacy" = "11:FALSE"
  985. "PackageAs" = "3:1"
  986. "Register" = "3:1"
  987. "Exclude" = "11:FALSE"
  988. "IsDependency" = "11:FALSE"
  989. "IsolateTo" = "8:"
  990. }
  991. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C78428E45D364BD9AA7FD1A4D5E70268"
  992. {
  993. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\libjcc.dll"
  994. "TargetName" = "8:libjcc.dll"
  995. "Tag" = "8:"
  996. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  997. "Condition" = "8:"
  998. "Transitive" = "11:FALSE"
  999. "Vital" = "11:TRUE"
  1000. "ReadOnly" = "11:FALSE"
  1001. "Hidden" = "11:FALSE"
  1002. "System" = "11:FALSE"
  1003. "Permanent" = "11:FALSE"
  1004. "SharedLegacy" = "11:FALSE"
  1005. "PackageAs" = "3:1"
  1006. "Register" = "3:1"
  1007. "Exclude" = "11:FALSE"
  1008. "IsDependency" = "11:FALSE"
  1009. "IsolateTo" = "8:"
  1010. }
  1011. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C82E2389856D2F755D2763F986637EA6"
  1012. {
  1013. "AssemblyRegister" = "3:1"
  1014. "AssemblyIsInGAC" = "11:FALSE"
  1015. "AssemblyAsmDisplayName" = "8:Owin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f0ebd12fd5e55cc5, processorArchitecture=MSIL"
  1016. "ScatterAssemblies"
  1017. {
  1018. "_C82E2389856D2F755D2763F986637EA6"
  1019. {
  1020. "Name" = "8:Owin.dll"
  1021. "Attributes" = "3:512"
  1022. }
  1023. }
  1024. "SourcePath" = "8:Owin.dll"
  1025. "TargetName" = "8:"
  1026. "Tag" = "8:"
  1027. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1028. "Condition" = "8:"
  1029. "Transitive" = "11:FALSE"
  1030. "Vital" = "11:TRUE"
  1031. "ReadOnly" = "11:FALSE"
  1032. "Hidden" = "11:FALSE"
  1033. "System" = "11:FALSE"
  1034. "Permanent" = "11:FALSE"
  1035. "SharedLegacy" = "11:FALSE"
  1036. "PackageAs" = "3:1"
  1037. "Register" = "3:1"
  1038. "Exclude" = "11:FALSE"
  1039. "IsDependency" = "11:TRUE"
  1040. "IsolateTo" = "8:"
  1041. }
  1042. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CAC9A52D665B5871A5F32ED90809CDCE"
  1043. {
  1044. "AssemblyRegister" = "3:1"
  1045. "AssemblyIsInGAC" = "11:FALSE"
  1046. "AssemblyAsmDisplayName" = "8:Microsoft.Owin.Hosting, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  1047. "ScatterAssemblies"
  1048. {
  1049. "_CAC9A52D665B5871A5F32ED90809CDCE"
  1050. {
  1051. "Name" = "8:Microsoft.Owin.Hosting.dll"
  1052. "Attributes" = "3:512"
  1053. }
  1054. }
  1055. "SourcePath" = "8:Microsoft.Owin.Hosting.dll"
  1056. "TargetName" = "8:"
  1057. "Tag" = "8:"
  1058. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1059. "Condition" = "8:"
  1060. "Transitive" = "11:FALSE"
  1061. "Vital" = "11:TRUE"
  1062. "ReadOnly" = "11:FALSE"
  1063. "Hidden" = "11:FALSE"
  1064. "System" = "11:FALSE"
  1065. "Permanent" = "11:FALSE"
  1066. "SharedLegacy" = "11:FALSE"
  1067. "PackageAs" = "3:1"
  1068. "Register" = "3:1"
  1069. "Exclude" = "11:FALSE"
  1070. "IsDependency" = "11:TRUE"
  1071. "IsolateTo" = "8:"
  1072. }
  1073. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CF4A96BD1BB06C78DFAF1DA762000E90"
  1074. {
  1075. "AssemblyRegister" = "3:1"
  1076. "AssemblyIsInGAC" = "11:FALSE"
  1077. "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
  1078. "ScatterAssemblies"
  1079. {
  1080. "_CF4A96BD1BB06C78DFAF1DA762000E90"
  1081. {
  1082. "Name" = "8:System.Net.Http.dll"
  1083. "Attributes" = "3:512"
  1084. }
  1085. }
  1086. "SourcePath" = "8:System.Net.Http.dll"
  1087. "TargetName" = "8:"
  1088. "Tag" = "8:"
  1089. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1090. "Condition" = "8:"
  1091. "Transitive" = "11:FALSE"
  1092. "Vital" = "11:TRUE"
  1093. "ReadOnly" = "11:FALSE"
  1094. "Hidden" = "11:FALSE"
  1095. "System" = "11:FALSE"
  1096. "Permanent" = "11:FALSE"
  1097. "SharedLegacy" = "11:FALSE"
  1098. "PackageAs" = "3:1"
  1099. "Register" = "3:1"
  1100. "Exclude" = "11:FALSE"
  1101. "IsDependency" = "11:TRUE"
  1102. "IsolateTo" = "8:"
  1103. }
  1104. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_D08463569CE0429A8A4DE0EEE76B425D"
  1105. {
  1106. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\Microsoft.Owin.xml"
  1107. "TargetName" = "8:Microsoft.Owin.xml"
  1108. "Tag" = "8:"
  1109. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1110. "Condition" = "8:"
  1111. "Transitive" = "11:FALSE"
  1112. "Vital" = "11:TRUE"
  1113. "ReadOnly" = "11:FALSE"
  1114. "Hidden" = "11:FALSE"
  1115. "System" = "11:FALSE"
  1116. "Permanent" = "11:FALSE"
  1117. "SharedLegacy" = "11:FALSE"
  1118. "PackageAs" = "3:1"
  1119. "Register" = "3:1"
  1120. "Exclude" = "11:FALSE"
  1121. "IsDependency" = "11:FALSE"
  1122. "IsolateTo" = "8:"
  1123. }
  1124. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E0DE75E58EED4E62B0F104FB5B0BDDBF"
  1125. {
  1126. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\Microsoft.Owin.Cors.xml"
  1127. "TargetName" = "8:Microsoft.Owin.Cors.xml"
  1128. "Tag" = "8:"
  1129. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1130. "Condition" = "8:"
  1131. "Transitive" = "11:FALSE"
  1132. "Vital" = "11:TRUE"
  1133. "ReadOnly" = "11:FALSE"
  1134. "Hidden" = "11:FALSE"
  1135. "System" = "11:FALSE"
  1136. "Permanent" = "11:FALSE"
  1137. "SharedLegacy" = "11:FALSE"
  1138. "PackageAs" = "3:1"
  1139. "Register" = "3:1"
  1140. "Exclude" = "11:FALSE"
  1141. "IsDependency" = "11:FALSE"
  1142. "IsolateTo" = "8:"
  1143. }
  1144. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E4D308EB4957F71B0830D136E9534F08"
  1145. {
  1146. "AssemblyRegister" = "3:1"
  1147. "AssemblyIsInGAC" = "11:FALSE"
  1148. "AssemblyAsmDisplayName" = "8:System.Net.Http.Formatting, Version=5.2.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  1149. "ScatterAssemblies"
  1150. {
  1151. "_E4D308EB4957F71B0830D136E9534F08"
  1152. {
  1153. "Name" = "8:System.Net.Http.Formatting.dll"
  1154. "Attributes" = "3:512"
  1155. }
  1156. }
  1157. "SourcePath" = "8:System.Net.Http.Formatting.dll"
  1158. "TargetName" = "8:"
  1159. "Tag" = "8:"
  1160. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1161. "Condition" = "8:"
  1162. "Transitive" = "11:FALSE"
  1163. "Vital" = "11:TRUE"
  1164. "ReadOnly" = "11:FALSE"
  1165. "Hidden" = "11:FALSE"
  1166. "System" = "11:FALSE"
  1167. "Permanent" = "11:FALSE"
  1168. "SharedLegacy" = "11:FALSE"
  1169. "PackageAs" = "3:1"
  1170. "Register" = "3:1"
  1171. "Exclude" = "11:FALSE"
  1172. "IsDependency" = "11:TRUE"
  1173. "IsolateTo" = "8:"
  1174. }
  1175. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EDC9CAE7330C1AC13CA5710FA2B3171E"
  1176. {
  1177. "AssemblyRegister" = "3:1"
  1178. "AssemblyIsInGAC" = "11:FALSE"
  1179. "AssemblyAsmDisplayName" = "8:Microsoft.Owin.Host.HttpListener, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  1180. "ScatterAssemblies"
  1181. {
  1182. "_EDC9CAE7330C1AC13CA5710FA2B3171E"
  1183. {
  1184. "Name" = "8:Microsoft.Owin.Host.HttpListener.dll"
  1185. "Attributes" = "3:512"
  1186. }
  1187. }
  1188. "SourcePath" = "8:Microsoft.Owin.Host.HttpListener.dll"
  1189. "TargetName" = "8:"
  1190. "Tag" = "8:"
  1191. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1192. "Condition" = "8:"
  1193. "Transitive" = "11:FALSE"
  1194. "Vital" = "11:TRUE"
  1195. "ReadOnly" = "11:FALSE"
  1196. "Hidden" = "11:FALSE"
  1197. "System" = "11:FALSE"
  1198. "Permanent" = "11:FALSE"
  1199. "SharedLegacy" = "11:FALSE"
  1200. "PackageAs" = "3:1"
  1201. "Register" = "3:1"
  1202. "Exclude" = "11:FALSE"
  1203. "IsDependency" = "11:TRUE"
  1204. "IsolateTo" = "8:"
  1205. }
  1206. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EE36B83D27ABBD94988DC078D562D8AF"
  1207. {
  1208. "AssemblyRegister" = "3:1"
  1209. "AssemblyIsInGAC" = "11:FALSE"
  1210. "AssemblyAsmDisplayName" = "8:System.Web.Http, Version=5.2.8.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  1211. "ScatterAssemblies"
  1212. {
  1213. "_EE36B83D27ABBD94988DC078D562D8AF"
  1214. {
  1215. "Name" = "8:System.Web.Http.dll"
  1216. "Attributes" = "3:512"
  1217. }
  1218. }
  1219. "SourcePath" = "8:System.Web.Http.dll"
  1220. "TargetName" = "8:"
  1221. "Tag" = "8:"
  1222. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1223. "Condition" = "8:"
  1224. "Transitive" = "11:FALSE"
  1225. "Vital" = "11:TRUE"
  1226. "ReadOnly" = "11:FALSE"
  1227. "Hidden" = "11:FALSE"
  1228. "System" = "11:FALSE"
  1229. "Permanent" = "11:FALSE"
  1230. "SharedLegacy" = "11:FALSE"
  1231. "PackageAs" = "3:1"
  1232. "Register" = "3:1"
  1233. "Exclude" = "11:FALSE"
  1234. "IsDependency" = "11:TRUE"
  1235. "IsolateTo" = "8:"
  1236. }
  1237. "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F33E21B1544F6D644F67A2943A5CDCF7"
  1238. {
  1239. "AssemblyRegister" = "3:1"
  1240. "AssemblyIsInGAC" = "11:FALSE"
  1241. "AssemblyAsmDisplayName" = "8:Microsoft.Owin.Cors, Version=4.2.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
  1242. "ScatterAssemblies"
  1243. {
  1244. "_F33E21B1544F6D644F67A2943A5CDCF7"
  1245. {
  1246. "Name" = "8:Microsoft.Owin.Cors.dll"
  1247. "Attributes" = "3:512"
  1248. }
  1249. }
  1250. "SourcePath" = "8:Microsoft.Owin.Cors.dll"
  1251. "TargetName" = "8:"
  1252. "Tag" = "8:"
  1253. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1254. "Condition" = "8:"
  1255. "Transitive" = "11:FALSE"
  1256. "Vital" = "11:TRUE"
  1257. "ReadOnly" = "11:FALSE"
  1258. "Hidden" = "11:FALSE"
  1259. "System" = "11:FALSE"
  1260. "Permanent" = "11:FALSE"
  1261. "SharedLegacy" = "11:FALSE"
  1262. "PackageAs" = "3:1"
  1263. "Register" = "3:1"
  1264. "Exclude" = "11:FALSE"
  1265. "IsDependency" = "11:TRUE"
  1266. "IsolateTo" = "8:"
  1267. }
  1268. "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F8B39BE0F4204119A376EF8C6EDBA51D"
  1269. {
  1270. "SourcePath" = "8:..\\ThCardReader\\bin\\x86\\Debug\\SSCard.dll"
  1271. "TargetName" = "8:SSCard.dll"
  1272. "Tag" = "8:"
  1273. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1274. "Condition" = "8:"
  1275. "Transitive" = "11:FALSE"
  1276. "Vital" = "11:TRUE"
  1277. "ReadOnly" = "11:FALSE"
  1278. "Hidden" = "11:FALSE"
  1279. "System" = "11:FALSE"
  1280. "Permanent" = "11:FALSE"
  1281. "SharedLegacy" = "11:FALSE"
  1282. "PackageAs" = "3:1"
  1283. "Register" = "3:1"
  1284. "Exclude" = "11:FALSE"
  1285. "IsDependency" = "11:FALSE"
  1286. "IsolateTo" = "8:"
  1287. }
  1288. }
  1289. "FileType"
  1290. {
  1291. }
  1292. "Folder"
  1293. {
  1294. "{3C67513D-01DD-4637-8A68-80971EB9504F}:_2113D6BC4DA14907934B1377FF753885"
  1295. {
  1296. "DefaultLocation" = "8:D:\\ThCardReader"
  1297. "Name" = "8:#1925"
  1298. "AlwaysCreate" = "11:FALSE"
  1299. "Condition" = "8:"
  1300. "Transitive" = "11:FALSE"
  1301. "Property" = "8:TARGETDIR"
  1302. "Folders"
  1303. {
  1304. }
  1305. }
  1306. "{1525181F-901A-416C-8A58-119130FE478E}:_7A83200BE69841A585FBEB8D9A2D764B"
  1307. {
  1308. "Name" = "8:#1916"
  1309. "AlwaysCreate" = "11:FALSE"
  1310. "Condition" = "8:"
  1311. "Transitive" = "11:FALSE"
  1312. "Property" = "8:DesktopFolder"
  1313. "Folders"
  1314. {
  1315. }
  1316. }
  1317. "{1525181F-901A-416C-8A58-119130FE478E}:_989B6548DEF646B187E6D81824970A91"
  1318. {
  1319. "Name" = "8:#1919"
  1320. "AlwaysCreate" = "11:FALSE"
  1321. "Condition" = "8:"
  1322. "Transitive" = "11:FALSE"
  1323. "Property" = "8:ProgramMenuFolder"
  1324. "Folders"
  1325. {
  1326. "{9EF0B969-E518-4E46-987F-47570745A589}:_330B88C8817E46E685E63EC68C18772D"
  1327. {
  1328. "Name" = "8:StartUp"
  1329. "AlwaysCreate" = "11:FALSE"
  1330. "Condition" = "8:"
  1331. "Transitive" = "11:FALSE"
  1332. "Property" = "8:_4D738202BDC54A3E93AA8EF087DE6667"
  1333. "Folders"
  1334. {
  1335. }
  1336. }
  1337. }
  1338. }
  1339. }
  1340. "LaunchCondition"
  1341. {
  1342. }
  1343. "Locator"
  1344. {
  1345. }
  1346. "MsiBootstrapper"
  1347. {
  1348. "LangId" = "3:2052"
  1349. "RequiresElevation" = "11:FALSE"
  1350. }
  1351. "Product"
  1352. {
  1353. "Name" = "8:Microsoft Visual Studio"
  1354. "ProductName" = "8:读卡插件"
  1355. "ProductCode" = "8:{F7405D47-ED2A-4B53-B0FA-620841482CD3}"
  1356. "PackageCode" = "8:{A3EFE365-E299-43F4-BB8A-65E19367463C}"
  1357. "UpgradeCode" = "8:{A5AC7A7C-A3CA-4299-9901-87DB4D6E4AD1}"
  1358. "AspNetVersion" = "8:2.0.50727.0"
  1359. "RestartWWWService" = "11:FALSE"
  1360. "RemovePreviousVersions" = "11:FALSE"
  1361. "DetectNewerInstalledVersion" = "11:TRUE"
  1362. "InstallAllUsers" = "11:FALSE"
  1363. "ProductVersion" = "8:1.8.0"
  1364. "Manufacturer" = "8:Default Company Name"
  1365. "ARPHELPTELEPHONE" = "8:"
  1366. "ARPHELPLINK" = "8:"
  1367. "Title" = "8:ThCardReaderSetup"
  1368. "Subject" = "8:"
  1369. "ARPCONTACT" = "8:Default Company Name"
  1370. "Keywords" = "8:"
  1371. "ARPCOMMENTS" = "8:"
  1372. "ARPURLINFOABOUT" = "8:"
  1373. "ARPPRODUCTICON" = "8:"
  1374. "ARPIconIndex" = "3:0"
  1375. "SearchPath" = "8:"
  1376. "UseSystemSearchPath" = "11:TRUE"
  1377. "TargetPlatform" = "3:0"
  1378. "PreBuildEvent" = "8:"
  1379. "PostBuildEvent" = "8:"
  1380. "RunPostBuildEvent" = "3:0"
  1381. }
  1382. "Registry"
  1383. {
  1384. "HKLM"
  1385. {
  1386. "Keys"
  1387. {
  1388. "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_2F9FC604BB5B437EA82FD0A403DD22FC"
  1389. {
  1390. "Name" = "8:Software"
  1391. "Condition" = "8:"
  1392. "AlwaysCreate" = "11:FALSE"
  1393. "DeleteAtUninstall" = "11:FALSE"
  1394. "Transitive" = "11:FALSE"
  1395. "Keys"
  1396. {
  1397. "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_82AA04110FB644E4B328FEA998BA426A"
  1398. {
  1399. "Name" = "8:[Manufacturer]"
  1400. "Condition" = "8:"
  1401. "AlwaysCreate" = "11:FALSE"
  1402. "DeleteAtUninstall" = "11:FALSE"
  1403. "Transitive" = "11:FALSE"
  1404. "Keys"
  1405. {
  1406. }
  1407. "Values"
  1408. {
  1409. }
  1410. }
  1411. }
  1412. "Values"
  1413. {
  1414. }
  1415. }
  1416. }
  1417. }
  1418. "HKCU"
  1419. {
  1420. "Keys"
  1421. {
  1422. "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_0A4E5611BD294CE78FCCB55AB841516C"
  1423. {
  1424. "Name" = "8:Software"
  1425. "Condition" = "8:"
  1426. "AlwaysCreate" = "11:FALSE"
  1427. "DeleteAtUninstall" = "11:FALSE"
  1428. "Transitive" = "11:FALSE"
  1429. "Keys"
  1430. {
  1431. "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_3691D4CF70B847C0A137DB00C6BCE56B"
  1432. {
  1433. "Name" = "8:[Manufacturer]"
  1434. "Condition" = "8:"
  1435. "AlwaysCreate" = "11:FALSE"
  1436. "DeleteAtUninstall" = "11:FALSE"
  1437. "Transitive" = "11:FALSE"
  1438. "Keys"
  1439. {
  1440. }
  1441. "Values"
  1442. {
  1443. }
  1444. }
  1445. }
  1446. "Values"
  1447. {
  1448. }
  1449. }
  1450. }
  1451. }
  1452. "HKCR"
  1453. {
  1454. "Keys"
  1455. {
  1456. }
  1457. }
  1458. "HKU"
  1459. {
  1460. "Keys"
  1461. {
  1462. }
  1463. }
  1464. "HKPU"
  1465. {
  1466. "Keys"
  1467. {
  1468. }
  1469. }
  1470. }
  1471. "Sequences"
  1472. {
  1473. }
  1474. "Shortcut"
  1475. {
  1476. "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_7671681C60FE4C4ABE6E6363E53961D7"
  1477. {
  1478. "Name" = "8:读卡插件"
  1479. "Arguments" = "8:"
  1480. "Description" = "8:"
  1481. "ShowCmd" = "3:1"
  1482. "IconIndex" = "3:0"
  1483. "Transitive" = "11:FALSE"
  1484. "Target" = "8:_EA6E85C582BB4533AD00BF337D166733"
  1485. "Folder" = "8:_330B88C8817E46E685E63EC68C18772D"
  1486. "WorkingFolder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1487. "Icon" = "8:_5533B8BC72B94AB6A2492713DF427D15"
  1488. "Feature" = "8:"
  1489. }
  1490. "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_7F4BD6A9012B4DEF93EA8691D8959E16"
  1491. {
  1492. "Name" = "8:读卡插件"
  1493. "Arguments" = "8:"
  1494. "Description" = "8:"
  1495. "ShowCmd" = "3:1"
  1496. "IconIndex" = "3:0"
  1497. "Transitive" = "11:FALSE"
  1498. "Target" = "8:_EA6E85C582BB4533AD00BF337D166733"
  1499. "Folder" = "8:_7A83200BE69841A585FBEB8D9A2D764B"
  1500. "WorkingFolder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1501. "Icon" = "8:_5533B8BC72B94AB6A2492713DF427D15"
  1502. "Feature" = "8:"
  1503. }
  1504. "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_8FF95EF8D12B45AE82E1F0A5343B6ED4"
  1505. {
  1506. "Name" = "8:卸载读卡插件"
  1507. "Arguments" = "8:/x {F7405D47-ED2A-4B53-B0FA-620841482CD3}"
  1508. "Description" = "8:"
  1509. "ShowCmd" = "3:1"
  1510. "IconIndex" = "3:0"
  1511. "Transitive" = "11:FALSE"
  1512. "Target" = "8:_23B256226BB140DF9544B10582B39AA3"
  1513. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1514. "WorkingFolder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1515. "Icon" = "8:"
  1516. "Feature" = "8:"
  1517. }
  1518. }
  1519. "UserInterface"
  1520. {
  1521. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_0356B711EF7545C1827F4024DA190C41"
  1522. {
  1523. "Name" = "8:#1902"
  1524. "Sequence" = "3:1"
  1525. "Attributes" = "3:3"
  1526. "Dialogs"
  1527. {
  1528. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_65098C2FE8E74C3EBCED698F1F83EB76"
  1529. {
  1530. "Sequence" = "3:100"
  1531. "DisplayName" = "8:已完成"
  1532. "UseDynamicProperties" = "11:TRUE"
  1533. "IsDependency" = "11:FALSE"
  1534. "SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
  1535. "Properties"
  1536. {
  1537. "BannerBitmap"
  1538. {
  1539. "Name" = "8:BannerBitmap"
  1540. "DisplayName" = "8:#1001"
  1541. "Description" = "8:#1101"
  1542. "Type" = "3:8"
  1543. "ContextData" = "8:Bitmap"
  1544. "Attributes" = "3:4"
  1545. "Setting" = "3:1"
  1546. "UsePlugInResources" = "11:TRUE"
  1547. }
  1548. "UpdateText"
  1549. {
  1550. "Name" = "8:UpdateText"
  1551. "DisplayName" = "8:#1058"
  1552. "Description" = "8:#1158"
  1553. "Type" = "3:15"
  1554. "ContextData" = "8:"
  1555. "Attributes" = "3:0"
  1556. "Setting" = "3:1"
  1557. "Value" = "8:#1258"
  1558. "DefaultValue" = "8:#1258"
  1559. "UsePlugInResources" = "11:TRUE"
  1560. }
  1561. }
  1562. }
  1563. }
  1564. }
  1565. "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_1A91938C437448D3995DD1EB85E3AF0F"
  1566. {
  1567. "UseDynamicProperties" = "11:FALSE"
  1568. "IsDependency" = "11:FALSE"
  1569. "SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim"
  1570. }
  1571. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_6C54DE3B24174F6F80C4E8BC8D9BEC04"
  1572. {
  1573. "Name" = "8:#1900"
  1574. "Sequence" = "3:1"
  1575. "Attributes" = "3:1"
  1576. "Dialogs"
  1577. {
  1578. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_5662BB8C2DE842B28CE1E5FA28171741"
  1579. {
  1580. "Sequence" = "3:200"
  1581. "DisplayName" = "8:安装文件夹"
  1582. "UseDynamicProperties" = "11:TRUE"
  1583. "IsDependency" = "11:FALSE"
  1584. "SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
  1585. "Properties"
  1586. {
  1587. "BannerBitmap"
  1588. {
  1589. "Name" = "8:BannerBitmap"
  1590. "DisplayName" = "8:#1001"
  1591. "Description" = "8:#1101"
  1592. "Type" = "3:8"
  1593. "ContextData" = "8:Bitmap"
  1594. "Attributes" = "3:4"
  1595. "Setting" = "3:1"
  1596. "UsePlugInResources" = "11:TRUE"
  1597. }
  1598. "InstallAllUsersVisible"
  1599. {
  1600. "Name" = "8:InstallAllUsersVisible"
  1601. "DisplayName" = "8:#1059"
  1602. "Description" = "8:#1159"
  1603. "Type" = "3:5"
  1604. "ContextData" = "8:1;True=1;False=0"
  1605. "Attributes" = "3:0"
  1606. "Setting" = "3:0"
  1607. "Value" = "3:1"
  1608. "DefaultValue" = "3:1"
  1609. "UsePlugInResources" = "11:TRUE"
  1610. }
  1611. }
  1612. }
  1613. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_71C8CF1B0F5A422D8F35D334E24F1452"
  1614. {
  1615. "Sequence" = "3:100"
  1616. "DisplayName" = "8:欢迎使用"
  1617. "UseDynamicProperties" = "11:TRUE"
  1618. "IsDependency" = "11:FALSE"
  1619. "SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
  1620. "Properties"
  1621. {
  1622. "BannerBitmap"
  1623. {
  1624. "Name" = "8:BannerBitmap"
  1625. "DisplayName" = "8:#1001"
  1626. "Description" = "8:#1101"
  1627. "Type" = "3:8"
  1628. "ContextData" = "8:Bitmap"
  1629. "Attributes" = "3:4"
  1630. "Setting" = "3:1"
  1631. "UsePlugInResources" = "11:TRUE"
  1632. }
  1633. "CopyrightWarning"
  1634. {
  1635. "Name" = "8:CopyrightWarning"
  1636. "DisplayName" = "8:#1002"
  1637. "Description" = "8:#1102"
  1638. "Type" = "3:3"
  1639. "ContextData" = "8:"
  1640. "Attributes" = "3:0"
  1641. "Setting" = "3:1"
  1642. "Value" = "8:#1202"
  1643. "DefaultValue" = "8:#1202"
  1644. "UsePlugInResources" = "11:TRUE"
  1645. }
  1646. "Welcome"
  1647. {
  1648. "Name" = "8:Welcome"
  1649. "DisplayName" = "8:#1003"
  1650. "Description" = "8:#1103"
  1651. "Type" = "3:3"
  1652. "ContextData" = "8:"
  1653. "Attributes" = "3:0"
  1654. "Setting" = "3:1"
  1655. "Value" = "8:#1203"
  1656. "DefaultValue" = "8:#1203"
  1657. "UsePlugInResources" = "11:TRUE"
  1658. }
  1659. }
  1660. }
  1661. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_DE64548DAA6440F594CC656CCBCF9562"
  1662. {
  1663. "Sequence" = "3:300"
  1664. "DisplayName" = "8:确认安装"
  1665. "UseDynamicProperties" = "11:TRUE"
  1666. "IsDependency" = "11:FALSE"
  1667. "SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
  1668. "Properties"
  1669. {
  1670. "BannerBitmap"
  1671. {
  1672. "Name" = "8:BannerBitmap"
  1673. "DisplayName" = "8:#1001"
  1674. "Description" = "8:#1101"
  1675. "Type" = "3:8"
  1676. "ContextData" = "8:Bitmap"
  1677. "Attributes" = "3:4"
  1678. "Setting" = "3:1"
  1679. "UsePlugInResources" = "11:TRUE"
  1680. }
  1681. }
  1682. }
  1683. }
  1684. }
  1685. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_757C6E8E73394CA392A0F504EEA03F3C"
  1686. {
  1687. "Name" = "8:#1901"
  1688. "Sequence" = "3:2"
  1689. "Attributes" = "3:2"
  1690. "Dialogs"
  1691. {
  1692. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_2DF3ED883F0D42E786F2723C28B329D2"
  1693. {
  1694. "Sequence" = "3:100"
  1695. "DisplayName" = "8:进度"
  1696. "UseDynamicProperties" = "11:TRUE"
  1697. "IsDependency" = "11:FALSE"
  1698. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
  1699. "Properties"
  1700. {
  1701. "BannerBitmap"
  1702. {
  1703. "Name" = "8:BannerBitmap"
  1704. "DisplayName" = "8:#1001"
  1705. "Description" = "8:#1101"
  1706. "Type" = "3:8"
  1707. "ContextData" = "8:Bitmap"
  1708. "Attributes" = "3:4"
  1709. "Setting" = "3:1"
  1710. "UsePlugInResources" = "11:TRUE"
  1711. }
  1712. "ShowProgress"
  1713. {
  1714. "Name" = "8:ShowProgress"
  1715. "DisplayName" = "8:#1009"
  1716. "Description" = "8:#1109"
  1717. "Type" = "3:5"
  1718. "ContextData" = "8:1;True=1;False=0"
  1719. "Attributes" = "3:0"
  1720. "Setting" = "3:0"
  1721. "Value" = "3:1"
  1722. "DefaultValue" = "3:1"
  1723. "UsePlugInResources" = "11:TRUE"
  1724. }
  1725. }
  1726. }
  1727. }
  1728. }
  1729. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_7A57373627164BE7A162BECD9FA1B54C"
  1730. {
  1731. "Name" = "8:#1901"
  1732. "Sequence" = "3:1"
  1733. "Attributes" = "3:2"
  1734. "Dialogs"
  1735. {
  1736. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C412D62194F64DC48009DE8757D66952"
  1737. {
  1738. "Sequence" = "3:100"
  1739. "DisplayName" = "8:进度"
  1740. "UseDynamicProperties" = "11:TRUE"
  1741. "IsDependency" = "11:FALSE"
  1742. "SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
  1743. "Properties"
  1744. {
  1745. "BannerBitmap"
  1746. {
  1747. "Name" = "8:BannerBitmap"
  1748. "DisplayName" = "8:#1001"
  1749. "Description" = "8:#1101"
  1750. "Type" = "3:8"
  1751. "ContextData" = "8:Bitmap"
  1752. "Attributes" = "3:4"
  1753. "Setting" = "3:1"
  1754. "UsePlugInResources" = "11:TRUE"
  1755. }
  1756. "ShowProgress"
  1757. {
  1758. "Name" = "8:ShowProgress"
  1759. "DisplayName" = "8:#1009"
  1760. "Description" = "8:#1109"
  1761. "Type" = "3:5"
  1762. "ContextData" = "8:1;True=1;False=0"
  1763. "Attributes" = "3:0"
  1764. "Setting" = "3:0"
  1765. "Value" = "3:1"
  1766. "DefaultValue" = "3:1"
  1767. "UsePlugInResources" = "11:TRUE"
  1768. }
  1769. }
  1770. }
  1771. }
  1772. }
  1773. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_80DD6E2ABE9149FBA68D1D8370CABE51"
  1774. {
  1775. "Name" = "8:#1902"
  1776. "Sequence" = "3:2"
  1777. "Attributes" = "3:3"
  1778. "Dialogs"
  1779. {
  1780. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_1AE204A85EFF4D8BA47747C4122368A8"
  1781. {
  1782. "Sequence" = "3:100"
  1783. "DisplayName" = "8:已完成"
  1784. "UseDynamicProperties" = "11:TRUE"
  1785. "IsDependency" = "11:FALSE"
  1786. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
  1787. "Properties"
  1788. {
  1789. "BannerBitmap"
  1790. {
  1791. "Name" = "8:BannerBitmap"
  1792. "DisplayName" = "8:#1001"
  1793. "Description" = "8:#1101"
  1794. "Type" = "3:8"
  1795. "ContextData" = "8:Bitmap"
  1796. "Attributes" = "3:4"
  1797. "Setting" = "3:1"
  1798. "UsePlugInResources" = "11:TRUE"
  1799. }
  1800. }
  1801. }
  1802. }
  1803. }
  1804. "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_A82CA5371B1044F3A72E25019DAB5C85"
  1805. {
  1806. "UseDynamicProperties" = "11:FALSE"
  1807. "IsDependency" = "11:FALSE"
  1808. "SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim"
  1809. }
  1810. "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_BE3A0C0BECF345CEA2DD3CB14F9FB3D1"
  1811. {
  1812. "Name" = "8:#1900"
  1813. "Sequence" = "3:2"
  1814. "Attributes" = "3:1"
  1815. "Dialogs"
  1816. {
  1817. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_02D01F98BD4B4758BD66BBFA496A73F1"
  1818. {
  1819. "Sequence" = "3:200"
  1820. "DisplayName" = "8:安装文件夹"
  1821. "UseDynamicProperties" = "11:TRUE"
  1822. "IsDependency" = "11:FALSE"
  1823. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
  1824. "Properties"
  1825. {
  1826. "BannerBitmap"
  1827. {
  1828. "Name" = "8:BannerBitmap"
  1829. "DisplayName" = "8:#1001"
  1830. "Description" = "8:#1101"
  1831. "Type" = "3:8"
  1832. "ContextData" = "8:Bitmap"
  1833. "Attributes" = "3:4"
  1834. "Setting" = "3:1"
  1835. "UsePlugInResources" = "11:TRUE"
  1836. }
  1837. }
  1838. }
  1839. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_760A973ECC004F2FB8B6D7141840141F"
  1840. {
  1841. "Sequence" = "3:300"
  1842. "DisplayName" = "8:确认安装"
  1843. "UseDynamicProperties" = "11:TRUE"
  1844. "IsDependency" = "11:FALSE"
  1845. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
  1846. "Properties"
  1847. {
  1848. "BannerBitmap"
  1849. {
  1850. "Name" = "8:BannerBitmap"
  1851. "DisplayName" = "8:#1001"
  1852. "Description" = "8:#1101"
  1853. "Type" = "3:8"
  1854. "ContextData" = "8:Bitmap"
  1855. "Attributes" = "3:4"
  1856. "Setting" = "3:1"
  1857. "UsePlugInResources" = "11:TRUE"
  1858. }
  1859. }
  1860. }
  1861. "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_8931D6D266E84CB08E7F6BA932FC7AD5"
  1862. {
  1863. "Sequence" = "3:100"
  1864. "DisplayName" = "8:欢迎使用"
  1865. "UseDynamicProperties" = "11:TRUE"
  1866. "IsDependency" = "11:FALSE"
  1867. "SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
  1868. "Properties"
  1869. {
  1870. "BannerBitmap"
  1871. {
  1872. "Name" = "8:BannerBitmap"
  1873. "DisplayName" = "8:#1001"
  1874. "Description" = "8:#1101"
  1875. "Type" = "3:8"
  1876. "ContextData" = "8:Bitmap"
  1877. "Attributes" = "3:4"
  1878. "Setting" = "3:1"
  1879. "UsePlugInResources" = "11:TRUE"
  1880. }
  1881. "CopyrightWarning"
  1882. {
  1883. "Name" = "8:CopyrightWarning"
  1884. "DisplayName" = "8:#1002"
  1885. "Description" = "8:#1102"
  1886. "Type" = "3:3"
  1887. "ContextData" = "8:"
  1888. "Attributes" = "3:0"
  1889. "Setting" = "3:1"
  1890. "Value" = "8:#1202"
  1891. "DefaultValue" = "8:#1202"
  1892. "UsePlugInResources" = "11:TRUE"
  1893. }
  1894. "Welcome"
  1895. {
  1896. "Name" = "8:Welcome"
  1897. "DisplayName" = "8:#1003"
  1898. "Description" = "8:#1103"
  1899. "Type" = "3:3"
  1900. "ContextData" = "8:"
  1901. "Attributes" = "3:0"
  1902. "Setting" = "3:1"
  1903. "Value" = "8:#1203"
  1904. "DefaultValue" = "8:#1203"
  1905. "UsePlugInResources" = "11:TRUE"
  1906. }
  1907. }
  1908. }
  1909. }
  1910. }
  1911. }
  1912. "MergeModule"
  1913. {
  1914. }
  1915. "ProjectOutput"
  1916. {
  1917. "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_EA6E85C582BB4533AD00BF337D166733"
  1918. {
  1919. "SourcePath" = "8:..\\ThCardReader\\obj\\x86\\Release\\ThCardReader.exe"
  1920. "TargetName" = "8:"
  1921. "Tag" = "8:"
  1922. "Folder" = "8:_2113D6BC4DA14907934B1377FF753885"
  1923. "Condition" = "8:"
  1924. "Transitive" = "11:FALSE"
  1925. "Vital" = "11:TRUE"
  1926. "ReadOnly" = "11:FALSE"
  1927. "Hidden" = "11:FALSE"
  1928. "System" = "11:FALSE"
  1929. "Permanent" = "11:FALSE"
  1930. "SharedLegacy" = "11:FALSE"
  1931. "PackageAs" = "3:1"
  1932. "Register" = "3:1"
  1933. "Exclude" = "11:FALSE"
  1934. "IsDependency" = "11:FALSE"
  1935. "IsolateTo" = "8:"
  1936. "ProjectOutputGroupRegister" = "3:1"
  1937. "OutputConfiguration" = "8:"
  1938. "OutputGroupCanonicalName" = "8:Built"
  1939. "OutputProjectGuid" = "8:{4E9EA30E-99D6-4294-9578-44A62BC2ADAF}"
  1940. "ShowKeyOutput" = "11:TRUE"
  1941. "ExcludeFilters"
  1942. {
  1943. }
  1944. }
  1945. }
  1946. }
  1947. }