project.assets.json 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net7.0": {
  5. "Google.Protobuf/3.21.9": {
  6. "type": "package",
  7. "compile": {
  8. "lib/net5.0/Google.Protobuf.dll": {
  9. "related": ".pdb;.xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/net5.0/Google.Protobuf.dll": {
  14. "related": ".pdb;.xml"
  15. }
  16. }
  17. },
  18. "K4os.Compression.LZ4/1.3.5": {
  19. "type": "package",
  20. "compile": {
  21. "lib/net6.0/K4os.Compression.LZ4.dll": {
  22. "related": ".xml"
  23. }
  24. },
  25. "runtime": {
  26. "lib/net6.0/K4os.Compression.LZ4.dll": {
  27. "related": ".xml"
  28. }
  29. }
  30. },
  31. "K4os.Compression.LZ4.Streams/1.3.5": {
  32. "type": "package",
  33. "dependencies": {
  34. "K4os.Compression.LZ4": "1.3.5",
  35. "K4os.Hash.xxHash": "1.0.8",
  36. "System.IO.Pipelines": "6.0.3"
  37. },
  38. "compile": {
  39. "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
  40. "related": ".xml"
  41. }
  42. },
  43. "runtime": {
  44. "lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
  45. "related": ".xml"
  46. }
  47. }
  48. },
  49. "K4os.Hash.xxHash/1.0.8": {
  50. "type": "package",
  51. "compile": {
  52. "lib/net6.0/K4os.Hash.xxHash.dll": {
  53. "related": ".xml"
  54. }
  55. },
  56. "runtime": {
  57. "lib/net6.0/K4os.Hash.xxHash.dll": {
  58. "related": ".xml"
  59. }
  60. }
  61. },
  62. "Microsoft.NETCore.Platforms/3.1.0": {
  63. "type": "package",
  64. "compile": {
  65. "lib/netstandard1.0/_._": {}
  66. },
  67. "runtime": {
  68. "lib/netstandard1.0/_._": {}
  69. }
  70. },
  71. "Microsoft.NETCore.Targets/1.1.0": {
  72. "type": "package",
  73. "compile": {
  74. "lib/netstandard1.0/_._": {}
  75. },
  76. "runtime": {
  77. "lib/netstandard1.0/_._": {}
  78. }
  79. },
  80. "Microsoft.Win32.SystemEvents/4.7.0": {
  81. "type": "package",
  82. "dependencies": {
  83. "Microsoft.NETCore.Platforms": "3.1.0"
  84. },
  85. "compile": {
  86. "ref/netstandard2.0/_._": {
  87. "related": ".xml"
  88. }
  89. },
  90. "runtime": {
  91. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  92. "related": ".xml"
  93. }
  94. },
  95. "runtimeTargets": {
  96. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  97. "assetType": "runtime",
  98. "rid": "win"
  99. }
  100. }
  101. },
  102. "MySql.Data/8.1.0": {
  103. "type": "package",
  104. "dependencies": {
  105. "Google.Protobuf": "3.21.9",
  106. "K4os.Compression.LZ4.Streams": "1.3.5",
  107. "Portable.BouncyCastle": "1.9.0",
  108. "System.Buffers": "4.5.1",
  109. "System.Configuration.ConfigurationManager": "4.4.1",
  110. "System.Diagnostics.DiagnosticSource": "7.0.2",
  111. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  112. "System.Runtime.Loader": "4.3.0",
  113. "System.Security.Permissions": "4.7.0",
  114. "System.Text.Encoding.CodePages": "4.4.0",
  115. "System.Text.Json": "7.0.1",
  116. "System.Threading.Tasks.Extensions": "4.5.4",
  117. "ZstdSharp.Port": "0.7.1"
  118. },
  119. "compile": {
  120. "lib/net7.0/MySql.Data.dll": {
  121. "related": ".xml"
  122. }
  123. },
  124. "runtime": {
  125. "lib/net7.0/MySql.Data.dll": {
  126. "related": ".xml"
  127. }
  128. },
  129. "runtimeTargets": {
  130. "runtimes/win-x64/native/comerr64.dll": {
  131. "assetType": "native",
  132. "rid": "win-x64"
  133. },
  134. "runtimes/win-x64/native/gssapi64.dll": {
  135. "assetType": "native",
  136. "rid": "win-x64"
  137. },
  138. "runtimes/win-x64/native/k5sprt64.dll": {
  139. "assetType": "native",
  140. "rid": "win-x64"
  141. },
  142. "runtimes/win-x64/native/krb5_64.dll": {
  143. "assetType": "native",
  144. "rid": "win-x64"
  145. },
  146. "runtimes/win-x64/native/krbcc64.dll": {
  147. "assetType": "native",
  148. "rid": "win-x64"
  149. }
  150. }
  151. },
  152. "Portable.BouncyCastle/1.9.0": {
  153. "type": "package",
  154. "compile": {
  155. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  156. "related": ".xml"
  157. }
  158. },
  159. "runtime": {
  160. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  161. "related": ".xml"
  162. }
  163. }
  164. },
  165. "System.Buffers/4.5.1": {
  166. "type": "package",
  167. "compile": {
  168. "ref/netcoreapp2.0/_._": {}
  169. },
  170. "runtime": {
  171. "lib/netcoreapp2.0/_._": {}
  172. }
  173. },
  174. "System.Configuration.ConfigurationManager/4.4.1": {
  175. "type": "package",
  176. "dependencies": {
  177. "System.Security.Cryptography.ProtectedData": "4.4.0"
  178. },
  179. "compile": {
  180. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  181. "related": ".xml"
  182. }
  183. },
  184. "runtime": {
  185. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  186. }
  187. },
  188. "System.Diagnostics.DiagnosticSource/7.0.2": {
  189. "type": "package",
  190. "compile": {
  191. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll": {
  192. "related": ".xml"
  193. }
  194. },
  195. "runtime": {
  196. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll": {
  197. "related": ".xml"
  198. }
  199. },
  200. "build": {
  201. "buildTransitive/net6.0/_._": {}
  202. }
  203. },
  204. "System.Drawing.Common/4.7.0": {
  205. "type": "package",
  206. "dependencies": {
  207. "Microsoft.NETCore.Platforms": "3.1.0",
  208. "Microsoft.Win32.SystemEvents": "4.7.0"
  209. },
  210. "compile": {
  211. "ref/netcoreapp3.0/_._": {
  212. "related": ".xml"
  213. }
  214. },
  215. "runtime": {
  216. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  217. },
  218. "runtimeTargets": {
  219. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  220. "assetType": "runtime",
  221. "rid": "unix"
  222. },
  223. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  224. "assetType": "runtime",
  225. "rid": "win"
  226. }
  227. }
  228. },
  229. "System.IO/4.3.0": {
  230. "type": "package",
  231. "dependencies": {
  232. "Microsoft.NETCore.Platforms": "1.1.0",
  233. "Microsoft.NETCore.Targets": "1.1.0",
  234. "System.Runtime": "4.3.0",
  235. "System.Text.Encoding": "4.3.0",
  236. "System.Threading.Tasks": "4.3.0"
  237. },
  238. "compile": {
  239. "ref/netstandard1.5/System.IO.dll": {
  240. "related": ".xml"
  241. }
  242. }
  243. },
  244. "System.IO.Pipelines/6.0.3": {
  245. "type": "package",
  246. "compile": {
  247. "lib/net6.0/System.IO.Pipelines.dll": {
  248. "related": ".xml"
  249. }
  250. },
  251. "runtime": {
  252. "lib/net6.0/System.IO.Pipelines.dll": {
  253. "related": ".xml"
  254. }
  255. },
  256. "build": {
  257. "buildTransitive/netcoreapp3.1/_._": {}
  258. }
  259. },
  260. "System.Reflection/4.3.0": {
  261. "type": "package",
  262. "dependencies": {
  263. "Microsoft.NETCore.Platforms": "1.1.0",
  264. "Microsoft.NETCore.Targets": "1.1.0",
  265. "System.IO": "4.3.0",
  266. "System.Reflection.Primitives": "4.3.0",
  267. "System.Runtime": "4.3.0"
  268. },
  269. "compile": {
  270. "ref/netstandard1.5/System.Reflection.dll": {
  271. "related": ".xml"
  272. }
  273. }
  274. },
  275. "System.Reflection.Primitives/4.3.0": {
  276. "type": "package",
  277. "dependencies": {
  278. "Microsoft.NETCore.Platforms": "1.1.0",
  279. "Microsoft.NETCore.Targets": "1.1.0",
  280. "System.Runtime": "4.3.0"
  281. },
  282. "compile": {
  283. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  284. "related": ".xml"
  285. }
  286. }
  287. },
  288. "System.Runtime/4.3.0": {
  289. "type": "package",
  290. "dependencies": {
  291. "Microsoft.NETCore.Platforms": "1.1.0",
  292. "Microsoft.NETCore.Targets": "1.1.0"
  293. },
  294. "compile": {
  295. "ref/netstandard1.5/System.Runtime.dll": {
  296. "related": ".xml"
  297. }
  298. }
  299. },
  300. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  301. "type": "package",
  302. "compile": {
  303. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  304. "related": ".xml"
  305. }
  306. },
  307. "runtime": {
  308. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  309. "related": ".xml"
  310. }
  311. },
  312. "build": {
  313. "buildTransitive/netcoreapp3.1/_._": {}
  314. }
  315. },
  316. "System.Runtime.Loader/4.3.0": {
  317. "type": "package",
  318. "dependencies": {
  319. "System.IO": "4.3.0",
  320. "System.Reflection": "4.3.0",
  321. "System.Runtime": "4.3.0"
  322. },
  323. "compile": {
  324. "ref/netstandard1.5/System.Runtime.Loader.dll": {
  325. "related": ".xml"
  326. }
  327. },
  328. "runtime": {
  329. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  330. }
  331. },
  332. "System.Security.AccessControl/4.7.0": {
  333. "type": "package",
  334. "dependencies": {
  335. "Microsoft.NETCore.Platforms": "3.1.0",
  336. "System.Security.Principal.Windows": "4.7.0"
  337. },
  338. "compile": {
  339. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  340. "related": ".xml"
  341. }
  342. },
  343. "runtime": {
  344. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  345. "related": ".xml"
  346. }
  347. },
  348. "runtimeTargets": {
  349. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  350. "assetType": "runtime",
  351. "rid": "win"
  352. }
  353. }
  354. },
  355. "System.Security.Cryptography.ProtectedData/4.4.0": {
  356. "type": "package",
  357. "compile": {
  358. "ref/netstandard2.0/_._": {
  359. "related": ".xml"
  360. }
  361. },
  362. "runtime": {
  363. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  364. },
  365. "runtimeTargets": {
  366. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  367. "assetType": "runtime",
  368. "rid": "win"
  369. }
  370. }
  371. },
  372. "System.Security.Permissions/4.7.0": {
  373. "type": "package",
  374. "dependencies": {
  375. "System.Security.AccessControl": "4.7.0",
  376. "System.Windows.Extensions": "4.7.0"
  377. },
  378. "compile": {
  379. "ref/netcoreapp3.0/System.Security.Permissions.dll": {
  380. "related": ".xml"
  381. }
  382. },
  383. "runtime": {
  384. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  385. "related": ".xml"
  386. }
  387. }
  388. },
  389. "System.Security.Principal.Windows/4.7.0": {
  390. "type": "package",
  391. "compile": {
  392. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  393. "related": ".xml"
  394. }
  395. },
  396. "runtime": {
  397. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  398. "related": ".xml"
  399. }
  400. },
  401. "runtimeTargets": {
  402. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  403. "assetType": "runtime",
  404. "rid": "unix"
  405. },
  406. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  407. "assetType": "runtime",
  408. "rid": "win"
  409. }
  410. }
  411. },
  412. "System.Text.Encoding/4.3.0": {
  413. "type": "package",
  414. "dependencies": {
  415. "Microsoft.NETCore.Platforms": "1.1.0",
  416. "Microsoft.NETCore.Targets": "1.1.0",
  417. "System.Runtime": "4.3.0"
  418. },
  419. "compile": {
  420. "ref/netstandard1.3/System.Text.Encoding.dll": {
  421. "related": ".xml"
  422. }
  423. }
  424. },
  425. "System.Text.Encoding.CodePages/4.4.0": {
  426. "type": "package",
  427. "dependencies": {
  428. "Microsoft.NETCore.Platforms": "2.0.0"
  429. },
  430. "compile": {
  431. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  432. "related": ".xml"
  433. }
  434. },
  435. "runtime": {
  436. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  437. },
  438. "runtimeTargets": {
  439. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  440. "assetType": "runtime",
  441. "rid": "win"
  442. }
  443. }
  444. },
  445. "System.Text.Encodings.Web/7.0.0": {
  446. "type": "package",
  447. "compile": {
  448. "lib/net7.0/System.Text.Encodings.Web.dll": {
  449. "related": ".xml"
  450. }
  451. },
  452. "runtime": {
  453. "lib/net7.0/System.Text.Encodings.Web.dll": {
  454. "related": ".xml"
  455. }
  456. },
  457. "build": {
  458. "buildTransitive/net6.0/_._": {}
  459. },
  460. "runtimeTargets": {
  461. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": {
  462. "assetType": "runtime",
  463. "rid": "browser"
  464. }
  465. }
  466. },
  467. "System.Text.Json/7.0.1": {
  468. "type": "package",
  469. "dependencies": {
  470. "System.Text.Encodings.Web": "7.0.0"
  471. },
  472. "compile": {
  473. "lib/net7.0/System.Text.Json.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "runtime": {
  478. "lib/net7.0/System.Text.Json.dll": {
  479. "related": ".xml"
  480. }
  481. },
  482. "build": {
  483. "buildTransitive/net6.0/System.Text.Json.targets": {}
  484. }
  485. },
  486. "System.Threading.Tasks/4.3.0": {
  487. "type": "package",
  488. "dependencies": {
  489. "Microsoft.NETCore.Platforms": "1.1.0",
  490. "Microsoft.NETCore.Targets": "1.1.0",
  491. "System.Runtime": "4.3.0"
  492. },
  493. "compile": {
  494. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  495. "related": ".xml"
  496. }
  497. }
  498. },
  499. "System.Threading.Tasks.Extensions/4.5.4": {
  500. "type": "package",
  501. "compile": {
  502. "ref/netcoreapp2.1/_._": {}
  503. },
  504. "runtime": {
  505. "lib/netcoreapp2.1/_._": {}
  506. }
  507. },
  508. "System.Windows.Extensions/4.7.0": {
  509. "type": "package",
  510. "dependencies": {
  511. "System.Drawing.Common": "4.7.0"
  512. },
  513. "compile": {
  514. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {
  515. "related": ".xml"
  516. }
  517. },
  518. "runtime": {
  519. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  520. "related": ".xml"
  521. }
  522. },
  523. "runtimeTargets": {
  524. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  525. "assetType": "runtime",
  526. "rid": "win"
  527. }
  528. }
  529. },
  530. "UniTask/2.4.1": {
  531. "type": "package",
  532. "dependencies": {
  533. "System.Threading.Tasks.Extensions": "4.5.4"
  534. },
  535. "compile": {
  536. "lib/net7.0/UniTask.dll": {
  537. "related": ".xml"
  538. }
  539. },
  540. "runtime": {
  541. "lib/net7.0/UniTask.dll": {
  542. "related": ".xml"
  543. }
  544. }
  545. },
  546. "ZstdSharp.Port/0.7.1": {
  547. "type": "package",
  548. "compile": {
  549. "lib/net7.0/ZstdSharp.dll": {}
  550. },
  551. "runtime": {
  552. "lib/net7.0/ZstdSharp.dll": {}
  553. }
  554. }
  555. }
  556. },
  557. "libraries": {
  558. "Google.Protobuf/3.21.9": {
  559. "sha512": "OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==",
  560. "type": "package",
  561. "path": "google.protobuf/3.21.9",
  562. "files": [
  563. ".nupkg.metadata",
  564. ".signature.p7s",
  565. "google.protobuf.3.21.9.nupkg.sha512",
  566. "google.protobuf.nuspec",
  567. "lib/net45/Google.Protobuf.dll",
  568. "lib/net45/Google.Protobuf.pdb",
  569. "lib/net45/Google.Protobuf.xml",
  570. "lib/net5.0/Google.Protobuf.dll",
  571. "lib/net5.0/Google.Protobuf.pdb",
  572. "lib/net5.0/Google.Protobuf.xml",
  573. "lib/netstandard1.1/Google.Protobuf.dll",
  574. "lib/netstandard1.1/Google.Protobuf.pdb",
  575. "lib/netstandard1.1/Google.Protobuf.xml",
  576. "lib/netstandard2.0/Google.Protobuf.dll",
  577. "lib/netstandard2.0/Google.Protobuf.pdb",
  578. "lib/netstandard2.0/Google.Protobuf.xml"
  579. ]
  580. },
  581. "K4os.Compression.LZ4/1.3.5": {
  582. "sha512": "TS4mqlT0X1OlnvOGNfl02QdVUhuqgWuCnn7UxupIa7C9Pb6qlQ5yZA2sPhRh0OSmVULaQU64KV4wJuu//UyVQQ==",
  583. "type": "package",
  584. "path": "k4os.compression.lz4/1.3.5",
  585. "files": [
  586. ".nupkg.metadata",
  587. ".signature.p7s",
  588. "k4os.compression.lz4.1.3.5.nupkg.sha512",
  589. "k4os.compression.lz4.nuspec",
  590. "lib/net462/K4os.Compression.LZ4.dll",
  591. "lib/net462/K4os.Compression.LZ4.xml",
  592. "lib/net5.0/K4os.Compression.LZ4.dll",
  593. "lib/net5.0/K4os.Compression.LZ4.xml",
  594. "lib/net6.0/K4os.Compression.LZ4.dll",
  595. "lib/net6.0/K4os.Compression.LZ4.xml",
  596. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  597. "lib/netstandard2.0/K4os.Compression.LZ4.xml",
  598. "lib/netstandard2.1/K4os.Compression.LZ4.dll",
  599. "lib/netstandard2.1/K4os.Compression.LZ4.xml"
  600. ]
  601. },
  602. "K4os.Compression.LZ4.Streams/1.3.5": {
  603. "sha512": "M0NufZI8ym3mm6F6HMSPz1jw7TJGdY74fjAtbIXATmnAva/8xLz50eQZJI9tf9mMeHUaFDg76N1BmEh8GR5zeA==",
  604. "type": "package",
  605. "path": "k4os.compression.lz4.streams/1.3.5",
  606. "files": [
  607. ".nupkg.metadata",
  608. ".signature.p7s",
  609. "k4os.compression.lz4.streams.1.3.5.nupkg.sha512",
  610. "k4os.compression.lz4.streams.nuspec",
  611. "lib/net462/K4os.Compression.LZ4.Streams.dll",
  612. "lib/net462/K4os.Compression.LZ4.Streams.xml",
  613. "lib/net5.0/K4os.Compression.LZ4.Streams.dll",
  614. "lib/net5.0/K4os.Compression.LZ4.Streams.xml",
  615. "lib/net6.0/K4os.Compression.LZ4.Streams.dll",
  616. "lib/net6.0/K4os.Compression.LZ4.Streams.xml",
  617. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  618. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  619. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  620. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  621. ]
  622. },
  623. "K4os.Hash.xxHash/1.0.8": {
  624. "sha512": "Wp2F7BamQ2Q/7Hk834nV9vRQapgcr8kgv9Jvfm8J3D0IhDqZMMl+a2yxUq5ltJitvXvQfB8W6K4F4fCbw/P6YQ==",
  625. "type": "package",
  626. "path": "k4os.hash.xxhash/1.0.8",
  627. "files": [
  628. ".nupkg.metadata",
  629. ".signature.p7s",
  630. "k4os.hash.xxhash.1.0.8.nupkg.sha512",
  631. "k4os.hash.xxhash.nuspec",
  632. "lib/net462/K4os.Hash.xxHash.dll",
  633. "lib/net462/K4os.Hash.xxHash.xml",
  634. "lib/net5.0/K4os.Hash.xxHash.dll",
  635. "lib/net5.0/K4os.Hash.xxHash.xml",
  636. "lib/net6.0/K4os.Hash.xxHash.dll",
  637. "lib/net6.0/K4os.Hash.xxHash.xml",
  638. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  639. "lib/netstandard2.0/K4os.Hash.xxHash.xml",
  640. "lib/netstandard2.1/K4os.Hash.xxHash.dll",
  641. "lib/netstandard2.1/K4os.Hash.xxHash.xml"
  642. ]
  643. },
  644. "Microsoft.NETCore.Platforms/3.1.0": {
  645. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  646. "type": "package",
  647. "path": "microsoft.netcore.platforms/3.1.0",
  648. "files": [
  649. ".nupkg.metadata",
  650. ".signature.p7s",
  651. "LICENSE.TXT",
  652. "THIRD-PARTY-NOTICES.TXT",
  653. "lib/netstandard1.0/_._",
  654. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  655. "microsoft.netcore.platforms.nuspec",
  656. "runtime.json",
  657. "useSharedDesignerContext.txt",
  658. "version.txt"
  659. ]
  660. },
  661. "Microsoft.NETCore.Targets/1.1.0": {
  662. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  663. "type": "package",
  664. "path": "microsoft.netcore.targets/1.1.0",
  665. "files": [
  666. ".nupkg.metadata",
  667. ".signature.p7s",
  668. "ThirdPartyNotices.txt",
  669. "dotnet_library_license.txt",
  670. "lib/netstandard1.0/_._",
  671. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  672. "microsoft.netcore.targets.nuspec",
  673. "runtime.json"
  674. ]
  675. },
  676. "Microsoft.Win32.SystemEvents/4.7.0": {
  677. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  678. "type": "package",
  679. "path": "microsoft.win32.systemevents/4.7.0",
  680. "files": [
  681. ".nupkg.metadata",
  682. ".signature.p7s",
  683. "LICENSE.TXT",
  684. "THIRD-PARTY-NOTICES.TXT",
  685. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  686. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  687. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  688. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  689. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  690. "microsoft.win32.systemevents.nuspec",
  691. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  692. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  693. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  694. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  695. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  696. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  697. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  698. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  699. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  700. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  701. "useSharedDesignerContext.txt",
  702. "version.txt"
  703. ]
  704. },
  705. "MySql.Data/8.1.0": {
  706. "sha512": "7kEJLyty7HcqJD0lnfs+2fdMrvCl0RY5oykvZThbmg6QVLT55dwygI69Eqxl0M6IThP9woyjpsezT6m7gKRrLA==",
  707. "type": "package",
  708. "path": "mysql.data/8.1.0",
  709. "files": [
  710. ".nupkg.metadata",
  711. ".signature.p7s",
  712. "lib/net462/MySql.Data.dll",
  713. "lib/net462/MySql.Data.xml",
  714. "lib/net48/MySql.Data.dll",
  715. "lib/net48/MySql.Data.xml",
  716. "lib/net6.0/MySql.Data.dll",
  717. "lib/net6.0/MySql.Data.xml",
  718. "lib/net7.0/MySql.Data.dll",
  719. "lib/net7.0/MySql.Data.xml",
  720. "lib/netstandard2.0/MySql.Data.dll",
  721. "lib/netstandard2.0/MySql.Data.xml",
  722. "lib/netstandard2.1/MySql.Data.dll",
  723. "lib/netstandard2.1/MySql.Data.xml",
  724. "logo-mysql-170x115.png",
  725. "mysql.data.8.1.0.nupkg.sha512",
  726. "mysql.data.nuspec",
  727. "runtimes/win-x64/native/comerr64.dll",
  728. "runtimes/win-x64/native/gssapi64.dll",
  729. "runtimes/win-x64/native/k5sprt64.dll",
  730. "runtimes/win-x64/native/krb5_64.dll",
  731. "runtimes/win-x64/native/krbcc64.dll"
  732. ]
  733. },
  734. "Portable.BouncyCastle/1.9.0": {
  735. "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==",
  736. "type": "package",
  737. "path": "portable.bouncycastle/1.9.0",
  738. "files": [
  739. ".nupkg.metadata",
  740. ".signature.p7s",
  741. "lib/net40/BouncyCastle.Crypto.dll",
  742. "lib/net40/BouncyCastle.Crypto.xml",
  743. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  744. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  745. "portable.bouncycastle.1.9.0.nupkg.sha512",
  746. "portable.bouncycastle.nuspec"
  747. ]
  748. },
  749. "System.Buffers/4.5.1": {
  750. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  751. "type": "package",
  752. "path": "system.buffers/4.5.1",
  753. "files": [
  754. ".nupkg.metadata",
  755. ".signature.p7s",
  756. "LICENSE.TXT",
  757. "THIRD-PARTY-NOTICES.TXT",
  758. "lib/net461/System.Buffers.dll",
  759. "lib/net461/System.Buffers.xml",
  760. "lib/netcoreapp2.0/_._",
  761. "lib/netstandard1.1/System.Buffers.dll",
  762. "lib/netstandard1.1/System.Buffers.xml",
  763. "lib/netstandard2.0/System.Buffers.dll",
  764. "lib/netstandard2.0/System.Buffers.xml",
  765. "lib/uap10.0.16299/_._",
  766. "ref/net45/System.Buffers.dll",
  767. "ref/net45/System.Buffers.xml",
  768. "ref/netcoreapp2.0/_._",
  769. "ref/netstandard1.1/System.Buffers.dll",
  770. "ref/netstandard1.1/System.Buffers.xml",
  771. "ref/netstandard2.0/System.Buffers.dll",
  772. "ref/netstandard2.0/System.Buffers.xml",
  773. "ref/uap10.0.16299/_._",
  774. "system.buffers.4.5.1.nupkg.sha512",
  775. "system.buffers.nuspec",
  776. "useSharedDesignerContext.txt",
  777. "version.txt"
  778. ]
  779. },
  780. "System.Configuration.ConfigurationManager/4.4.1": {
  781. "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  782. "type": "package",
  783. "path": "system.configuration.configurationmanager/4.4.1",
  784. "files": [
  785. ".nupkg.metadata",
  786. ".signature.p7s",
  787. "LICENSE.TXT",
  788. "THIRD-PARTY-NOTICES.TXT",
  789. "lib/net461/System.Configuration.ConfigurationManager.dll",
  790. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  791. "ref/net461/System.Configuration.ConfigurationManager.dll",
  792. "ref/net461/System.Configuration.ConfigurationManager.xml",
  793. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  794. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  795. "system.configuration.configurationmanager.4.4.1.nupkg.sha512",
  796. "system.configuration.configurationmanager.nuspec",
  797. "useSharedDesignerContext.txt",
  798. "version.txt"
  799. ]
  800. },
  801. "System.Diagnostics.DiagnosticSource/7.0.2": {
  802. "sha512": "hYr3I9N9811e0Bjf2WNwAGGyTuAFbbTgX1RPLt/3Wbm68x3IGcX5Cl75CMmgT6WlNwLQ2tCCWfqYPpypjaf2xA==",
  803. "type": "package",
  804. "path": "system.diagnostics.diagnosticsource/7.0.2",
  805. "files": [
  806. ".nupkg.metadata",
  807. ".signature.p7s",
  808. "Icon.png",
  809. "LICENSE.TXT",
  810. "THIRD-PARTY-NOTICES.TXT",
  811. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  812. "buildTransitive/net462/_._",
  813. "buildTransitive/net6.0/_._",
  814. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  815. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  816. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  817. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  818. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  819. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  820. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  821. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  822. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  823. "system.diagnostics.diagnosticsource.7.0.2.nupkg.sha512",
  824. "system.diagnostics.diagnosticsource.nuspec",
  825. "useSharedDesignerContext.txt"
  826. ]
  827. },
  828. "System.Drawing.Common/4.7.0": {
  829. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  830. "type": "package",
  831. "path": "system.drawing.common/4.7.0",
  832. "files": [
  833. ".nupkg.metadata",
  834. ".signature.p7s",
  835. "LICENSE.TXT",
  836. "THIRD-PARTY-NOTICES.TXT",
  837. "lib/MonoAndroid10/_._",
  838. "lib/MonoTouch10/_._",
  839. "lib/net461/System.Drawing.Common.dll",
  840. "lib/netstandard2.0/System.Drawing.Common.dll",
  841. "lib/xamarinios10/_._",
  842. "lib/xamarinmac20/_._",
  843. "lib/xamarintvos10/_._",
  844. "lib/xamarinwatchos10/_._",
  845. "ref/MonoAndroid10/_._",
  846. "ref/MonoTouch10/_._",
  847. "ref/net461/System.Drawing.Common.dll",
  848. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  849. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  850. "ref/netstandard2.0/System.Drawing.Common.dll",
  851. "ref/xamarinios10/_._",
  852. "ref/xamarinmac20/_._",
  853. "ref/xamarintvos10/_._",
  854. "ref/xamarinwatchos10/_._",
  855. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  856. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  857. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  858. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  859. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  860. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  861. "system.drawing.common.4.7.0.nupkg.sha512",
  862. "system.drawing.common.nuspec",
  863. "useSharedDesignerContext.txt",
  864. "version.txt"
  865. ]
  866. },
  867. "System.IO/4.3.0": {
  868. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  869. "type": "package",
  870. "path": "system.io/4.3.0",
  871. "files": [
  872. ".nupkg.metadata",
  873. ".signature.p7s",
  874. "ThirdPartyNotices.txt",
  875. "dotnet_library_license.txt",
  876. "lib/MonoAndroid10/_._",
  877. "lib/MonoTouch10/_._",
  878. "lib/net45/_._",
  879. "lib/net462/System.IO.dll",
  880. "lib/portable-net45+win8+wp8+wpa81/_._",
  881. "lib/win8/_._",
  882. "lib/wp80/_._",
  883. "lib/wpa81/_._",
  884. "lib/xamarinios10/_._",
  885. "lib/xamarinmac20/_._",
  886. "lib/xamarintvos10/_._",
  887. "lib/xamarinwatchos10/_._",
  888. "ref/MonoAndroid10/_._",
  889. "ref/MonoTouch10/_._",
  890. "ref/net45/_._",
  891. "ref/net462/System.IO.dll",
  892. "ref/netcore50/System.IO.dll",
  893. "ref/netcore50/System.IO.xml",
  894. "ref/netcore50/de/System.IO.xml",
  895. "ref/netcore50/es/System.IO.xml",
  896. "ref/netcore50/fr/System.IO.xml",
  897. "ref/netcore50/it/System.IO.xml",
  898. "ref/netcore50/ja/System.IO.xml",
  899. "ref/netcore50/ko/System.IO.xml",
  900. "ref/netcore50/ru/System.IO.xml",
  901. "ref/netcore50/zh-hans/System.IO.xml",
  902. "ref/netcore50/zh-hant/System.IO.xml",
  903. "ref/netstandard1.0/System.IO.dll",
  904. "ref/netstandard1.0/System.IO.xml",
  905. "ref/netstandard1.0/de/System.IO.xml",
  906. "ref/netstandard1.0/es/System.IO.xml",
  907. "ref/netstandard1.0/fr/System.IO.xml",
  908. "ref/netstandard1.0/it/System.IO.xml",
  909. "ref/netstandard1.0/ja/System.IO.xml",
  910. "ref/netstandard1.0/ko/System.IO.xml",
  911. "ref/netstandard1.0/ru/System.IO.xml",
  912. "ref/netstandard1.0/zh-hans/System.IO.xml",
  913. "ref/netstandard1.0/zh-hant/System.IO.xml",
  914. "ref/netstandard1.3/System.IO.dll",
  915. "ref/netstandard1.3/System.IO.xml",
  916. "ref/netstandard1.3/de/System.IO.xml",
  917. "ref/netstandard1.3/es/System.IO.xml",
  918. "ref/netstandard1.3/fr/System.IO.xml",
  919. "ref/netstandard1.3/it/System.IO.xml",
  920. "ref/netstandard1.3/ja/System.IO.xml",
  921. "ref/netstandard1.3/ko/System.IO.xml",
  922. "ref/netstandard1.3/ru/System.IO.xml",
  923. "ref/netstandard1.3/zh-hans/System.IO.xml",
  924. "ref/netstandard1.3/zh-hant/System.IO.xml",
  925. "ref/netstandard1.5/System.IO.dll",
  926. "ref/netstandard1.5/System.IO.xml",
  927. "ref/netstandard1.5/de/System.IO.xml",
  928. "ref/netstandard1.5/es/System.IO.xml",
  929. "ref/netstandard1.5/fr/System.IO.xml",
  930. "ref/netstandard1.5/it/System.IO.xml",
  931. "ref/netstandard1.5/ja/System.IO.xml",
  932. "ref/netstandard1.5/ko/System.IO.xml",
  933. "ref/netstandard1.5/ru/System.IO.xml",
  934. "ref/netstandard1.5/zh-hans/System.IO.xml",
  935. "ref/netstandard1.5/zh-hant/System.IO.xml",
  936. "ref/portable-net45+win8+wp8+wpa81/_._",
  937. "ref/win8/_._",
  938. "ref/wp80/_._",
  939. "ref/wpa81/_._",
  940. "ref/xamarinios10/_._",
  941. "ref/xamarinmac20/_._",
  942. "ref/xamarintvos10/_._",
  943. "ref/xamarinwatchos10/_._",
  944. "system.io.4.3.0.nupkg.sha512",
  945. "system.io.nuspec"
  946. ]
  947. },
  948. "System.IO.Pipelines/6.0.3": {
  949. "sha512": "ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
  950. "type": "package",
  951. "path": "system.io.pipelines/6.0.3",
  952. "files": [
  953. ".nupkg.metadata",
  954. ".signature.p7s",
  955. "Icon.png",
  956. "LICENSE.TXT",
  957. "THIRD-PARTY-NOTICES.TXT",
  958. "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
  959. "buildTransitive/netcoreapp3.1/_._",
  960. "lib/net461/System.IO.Pipelines.dll",
  961. "lib/net461/System.IO.Pipelines.xml",
  962. "lib/net6.0/System.IO.Pipelines.dll",
  963. "lib/net6.0/System.IO.Pipelines.xml",
  964. "lib/netcoreapp3.1/System.IO.Pipelines.dll",
  965. "lib/netcoreapp3.1/System.IO.Pipelines.xml",
  966. "lib/netstandard2.0/System.IO.Pipelines.dll",
  967. "lib/netstandard2.0/System.IO.Pipelines.xml",
  968. "system.io.pipelines.6.0.3.nupkg.sha512",
  969. "system.io.pipelines.nuspec",
  970. "useSharedDesignerContext.txt"
  971. ]
  972. },
  973. "System.Reflection/4.3.0": {
  974. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  975. "type": "package",
  976. "path": "system.reflection/4.3.0",
  977. "files": [
  978. ".nupkg.metadata",
  979. ".signature.p7s",
  980. "ThirdPartyNotices.txt",
  981. "dotnet_library_license.txt",
  982. "lib/MonoAndroid10/_._",
  983. "lib/MonoTouch10/_._",
  984. "lib/net45/_._",
  985. "lib/net462/System.Reflection.dll",
  986. "lib/portable-net45+win8+wp8+wpa81/_._",
  987. "lib/win8/_._",
  988. "lib/wp80/_._",
  989. "lib/wpa81/_._",
  990. "lib/xamarinios10/_._",
  991. "lib/xamarinmac20/_._",
  992. "lib/xamarintvos10/_._",
  993. "lib/xamarinwatchos10/_._",
  994. "ref/MonoAndroid10/_._",
  995. "ref/MonoTouch10/_._",
  996. "ref/net45/_._",
  997. "ref/net462/System.Reflection.dll",
  998. "ref/netcore50/System.Reflection.dll",
  999. "ref/netcore50/System.Reflection.xml",
  1000. "ref/netcore50/de/System.Reflection.xml",
  1001. "ref/netcore50/es/System.Reflection.xml",
  1002. "ref/netcore50/fr/System.Reflection.xml",
  1003. "ref/netcore50/it/System.Reflection.xml",
  1004. "ref/netcore50/ja/System.Reflection.xml",
  1005. "ref/netcore50/ko/System.Reflection.xml",
  1006. "ref/netcore50/ru/System.Reflection.xml",
  1007. "ref/netcore50/zh-hans/System.Reflection.xml",
  1008. "ref/netcore50/zh-hant/System.Reflection.xml",
  1009. "ref/netstandard1.0/System.Reflection.dll",
  1010. "ref/netstandard1.0/System.Reflection.xml",
  1011. "ref/netstandard1.0/de/System.Reflection.xml",
  1012. "ref/netstandard1.0/es/System.Reflection.xml",
  1013. "ref/netstandard1.0/fr/System.Reflection.xml",
  1014. "ref/netstandard1.0/it/System.Reflection.xml",
  1015. "ref/netstandard1.0/ja/System.Reflection.xml",
  1016. "ref/netstandard1.0/ko/System.Reflection.xml",
  1017. "ref/netstandard1.0/ru/System.Reflection.xml",
  1018. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  1019. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  1020. "ref/netstandard1.3/System.Reflection.dll",
  1021. "ref/netstandard1.3/System.Reflection.xml",
  1022. "ref/netstandard1.3/de/System.Reflection.xml",
  1023. "ref/netstandard1.3/es/System.Reflection.xml",
  1024. "ref/netstandard1.3/fr/System.Reflection.xml",
  1025. "ref/netstandard1.3/it/System.Reflection.xml",
  1026. "ref/netstandard1.3/ja/System.Reflection.xml",
  1027. "ref/netstandard1.3/ko/System.Reflection.xml",
  1028. "ref/netstandard1.3/ru/System.Reflection.xml",
  1029. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  1030. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  1031. "ref/netstandard1.5/System.Reflection.dll",
  1032. "ref/netstandard1.5/System.Reflection.xml",
  1033. "ref/netstandard1.5/de/System.Reflection.xml",
  1034. "ref/netstandard1.5/es/System.Reflection.xml",
  1035. "ref/netstandard1.5/fr/System.Reflection.xml",
  1036. "ref/netstandard1.5/it/System.Reflection.xml",
  1037. "ref/netstandard1.5/ja/System.Reflection.xml",
  1038. "ref/netstandard1.5/ko/System.Reflection.xml",
  1039. "ref/netstandard1.5/ru/System.Reflection.xml",
  1040. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  1041. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  1042. "ref/portable-net45+win8+wp8+wpa81/_._",
  1043. "ref/win8/_._",
  1044. "ref/wp80/_._",
  1045. "ref/wpa81/_._",
  1046. "ref/xamarinios10/_._",
  1047. "ref/xamarinmac20/_._",
  1048. "ref/xamarintvos10/_._",
  1049. "ref/xamarinwatchos10/_._",
  1050. "system.reflection.4.3.0.nupkg.sha512",
  1051. "system.reflection.nuspec"
  1052. ]
  1053. },
  1054. "System.Reflection.Primitives/4.3.0": {
  1055. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1056. "type": "package",
  1057. "path": "system.reflection.primitives/4.3.0",
  1058. "files": [
  1059. ".nupkg.metadata",
  1060. ".signature.p7s",
  1061. "ThirdPartyNotices.txt",
  1062. "dotnet_library_license.txt",
  1063. "lib/MonoAndroid10/_._",
  1064. "lib/MonoTouch10/_._",
  1065. "lib/net45/_._",
  1066. "lib/portable-net45+win8+wp8+wpa81/_._",
  1067. "lib/win8/_._",
  1068. "lib/wp80/_._",
  1069. "lib/wpa81/_._",
  1070. "lib/xamarinios10/_._",
  1071. "lib/xamarinmac20/_._",
  1072. "lib/xamarintvos10/_._",
  1073. "lib/xamarinwatchos10/_._",
  1074. "ref/MonoAndroid10/_._",
  1075. "ref/MonoTouch10/_._",
  1076. "ref/net45/_._",
  1077. "ref/netcore50/System.Reflection.Primitives.dll",
  1078. "ref/netcore50/System.Reflection.Primitives.xml",
  1079. "ref/netcore50/de/System.Reflection.Primitives.xml",
  1080. "ref/netcore50/es/System.Reflection.Primitives.xml",
  1081. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  1082. "ref/netcore50/it/System.Reflection.Primitives.xml",
  1083. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  1084. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  1085. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  1086. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  1087. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  1088. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  1089. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  1090. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  1091. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  1092. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  1093. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  1094. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  1095. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  1096. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  1097. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  1098. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  1099. "ref/portable-net45+win8+wp8+wpa81/_._",
  1100. "ref/win8/_._",
  1101. "ref/wp80/_._",
  1102. "ref/wpa81/_._",
  1103. "ref/xamarinios10/_._",
  1104. "ref/xamarinmac20/_._",
  1105. "ref/xamarintvos10/_._",
  1106. "ref/xamarinwatchos10/_._",
  1107. "system.reflection.primitives.4.3.0.nupkg.sha512",
  1108. "system.reflection.primitives.nuspec"
  1109. ]
  1110. },
  1111. "System.Runtime/4.3.0": {
  1112. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1113. "type": "package",
  1114. "path": "system.runtime/4.3.0",
  1115. "files": [
  1116. ".nupkg.metadata",
  1117. ".signature.p7s",
  1118. "ThirdPartyNotices.txt",
  1119. "dotnet_library_license.txt",
  1120. "lib/MonoAndroid10/_._",
  1121. "lib/MonoTouch10/_._",
  1122. "lib/net45/_._",
  1123. "lib/net462/System.Runtime.dll",
  1124. "lib/portable-net45+win8+wp80+wpa81/_._",
  1125. "lib/win8/_._",
  1126. "lib/wp80/_._",
  1127. "lib/wpa81/_._",
  1128. "lib/xamarinios10/_._",
  1129. "lib/xamarinmac20/_._",
  1130. "lib/xamarintvos10/_._",
  1131. "lib/xamarinwatchos10/_._",
  1132. "ref/MonoAndroid10/_._",
  1133. "ref/MonoTouch10/_._",
  1134. "ref/net45/_._",
  1135. "ref/net462/System.Runtime.dll",
  1136. "ref/netcore50/System.Runtime.dll",
  1137. "ref/netcore50/System.Runtime.xml",
  1138. "ref/netcore50/de/System.Runtime.xml",
  1139. "ref/netcore50/es/System.Runtime.xml",
  1140. "ref/netcore50/fr/System.Runtime.xml",
  1141. "ref/netcore50/it/System.Runtime.xml",
  1142. "ref/netcore50/ja/System.Runtime.xml",
  1143. "ref/netcore50/ko/System.Runtime.xml",
  1144. "ref/netcore50/ru/System.Runtime.xml",
  1145. "ref/netcore50/zh-hans/System.Runtime.xml",
  1146. "ref/netcore50/zh-hant/System.Runtime.xml",
  1147. "ref/netstandard1.0/System.Runtime.dll",
  1148. "ref/netstandard1.0/System.Runtime.xml",
  1149. "ref/netstandard1.0/de/System.Runtime.xml",
  1150. "ref/netstandard1.0/es/System.Runtime.xml",
  1151. "ref/netstandard1.0/fr/System.Runtime.xml",
  1152. "ref/netstandard1.0/it/System.Runtime.xml",
  1153. "ref/netstandard1.0/ja/System.Runtime.xml",
  1154. "ref/netstandard1.0/ko/System.Runtime.xml",
  1155. "ref/netstandard1.0/ru/System.Runtime.xml",
  1156. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  1157. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  1158. "ref/netstandard1.2/System.Runtime.dll",
  1159. "ref/netstandard1.2/System.Runtime.xml",
  1160. "ref/netstandard1.2/de/System.Runtime.xml",
  1161. "ref/netstandard1.2/es/System.Runtime.xml",
  1162. "ref/netstandard1.2/fr/System.Runtime.xml",
  1163. "ref/netstandard1.2/it/System.Runtime.xml",
  1164. "ref/netstandard1.2/ja/System.Runtime.xml",
  1165. "ref/netstandard1.2/ko/System.Runtime.xml",
  1166. "ref/netstandard1.2/ru/System.Runtime.xml",
  1167. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  1168. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  1169. "ref/netstandard1.3/System.Runtime.dll",
  1170. "ref/netstandard1.3/System.Runtime.xml",
  1171. "ref/netstandard1.3/de/System.Runtime.xml",
  1172. "ref/netstandard1.3/es/System.Runtime.xml",
  1173. "ref/netstandard1.3/fr/System.Runtime.xml",
  1174. "ref/netstandard1.3/it/System.Runtime.xml",
  1175. "ref/netstandard1.3/ja/System.Runtime.xml",
  1176. "ref/netstandard1.3/ko/System.Runtime.xml",
  1177. "ref/netstandard1.3/ru/System.Runtime.xml",
  1178. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  1179. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  1180. "ref/netstandard1.5/System.Runtime.dll",
  1181. "ref/netstandard1.5/System.Runtime.xml",
  1182. "ref/netstandard1.5/de/System.Runtime.xml",
  1183. "ref/netstandard1.5/es/System.Runtime.xml",
  1184. "ref/netstandard1.5/fr/System.Runtime.xml",
  1185. "ref/netstandard1.5/it/System.Runtime.xml",
  1186. "ref/netstandard1.5/ja/System.Runtime.xml",
  1187. "ref/netstandard1.5/ko/System.Runtime.xml",
  1188. "ref/netstandard1.5/ru/System.Runtime.xml",
  1189. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  1190. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  1191. "ref/portable-net45+win8+wp80+wpa81/_._",
  1192. "ref/win8/_._",
  1193. "ref/wp80/_._",
  1194. "ref/wpa81/_._",
  1195. "ref/xamarinios10/_._",
  1196. "ref/xamarinmac20/_._",
  1197. "ref/xamarintvos10/_._",
  1198. "ref/xamarinwatchos10/_._",
  1199. "system.runtime.4.3.0.nupkg.sha512",
  1200. "system.runtime.nuspec"
  1201. ]
  1202. },
  1203. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1204. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  1205. "type": "package",
  1206. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  1207. "files": [
  1208. ".nupkg.metadata",
  1209. ".signature.p7s",
  1210. "Icon.png",
  1211. "LICENSE.TXT",
  1212. "THIRD-PARTY-NOTICES.TXT",
  1213. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  1214. "buildTransitive/netcoreapp3.1/_._",
  1215. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  1216. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  1217. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  1218. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  1219. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  1220. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  1221. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  1222. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  1223. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  1224. "system.runtime.compilerservices.unsafe.nuspec",
  1225. "useSharedDesignerContext.txt"
  1226. ]
  1227. },
  1228. "System.Runtime.Loader/4.3.0": {
  1229. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  1230. "type": "package",
  1231. "path": "system.runtime.loader/4.3.0",
  1232. "files": [
  1233. ".nupkg.metadata",
  1234. ".signature.p7s",
  1235. "ThirdPartyNotices.txt",
  1236. "dotnet_library_license.txt",
  1237. "lib/MonoAndroid10/_._",
  1238. "lib/MonoTouch10/_._",
  1239. "lib/net462/_._",
  1240. "lib/netstandard1.5/System.Runtime.Loader.dll",
  1241. "lib/xamarinios10/_._",
  1242. "lib/xamarinmac20/_._",
  1243. "lib/xamarintvos10/_._",
  1244. "lib/xamarinwatchos10/_._",
  1245. "ref/netstandard1.5/System.Runtime.Loader.dll",
  1246. "ref/netstandard1.5/System.Runtime.Loader.xml",
  1247. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  1248. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  1249. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  1250. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  1251. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  1252. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  1253. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  1254. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  1255. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  1256. "system.runtime.loader.4.3.0.nupkg.sha512",
  1257. "system.runtime.loader.nuspec"
  1258. ]
  1259. },
  1260. "System.Security.AccessControl/4.7.0": {
  1261. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  1262. "type": "package",
  1263. "path": "system.security.accesscontrol/4.7.0",
  1264. "files": [
  1265. ".nupkg.metadata",
  1266. ".signature.p7s",
  1267. "LICENSE.TXT",
  1268. "THIRD-PARTY-NOTICES.TXT",
  1269. "lib/net46/System.Security.AccessControl.dll",
  1270. "lib/net461/System.Security.AccessControl.dll",
  1271. "lib/net461/System.Security.AccessControl.xml",
  1272. "lib/netstandard1.3/System.Security.AccessControl.dll",
  1273. "lib/netstandard2.0/System.Security.AccessControl.dll",
  1274. "lib/netstandard2.0/System.Security.AccessControl.xml",
  1275. "lib/uap10.0.16299/_._",
  1276. "ref/net46/System.Security.AccessControl.dll",
  1277. "ref/net461/System.Security.AccessControl.dll",
  1278. "ref/net461/System.Security.AccessControl.xml",
  1279. "ref/netstandard1.3/System.Security.AccessControl.dll",
  1280. "ref/netstandard1.3/System.Security.AccessControl.xml",
  1281. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  1282. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  1283. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  1284. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  1285. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  1286. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  1287. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  1288. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  1289. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  1290. "ref/netstandard2.0/System.Security.AccessControl.dll",
  1291. "ref/netstandard2.0/System.Security.AccessControl.xml",
  1292. "ref/uap10.0.16299/_._",
  1293. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  1294. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  1295. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  1296. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  1297. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  1298. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  1299. "runtimes/win/lib/uap10.0.16299/_._",
  1300. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  1301. "system.security.accesscontrol.nuspec",
  1302. "useSharedDesignerContext.txt",
  1303. "version.txt"
  1304. ]
  1305. },
  1306. "System.Security.Cryptography.ProtectedData/4.4.0": {
  1307. "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  1308. "type": "package",
  1309. "path": "system.security.cryptography.protecteddata/4.4.0",
  1310. "files": [
  1311. ".nupkg.metadata",
  1312. ".signature.p7s",
  1313. "LICENSE.TXT",
  1314. "THIRD-PARTY-NOTICES.TXT",
  1315. "lib/MonoAndroid10/_._",
  1316. "lib/MonoTouch10/_._",
  1317. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  1318. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  1319. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  1320. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  1321. "lib/xamarinios10/_._",
  1322. "lib/xamarinmac20/_._",
  1323. "lib/xamarintvos10/_._",
  1324. "lib/xamarinwatchos10/_._",
  1325. "ref/MonoAndroid10/_._",
  1326. "ref/MonoTouch10/_._",
  1327. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  1328. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  1329. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  1330. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  1331. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  1332. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  1333. "ref/xamarinios10/_._",
  1334. "ref/xamarinmac20/_._",
  1335. "ref/xamarintvos10/_._",
  1336. "ref/xamarinwatchos10/_._",
  1337. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  1338. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  1339. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  1340. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  1341. "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
  1342. "system.security.cryptography.protecteddata.nuspec",
  1343. "useSharedDesignerContext.txt",
  1344. "version.txt"
  1345. ]
  1346. },
  1347. "System.Security.Permissions/4.7.0": {
  1348. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  1349. "type": "package",
  1350. "path": "system.security.permissions/4.7.0",
  1351. "files": [
  1352. ".nupkg.metadata",
  1353. ".signature.p7s",
  1354. "LICENSE.TXT",
  1355. "THIRD-PARTY-NOTICES.TXT",
  1356. "lib/net461/System.Security.Permissions.dll",
  1357. "lib/net461/System.Security.Permissions.xml",
  1358. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  1359. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  1360. "lib/netstandard2.0/System.Security.Permissions.dll",
  1361. "lib/netstandard2.0/System.Security.Permissions.xml",
  1362. "ref/net461/System.Security.Permissions.dll",
  1363. "ref/net461/System.Security.Permissions.xml",
  1364. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  1365. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  1366. "ref/netstandard2.0/System.Security.Permissions.dll",
  1367. "ref/netstandard2.0/System.Security.Permissions.xml",
  1368. "system.security.permissions.4.7.0.nupkg.sha512",
  1369. "system.security.permissions.nuspec",
  1370. "useSharedDesignerContext.txt",
  1371. "version.txt"
  1372. ]
  1373. },
  1374. "System.Security.Principal.Windows/4.7.0": {
  1375. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  1376. "type": "package",
  1377. "path": "system.security.principal.windows/4.7.0",
  1378. "files": [
  1379. ".nupkg.metadata",
  1380. ".signature.p7s",
  1381. "LICENSE.TXT",
  1382. "THIRD-PARTY-NOTICES.TXT",
  1383. "lib/net46/System.Security.Principal.Windows.dll",
  1384. "lib/net461/System.Security.Principal.Windows.dll",
  1385. "lib/net461/System.Security.Principal.Windows.xml",
  1386. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  1387. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  1388. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  1389. "lib/uap10.0.16299/_._",
  1390. "ref/net46/System.Security.Principal.Windows.dll",
  1391. "ref/net461/System.Security.Principal.Windows.dll",
  1392. "ref/net461/System.Security.Principal.Windows.xml",
  1393. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  1394. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  1395. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  1396. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  1397. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  1398. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  1399. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  1400. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  1401. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  1402. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  1403. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  1404. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  1405. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  1406. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  1407. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  1408. "ref/uap10.0.16299/_._",
  1409. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  1410. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  1411. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  1412. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  1413. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  1414. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  1415. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  1416. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  1417. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  1418. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  1419. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  1420. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  1421. "runtimes/win/lib/uap10.0.16299/_._",
  1422. "system.security.principal.windows.4.7.0.nupkg.sha512",
  1423. "system.security.principal.windows.nuspec",
  1424. "useSharedDesignerContext.txt",
  1425. "version.txt"
  1426. ]
  1427. },
  1428. "System.Text.Encoding/4.3.0": {
  1429. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  1430. "type": "package",
  1431. "path": "system.text.encoding/4.3.0",
  1432. "files": [
  1433. ".nupkg.metadata",
  1434. ".signature.p7s",
  1435. "ThirdPartyNotices.txt",
  1436. "dotnet_library_license.txt",
  1437. "lib/MonoAndroid10/_._",
  1438. "lib/MonoTouch10/_._",
  1439. "lib/net45/_._",
  1440. "lib/portable-net45+win8+wp8+wpa81/_._",
  1441. "lib/win8/_._",
  1442. "lib/wp80/_._",
  1443. "lib/wpa81/_._",
  1444. "lib/xamarinios10/_._",
  1445. "lib/xamarinmac20/_._",
  1446. "lib/xamarintvos10/_._",
  1447. "lib/xamarinwatchos10/_._",
  1448. "ref/MonoAndroid10/_._",
  1449. "ref/MonoTouch10/_._",
  1450. "ref/net45/_._",
  1451. "ref/netcore50/System.Text.Encoding.dll",
  1452. "ref/netcore50/System.Text.Encoding.xml",
  1453. "ref/netcore50/de/System.Text.Encoding.xml",
  1454. "ref/netcore50/es/System.Text.Encoding.xml",
  1455. "ref/netcore50/fr/System.Text.Encoding.xml",
  1456. "ref/netcore50/it/System.Text.Encoding.xml",
  1457. "ref/netcore50/ja/System.Text.Encoding.xml",
  1458. "ref/netcore50/ko/System.Text.Encoding.xml",
  1459. "ref/netcore50/ru/System.Text.Encoding.xml",
  1460. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  1461. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  1462. "ref/netstandard1.0/System.Text.Encoding.dll",
  1463. "ref/netstandard1.0/System.Text.Encoding.xml",
  1464. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  1465. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  1466. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  1467. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  1468. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  1469. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  1470. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  1471. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  1472. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  1473. "ref/netstandard1.3/System.Text.Encoding.dll",
  1474. "ref/netstandard1.3/System.Text.Encoding.xml",
  1475. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  1476. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  1477. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  1478. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  1479. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  1480. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  1481. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  1482. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  1483. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  1484. "ref/portable-net45+win8+wp8+wpa81/_._",
  1485. "ref/win8/_._",
  1486. "ref/wp80/_._",
  1487. "ref/wpa81/_._",
  1488. "ref/xamarinios10/_._",
  1489. "ref/xamarinmac20/_._",
  1490. "ref/xamarintvos10/_._",
  1491. "ref/xamarinwatchos10/_._",
  1492. "system.text.encoding.4.3.0.nupkg.sha512",
  1493. "system.text.encoding.nuspec"
  1494. ]
  1495. },
  1496. "System.Text.Encoding.CodePages/4.4.0": {
  1497. "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  1498. "type": "package",
  1499. "path": "system.text.encoding.codepages/4.4.0",
  1500. "files": [
  1501. ".nupkg.metadata",
  1502. ".signature.p7s",
  1503. "LICENSE.TXT",
  1504. "THIRD-PARTY-NOTICES.TXT",
  1505. "lib/MonoAndroid10/_._",
  1506. "lib/MonoTouch10/_._",
  1507. "lib/net46/System.Text.Encoding.CodePages.dll",
  1508. "lib/net461/System.Text.Encoding.CodePages.dll",
  1509. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  1510. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  1511. "lib/xamarinios10/_._",
  1512. "lib/xamarinmac20/_._",
  1513. "lib/xamarintvos10/_._",
  1514. "lib/xamarinwatchos10/_._",
  1515. "ref/MonoAndroid10/_._",
  1516. "ref/MonoTouch10/_._",
  1517. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  1518. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  1519. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  1520. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  1521. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  1522. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  1523. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  1524. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  1525. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  1526. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  1527. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  1528. "ref/netstandard2.0/System.Text.Encoding.CodePages.dll",
  1529. "ref/netstandard2.0/System.Text.Encoding.CodePages.xml",
  1530. "ref/xamarinios10/_._",
  1531. "ref/xamarinmac20/_._",
  1532. "ref/xamarintvos10/_._",
  1533. "ref/xamarinwatchos10/_._",
  1534. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  1535. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  1536. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  1537. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  1538. "system.text.encoding.codepages.4.4.0.nupkg.sha512",
  1539. "system.text.encoding.codepages.nuspec",
  1540. "useSharedDesignerContext.txt",
  1541. "version.txt"
  1542. ]
  1543. },
  1544. "System.Text.Encodings.Web/7.0.0": {
  1545. "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
  1546. "type": "package",
  1547. "path": "system.text.encodings.web/7.0.0",
  1548. "files": [
  1549. ".nupkg.metadata",
  1550. ".signature.p7s",
  1551. "Icon.png",
  1552. "LICENSE.TXT",
  1553. "THIRD-PARTY-NOTICES.TXT",
  1554. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  1555. "buildTransitive/net462/_._",
  1556. "buildTransitive/net6.0/_._",
  1557. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  1558. "lib/net462/System.Text.Encodings.Web.dll",
  1559. "lib/net462/System.Text.Encodings.Web.xml",
  1560. "lib/net6.0/System.Text.Encodings.Web.dll",
  1561. "lib/net6.0/System.Text.Encodings.Web.xml",
  1562. "lib/net7.0/System.Text.Encodings.Web.dll",
  1563. "lib/net7.0/System.Text.Encodings.Web.xml",
  1564. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  1565. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  1566. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  1567. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  1568. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  1569. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  1570. "system.text.encodings.web.7.0.0.nupkg.sha512",
  1571. "system.text.encodings.web.nuspec",
  1572. "useSharedDesignerContext.txt"
  1573. ]
  1574. },
  1575. "System.Text.Json/7.0.1": {
  1576. "sha512": "OtDEmCCiNl8JAduFKZ/r0Sw6XZNHwIicUYy/mXgMDGeOsZLshH37qi3oPRzFYiryVktiMoQLByMGPtRCEMYbeQ==",
  1577. "type": "package",
  1578. "path": "system.text.json/7.0.1",
  1579. "files": [
  1580. ".nupkg.metadata",
  1581. ".signature.p7s",
  1582. "Icon.png",
  1583. "LICENSE.TXT",
  1584. "README.md",
  1585. "THIRD-PARTY-NOTICES.TXT",
  1586. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  1587. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  1588. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  1589. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  1590. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  1591. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  1592. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  1593. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  1594. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  1595. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  1596. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  1597. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  1598. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  1599. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  1600. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  1601. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  1602. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  1603. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  1604. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  1605. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  1606. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  1607. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  1608. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  1609. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  1610. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  1611. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  1612. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  1613. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  1614. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  1615. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  1616. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  1617. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  1618. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  1619. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  1620. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  1621. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  1622. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  1623. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  1624. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  1625. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  1626. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  1627. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  1628. "buildTransitive/net461/System.Text.Json.targets",
  1629. "buildTransitive/net462/System.Text.Json.targets",
  1630. "buildTransitive/net6.0/System.Text.Json.targets",
  1631. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  1632. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  1633. "lib/net462/System.Text.Json.dll",
  1634. "lib/net462/System.Text.Json.xml",
  1635. "lib/net6.0/System.Text.Json.dll",
  1636. "lib/net6.0/System.Text.Json.xml",
  1637. "lib/net7.0/System.Text.Json.dll",
  1638. "lib/net7.0/System.Text.Json.xml",
  1639. "lib/netstandard2.0/System.Text.Json.dll",
  1640. "lib/netstandard2.0/System.Text.Json.xml",
  1641. "system.text.json.7.0.1.nupkg.sha512",
  1642. "system.text.json.nuspec",
  1643. "useSharedDesignerContext.txt"
  1644. ]
  1645. },
  1646. "System.Threading.Tasks/4.3.0": {
  1647. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  1648. "type": "package",
  1649. "path": "system.threading.tasks/4.3.0",
  1650. "files": [
  1651. ".nupkg.metadata",
  1652. ".signature.p7s",
  1653. "ThirdPartyNotices.txt",
  1654. "dotnet_library_license.txt",
  1655. "lib/MonoAndroid10/_._",
  1656. "lib/MonoTouch10/_._",
  1657. "lib/net45/_._",
  1658. "lib/portable-net45+win8+wp8+wpa81/_._",
  1659. "lib/win8/_._",
  1660. "lib/wp80/_._",
  1661. "lib/wpa81/_._",
  1662. "lib/xamarinios10/_._",
  1663. "lib/xamarinmac20/_._",
  1664. "lib/xamarintvos10/_._",
  1665. "lib/xamarinwatchos10/_._",
  1666. "ref/MonoAndroid10/_._",
  1667. "ref/MonoTouch10/_._",
  1668. "ref/net45/_._",
  1669. "ref/netcore50/System.Threading.Tasks.dll",
  1670. "ref/netcore50/System.Threading.Tasks.xml",
  1671. "ref/netcore50/de/System.Threading.Tasks.xml",
  1672. "ref/netcore50/es/System.Threading.Tasks.xml",
  1673. "ref/netcore50/fr/System.Threading.Tasks.xml",
  1674. "ref/netcore50/it/System.Threading.Tasks.xml",
  1675. "ref/netcore50/ja/System.Threading.Tasks.xml",
  1676. "ref/netcore50/ko/System.Threading.Tasks.xml",
  1677. "ref/netcore50/ru/System.Threading.Tasks.xml",
  1678. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  1679. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  1680. "ref/netstandard1.0/System.Threading.Tasks.dll",
  1681. "ref/netstandard1.0/System.Threading.Tasks.xml",
  1682. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  1683. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  1684. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  1685. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  1686. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  1687. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  1688. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  1689. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  1690. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  1691. "ref/netstandard1.3/System.Threading.Tasks.dll",
  1692. "ref/netstandard1.3/System.Threading.Tasks.xml",
  1693. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  1694. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  1695. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  1696. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  1697. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  1698. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  1699. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  1700. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  1701. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  1702. "ref/portable-net45+win8+wp8+wpa81/_._",
  1703. "ref/win8/_._",
  1704. "ref/wp80/_._",
  1705. "ref/wpa81/_._",
  1706. "ref/xamarinios10/_._",
  1707. "ref/xamarinmac20/_._",
  1708. "ref/xamarintvos10/_._",
  1709. "ref/xamarinwatchos10/_._",
  1710. "system.threading.tasks.4.3.0.nupkg.sha512",
  1711. "system.threading.tasks.nuspec"
  1712. ]
  1713. },
  1714. "System.Threading.Tasks.Extensions/4.5.4": {
  1715. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  1716. "type": "package",
  1717. "path": "system.threading.tasks.extensions/4.5.4",
  1718. "files": [
  1719. ".nupkg.metadata",
  1720. ".signature.p7s",
  1721. "LICENSE.TXT",
  1722. "THIRD-PARTY-NOTICES.TXT",
  1723. "lib/MonoAndroid10/_._",
  1724. "lib/MonoTouch10/_._",
  1725. "lib/net461/System.Threading.Tasks.Extensions.dll",
  1726. "lib/net461/System.Threading.Tasks.Extensions.xml",
  1727. "lib/netcoreapp2.1/_._",
  1728. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  1729. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  1730. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  1731. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  1732. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  1733. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  1734. "lib/xamarinios10/_._",
  1735. "lib/xamarinmac20/_._",
  1736. "lib/xamarintvos10/_._",
  1737. "lib/xamarinwatchos10/_._",
  1738. "ref/MonoAndroid10/_._",
  1739. "ref/MonoTouch10/_._",
  1740. "ref/netcoreapp2.1/_._",
  1741. "ref/xamarinios10/_._",
  1742. "ref/xamarinmac20/_._",
  1743. "ref/xamarintvos10/_._",
  1744. "ref/xamarinwatchos10/_._",
  1745. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  1746. "system.threading.tasks.extensions.nuspec",
  1747. "useSharedDesignerContext.txt",
  1748. "version.txt"
  1749. ]
  1750. },
  1751. "System.Windows.Extensions/4.7.0": {
  1752. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  1753. "type": "package",
  1754. "path": "system.windows.extensions/4.7.0",
  1755. "files": [
  1756. ".nupkg.metadata",
  1757. ".signature.p7s",
  1758. "LICENSE.TXT",
  1759. "THIRD-PARTY-NOTICES.TXT",
  1760. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  1761. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  1762. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  1763. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  1764. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  1765. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  1766. "system.windows.extensions.4.7.0.nupkg.sha512",
  1767. "system.windows.extensions.nuspec",
  1768. "useSharedDesignerContext.txt",
  1769. "version.txt"
  1770. ]
  1771. },
  1772. "UniTask/2.4.1": {
  1773. "sha512": "WA4x/V1euY9Y9eCdX2Z/nobnFRK0Aysb4h1pNnld8QD2eaRDeTTxePcwCG835iaUtkFT6kwzb1MbHrMCpiiwCA==",
  1774. "type": "package",
  1775. "path": "unitask/2.4.1",
  1776. "files": [
  1777. ".nupkg.metadata",
  1778. ".signature.p7s",
  1779. "Icon.png",
  1780. "lib/net6.0/UniTask.dll",
  1781. "lib/net6.0/UniTask.xml",
  1782. "lib/net7.0/UniTask.dll",
  1783. "lib/net7.0/UniTask.xml",
  1784. "lib/netstandard2.0/UniTask.dll",
  1785. "lib/netstandard2.0/UniTask.xml",
  1786. "lib/netstandard2.1/UniTask.dll",
  1787. "lib/netstandard2.1/UniTask.xml",
  1788. "unitask.2.4.1.nupkg.sha512",
  1789. "unitask.nuspec"
  1790. ]
  1791. },
  1792. "ZstdSharp.Port/0.7.1": {
  1793. "sha512": "Idgg+mJEyAujqDPzA3APy9dNoyw0YQcNA65GgYjktDRtJ+nvx/hv+J+m6Eax3JJMGEYGy04oc5YNP6ZvQ3Y1vQ==",
  1794. "type": "package",
  1795. "path": "zstdsharp.port/0.7.1",
  1796. "files": [
  1797. ".nupkg.metadata",
  1798. ".signature.p7s",
  1799. "lib/net461/ZstdSharp.dll",
  1800. "lib/net5.0/ZstdSharp.dll",
  1801. "lib/net6.0/ZstdSharp.dll",
  1802. "lib/net7.0/ZstdSharp.dll",
  1803. "lib/netcoreapp3.1/ZstdSharp.dll",
  1804. "lib/netstandard2.0/ZstdSharp.dll",
  1805. "lib/netstandard2.1/ZstdSharp.dll",
  1806. "zstdsharp.port.0.7.1.nupkg.sha512",
  1807. "zstdsharp.port.nuspec"
  1808. ]
  1809. }
  1810. },
  1811. "projectFileDependencyGroups": {
  1812. "net7.0": [
  1813. "MySql.Data >= 8.1.0",
  1814. "UniTask >= 2.4.1"
  1815. ]
  1816. },
  1817. "packageFolders": {
  1818. "C:\\Users\\zan\\.nuget\\packages\\": {},
  1819. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  1820. },
  1821. "project": {
  1822. "version": "1.0.0",
  1823. "restore": {
  1824. "projectUniqueName": "D:\\Git\\simulation-server\\ThirdParty\\ThirdParty.csproj",
  1825. "projectName": "ThirdParty",
  1826. "projectPath": "D:\\Git\\simulation-server\\ThirdParty\\ThirdParty.csproj",
  1827. "packagesPath": "C:\\Users\\zan\\.nuget\\packages\\",
  1828. "outputPath": "D:\\Git\\simulation-server\\ThirdParty\\obj\\",
  1829. "projectStyle": "PackageReference",
  1830. "fallbackFolders": [
  1831. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  1832. ],
  1833. "configFilePaths": [
  1834. "C:\\Users\\zan\\AppData\\Roaming\\NuGet\\NuGet.Config",
  1835. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  1836. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  1837. ],
  1838. "originalTargetFrameworks": [
  1839. "net7.0"
  1840. ],
  1841. "sources": {
  1842. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  1843. "https://api.nuget.org/v3/index.json": {}
  1844. },
  1845. "frameworks": {
  1846. "net7.0": {
  1847. "targetAlias": "net7.0",
  1848. "projectReferences": {}
  1849. }
  1850. },
  1851. "warningProperties": {
  1852. "warnAsError": [
  1853. "NU1605"
  1854. ]
  1855. }
  1856. },
  1857. "frameworks": {
  1858. "net7.0": {
  1859. "targetAlias": "net7.0",
  1860. "dependencies": {
  1861. "MySql.Data": {
  1862. "target": "Package",
  1863. "version": "[8.1.0, )"
  1864. },
  1865. "UniTask": {
  1866. "target": "Package",
  1867. "version": "[2.4.1, )"
  1868. }
  1869. },
  1870. "imports": [
  1871. "net461",
  1872. "net462",
  1873. "net47",
  1874. "net471",
  1875. "net472",
  1876. "net48",
  1877. "net481"
  1878. ],
  1879. "assetTargetFallback": true,
  1880. "warn": true,
  1881. "frameworkReferences": {
  1882. "Microsoft.NETCore.App": {
  1883. "privateAssets": "all"
  1884. }
  1885. },
  1886. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202\\RuntimeIdentifierGraph.json"
  1887. }
  1888. }
  1889. }
  1890. }