project.assets.json.mine 79 KB

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