project.assets.json 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETFramework,Version=v4.8": {
  5. "Microsoft.Identity.Client/4.60.3": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.IdentityModel.Abstractions": "6.35.0",
  9. "System.Diagnostics.DiagnosticSource": "6.0.1"
  10. },
  11. "frameworkAssemblies": [
  12. "Microsoft.CSharp",
  13. "System",
  14. "System.Core",
  15. "System.Data",
  16. "System.Data.DataSetExtensions",
  17. "System.Drawing",
  18. "System.IdentityModel",
  19. "System.Net.Http",
  20. "System.Windows.Forms",
  21. "System.Xml",
  22. "System.Xml.Linq"
  23. ],
  24. "compile": {
  25. "lib/net462/Microsoft.Identity.Client.dll": {
  26. "related": ".xml"
  27. }
  28. },
  29. "runtime": {
  30. "lib/net462/Microsoft.Identity.Client.dll": {
  31. "related": ".xml"
  32. }
  33. }
  34. },
  35. "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
  36. "type": "package",
  37. "dependencies": {
  38. "Microsoft.Identity.Client": "4.60.3",
  39. "System.IO.FileSystem.AccessControl": "5.0.0",
  40. "System.Security.Cryptography.ProtectedData": "4.5.0"
  41. },
  42. "compile": {
  43. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  44. "related": ".xml"
  45. }
  46. },
  47. "runtime": {
  48. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  49. "related": ".xml"
  50. }
  51. }
  52. },
  53. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  54. "type": "package",
  55. "compile": {
  56. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  57. "related": ".xml"
  58. }
  59. },
  60. "runtime": {
  61. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  62. "related": ".xml"
  63. }
  64. }
  65. },
  66. "Microsoft.InformationProtection.File/1.14.128": {
  67. "type": "package",
  68. "compile": {
  69. "lib/net40/Microsoft.InformationProtection.dll": {
  70. "related": ".xml"
  71. }
  72. },
  73. "runtime": {
  74. "lib/net40/Microsoft.InformationProtection.dll": {
  75. "related": ".xml"
  76. }
  77. },
  78. "build": {
  79. "build/net40/_._": {}
  80. }
  81. },
  82. "System.Buffers/4.5.1": {
  83. "type": "package",
  84. "frameworkAssemblies": [
  85. "mscorlib"
  86. ],
  87. "compile": {
  88. "ref/net45/System.Buffers.dll": {
  89. "related": ".xml"
  90. }
  91. },
  92. "runtime": {
  93. "lib/net461/System.Buffers.dll": {
  94. "related": ".xml"
  95. }
  96. }
  97. },
  98. "System.Configuration.ConfigurationManager/8.0.0": {
  99. "type": "package",
  100. "frameworkAssemblies": [
  101. "System.Configuration"
  102. ],
  103. "compile": {
  104. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  105. "related": ".xml"
  106. }
  107. },
  108. "runtime": {
  109. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  110. "related": ".xml"
  111. }
  112. },
  113. "build": {
  114. "buildTransitive/net462/_._": {}
  115. }
  116. },
  117. "System.Diagnostics.DiagnosticSource/6.0.1": {
  118. "type": "package",
  119. "dependencies": {
  120. "System.Memory": "4.5.4",
  121. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  122. },
  123. "compile": {
  124. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  125. "related": ".xml"
  126. }
  127. },
  128. "runtime": {
  129. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  130. "related": ".xml"
  131. }
  132. }
  133. },
  134. "System.IO.FileSystem.AccessControl/5.0.0": {
  135. "type": "package",
  136. "dependencies": {
  137. "System.Security.AccessControl": "5.0.0",
  138. "System.Security.Principal.Windows": "5.0.0"
  139. },
  140. "frameworkAssemblies": [
  141. "mscorlib"
  142. ],
  143. "compile": {
  144. "ref/net461/System.IO.FileSystem.AccessControl.dll": {
  145. "related": ".xml"
  146. }
  147. },
  148. "runtime": {
  149. "lib/net461/System.IO.FileSystem.AccessControl.dll": {
  150. "related": ".xml"
  151. }
  152. },
  153. "runtimeTargets": {
  154. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll": {
  155. "assetType": "runtime",
  156. "rid": "win"
  157. }
  158. }
  159. },
  160. "System.Memory/4.5.4": {
  161. "type": "package",
  162. "dependencies": {
  163. "System.Buffers": "4.5.1",
  164. "System.Numerics.Vectors": "4.5.0",
  165. "System.Runtime.CompilerServices.Unsafe": "4.5.3"
  166. },
  167. "frameworkAssemblies": [
  168. "System",
  169. "mscorlib"
  170. ],
  171. "compile": {
  172. "lib/net461/System.Memory.dll": {
  173. "related": ".xml"
  174. }
  175. },
  176. "runtime": {
  177. "lib/net461/System.Memory.dll": {
  178. "related": ".xml"
  179. }
  180. }
  181. },
  182. "System.Numerics.Vectors/4.5.0": {
  183. "type": "package",
  184. "frameworkAssemblies": [
  185. "System.Numerics",
  186. "mscorlib"
  187. ],
  188. "compile": {
  189. "ref/net46/System.Numerics.Vectors.dll": {
  190. "related": ".xml"
  191. }
  192. },
  193. "runtime": {
  194. "lib/net46/System.Numerics.Vectors.dll": {
  195. "related": ".xml"
  196. }
  197. }
  198. },
  199. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  200. "type": "package",
  201. "frameworkAssemblies": [
  202. "mscorlib"
  203. ],
  204. "compile": {
  205. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  206. "related": ".xml"
  207. }
  208. },
  209. "runtime": {
  210. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  211. "related": ".xml"
  212. }
  213. }
  214. },
  215. "System.Security.AccessControl/5.0.0": {
  216. "type": "package",
  217. "dependencies": {
  218. "System.Security.Principal.Windows": "5.0.0"
  219. },
  220. "frameworkAssemblies": [
  221. "mscorlib"
  222. ],
  223. "compile": {
  224. "ref/net461/System.Security.AccessControl.dll": {
  225. "related": ".xml"
  226. }
  227. },
  228. "runtime": {
  229. "lib/net461/System.Security.AccessControl.dll": {
  230. "related": ".xml"
  231. }
  232. },
  233. "runtimeTargets": {
  234. "runtimes/win/lib/net461/System.Security.AccessControl.dll": {
  235. "assetType": "runtime",
  236. "rid": "win"
  237. }
  238. }
  239. },
  240. "System.Security.Cryptography.ProtectedData/4.5.0": {
  241. "type": "package",
  242. "frameworkAssemblies": [
  243. "System.Security",
  244. "mscorlib"
  245. ],
  246. "compile": {
  247. "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
  248. "related": ".xml"
  249. }
  250. },
  251. "runtime": {
  252. "lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
  253. },
  254. "runtimeTargets": {
  255. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll": {
  256. "assetType": "runtime",
  257. "rid": "win"
  258. }
  259. }
  260. },
  261. "System.Security.Principal.Windows/5.0.0": {
  262. "type": "package",
  263. "frameworkAssemblies": [
  264. "System",
  265. "mscorlib"
  266. ],
  267. "compile": {
  268. "ref/net461/System.Security.Principal.Windows.dll": {
  269. "related": ".xml"
  270. }
  271. },
  272. "runtime": {
  273. "lib/net461/System.Security.Principal.Windows.dll": {
  274. "related": ".xml"
  275. }
  276. },
  277. "runtimeTargets": {
  278. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll": {
  279. "assetType": "runtime",
  280. "rid": "win"
  281. }
  282. }
  283. },
  284. "AipGateway.AIP/1.0.0": {
  285. "type": "project",
  286. "framework": ".NETFramework,Version=v4.8",
  287. "dependencies": {
  288. "Microsoft.Identity.Client": "4.60.3",
  289. "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
  290. "Microsoft.InformationProtection.File": "1.14.128"
  291. },
  292. "compile": {
  293. "bin/placeholder/AipGateway.AIP.dll": {}
  294. },
  295. "runtime": {
  296. "bin/placeholder/AipGateway.AIP.dll": {}
  297. }
  298. }
  299. },
  300. ".NETFramework,Version=v4.8/win": {
  301. "Microsoft.Identity.Client/4.60.3": {
  302. "type": "package",
  303. "dependencies": {
  304. "Microsoft.IdentityModel.Abstractions": "6.35.0",
  305. "System.Diagnostics.DiagnosticSource": "6.0.1"
  306. },
  307. "frameworkAssemblies": [
  308. "Microsoft.CSharp",
  309. "System",
  310. "System.Core",
  311. "System.Data",
  312. "System.Data.DataSetExtensions",
  313. "System.Drawing",
  314. "System.IdentityModel",
  315. "System.Net.Http",
  316. "System.Windows.Forms",
  317. "System.Xml",
  318. "System.Xml.Linq"
  319. ],
  320. "compile": {
  321. "lib/net462/Microsoft.Identity.Client.dll": {
  322. "related": ".xml"
  323. }
  324. },
  325. "runtime": {
  326. "lib/net462/Microsoft.Identity.Client.dll": {
  327. "related": ".xml"
  328. }
  329. }
  330. },
  331. "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
  332. "type": "package",
  333. "dependencies": {
  334. "Microsoft.Identity.Client": "4.60.3",
  335. "System.IO.FileSystem.AccessControl": "5.0.0",
  336. "System.Security.Cryptography.ProtectedData": "4.5.0"
  337. },
  338. "compile": {
  339. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  340. "related": ".xml"
  341. }
  342. },
  343. "runtime": {
  344. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  345. "related": ".xml"
  346. }
  347. }
  348. },
  349. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  350. "type": "package",
  351. "compile": {
  352. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  353. "related": ".xml"
  354. }
  355. },
  356. "runtime": {
  357. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  358. "related": ".xml"
  359. }
  360. }
  361. },
  362. "Microsoft.InformationProtection.File/1.14.128": {
  363. "type": "package",
  364. "compile": {
  365. "lib/net40/Microsoft.InformationProtection.dll": {
  366. "related": ".xml"
  367. }
  368. },
  369. "runtime": {
  370. "lib/net40/Microsoft.InformationProtection.dll": {
  371. "related": ".xml"
  372. }
  373. },
  374. "build": {
  375. "build/net40/_._": {}
  376. }
  377. },
  378. "System.Buffers/4.5.1": {
  379. "type": "package",
  380. "frameworkAssemblies": [
  381. "mscorlib"
  382. ],
  383. "compile": {
  384. "ref/net45/System.Buffers.dll": {
  385. "related": ".xml"
  386. }
  387. },
  388. "runtime": {
  389. "lib/net461/System.Buffers.dll": {
  390. "related": ".xml"
  391. }
  392. }
  393. },
  394. "System.Configuration.ConfigurationManager/8.0.0": {
  395. "type": "package",
  396. "frameworkAssemblies": [
  397. "System.Configuration"
  398. ],
  399. "compile": {
  400. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  401. "related": ".xml"
  402. }
  403. },
  404. "runtime": {
  405. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  406. "related": ".xml"
  407. }
  408. },
  409. "build": {
  410. "buildTransitive/net462/_._": {}
  411. }
  412. },
  413. "System.Diagnostics.DiagnosticSource/6.0.1": {
  414. "type": "package",
  415. "dependencies": {
  416. "System.Memory": "4.5.4",
  417. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  418. },
  419. "compile": {
  420. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  421. "related": ".xml"
  422. }
  423. },
  424. "runtime": {
  425. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  426. "related": ".xml"
  427. }
  428. }
  429. },
  430. "System.IO.FileSystem.AccessControl/5.0.0": {
  431. "type": "package",
  432. "dependencies": {
  433. "System.Security.AccessControl": "5.0.0",
  434. "System.Security.Principal.Windows": "5.0.0"
  435. },
  436. "frameworkAssemblies": [
  437. "mscorlib"
  438. ],
  439. "compile": {
  440. "ref/net461/System.IO.FileSystem.AccessControl.dll": {
  441. "related": ".xml"
  442. }
  443. },
  444. "runtime": {
  445. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll": {
  446. "related": ".xml"
  447. }
  448. }
  449. },
  450. "System.Memory/4.5.4": {
  451. "type": "package",
  452. "dependencies": {
  453. "System.Buffers": "4.5.1",
  454. "System.Numerics.Vectors": "4.5.0",
  455. "System.Runtime.CompilerServices.Unsafe": "4.5.3"
  456. },
  457. "frameworkAssemblies": [
  458. "System",
  459. "mscorlib"
  460. ],
  461. "compile": {
  462. "lib/net461/System.Memory.dll": {
  463. "related": ".xml"
  464. }
  465. },
  466. "runtime": {
  467. "lib/net461/System.Memory.dll": {
  468. "related": ".xml"
  469. }
  470. }
  471. },
  472. "System.Numerics.Vectors/4.5.0": {
  473. "type": "package",
  474. "frameworkAssemblies": [
  475. "System.Numerics",
  476. "mscorlib"
  477. ],
  478. "compile": {
  479. "ref/net46/System.Numerics.Vectors.dll": {
  480. "related": ".xml"
  481. }
  482. },
  483. "runtime": {
  484. "lib/net46/System.Numerics.Vectors.dll": {
  485. "related": ".xml"
  486. }
  487. }
  488. },
  489. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  490. "type": "package",
  491. "frameworkAssemblies": [
  492. "mscorlib"
  493. ],
  494. "compile": {
  495. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  496. "related": ".xml"
  497. }
  498. },
  499. "runtime": {
  500. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  501. "related": ".xml"
  502. }
  503. }
  504. },
  505. "System.Security.AccessControl/5.0.0": {
  506. "type": "package",
  507. "dependencies": {
  508. "System.Security.Principal.Windows": "5.0.0"
  509. },
  510. "frameworkAssemblies": [
  511. "mscorlib"
  512. ],
  513. "compile": {
  514. "ref/net461/System.Security.AccessControl.dll": {
  515. "related": ".xml"
  516. }
  517. },
  518. "runtime": {
  519. "runtimes/win/lib/net461/System.Security.AccessControl.dll": {
  520. "related": ".xml"
  521. }
  522. }
  523. },
  524. "System.Security.Cryptography.ProtectedData/4.5.0": {
  525. "type": "package",
  526. "frameworkAssemblies": [
  527. "System.Security",
  528. "mscorlib"
  529. ],
  530. "compile": {
  531. "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
  532. "related": ".xml"
  533. }
  534. },
  535. "runtime": {
  536. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
  537. }
  538. },
  539. "System.Security.Principal.Windows/5.0.0": {
  540. "type": "package",
  541. "frameworkAssemblies": [
  542. "System",
  543. "mscorlib"
  544. ],
  545. "compile": {
  546. "ref/net461/System.Security.Principal.Windows.dll": {
  547. "related": ".xml"
  548. }
  549. },
  550. "runtime": {
  551. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll": {
  552. "related": ".xml"
  553. }
  554. }
  555. },
  556. "AipGateway.AIP/1.0.0": {
  557. "type": "project",
  558. "framework": ".NETFramework,Version=v4.8",
  559. "dependencies": {
  560. "Microsoft.Identity.Client": "4.60.3",
  561. "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
  562. "Microsoft.InformationProtection.File": "1.14.128"
  563. },
  564. "compile": {
  565. "bin/placeholder/AipGateway.AIP.dll": {}
  566. },
  567. "runtime": {
  568. "bin/placeholder/AipGateway.AIP.dll": {}
  569. }
  570. }
  571. },
  572. ".NETFramework,Version=v4.8/win-arm64": {
  573. "Microsoft.Identity.Client/4.60.3": {
  574. "type": "package",
  575. "dependencies": {
  576. "Microsoft.IdentityModel.Abstractions": "6.35.0",
  577. "System.Diagnostics.DiagnosticSource": "6.0.1"
  578. },
  579. "frameworkAssemblies": [
  580. "Microsoft.CSharp",
  581. "System",
  582. "System.Core",
  583. "System.Data",
  584. "System.Data.DataSetExtensions",
  585. "System.Drawing",
  586. "System.IdentityModel",
  587. "System.Net.Http",
  588. "System.Windows.Forms",
  589. "System.Xml",
  590. "System.Xml.Linq"
  591. ],
  592. "compile": {
  593. "lib/net462/Microsoft.Identity.Client.dll": {
  594. "related": ".xml"
  595. }
  596. },
  597. "runtime": {
  598. "lib/net462/Microsoft.Identity.Client.dll": {
  599. "related": ".xml"
  600. }
  601. }
  602. },
  603. "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
  604. "type": "package",
  605. "dependencies": {
  606. "Microsoft.Identity.Client": "4.60.3",
  607. "System.IO.FileSystem.AccessControl": "5.0.0",
  608. "System.Security.Cryptography.ProtectedData": "4.5.0"
  609. },
  610. "compile": {
  611. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  612. "related": ".xml"
  613. }
  614. },
  615. "runtime": {
  616. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  617. "related": ".xml"
  618. }
  619. }
  620. },
  621. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  622. "type": "package",
  623. "compile": {
  624. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  625. "related": ".xml"
  626. }
  627. },
  628. "runtime": {
  629. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  630. "related": ".xml"
  631. }
  632. }
  633. },
  634. "Microsoft.InformationProtection.File/1.14.128": {
  635. "type": "package",
  636. "compile": {
  637. "lib/net40/Microsoft.InformationProtection.dll": {
  638. "related": ".xml"
  639. }
  640. },
  641. "runtime": {
  642. "lib/net40/Microsoft.InformationProtection.dll": {
  643. "related": ".xml"
  644. }
  645. },
  646. "build": {
  647. "build/net40/_._": {}
  648. }
  649. },
  650. "System.Buffers/4.5.1": {
  651. "type": "package",
  652. "frameworkAssemblies": [
  653. "mscorlib"
  654. ],
  655. "compile": {
  656. "ref/net45/System.Buffers.dll": {
  657. "related": ".xml"
  658. }
  659. },
  660. "runtime": {
  661. "lib/net461/System.Buffers.dll": {
  662. "related": ".xml"
  663. }
  664. }
  665. },
  666. "System.Configuration.ConfigurationManager/8.0.0": {
  667. "type": "package",
  668. "frameworkAssemblies": [
  669. "System.Configuration"
  670. ],
  671. "compile": {
  672. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  673. "related": ".xml"
  674. }
  675. },
  676. "runtime": {
  677. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  678. "related": ".xml"
  679. }
  680. },
  681. "build": {
  682. "buildTransitive/net462/_._": {}
  683. }
  684. },
  685. "System.Diagnostics.DiagnosticSource/6.0.1": {
  686. "type": "package",
  687. "dependencies": {
  688. "System.Memory": "4.5.4",
  689. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  690. },
  691. "compile": {
  692. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  693. "related": ".xml"
  694. }
  695. },
  696. "runtime": {
  697. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  698. "related": ".xml"
  699. }
  700. }
  701. },
  702. "System.IO.FileSystem.AccessControl/5.0.0": {
  703. "type": "package",
  704. "dependencies": {
  705. "System.Security.AccessControl": "5.0.0",
  706. "System.Security.Principal.Windows": "5.0.0"
  707. },
  708. "frameworkAssemblies": [
  709. "mscorlib"
  710. ],
  711. "compile": {
  712. "ref/net461/System.IO.FileSystem.AccessControl.dll": {
  713. "related": ".xml"
  714. }
  715. },
  716. "runtime": {
  717. "lib/net461/System.IO.FileSystem.AccessControl.dll": {
  718. "related": ".xml"
  719. }
  720. }
  721. },
  722. "System.Memory/4.5.4": {
  723. "type": "package",
  724. "dependencies": {
  725. "System.Buffers": "4.5.1",
  726. "System.Numerics.Vectors": "4.5.0",
  727. "System.Runtime.CompilerServices.Unsafe": "4.5.3"
  728. },
  729. "frameworkAssemblies": [
  730. "System",
  731. "mscorlib"
  732. ],
  733. "compile": {
  734. "lib/net461/System.Memory.dll": {
  735. "related": ".xml"
  736. }
  737. },
  738. "runtime": {
  739. "lib/net461/System.Memory.dll": {
  740. "related": ".xml"
  741. }
  742. }
  743. },
  744. "System.Numerics.Vectors/4.5.0": {
  745. "type": "package",
  746. "frameworkAssemblies": [
  747. "System.Numerics",
  748. "mscorlib"
  749. ],
  750. "compile": {
  751. "ref/net46/System.Numerics.Vectors.dll": {
  752. "related": ".xml"
  753. }
  754. },
  755. "runtime": {
  756. "lib/net46/System.Numerics.Vectors.dll": {
  757. "related": ".xml"
  758. }
  759. }
  760. },
  761. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  762. "type": "package",
  763. "frameworkAssemblies": [
  764. "mscorlib"
  765. ],
  766. "compile": {
  767. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  768. "related": ".xml"
  769. }
  770. },
  771. "runtime": {
  772. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  773. "related": ".xml"
  774. }
  775. }
  776. },
  777. "System.Security.AccessControl/5.0.0": {
  778. "type": "package",
  779. "dependencies": {
  780. "System.Security.Principal.Windows": "5.0.0"
  781. },
  782. "frameworkAssemblies": [
  783. "mscorlib"
  784. ],
  785. "compile": {
  786. "ref/net461/System.Security.AccessControl.dll": {
  787. "related": ".xml"
  788. }
  789. },
  790. "runtime": {
  791. "lib/net461/System.Security.AccessControl.dll": {
  792. "related": ".xml"
  793. }
  794. }
  795. },
  796. "System.Security.Cryptography.ProtectedData/4.5.0": {
  797. "type": "package",
  798. "frameworkAssemblies": [
  799. "System.Security",
  800. "mscorlib"
  801. ],
  802. "compile": {
  803. "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
  804. "related": ".xml"
  805. }
  806. },
  807. "runtime": {
  808. "lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
  809. }
  810. },
  811. "System.Security.Principal.Windows/5.0.0": {
  812. "type": "package",
  813. "frameworkAssemblies": [
  814. "System",
  815. "mscorlib"
  816. ],
  817. "compile": {
  818. "ref/net461/System.Security.Principal.Windows.dll": {
  819. "related": ".xml"
  820. }
  821. },
  822. "runtime": {
  823. "lib/net461/System.Security.Principal.Windows.dll": {
  824. "related": ".xml"
  825. }
  826. }
  827. },
  828. "AipGateway.AIP/1.0.0": {
  829. "type": "project",
  830. "framework": ".NETFramework,Version=v4.8",
  831. "dependencies": {
  832. "Microsoft.Identity.Client": "4.60.3",
  833. "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
  834. "Microsoft.InformationProtection.File": "1.14.128"
  835. },
  836. "compile": {
  837. "bin/placeholder/AipGateway.AIP.dll": {}
  838. },
  839. "runtime": {
  840. "bin/placeholder/AipGateway.AIP.dll": {}
  841. }
  842. }
  843. },
  844. ".NETFramework,Version=v4.8/win-x64": {
  845. "Microsoft.Identity.Client/4.60.3": {
  846. "type": "package",
  847. "dependencies": {
  848. "Microsoft.IdentityModel.Abstractions": "6.35.0",
  849. "System.Diagnostics.DiagnosticSource": "6.0.1"
  850. },
  851. "frameworkAssemblies": [
  852. "Microsoft.CSharp",
  853. "System",
  854. "System.Core",
  855. "System.Data",
  856. "System.Data.DataSetExtensions",
  857. "System.Drawing",
  858. "System.IdentityModel",
  859. "System.Net.Http",
  860. "System.Windows.Forms",
  861. "System.Xml",
  862. "System.Xml.Linq"
  863. ],
  864. "compile": {
  865. "lib/net462/Microsoft.Identity.Client.dll": {
  866. "related": ".xml"
  867. }
  868. },
  869. "runtime": {
  870. "lib/net462/Microsoft.Identity.Client.dll": {
  871. "related": ".xml"
  872. }
  873. }
  874. },
  875. "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
  876. "type": "package",
  877. "dependencies": {
  878. "Microsoft.Identity.Client": "4.60.3",
  879. "System.IO.FileSystem.AccessControl": "5.0.0",
  880. "System.Security.Cryptography.ProtectedData": "4.5.0"
  881. },
  882. "compile": {
  883. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  884. "related": ".xml"
  885. }
  886. },
  887. "runtime": {
  888. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  889. "related": ".xml"
  890. }
  891. }
  892. },
  893. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  894. "type": "package",
  895. "compile": {
  896. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  897. "related": ".xml"
  898. }
  899. },
  900. "runtime": {
  901. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  902. "related": ".xml"
  903. }
  904. }
  905. },
  906. "Microsoft.InformationProtection.File/1.14.128": {
  907. "type": "package",
  908. "compile": {
  909. "lib/net40/Microsoft.InformationProtection.dll": {
  910. "related": ".xml"
  911. }
  912. },
  913. "runtime": {
  914. "lib/net40/Microsoft.InformationProtection.dll": {
  915. "related": ".xml"
  916. }
  917. },
  918. "build": {
  919. "build/net40/_._": {}
  920. }
  921. },
  922. "System.Buffers/4.5.1": {
  923. "type": "package",
  924. "frameworkAssemblies": [
  925. "mscorlib"
  926. ],
  927. "compile": {
  928. "ref/net45/System.Buffers.dll": {
  929. "related": ".xml"
  930. }
  931. },
  932. "runtime": {
  933. "lib/net461/System.Buffers.dll": {
  934. "related": ".xml"
  935. }
  936. }
  937. },
  938. "System.Configuration.ConfigurationManager/8.0.0": {
  939. "type": "package",
  940. "frameworkAssemblies": [
  941. "System.Configuration"
  942. ],
  943. "compile": {
  944. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  945. "related": ".xml"
  946. }
  947. },
  948. "runtime": {
  949. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  950. "related": ".xml"
  951. }
  952. },
  953. "build": {
  954. "buildTransitive/net462/_._": {}
  955. }
  956. },
  957. "System.Diagnostics.DiagnosticSource/6.0.1": {
  958. "type": "package",
  959. "dependencies": {
  960. "System.Memory": "4.5.4",
  961. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  962. },
  963. "compile": {
  964. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  965. "related": ".xml"
  966. }
  967. },
  968. "runtime": {
  969. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  970. "related": ".xml"
  971. }
  972. }
  973. },
  974. "System.IO.FileSystem.AccessControl/5.0.0": {
  975. "type": "package",
  976. "dependencies": {
  977. "System.Security.AccessControl": "5.0.0",
  978. "System.Security.Principal.Windows": "5.0.0"
  979. },
  980. "frameworkAssemblies": [
  981. "mscorlib"
  982. ],
  983. "compile": {
  984. "ref/net461/System.IO.FileSystem.AccessControl.dll": {
  985. "related": ".xml"
  986. }
  987. },
  988. "runtime": {
  989. "lib/net461/System.IO.FileSystem.AccessControl.dll": {
  990. "related": ".xml"
  991. }
  992. }
  993. },
  994. "System.Memory/4.5.4": {
  995. "type": "package",
  996. "dependencies": {
  997. "System.Buffers": "4.5.1",
  998. "System.Numerics.Vectors": "4.5.0",
  999. "System.Runtime.CompilerServices.Unsafe": "4.5.3"
  1000. },
  1001. "frameworkAssemblies": [
  1002. "System",
  1003. "mscorlib"
  1004. ],
  1005. "compile": {
  1006. "lib/net461/System.Memory.dll": {
  1007. "related": ".xml"
  1008. }
  1009. },
  1010. "runtime": {
  1011. "lib/net461/System.Memory.dll": {
  1012. "related": ".xml"
  1013. }
  1014. }
  1015. },
  1016. "System.Numerics.Vectors/4.5.0": {
  1017. "type": "package",
  1018. "frameworkAssemblies": [
  1019. "System.Numerics",
  1020. "mscorlib"
  1021. ],
  1022. "compile": {
  1023. "ref/net46/System.Numerics.Vectors.dll": {
  1024. "related": ".xml"
  1025. }
  1026. },
  1027. "runtime": {
  1028. "lib/net46/System.Numerics.Vectors.dll": {
  1029. "related": ".xml"
  1030. }
  1031. }
  1032. },
  1033. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1034. "type": "package",
  1035. "frameworkAssemblies": [
  1036. "mscorlib"
  1037. ],
  1038. "compile": {
  1039. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  1040. "related": ".xml"
  1041. }
  1042. },
  1043. "runtime": {
  1044. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  1045. "related": ".xml"
  1046. }
  1047. }
  1048. },
  1049. "System.Security.AccessControl/5.0.0": {
  1050. "type": "package",
  1051. "dependencies": {
  1052. "System.Security.Principal.Windows": "5.0.0"
  1053. },
  1054. "frameworkAssemblies": [
  1055. "mscorlib"
  1056. ],
  1057. "compile": {
  1058. "ref/net461/System.Security.AccessControl.dll": {
  1059. "related": ".xml"
  1060. }
  1061. },
  1062. "runtime": {
  1063. "lib/net461/System.Security.AccessControl.dll": {
  1064. "related": ".xml"
  1065. }
  1066. }
  1067. },
  1068. "System.Security.Cryptography.ProtectedData/4.5.0": {
  1069. "type": "package",
  1070. "frameworkAssemblies": [
  1071. "System.Security",
  1072. "mscorlib"
  1073. ],
  1074. "compile": {
  1075. "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
  1076. "related": ".xml"
  1077. }
  1078. },
  1079. "runtime": {
  1080. "lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
  1081. }
  1082. },
  1083. "System.Security.Principal.Windows/5.0.0": {
  1084. "type": "package",
  1085. "frameworkAssemblies": [
  1086. "System",
  1087. "mscorlib"
  1088. ],
  1089. "compile": {
  1090. "ref/net461/System.Security.Principal.Windows.dll": {
  1091. "related": ".xml"
  1092. }
  1093. },
  1094. "runtime": {
  1095. "lib/net461/System.Security.Principal.Windows.dll": {
  1096. "related": ".xml"
  1097. }
  1098. }
  1099. },
  1100. "AipGateway.AIP/1.0.0": {
  1101. "type": "project",
  1102. "framework": ".NETFramework,Version=v4.8",
  1103. "dependencies": {
  1104. "Microsoft.Identity.Client": "4.60.3",
  1105. "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
  1106. "Microsoft.InformationProtection.File": "1.14.128"
  1107. },
  1108. "compile": {
  1109. "bin/placeholder/AipGateway.AIP.dll": {}
  1110. },
  1111. "runtime": {
  1112. "bin/placeholder/AipGateway.AIP.dll": {}
  1113. }
  1114. }
  1115. },
  1116. ".NETFramework,Version=v4.8/win-x86": {
  1117. "Microsoft.Identity.Client/4.60.3": {
  1118. "type": "package",
  1119. "dependencies": {
  1120. "Microsoft.IdentityModel.Abstractions": "6.35.0",
  1121. "System.Diagnostics.DiagnosticSource": "6.0.1"
  1122. },
  1123. "frameworkAssemblies": [
  1124. "Microsoft.CSharp",
  1125. "System",
  1126. "System.Core",
  1127. "System.Data",
  1128. "System.Data.DataSetExtensions",
  1129. "System.Drawing",
  1130. "System.IdentityModel",
  1131. "System.Net.Http",
  1132. "System.Windows.Forms",
  1133. "System.Xml",
  1134. "System.Xml.Linq"
  1135. ],
  1136. "compile": {
  1137. "lib/net462/Microsoft.Identity.Client.dll": {
  1138. "related": ".xml"
  1139. }
  1140. },
  1141. "runtime": {
  1142. "lib/net462/Microsoft.Identity.Client.dll": {
  1143. "related": ".xml"
  1144. }
  1145. }
  1146. },
  1147. "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
  1148. "type": "package",
  1149. "dependencies": {
  1150. "Microsoft.Identity.Client": "4.60.3",
  1151. "System.IO.FileSystem.AccessControl": "5.0.0",
  1152. "System.Security.Cryptography.ProtectedData": "4.5.0"
  1153. },
  1154. "compile": {
  1155. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  1156. "related": ".xml"
  1157. }
  1158. },
  1159. "runtime": {
  1160. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": {
  1161. "related": ".xml"
  1162. }
  1163. }
  1164. },
  1165. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  1166. "type": "package",
  1167. "compile": {
  1168. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  1169. "related": ".xml"
  1170. }
  1171. },
  1172. "runtime": {
  1173. "lib/net472/Microsoft.IdentityModel.Abstractions.dll": {
  1174. "related": ".xml"
  1175. }
  1176. }
  1177. },
  1178. "Microsoft.InformationProtection.File/1.14.128": {
  1179. "type": "package",
  1180. "compile": {
  1181. "lib/net40/Microsoft.InformationProtection.dll": {
  1182. "related": ".xml"
  1183. }
  1184. },
  1185. "runtime": {
  1186. "lib/net40/Microsoft.InformationProtection.dll": {
  1187. "related": ".xml"
  1188. }
  1189. },
  1190. "build": {
  1191. "build/net40/_._": {}
  1192. }
  1193. },
  1194. "System.Buffers/4.5.1": {
  1195. "type": "package",
  1196. "frameworkAssemblies": [
  1197. "mscorlib"
  1198. ],
  1199. "compile": {
  1200. "ref/net45/System.Buffers.dll": {
  1201. "related": ".xml"
  1202. }
  1203. },
  1204. "runtime": {
  1205. "lib/net461/System.Buffers.dll": {
  1206. "related": ".xml"
  1207. }
  1208. }
  1209. },
  1210. "System.Configuration.ConfigurationManager/8.0.0": {
  1211. "type": "package",
  1212. "frameworkAssemblies": [
  1213. "System.Configuration"
  1214. ],
  1215. "compile": {
  1216. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  1217. "related": ".xml"
  1218. }
  1219. },
  1220. "runtime": {
  1221. "lib/net462/System.Configuration.ConfigurationManager.dll": {
  1222. "related": ".xml"
  1223. }
  1224. },
  1225. "build": {
  1226. "buildTransitive/net462/_._": {}
  1227. }
  1228. },
  1229. "System.Diagnostics.DiagnosticSource/6.0.1": {
  1230. "type": "package",
  1231. "dependencies": {
  1232. "System.Memory": "4.5.4",
  1233. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1234. },
  1235. "compile": {
  1236. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  1237. "related": ".xml"
  1238. }
  1239. },
  1240. "runtime": {
  1241. "lib/net461/System.Diagnostics.DiagnosticSource.dll": {
  1242. "related": ".xml"
  1243. }
  1244. }
  1245. },
  1246. "System.IO.FileSystem.AccessControl/5.0.0": {
  1247. "type": "package",
  1248. "dependencies": {
  1249. "System.Security.AccessControl": "5.0.0",
  1250. "System.Security.Principal.Windows": "5.0.0"
  1251. },
  1252. "frameworkAssemblies": [
  1253. "mscorlib"
  1254. ],
  1255. "compile": {
  1256. "ref/net461/System.IO.FileSystem.AccessControl.dll": {
  1257. "related": ".xml"
  1258. }
  1259. },
  1260. "runtime": {
  1261. "lib/net461/System.IO.FileSystem.AccessControl.dll": {
  1262. "related": ".xml"
  1263. }
  1264. }
  1265. },
  1266. "System.Memory/4.5.4": {
  1267. "type": "package",
  1268. "dependencies": {
  1269. "System.Buffers": "4.5.1",
  1270. "System.Numerics.Vectors": "4.5.0",
  1271. "System.Runtime.CompilerServices.Unsafe": "4.5.3"
  1272. },
  1273. "frameworkAssemblies": [
  1274. "System",
  1275. "mscorlib"
  1276. ],
  1277. "compile": {
  1278. "lib/net461/System.Memory.dll": {
  1279. "related": ".xml"
  1280. }
  1281. },
  1282. "runtime": {
  1283. "lib/net461/System.Memory.dll": {
  1284. "related": ".xml"
  1285. }
  1286. }
  1287. },
  1288. "System.Numerics.Vectors/4.5.0": {
  1289. "type": "package",
  1290. "frameworkAssemblies": [
  1291. "System.Numerics",
  1292. "mscorlib"
  1293. ],
  1294. "compile": {
  1295. "ref/net46/System.Numerics.Vectors.dll": {
  1296. "related": ".xml"
  1297. }
  1298. },
  1299. "runtime": {
  1300. "lib/net46/System.Numerics.Vectors.dll": {
  1301. "related": ".xml"
  1302. }
  1303. }
  1304. },
  1305. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1306. "type": "package",
  1307. "frameworkAssemblies": [
  1308. "mscorlib"
  1309. ],
  1310. "compile": {
  1311. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  1312. "related": ".xml"
  1313. }
  1314. },
  1315. "runtime": {
  1316. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll": {
  1317. "related": ".xml"
  1318. }
  1319. }
  1320. },
  1321. "System.Security.AccessControl/5.0.0": {
  1322. "type": "package",
  1323. "dependencies": {
  1324. "System.Security.Principal.Windows": "5.0.0"
  1325. },
  1326. "frameworkAssemblies": [
  1327. "mscorlib"
  1328. ],
  1329. "compile": {
  1330. "ref/net461/System.Security.AccessControl.dll": {
  1331. "related": ".xml"
  1332. }
  1333. },
  1334. "runtime": {
  1335. "lib/net461/System.Security.AccessControl.dll": {
  1336. "related": ".xml"
  1337. }
  1338. }
  1339. },
  1340. "System.Security.Cryptography.ProtectedData/4.5.0": {
  1341. "type": "package",
  1342. "frameworkAssemblies": [
  1343. "System.Security",
  1344. "mscorlib"
  1345. ],
  1346. "compile": {
  1347. "ref/net461/System.Security.Cryptography.ProtectedData.dll": {
  1348. "related": ".xml"
  1349. }
  1350. },
  1351. "runtime": {
  1352. "lib/net461/System.Security.Cryptography.ProtectedData.dll": {}
  1353. }
  1354. },
  1355. "System.Security.Principal.Windows/5.0.0": {
  1356. "type": "package",
  1357. "frameworkAssemblies": [
  1358. "System",
  1359. "mscorlib"
  1360. ],
  1361. "compile": {
  1362. "ref/net461/System.Security.Principal.Windows.dll": {
  1363. "related": ".xml"
  1364. }
  1365. },
  1366. "runtime": {
  1367. "lib/net461/System.Security.Principal.Windows.dll": {
  1368. "related": ".xml"
  1369. }
  1370. }
  1371. },
  1372. "AipGateway.AIP/1.0.0": {
  1373. "type": "project",
  1374. "framework": ".NETFramework,Version=v4.8",
  1375. "dependencies": {
  1376. "Microsoft.Identity.Client": "4.60.3",
  1377. "Microsoft.Identity.Client.Extensions.Msal": "4.60.3",
  1378. "Microsoft.InformationProtection.File": "1.14.128"
  1379. },
  1380. "compile": {
  1381. "bin/placeholder/AipGateway.AIP.dll": {}
  1382. },
  1383. "runtime": {
  1384. "bin/placeholder/AipGateway.AIP.dll": {}
  1385. }
  1386. }
  1387. }
  1388. },
  1389. "libraries": {
  1390. "Microsoft.Identity.Client/4.60.3": {
  1391. "sha512": "jve1RzmSpBhGlqMzPva6VfRbLMLZZc1Q8WRVZf8+iEruQkBgDTJPq8OeTehcY4GGYG1j6UB1xVofVE+n4BLDdw==",
  1392. "type": "package",
  1393. "path": "microsoft.identity.client/4.60.3",
  1394. "files": [
  1395. ".nupkg.metadata",
  1396. ".signature.p7s",
  1397. "README.md",
  1398. "lib/monoandroid12.0/Microsoft.Identity.Client.dll",
  1399. "lib/monoandroid12.0/Microsoft.Identity.Client.xml",
  1400. "lib/net462/Microsoft.Identity.Client.dll",
  1401. "lib/net462/Microsoft.Identity.Client.xml",
  1402. "lib/net6.0-android31.0/Microsoft.Identity.Client.dll",
  1403. "lib/net6.0-android31.0/Microsoft.Identity.Client.xml",
  1404. "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll",
  1405. "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml",
  1406. "lib/net6.0-windows7.0/Microsoft.Identity.Client.dll",
  1407. "lib/net6.0-windows7.0/Microsoft.Identity.Client.xml",
  1408. "lib/net6.0/Microsoft.Identity.Client.dll",
  1409. "lib/net6.0/Microsoft.Identity.Client.xml",
  1410. "lib/netstandard2.0/Microsoft.Identity.Client.dll",
  1411. "lib/netstandard2.0/Microsoft.Identity.Client.xml",
  1412. "lib/uap10.0.17763/Microsoft.Identity.Client.dll",
  1413. "lib/uap10.0.17763/Microsoft.Identity.Client.pri",
  1414. "lib/uap10.0.17763/Microsoft.Identity.Client.xml",
  1415. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  1416. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  1417. "microsoft.identity.client.4.60.3.nupkg.sha512",
  1418. "microsoft.identity.client.nuspec"
  1419. ]
  1420. },
  1421. "Microsoft.Identity.Client.Extensions.Msal/4.60.3": {
  1422. "sha512": "X1Cz14/RbmlLshusE5u2zfG+5ul6ttgou19BZe5Mdw1qm6fgOI9/imBB2TIsx2UD7nkgd2+MCSzhbukZf7udeg==",
  1423. "type": "package",
  1424. "path": "microsoft.identity.client.extensions.msal/4.60.3",
  1425. "files": [
  1426. ".nupkg.metadata",
  1427. ".signature.p7s",
  1428. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  1429. "lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  1430. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll",
  1431. "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml",
  1432. "microsoft.identity.client.extensions.msal.4.60.3.nupkg.sha512",
  1433. "microsoft.identity.client.extensions.msal.nuspec"
  1434. ]
  1435. },
  1436. "Microsoft.IdentityModel.Abstractions/6.35.0": {
  1437. "sha512": "xuR8E4Rd96M41CnUSCiOJ2DBh+z+zQSmyrYHdYhD6K4fXBcQGVnRCFQ0efROUYpP+p0zC1BLKr0JRpVuujTZSg==",
  1438. "type": "package",
  1439. "path": "microsoft.identitymodel.abstractions/6.35.0",
  1440. "files": [
  1441. ".nupkg.metadata",
  1442. ".signature.p7s",
  1443. "lib/net45/Microsoft.IdentityModel.Abstractions.dll",
  1444. "lib/net45/Microsoft.IdentityModel.Abstractions.xml",
  1445. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  1446. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  1447. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  1448. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  1449. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  1450. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  1451. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  1452. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  1453. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  1454. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  1455. "microsoft.identitymodel.abstractions.6.35.0.nupkg.sha512",
  1456. "microsoft.identitymodel.abstractions.nuspec"
  1457. ]
  1458. },
  1459. "Microsoft.InformationProtection.File/1.14.128": {
  1460. "sha512": "ZetXGuHtHUra2nOKILuZUTyvFzLmRbWSAfReZCp1ZC7OvkUcHeA8DX+tBlpQL1YZfWj3f5tRdo1xl4f05l6e0Q==",
  1461. "type": "package",
  1462. "path": "microsoft.informationprotection.file/1.14.128",
  1463. "files": [
  1464. ".nupkg.metadata",
  1465. ".signature.p7s",
  1466. "build/native/Microsoft.InformationProtection.File.targets",
  1467. "build/native/bins/debug/amd64/libbz2-1.dll",
  1468. "build/native/bins/debug/amd64/libffi-8.dll",
  1469. "build/native/bins/debug/amd64/libgio-2.0-0.dll",
  1470. "build/native/bins/debug/amd64/libglib-2.0-0.dll",
  1471. "build/native/bins/debug/amd64/libgmodule-2.0-0.dll",
  1472. "build/native/bins/debug/amd64/libgobject-2.0-0.dll",
  1473. "build/native/bins/debug/amd64/libgsf-1-114.dll",
  1474. "build/native/bins/debug/amd64/libiconv-2.dll",
  1475. "build/native/bins/debug/amd64/libintl-8.dll",
  1476. "build/native/bins/debug/amd64/liblzma-5.dll",
  1477. "build/native/bins/debug/amd64/libpcre2-8-0.dll",
  1478. "build/native/bins/debug/amd64/libwinpthread-1.dll",
  1479. "build/native/bins/debug/amd64/libxml2-2.dll",
  1480. "build/native/bins/debug/amd64/mip_ClientTelemetry.dll",
  1481. "build/native/bins/debug/amd64/mip_core.dll",
  1482. "build/native/bins/debug/amd64/mip_file_sdk.dll",
  1483. "build/native/bins/debug/amd64/mip_protection_sdk.dll",
  1484. "build/native/bins/debug/amd64/mip_upe_sdk.dll",
  1485. "build/native/bins/debug/amd64/zlib1.dll",
  1486. "build/native/bins/debug/x86/libbz2-1.dll",
  1487. "build/native/bins/debug/x86/libffi-8.dll",
  1488. "build/native/bins/debug/x86/libgcc_s_dw2-1.dll",
  1489. "build/native/bins/debug/x86/libgio-2.0-0.dll",
  1490. "build/native/bins/debug/x86/libglib-2.0-0.dll",
  1491. "build/native/bins/debug/x86/libgmodule-2.0-0.dll",
  1492. "build/native/bins/debug/x86/libgobject-2.0-0.dll",
  1493. "build/native/bins/debug/x86/libgsf-1-114.dll",
  1494. "build/native/bins/debug/x86/libiconv-2.dll",
  1495. "build/native/bins/debug/x86/libintl-8.dll",
  1496. "build/native/bins/debug/x86/liblzma-5.dll",
  1497. "build/native/bins/debug/x86/libpcre2-8-0.dll",
  1498. "build/native/bins/debug/x86/libwinpthread-1.dll",
  1499. "build/native/bins/debug/x86/libxml2-2.dll",
  1500. "build/native/bins/debug/x86/mip_ClientTelemetry.dll",
  1501. "build/native/bins/debug/x86/mip_core.dll",
  1502. "build/native/bins/debug/x86/mip_file_sdk.dll",
  1503. "build/native/bins/debug/x86/mip_protection_sdk.dll",
  1504. "build/native/bins/debug/x86/mip_upe_sdk.dll",
  1505. "build/native/bins/debug/x86/zlib1.dll",
  1506. "build/native/bins/release/amd64/libbz2-1.dll",
  1507. "build/native/bins/release/amd64/libffi-8.dll",
  1508. "build/native/bins/release/amd64/libgio-2.0-0.dll",
  1509. "build/native/bins/release/amd64/libglib-2.0-0.dll",
  1510. "build/native/bins/release/amd64/libgmodule-2.0-0.dll",
  1511. "build/native/bins/release/amd64/libgobject-2.0-0.dll",
  1512. "build/native/bins/release/amd64/libgsf-1-114.dll",
  1513. "build/native/bins/release/amd64/libiconv-2.dll",
  1514. "build/native/bins/release/amd64/libintl-8.dll",
  1515. "build/native/bins/release/amd64/liblzma-5.dll",
  1516. "build/native/bins/release/amd64/libpcre2-8-0.dll",
  1517. "build/native/bins/release/amd64/libwinpthread-1.dll",
  1518. "build/native/bins/release/amd64/libxml2-2.dll",
  1519. "build/native/bins/release/amd64/mip_ClientTelemetry.dll",
  1520. "build/native/bins/release/amd64/mip_core.dll",
  1521. "build/native/bins/release/amd64/mip_file_sdk.dll",
  1522. "build/native/bins/release/amd64/mip_protection_sdk.dll",
  1523. "build/native/bins/release/amd64/mip_upe_sdk.dll",
  1524. "build/native/bins/release/amd64/zlib1.dll",
  1525. "build/native/bins/release/x86/libbz2-1.dll",
  1526. "build/native/bins/release/x86/libffi-8.dll",
  1527. "build/native/bins/release/x86/libgcc_s_dw2-1.dll",
  1528. "build/native/bins/release/x86/libgio-2.0-0.dll",
  1529. "build/native/bins/release/x86/libglib-2.0-0.dll",
  1530. "build/native/bins/release/x86/libgmodule-2.0-0.dll",
  1531. "build/native/bins/release/x86/libgobject-2.0-0.dll",
  1532. "build/native/bins/release/x86/libgsf-1-114.dll",
  1533. "build/native/bins/release/x86/libiconv-2.dll",
  1534. "build/native/bins/release/x86/libintl-8.dll",
  1535. "build/native/bins/release/x86/liblzma-5.dll",
  1536. "build/native/bins/release/x86/libpcre2-8-0.dll",
  1537. "build/native/bins/release/x86/libwinpthread-1.dll",
  1538. "build/native/bins/release/x86/libxml2-2.dll",
  1539. "build/native/bins/release/x86/mip_ClientTelemetry.dll",
  1540. "build/native/bins/release/x86/mip_core.dll",
  1541. "build/native/bins/release/x86/mip_file_sdk.dll",
  1542. "build/native/bins/release/x86/mip_protection_sdk.dll",
  1543. "build/native/bins/release/x86/mip_upe_sdk.dll",
  1544. "build/native/bins/release/x86/zlib1.dll",
  1545. "build/native/include/mip/audit_delegate.h",
  1546. "build/native/include/mip/audit_event.h",
  1547. "build/native/include/mip/common_types.h",
  1548. "build/native/include/mip/delegate_response.h",
  1549. "build/native/include/mip/diagnostic_configuration.h",
  1550. "build/native/include/mip/diagnostic_delegate.h",
  1551. "build/native/include/mip/diagnostic_types.h",
  1552. "build/native/include/mip/dns_redirection.h",
  1553. "build/native/include/mip/error.h",
  1554. "build/native/include/mip/event.h",
  1555. "build/native/include/mip/event_context.h",
  1556. "build/native/include/mip/event_property.h",
  1557. "build/native/include/mip/file/file_engine.h",
  1558. "build/native/include/mip/file/file_error.h",
  1559. "build/native/include/mip/file/file_execution_state.h",
  1560. "build/native/include/mip/file/file_export.h",
  1561. "build/native/include/mip/file/file_handler.h",
  1562. "build/native/include/mip/file/file_inspector.h",
  1563. "build/native/include/mip/file/file_profile.h",
  1564. "build/native/include/mip/file/file_status.h",
  1565. "build/native/include/mip/file/labeling_options.h",
  1566. "build/native/include/mip/file/msg_inspector.h",
  1567. "build/native/include/mip/file/protection_settings.h",
  1568. "build/native/include/mip/flighting_feature.h",
  1569. "build/native/include/mip/http_delegate.h",
  1570. "build/native/include/mip/http_operation.h",
  1571. "build/native/include/mip/http_request.h",
  1572. "build/native/include/mip/http_response.h",
  1573. "build/native/include/mip/json_delegate.h",
  1574. "build/native/include/mip/json_document.h",
  1575. "build/native/include/mip/json_value.h",
  1576. "build/native/include/mip/log_message_data.h",
  1577. "build/native/include/mip/logger_delegate.h",
  1578. "build/native/include/mip/mip_configuration.h",
  1579. "build/native/include/mip/mip_context.h",
  1580. "build/native/include/mip/mip_export.h",
  1581. "build/native/include/mip/mip_namespace.h",
  1582. "build/native/include/mip/protection/delegation_license.h",
  1583. "build/native/include/mip/protection/delegation_license_settings.h",
  1584. "build/native/include/mip/protection/get_template_settings.h",
  1585. "build/native/include/mip/protection/license_application_data.h",
  1586. "build/native/include/mip/protection/license_connection_info.h",
  1587. "build/native/include/mip/protection/license_descriptor.h",
  1588. "build/native/include/mip/protection/license_rights_data.h",
  1589. "build/native/include/mip/protection/parsed_publishing_license.h",
  1590. "build/native/include/mip/protection/parsed_publishing_license_builder.h",
  1591. "build/native/include/mip/protection/protection_common_settings.h",
  1592. "build/native/include/mip/protection/protection_common_types.h",
  1593. "build/native/include/mip/protection/protection_descriptor_builder.h",
  1594. "build/native/include/mip/protection/protection_engine.h",
  1595. "build/native/include/mip/protection/protection_handler.h",
  1596. "build/native/include/mip/protection/protection_profile.h",
  1597. "build/native/include/mip/protection/publishing_use_license_request.h",
  1598. "build/native/include/mip/protection/rights.h",
  1599. "build/native/include/mip/protection/roles.h",
  1600. "build/native/include/mip/protection/template_descriptor.h",
  1601. "build/native/include/mip/protection/tenant_information.h",
  1602. "build/native/include/mip/protection_descriptor.h",
  1603. "build/native/include/mip/storage_delegate.h",
  1604. "build/native/include/mip/storage_table.h",
  1605. "build/native/include/mip/stream.h",
  1606. "build/native/include/mip/stream_utils.h",
  1607. "build/native/include/mip/task_dispatcher_delegate.h",
  1608. "build/native/include/mip/telemetry_delegate.h",
  1609. "build/native/include/mip/telemetry_event.h",
  1610. "build/native/include/mip/upe/action.h",
  1611. "build/native/include/mip/upe/add_content_footer_action.h",
  1612. "build/native/include/mip/upe/add_content_header_action.h",
  1613. "build/native/include/mip/upe/add_watermark_action.h",
  1614. "build/native/include/mip/upe/apply_label_action.h",
  1615. "build/native/include/mip/upe/classification_request.h",
  1616. "build/native/include/mip/upe/classification_result.h",
  1617. "build/native/include/mip/upe/content_label.h",
  1618. "build/native/include/mip/upe/custom_action.h",
  1619. "build/native/include/mip/upe/detailed_classification_result.h",
  1620. "build/native/include/mip/upe/execution_state.h",
  1621. "build/native/include/mip/upe/justify_action.h",
  1622. "build/native/include/mip/upe/label.h",
  1623. "build/native/include/mip/upe/metadata_action.h",
  1624. "build/native/include/mip/upe/metadata_entry.h",
  1625. "build/native/include/mip/upe/metadata_version.h",
  1626. "build/native/include/mip/upe/policy_engine.h",
  1627. "build/native/include/mip/upe/policy_handler.h",
  1628. "build/native/include/mip/upe/policy_profile.h",
  1629. "build/native/include/mip/upe/protect_adhoc_action.h",
  1630. "build/native/include/mip/upe/protect_adhoc_dk_action.h",
  1631. "build/native/include/mip/upe/protect_by_encrypt_only_action.h",
  1632. "build/native/include/mip/upe/protect_by_template_action.h",
  1633. "build/native/include/mip/upe/protect_do_not_forward_action.h",
  1634. "build/native/include/mip/upe/protect_do_not_forward_dk_action.h",
  1635. "build/native/include/mip/upe/recommend_label_action.h",
  1636. "build/native/include/mip/upe/remove_content_footer_action.h",
  1637. "build/native/include/mip/upe/remove_content_header_action.h",
  1638. "build/native/include/mip/upe/remove_protection_action.h",
  1639. "build/native/include/mip/upe/remove_watermark_action.h",
  1640. "build/native/include/mip/upe/sensitivity_types_rule_package.h",
  1641. "build/native/include/mip/user_rights.h",
  1642. "build/native/include/mip/user_roles.h",
  1643. "build/native/include/mip/version.h",
  1644. "build/native/include/mip/version.inc",
  1645. "build/native/include/mip/xml_delegate.h",
  1646. "build/native/include/mip/xml_document.h",
  1647. "build/native/include/mip/xml_node.h",
  1648. "build/native/include/mip/xml_reader.h",
  1649. "build/native/include/mip_cc/application_info_cc.h",
  1650. "build/native/include/mip_cc/auth_callback_cc.h",
  1651. "build/native/include/mip_cc/common_types_cc.h",
  1652. "build/native/include/mip_cc/consent_callback_cc.h",
  1653. "build/native/include/mip_cc/dictionary_cc.h",
  1654. "build/native/include/mip_cc/error_cc.h",
  1655. "build/native/include/mip_cc/flighting_feature_cc.h",
  1656. "build/native/include/mip_cc/http_delegate_cc.h",
  1657. "build/native/include/mip_cc/identity_cc.h",
  1658. "build/native/include/mip_cc/logger_delegate_cc.h",
  1659. "build/native/include/mip_cc/mip_context_cc.h",
  1660. "build/native/include/mip_cc/mip_macros_cc.h",
  1661. "build/native/include/mip_cc/protection/delegation_license_cc.h",
  1662. "build/native/include/mip_cc/protection/protection_crypto_types_cc.h",
  1663. "build/native/include/mip_cc/protection/protection_engine_cc.h",
  1664. "build/native/include/mip_cc/protection/protection_handler_cc.h",
  1665. "build/native/include/mip_cc/protection/protection_profile_cc.h",
  1666. "build/native/include/mip_cc/protection/template_descriptor_cc.h",
  1667. "build/native/include/mip_cc/protection_descriptor_cc.h",
  1668. "build/native/include/mip_cc/result_cc.h",
  1669. "build/native/include/mip_cc/stream_cc.h",
  1670. "build/native/include/mip_cc/string_list_cc.h",
  1671. "build/native/include/mip_cc/task_dispatcher_delegate_cc.h",
  1672. "build/native/include/mip_cc/telemetry_configuration_cc.h",
  1673. "build/native/include/mip_cc/upe/action_cc.h",
  1674. "build/native/include/mip_cc/upe/action_result_cc.h",
  1675. "build/native/include/mip_cc/upe/add_content_footer_action_cc.h",
  1676. "build/native/include/mip_cc/upe/add_content_header_action_cc.h",
  1677. "build/native/include/mip_cc/upe/add_watermark_action_cc.h",
  1678. "build/native/include/mip_cc/upe/application_action_state_cc.h",
  1679. "build/native/include/mip_cc/upe/content_label_cc.h",
  1680. "build/native/include/mip_cc/upe/custom_action_cc.h",
  1681. "build/native/include/mip_cc/upe/document_state_cc.h",
  1682. "build/native/include/mip_cc/upe/justify_action_cc.h",
  1683. "build/native/include/mip_cc/upe/label_cc.h",
  1684. "build/native/include/mip_cc/upe/metadata_action_cc.h",
  1685. "build/native/include/mip_cc/upe/metadata_dictionary_cc.h",
  1686. "build/native/include/mip_cc/upe/policy_engine_cc.h",
  1687. "build/native/include/mip_cc/upe/policy_handler_cc.h",
  1688. "build/native/include/mip_cc/upe/policy_profile_cc.h",
  1689. "build/native/include/mip_cc/upe/protect_adhoc_action_cc.h",
  1690. "build/native/include/mip_cc/upe/protect_adhoc_dk_action_cc.h",
  1691. "build/native/include/mip_cc/upe/protect_by_encrypt_only_action_cc.h",
  1692. "build/native/include/mip_cc/upe/protect_by_template_action_cc.h",
  1693. "build/native/include/mip_cc/upe/protect_do_not_forward_action_cc.h",
  1694. "build/native/include/mip_cc/upe/protect_do_not_forward_dk_action_cc.h",
  1695. "build/native/include/mip_cc/upe/remove_content_footer_action_cc.h",
  1696. "build/native/include/mip_cc/upe/remove_content_header_action_cc.h",
  1697. "build/native/include/mip_cc/upe/remove_protection_action_cc.h",
  1698. "build/native/include/mip_cc/upe/remove_watermark_action_cc.h",
  1699. "build/native/include/mip_cc/upe/sensitivity_type_cc.h",
  1700. "build/native/lib/debug/amd64/mip_file_sdk.lib",
  1701. "build/native/lib/debug/amd64/mip_protection_sdk.lib",
  1702. "build/native/lib/debug/amd64/mip_upe_sdk.lib",
  1703. "build/native/lib/debug/x86/mip_file_sdk.lib",
  1704. "build/native/lib/debug/x86/mip_protection_sdk.lib",
  1705. "build/native/lib/debug/x86/mip_upe_sdk.lib",
  1706. "build/native/lib/release/amd64/mip_file_sdk.lib",
  1707. "build/native/lib/release/amd64/mip_protection_sdk.lib",
  1708. "build/native/lib/release/amd64/mip_upe_sdk.lib",
  1709. "build/native/lib/release/x86/mip_file_sdk.lib",
  1710. "build/native/lib/release/x86/mip_protection_sdk.lib",
  1711. "build/native/lib/release/x86/mip_upe_sdk.lib",
  1712. "build/net40/Microsoft.InformationProtection.File.targets",
  1713. "build/netstandard2.0/Microsoft.InformationProtection.File.targets",
  1714. "dotnet/win7-x64/native/debug/mip_dotnet.dll",
  1715. "dotnet/win7-x64/native/release/mip_dotnet.dll",
  1716. "dotnet/win7-x86/native/debug/mip_dotnet.dll",
  1717. "dotnet/win7-x86/native/release/mip_dotnet.dll",
  1718. "icon.png",
  1719. "lib/LICENSE.txt",
  1720. "lib/LicenseTerms.rtf",
  1721. "lib/ThirdPartyDependencyVersions-x64.txt",
  1722. "lib/ThirdPartyDependencyVersions-x86.txt",
  1723. "lib/ThirdPartyNotice.txt",
  1724. "lib/net40/Microsoft.InformationProtection.dll",
  1725. "lib/net40/Microsoft.InformationProtection.xml",
  1726. "lib/netstandard2.0/Microsoft.InformationProtection.dll",
  1727. "lib/netstandard2.0/Microsoft.InformationProtection.xml",
  1728. "lib/readme.md",
  1729. "lib/redist.txt",
  1730. "lib/version.txt",
  1731. "microsoft.informationprotection.file.1.14.128.nupkg.sha512",
  1732. "microsoft.informationprotection.file.nuspec"
  1733. ]
  1734. },
  1735. "System.Buffers/4.5.1": {
  1736. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  1737. "type": "package",
  1738. "path": "system.buffers/4.5.1",
  1739. "files": [
  1740. ".nupkg.metadata",
  1741. ".signature.p7s",
  1742. "LICENSE.TXT",
  1743. "THIRD-PARTY-NOTICES.TXT",
  1744. "lib/net461/System.Buffers.dll",
  1745. "lib/net461/System.Buffers.xml",
  1746. "lib/netcoreapp2.0/_._",
  1747. "lib/netstandard1.1/System.Buffers.dll",
  1748. "lib/netstandard1.1/System.Buffers.xml",
  1749. "lib/netstandard2.0/System.Buffers.dll",
  1750. "lib/netstandard2.0/System.Buffers.xml",
  1751. "lib/uap10.0.16299/_._",
  1752. "ref/net45/System.Buffers.dll",
  1753. "ref/net45/System.Buffers.xml",
  1754. "ref/netcoreapp2.0/_._",
  1755. "ref/netstandard1.1/System.Buffers.dll",
  1756. "ref/netstandard1.1/System.Buffers.xml",
  1757. "ref/netstandard2.0/System.Buffers.dll",
  1758. "ref/netstandard2.0/System.Buffers.xml",
  1759. "ref/uap10.0.16299/_._",
  1760. "system.buffers.4.5.1.nupkg.sha512",
  1761. "system.buffers.nuspec",
  1762. "useSharedDesignerContext.txt",
  1763. "version.txt"
  1764. ]
  1765. },
  1766. "System.Configuration.ConfigurationManager/8.0.0": {
  1767. "sha512": "JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
  1768. "type": "package",
  1769. "path": "system.configuration.configurationmanager/8.0.0",
  1770. "files": [
  1771. ".nupkg.metadata",
  1772. ".signature.p7s",
  1773. "Icon.png",
  1774. "LICENSE.TXT",
  1775. "PACKAGE.md",
  1776. "THIRD-PARTY-NOTICES.TXT",
  1777. "buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
  1778. "buildTransitive/net462/_._",
  1779. "buildTransitive/net6.0/_._",
  1780. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  1781. "lib/net462/System.Configuration.ConfigurationManager.dll",
  1782. "lib/net462/System.Configuration.ConfigurationManager.xml",
  1783. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  1784. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  1785. "lib/net7.0/System.Configuration.ConfigurationManager.dll",
  1786. "lib/net7.0/System.Configuration.ConfigurationManager.xml",
  1787. "lib/net8.0/System.Configuration.ConfigurationManager.dll",
  1788. "lib/net8.0/System.Configuration.ConfigurationManager.xml",
  1789. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  1790. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  1791. "system.configuration.configurationmanager.8.0.0.nupkg.sha512",
  1792. "system.configuration.configurationmanager.nuspec",
  1793. "useSharedDesignerContext.txt"
  1794. ]
  1795. },
  1796. "System.Diagnostics.DiagnosticSource/6.0.1": {
  1797. "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==",
  1798. "type": "package",
  1799. "path": "system.diagnostics.diagnosticsource/6.0.1",
  1800. "files": [
  1801. ".nupkg.metadata",
  1802. ".signature.p7s",
  1803. "Icon.png",
  1804. "LICENSE.TXT",
  1805. "THIRD-PARTY-NOTICES.TXT",
  1806. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  1807. "buildTransitive/netcoreapp3.1/_._",
  1808. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  1809. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  1810. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  1811. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  1812. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  1813. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  1814. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  1815. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  1816. "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512",
  1817. "system.diagnostics.diagnosticsource.nuspec",
  1818. "useSharedDesignerContext.txt"
  1819. ]
  1820. },
  1821. "System.IO.FileSystem.AccessControl/5.0.0": {
  1822. "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==",
  1823. "type": "package",
  1824. "path": "system.io.filesystem.accesscontrol/5.0.0",
  1825. "files": [
  1826. ".nupkg.metadata",
  1827. ".signature.p7s",
  1828. "Icon.png",
  1829. "LICENSE.TXT",
  1830. "THIRD-PARTY-NOTICES.TXT",
  1831. "lib/net46/System.IO.FileSystem.AccessControl.dll",
  1832. "lib/net461/System.IO.FileSystem.AccessControl.dll",
  1833. "lib/net461/System.IO.FileSystem.AccessControl.xml",
  1834. "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  1835. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  1836. "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  1837. "ref/net46/System.IO.FileSystem.AccessControl.dll",
  1838. "ref/net461/System.IO.FileSystem.AccessControl.dll",
  1839. "ref/net461/System.IO.FileSystem.AccessControl.xml",
  1840. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  1841. "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml",
  1842. "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml",
  1843. "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml",
  1844. "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml",
  1845. "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml",
  1846. "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml",
  1847. "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml",
  1848. "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml",
  1849. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml",
  1850. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml",
  1851. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  1852. "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  1853. "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll",
  1854. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll",
  1855. "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml",
  1856. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll",
  1857. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll",
  1858. "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml",
  1859. "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512",
  1860. "system.io.filesystem.accesscontrol.nuspec",
  1861. "useSharedDesignerContext.txt",
  1862. "version.txt"
  1863. ]
  1864. },
  1865. "System.Memory/4.5.4": {
  1866. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  1867. "type": "package",
  1868. "path": "system.memory/4.5.4",
  1869. "files": [
  1870. ".nupkg.metadata",
  1871. ".signature.p7s",
  1872. "LICENSE.TXT",
  1873. "THIRD-PARTY-NOTICES.TXT",
  1874. "lib/net461/System.Memory.dll",
  1875. "lib/net461/System.Memory.xml",
  1876. "lib/netcoreapp2.1/_._",
  1877. "lib/netstandard1.1/System.Memory.dll",
  1878. "lib/netstandard1.1/System.Memory.xml",
  1879. "lib/netstandard2.0/System.Memory.dll",
  1880. "lib/netstandard2.0/System.Memory.xml",
  1881. "ref/netcoreapp2.1/_._",
  1882. "system.memory.4.5.4.nupkg.sha512",
  1883. "system.memory.nuspec",
  1884. "useSharedDesignerContext.txt",
  1885. "version.txt"
  1886. ]
  1887. },
  1888. "System.Numerics.Vectors/4.5.0": {
  1889. "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  1890. "type": "package",
  1891. "path": "system.numerics.vectors/4.5.0",
  1892. "files": [
  1893. ".nupkg.metadata",
  1894. ".signature.p7s",
  1895. "LICENSE.TXT",
  1896. "THIRD-PARTY-NOTICES.TXT",
  1897. "lib/MonoAndroid10/_._",
  1898. "lib/MonoTouch10/_._",
  1899. "lib/net46/System.Numerics.Vectors.dll",
  1900. "lib/net46/System.Numerics.Vectors.xml",
  1901. "lib/netcoreapp2.0/_._",
  1902. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  1903. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  1904. "lib/netstandard2.0/System.Numerics.Vectors.dll",
  1905. "lib/netstandard2.0/System.Numerics.Vectors.xml",
  1906. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  1907. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  1908. "lib/uap10.0.16299/_._",
  1909. "lib/xamarinios10/_._",
  1910. "lib/xamarinmac20/_._",
  1911. "lib/xamarintvos10/_._",
  1912. "lib/xamarinwatchos10/_._",
  1913. "ref/MonoAndroid10/_._",
  1914. "ref/MonoTouch10/_._",
  1915. "ref/net45/System.Numerics.Vectors.dll",
  1916. "ref/net45/System.Numerics.Vectors.xml",
  1917. "ref/net46/System.Numerics.Vectors.dll",
  1918. "ref/net46/System.Numerics.Vectors.xml",
  1919. "ref/netcoreapp2.0/_._",
  1920. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  1921. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  1922. "ref/netstandard2.0/System.Numerics.Vectors.dll",
  1923. "ref/netstandard2.0/System.Numerics.Vectors.xml",
  1924. "ref/uap10.0.16299/_._",
  1925. "ref/xamarinios10/_._",
  1926. "ref/xamarinmac20/_._",
  1927. "ref/xamarintvos10/_._",
  1928. "ref/xamarinwatchos10/_._",
  1929. "system.numerics.vectors.4.5.0.nupkg.sha512",
  1930. "system.numerics.vectors.nuspec",
  1931. "useSharedDesignerContext.txt",
  1932. "version.txt"
  1933. ]
  1934. },
  1935. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1936. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  1937. "type": "package",
  1938. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  1939. "files": [
  1940. ".nupkg.metadata",
  1941. ".signature.p7s",
  1942. "Icon.png",
  1943. "LICENSE.TXT",
  1944. "THIRD-PARTY-NOTICES.TXT",
  1945. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  1946. "buildTransitive/netcoreapp3.1/_._",
  1947. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  1948. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  1949. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  1950. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  1951. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  1952. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  1953. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  1954. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  1955. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  1956. "system.runtime.compilerservices.unsafe.nuspec",
  1957. "useSharedDesignerContext.txt"
  1958. ]
  1959. },
  1960. "System.Security.AccessControl/5.0.0": {
  1961. "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  1962. "type": "package",
  1963. "path": "system.security.accesscontrol/5.0.0",
  1964. "files": [
  1965. ".nupkg.metadata",
  1966. ".signature.p7s",
  1967. "Icon.png",
  1968. "LICENSE.TXT",
  1969. "THIRD-PARTY-NOTICES.TXT",
  1970. "lib/net46/System.Security.AccessControl.dll",
  1971. "lib/net461/System.Security.AccessControl.dll",
  1972. "lib/net461/System.Security.AccessControl.xml",
  1973. "lib/netstandard1.3/System.Security.AccessControl.dll",
  1974. "lib/netstandard2.0/System.Security.AccessControl.dll",
  1975. "lib/netstandard2.0/System.Security.AccessControl.xml",
  1976. "lib/uap10.0.16299/_._",
  1977. "ref/net46/System.Security.AccessControl.dll",
  1978. "ref/net461/System.Security.AccessControl.dll",
  1979. "ref/net461/System.Security.AccessControl.xml",
  1980. "ref/netstandard1.3/System.Security.AccessControl.dll",
  1981. "ref/netstandard1.3/System.Security.AccessControl.xml",
  1982. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  1983. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  1984. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  1985. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  1986. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  1987. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  1988. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  1989. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  1990. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  1991. "ref/netstandard2.0/System.Security.AccessControl.dll",
  1992. "ref/netstandard2.0/System.Security.AccessControl.xml",
  1993. "ref/uap10.0.16299/_._",
  1994. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  1995. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  1996. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  1997. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  1998. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  1999. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  2000. "runtimes/win/lib/uap10.0.16299/_._",
  2001. "system.security.accesscontrol.5.0.0.nupkg.sha512",
  2002. "system.security.accesscontrol.nuspec",
  2003. "useSharedDesignerContext.txt",
  2004. "version.txt"
  2005. ]
  2006. },
  2007. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2008. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  2009. "type": "package",
  2010. "path": "system.security.cryptography.protecteddata/4.5.0",
  2011. "files": [
  2012. ".nupkg.metadata",
  2013. ".signature.p7s",
  2014. "LICENSE.TXT",
  2015. "THIRD-PARTY-NOTICES.TXT",
  2016. "lib/MonoAndroid10/_._",
  2017. "lib/MonoTouch10/_._",
  2018. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  2019. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  2020. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  2021. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  2022. "lib/xamarinios10/_._",
  2023. "lib/xamarinmac20/_._",
  2024. "lib/xamarintvos10/_._",
  2025. "lib/xamarinwatchos10/_._",
  2026. "ref/MonoAndroid10/_._",
  2027. "ref/MonoTouch10/_._",
  2028. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  2029. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  2030. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  2031. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  2032. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  2033. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  2034. "ref/xamarinios10/_._",
  2035. "ref/xamarinmac20/_._",
  2036. "ref/xamarintvos10/_._",
  2037. "ref/xamarinwatchos10/_._",
  2038. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  2039. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  2040. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  2041. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  2042. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  2043. "system.security.cryptography.protecteddata.nuspec",
  2044. "useSharedDesignerContext.txt",
  2045. "version.txt"
  2046. ]
  2047. },
  2048. "System.Security.Principal.Windows/5.0.0": {
  2049. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  2050. "type": "package",
  2051. "path": "system.security.principal.windows/5.0.0",
  2052. "files": [
  2053. ".nupkg.metadata",
  2054. ".signature.p7s",
  2055. "Icon.png",
  2056. "LICENSE.TXT",
  2057. "THIRD-PARTY-NOTICES.TXT",
  2058. "lib/net46/System.Security.Principal.Windows.dll",
  2059. "lib/net461/System.Security.Principal.Windows.dll",
  2060. "lib/net461/System.Security.Principal.Windows.xml",
  2061. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  2062. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  2063. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  2064. "lib/uap10.0.16299/_._",
  2065. "ref/net46/System.Security.Principal.Windows.dll",
  2066. "ref/net461/System.Security.Principal.Windows.dll",
  2067. "ref/net461/System.Security.Principal.Windows.xml",
  2068. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  2069. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  2070. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  2071. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  2072. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  2073. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  2074. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  2075. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  2076. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  2077. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  2078. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  2079. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  2080. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  2081. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  2082. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  2083. "ref/uap10.0.16299/_._",
  2084. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  2085. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  2086. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  2087. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  2088. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  2089. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  2090. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  2091. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  2092. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  2093. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  2094. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  2095. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  2096. "runtimes/win/lib/uap10.0.16299/_._",
  2097. "system.security.principal.windows.5.0.0.nupkg.sha512",
  2098. "system.security.principal.windows.nuspec",
  2099. "useSharedDesignerContext.txt",
  2100. "version.txt"
  2101. ]
  2102. },
  2103. "AipGateway.AIP/1.0.0": {
  2104. "type": "project",
  2105. "path": "../AipGateway.AIP/AipGateway.AIP.csproj",
  2106. "msbuildProject": "../AipGateway.AIP/AipGateway.AIP.csproj"
  2107. }
  2108. },
  2109. "projectFileDependencyGroups": {
  2110. ".NETFramework,Version=v4.8": [
  2111. "AipGateway.AIP >= 1.0.0",
  2112. "System.Configuration.ConfigurationManager >= 8.0.0"
  2113. ]
  2114. },
  2115. "packageFolders": {
  2116. "C:\\Users\\OpenValue\\.nuget\\packages\\": {},
  2117. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  2118. },
  2119. "project": {
  2120. "version": "1.0.0",
  2121. "restore": {
  2122. "projectUniqueName": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Viewer\\AipGateway.Viewer.csproj",
  2123. "projectName": "AipGateway.Viewer",
  2124. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Viewer\\AipGateway.Viewer.csproj",
  2125. "packagesPath": "C:\\Users\\OpenValue\\.nuget\\packages\\",
  2126. "outputPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.Viewer\\obj\\",
  2127. "projectStyle": "PackageReference",
  2128. "skipContentFileWrite": true,
  2129. "fallbackFolders": [
  2130. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  2131. ],
  2132. "configFilePaths": [
  2133. "C:\\Users\\OpenValue\\AppData\\Roaming\\NuGet\\NuGet.Config",
  2134. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  2135. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  2136. ],
  2137. "originalTargetFrameworks": [
  2138. "net48"
  2139. ],
  2140. "sources": {
  2141. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  2142. "https://api.nuget.org/v3/index.json": {}
  2143. },
  2144. "frameworks": {
  2145. "net48": {
  2146. "projectReferences": {
  2147. "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.AIP\\AipGateway.AIP.csproj": {
  2148. "projectPath": "C:\\DEV\\SOLUTION\\IIS\\AipGateway\\AipGateway.AIP\\AipGateway.AIP.csproj"
  2149. }
  2150. }
  2151. }
  2152. },
  2153. "restoreAuditProperties": {
  2154. "enableAudit": "true",
  2155. "auditLevel": "low",
  2156. "auditMode": "direct"
  2157. }
  2158. },
  2159. "frameworks": {
  2160. "net48": {
  2161. "dependencies": {
  2162. "System.Configuration.ConfigurationManager": {
  2163. "target": "Package",
  2164. "version": "[8.0.0, )"
  2165. }
  2166. }
  2167. }
  2168. },
  2169. "runtimes": {
  2170. "win": {
  2171. "#import": []
  2172. },
  2173. "win-arm64": {
  2174. "#import": []
  2175. },
  2176. "win-x64": {
  2177. "#import": []
  2178. },
  2179. "win-x86": {
  2180. "#import": []
  2181. }
  2182. }
  2183. }
  2184. }