No Description

Backend.Data.deps.json 91KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v3.1",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v3.1": {
  9. "Backend.Data/1.0.0": {
  10. "dependencies": {
  11. "Microsoft.AspNet.Identity.EntityFramework": "2.2.3",
  12. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  13. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "5.0.10",
  14. "Microsoft.EntityFrameworkCore": "5.0.10",
  15. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  16. "MySql.Data.EntityFrameworkCore": "8.0.22",
  17. "Pomelo.EntityFrameworkCore.MySql": "5.0.0-alpha.2",
  18. "System.Data.SqlClient": "4.8.3"
  19. },
  20. "runtime": {
  21. "Backend.Data.dll": {}
  22. }
  23. },
  24. "BouncyCastle.NetCore/1.8.3": {
  25. "dependencies": {
  26. "NETStandard.Library": "1.6.0",
  27. "System.Reflection": "4.3.0",
  28. "System.Reflection.TypeExtensions": "4.1.0"
  29. },
  30. "runtime": {
  31. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  32. "assemblyVersion": "1.8.2.0",
  33. "fileVersion": "1.8.18099.1"
  34. }
  35. }
  36. },
  37. "EntityFramework/6.1.0": {
  38. "runtime": {
  39. "lib/net45/EntityFramework.SqlServer.dll": {
  40. "assemblyVersion": "6.0.0.0",
  41. "fileVersion": "6.1.30225.0"
  42. },
  43. "lib/net45/EntityFramework.dll": {
  44. "assemblyVersion": "6.0.0.0",
  45. "fileVersion": "6.1.30225.0"
  46. }
  47. }
  48. },
  49. "Google.Protobuf/3.11.4": {
  50. "dependencies": {
  51. "System.Memory": "4.5.3"
  52. },
  53. "runtime": {
  54. "lib/netstandard2.0/Google.Protobuf.dll": {
  55. "assemblyVersion": "3.11.4.0",
  56. "fileVersion": "3.11.4.0"
  57. }
  58. }
  59. },
  60. "K4os.Compression.LZ4/1.1.11": {
  61. "dependencies": {
  62. "System.Memory": "4.5.3"
  63. },
  64. "runtime": {
  65. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  66. "assemblyVersion": "1.1.11.0",
  67. "fileVersion": "1.1.11.0"
  68. }
  69. }
  70. },
  71. "K4os.Compression.LZ4.Streams/1.1.11": {
  72. "dependencies": {
  73. "K4os.Compression.LZ4": "1.1.11",
  74. "K4os.Hash.xxHash": "1.0.6"
  75. },
  76. "runtime": {
  77. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  78. "assemblyVersion": "1.1.11.0",
  79. "fileVersion": "1.1.11.0"
  80. }
  81. }
  82. },
  83. "K4os.Hash.xxHash/1.0.6": {
  84. "dependencies": {
  85. "System.Memory": "4.5.3"
  86. },
  87. "runtime": {
  88. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  89. "assemblyVersion": "1.0.6.0",
  90. "fileVersion": "1.0.6.0"
  91. }
  92. }
  93. },
  94. "Microsoft.AspNet.Identity.Core/2.2.3": {
  95. "runtime": {
  96. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {
  97. "assemblyVersion": "2.0.0.0",
  98. "fileVersion": "2.2.3.11125"
  99. }
  100. }
  101. },
  102. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  103. "dependencies": {
  104. "EntityFramework": "6.1.0",
  105. "Microsoft.AspNet.Identity.Core": "2.2.3"
  106. },
  107. "runtime": {
  108. "lib/net45/Microsoft.AspNet.Identity.EntityFramework.dll": {
  109. "assemblyVersion": "2.0.0.0",
  110. "fileVersion": "2.2.3.11125"
  111. }
  112. }
  113. },
  114. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  115. "runtime": {
  116. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  117. "assemblyVersion": "5.0.0.0",
  118. "fileVersion": "5.0.1021.41022"
  119. }
  120. }
  121. },
  122. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  123. "dependencies": {
  124. "Microsoft.AspNetCore.Cryptography.Internal": "5.0.10"
  125. },
  126. "runtime": {
  127. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  128. "assemblyVersion": "5.0.0.0",
  129. "fileVersion": "5.0.1021.41022"
  130. }
  131. }
  132. },
  133. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  134. "dependencies": {
  135. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  136. "System.Text.Encodings.Web": "4.5.0"
  137. },
  138. "runtime": {
  139. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  140. "assemblyVersion": "2.2.0.0",
  141. "fileVersion": "2.2.0.18316"
  142. }
  143. }
  144. },
  145. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  146. "dependencies": {
  147. "Microsoft.Extensions.Primitives": "6.0.0"
  148. },
  149. "runtime": {
  150. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll": {
  151. "assemblyVersion": "2.2.0.0",
  152. "fileVersion": "2.2.0.18316"
  153. }
  154. }
  155. },
  156. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  157. "dependencies": {
  158. "Microsoft.EntityFrameworkCore.Relational": "5.0.10",
  159. "Microsoft.Extensions.Identity.Stores": "5.0.10"
  160. },
  161. "runtime": {
  162. "lib/netstandard2.1/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  163. "assemblyVersion": "5.0.10.0",
  164. "fileVersion": "5.0.1021.41022"
  165. }
  166. }
  167. },
  168. "Microsoft.CSharp/4.0.1": {
  169. "dependencies": {
  170. "System.Collections": "4.0.11",
  171. "System.Diagnostics.Debug": "4.0.11",
  172. "System.Dynamic.Runtime": "4.0.11",
  173. "System.Globalization": "4.0.11",
  174. "System.Linq": "4.1.0",
  175. "System.Linq.Expressions": "4.1.0",
  176. "System.ObjectModel": "4.0.12",
  177. "System.Reflection": "4.3.0",
  178. "System.Reflection.Extensions": "4.0.1",
  179. "System.Reflection.Primitives": "4.3.0",
  180. "System.Reflection.TypeExtensions": "4.1.0",
  181. "System.Resources.ResourceManager": "4.0.1",
  182. "System.Runtime": "4.3.0",
  183. "System.Runtime.Extensions": "4.1.0",
  184. "System.Runtime.InteropServices": "4.1.0",
  185. "System.Threading": "4.0.11"
  186. }
  187. },
  188. "Microsoft.EntityFrameworkCore/5.0.10": {
  189. "dependencies": {
  190. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.10",
  191. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.10",
  192. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  193. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  194. "Microsoft.Extensions.Logging": "5.0.0",
  195. "System.Collections.Immutable": "5.0.0",
  196. "System.ComponentModel.Annotations": "5.0.0",
  197. "System.Diagnostics.DiagnosticSource": "5.0.1"
  198. },
  199. "runtime": {
  200. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  201. "assemblyVersion": "5.0.10.0",
  202. "fileVersion": "5.0.1021.41011"
  203. }
  204. }
  205. },
  206. "Microsoft.EntityFrameworkCore.Abstractions/5.0.10": {
  207. "runtime": {
  208. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  209. "assemblyVersion": "5.0.10.0",
  210. "fileVersion": "5.0.1021.41011"
  211. }
  212. }
  213. },
  214. "Microsoft.EntityFrameworkCore.Analyzers/5.0.10": {},
  215. "Microsoft.EntityFrameworkCore.Relational/5.0.10": {
  216. "dependencies": {
  217. "Microsoft.EntityFrameworkCore": "5.0.10",
  218. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  219. },
  220. "runtime": {
  221. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  222. "assemblyVersion": "5.0.10.0",
  223. "fileVersion": "5.0.1021.41011"
  224. }
  225. }
  226. },
  227. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  228. "dependencies": {
  229. "Microsoft.Extensions.Primitives": "6.0.0"
  230. },
  231. "runtime": {
  232. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  233. "assemblyVersion": "5.0.0.0",
  234. "fileVersion": "5.0.20.51904"
  235. }
  236. }
  237. },
  238. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  239. "dependencies": {
  240. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  241. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  242. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  243. "Microsoft.Extensions.Options": "5.0.0",
  244. "Microsoft.Extensions.Primitives": "6.0.0"
  245. },
  246. "runtime": {
  247. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  248. "assemblyVersion": "5.0.0.0",
  249. "fileVersion": "5.0.20.51904"
  250. }
  251. }
  252. },
  253. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  254. "dependencies": {
  255. "Microsoft.Extensions.Primitives": "6.0.0"
  256. },
  257. "runtime": {
  258. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  259. "assemblyVersion": "6.0.0.0",
  260. "fileVersion": "6.0.21.52210"
  261. }
  262. }
  263. },
  264. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  265. "dependencies": {
  266. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  267. },
  268. "runtime": {
  269. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  270. "assemblyVersion": "5.0.0.1",
  271. "fileVersion": "5.0.821.31504"
  272. }
  273. }
  274. },
  275. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  276. "runtime": {
  277. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  278. "assemblyVersion": "5.0.0.0",
  279. "fileVersion": "5.0.20.51904"
  280. }
  281. }
  282. },
  283. "Microsoft.Extensions.Identity.Core/5.0.10": {
  284. "dependencies": {
  285. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "5.0.10",
  286. "Microsoft.Extensions.Logging": "5.0.0",
  287. "Microsoft.Extensions.Options": "5.0.0",
  288. "System.ComponentModel.Annotations": "5.0.0"
  289. },
  290. "runtime": {
  291. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll": {
  292. "assemblyVersion": "5.0.0.0",
  293. "fileVersion": "5.0.1021.41022"
  294. }
  295. }
  296. },
  297. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  298. "dependencies": {
  299. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  300. "Microsoft.Extensions.Identity.Core": "5.0.10",
  301. "Microsoft.Extensions.Logging": "5.0.0"
  302. },
  303. "runtime": {
  304. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll": {
  305. "assemblyVersion": "5.0.0.0",
  306. "fileVersion": "5.0.1021.41022"
  307. }
  308. }
  309. },
  310. "Microsoft.Extensions.Logging/5.0.0": {
  311. "dependencies": {
  312. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  313. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  314. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  315. "Microsoft.Extensions.Options": "5.0.0",
  316. "System.Diagnostics.DiagnosticSource": "5.0.1"
  317. },
  318. "runtime": {
  319. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  320. "assemblyVersion": "5.0.0.0",
  321. "fileVersion": "5.0.20.51904"
  322. }
  323. }
  324. },
  325. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  326. "runtime": {
  327. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  328. "assemblyVersion": "5.0.0.0",
  329. "fileVersion": "5.0.20.51904"
  330. }
  331. }
  332. },
  333. "Microsoft.Extensions.Options/5.0.0": {
  334. "dependencies": {
  335. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  336. "Microsoft.Extensions.Primitives": "6.0.0"
  337. },
  338. "runtime": {
  339. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  340. "assemblyVersion": "5.0.0.0",
  341. "fileVersion": "5.0.20.51904"
  342. }
  343. }
  344. },
  345. "Microsoft.Extensions.Primitives/6.0.0": {
  346. "dependencies": {
  347. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  348. },
  349. "runtime": {
  350. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {
  351. "assemblyVersion": "6.0.0.0",
  352. "fileVersion": "6.0.21.52210"
  353. }
  354. }
  355. },
  356. "Microsoft.NETCore.Platforms/3.1.0": {},
  357. "Microsoft.NETCore.Targets/1.1.0": {},
  358. "Microsoft.Win32.Primitives/4.0.1": {
  359. "dependencies": {
  360. "Microsoft.NETCore.Platforms": "3.1.0",
  361. "Microsoft.NETCore.Targets": "1.1.0",
  362. "System.Runtime": "4.3.0"
  363. }
  364. },
  365. "Microsoft.Win32.Registry/4.7.0": {
  366. "dependencies": {
  367. "System.Security.AccessControl": "4.7.0",
  368. "System.Security.Principal.Windows": "4.7.0"
  369. }
  370. },
  371. "Microsoft.Win32.SystemEvents/4.7.0": {
  372. "dependencies": {
  373. "Microsoft.NETCore.Platforms": "3.1.0"
  374. },
  375. "runtime": {
  376. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  377. "assemblyVersion": "4.0.2.0",
  378. "fileVersion": "4.700.19.56404"
  379. }
  380. },
  381. "runtimeTargets": {
  382. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  383. "rid": "win",
  384. "assetType": "runtime",
  385. "assemblyVersion": "4.0.2.0",
  386. "fileVersion": "4.700.19.56404"
  387. }
  388. }
  389. },
  390. "MySql.Data/8.0.22": {
  391. "dependencies": {
  392. "BouncyCastle.NetCore": "1.8.3",
  393. "Google.Protobuf": "3.11.4",
  394. "K4os.Compression.LZ4": "1.1.11",
  395. "K4os.Compression.LZ4.Streams": "1.1.11",
  396. "K4os.Hash.xxHash": "1.0.6",
  397. "SSH.NET": "2016.1.0",
  398. "System.Buffers": "4.5.1",
  399. "System.Configuration.ConfigurationManager": "4.4.1",
  400. "System.Security.Permissions": "4.7.0",
  401. "System.Text.Encoding.CodePages": "4.4.0"
  402. },
  403. "runtime": {
  404. "lib/netstandard2.1/MySql.Data.dll": {
  405. "assemblyVersion": "8.0.22.0",
  406. "fileVersion": "8.0.22.0"
  407. },
  408. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {
  409. "assemblyVersion": "2.2.1.0",
  410. "fileVersion": "2.2.1.0"
  411. },
  412. "lib/netstandard2.1/Zstandard.Net.dll": {
  413. "assemblyVersion": "1.1.7.0",
  414. "fileVersion": "1.1.7.0"
  415. }
  416. }
  417. },
  418. "MySql.Data.EntityFrameworkCore/8.0.22": {
  419. "dependencies": {
  420. "Microsoft.EntityFrameworkCore.Relational": "5.0.10",
  421. "MySql.Data": "8.0.22"
  422. },
  423. "runtime": {
  424. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  425. "assemblyVersion": "8.0.22.0",
  426. "fileVersion": "8.0.22.0"
  427. }
  428. }
  429. },
  430. "MySqlConnector/1.1.0": {
  431. "runtime": {
  432. "lib/netcoreapp3.1/MySqlConnector.dll": {
  433. "assemblyVersion": "1.0.0.0",
  434. "fileVersion": "1.1.0.0"
  435. }
  436. }
  437. },
  438. "NETStandard.Library/1.6.0": {
  439. "dependencies": {
  440. "Microsoft.NETCore.Platforms": "3.1.0",
  441. "Microsoft.Win32.Primitives": "4.0.1",
  442. "System.AppContext": "4.1.0",
  443. "System.Collections": "4.0.11",
  444. "System.Collections.Concurrent": "4.0.12",
  445. "System.Console": "4.0.0",
  446. "System.Diagnostics.Debug": "4.0.11",
  447. "System.Diagnostics.Tools": "4.0.1",
  448. "System.Diagnostics.Tracing": "4.1.0",
  449. "System.Globalization": "4.0.11",
  450. "System.Globalization.Calendars": "4.0.1",
  451. "System.IO": "4.3.0",
  452. "System.IO.Compression": "4.1.0",
  453. "System.IO.Compression.ZipFile": "4.0.1",
  454. "System.IO.FileSystem": "4.0.1",
  455. "System.IO.FileSystem.Primitives": "4.0.1",
  456. "System.Linq": "4.1.0",
  457. "System.Linq.Expressions": "4.1.0",
  458. "System.Net.Http": "4.1.0",
  459. "System.Net.Primitives": "4.0.11",
  460. "System.Net.Sockets": "4.1.0",
  461. "System.ObjectModel": "4.0.12",
  462. "System.Reflection": "4.3.0",
  463. "System.Reflection.Extensions": "4.0.1",
  464. "System.Reflection.Primitives": "4.3.0",
  465. "System.Resources.ResourceManager": "4.0.1",
  466. "System.Runtime": "4.3.0",
  467. "System.Runtime.Extensions": "4.1.0",
  468. "System.Runtime.Handles": "4.0.1",
  469. "System.Runtime.InteropServices": "4.1.0",
  470. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  471. "System.Runtime.Numerics": "4.0.1",
  472. "System.Security.Cryptography.Algorithms": "4.2.0",
  473. "System.Security.Cryptography.Encoding": "4.0.0",
  474. "System.Security.Cryptography.Primitives": "4.0.0",
  475. "System.Security.Cryptography.X509Certificates": "4.1.0",
  476. "System.Text.Encoding": "4.3.0",
  477. "System.Text.Encoding.Extensions": "4.0.11",
  478. "System.Text.RegularExpressions": "4.1.0",
  479. "System.Threading": "4.0.11",
  480. "System.Threading.Tasks": "4.3.0",
  481. "System.Threading.Timer": "4.0.1",
  482. "System.Xml.ReaderWriter": "4.0.11",
  483. "System.Xml.XDocument": "4.0.11"
  484. }
  485. },
  486. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  487. "dependencies": {
  488. "Microsoft.EntityFrameworkCore.Relational": "5.0.10",
  489. "MySqlConnector": "1.1.0"
  490. },
  491. "runtime": {
  492. "lib/netstandard2.1/Pomelo.EntityFrameworkCore.MySql.dll": {
  493. "assemblyVersion": "5.0.0.0",
  494. "fileVersion": "5.0.0.0"
  495. }
  496. }
  497. },
  498. "runtime.native.System/4.0.0": {
  499. "dependencies": {
  500. "Microsoft.NETCore.Platforms": "3.1.0",
  501. "Microsoft.NETCore.Targets": "1.1.0"
  502. }
  503. },
  504. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  505. "dependencies": {
  506. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  507. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  508. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  509. }
  510. },
  511. "runtime.native.System.IO.Compression/4.1.0": {
  512. "dependencies": {
  513. "Microsoft.NETCore.Platforms": "3.1.0",
  514. "Microsoft.NETCore.Targets": "1.1.0"
  515. }
  516. },
  517. "runtime.native.System.Net.Http/4.0.1": {
  518. "dependencies": {
  519. "Microsoft.NETCore.Platforms": "3.1.0",
  520. "Microsoft.NETCore.Targets": "1.1.0"
  521. }
  522. },
  523. "runtime.native.System.Security.Cryptography/4.0.0": {
  524. "dependencies": {
  525. "Microsoft.NETCore.Platforms": "3.1.0",
  526. "Microsoft.NETCore.Targets": "1.1.0"
  527. }
  528. },
  529. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  530. "runtimeTargets": {
  531. "runtimes/win-arm64/native/sni.dll": {
  532. "rid": "win-arm64",
  533. "assetType": "native",
  534. "fileVersion": "4.6.25512.1"
  535. }
  536. }
  537. },
  538. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  539. "runtimeTargets": {
  540. "runtimes/win-x64/native/sni.dll": {
  541. "rid": "win-x64",
  542. "assetType": "native",
  543. "fileVersion": "4.6.25512.1"
  544. }
  545. }
  546. },
  547. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  548. "runtimeTargets": {
  549. "runtimes/win-x86/native/sni.dll": {
  550. "rid": "win-x86",
  551. "assetType": "native",
  552. "fileVersion": "4.6.25512.1"
  553. }
  554. }
  555. },
  556. "SSH.NET/2016.1.0": {
  557. "dependencies": {
  558. "Microsoft.CSharp": "4.0.1",
  559. "SshNet.Security.Cryptography": "1.2.0",
  560. "System.Diagnostics.Debug": "4.0.11",
  561. "System.Diagnostics.Tools": "4.0.1",
  562. "System.Diagnostics.TraceSource": "4.0.0",
  563. "System.Globalization": "4.0.11",
  564. "System.IO": "4.3.0",
  565. "System.IO.FileSystem": "4.0.1",
  566. "System.IO.FileSystem.Primitives": "4.0.1",
  567. "System.Linq": "4.1.0",
  568. "System.Net.NameResolution": "4.0.0",
  569. "System.Net.Sockets": "4.1.0",
  570. "System.Reflection.Extensions": "4.0.1",
  571. "System.Runtime.Extensions": "4.1.0",
  572. "System.Security.Cryptography.Algorithms": "4.2.0",
  573. "System.Text.RegularExpressions": "4.1.0",
  574. "System.Threading": "4.0.11",
  575. "System.Threading.Thread": "4.0.0",
  576. "System.Threading.ThreadPool": "4.0.10",
  577. "System.Threading.Timer": "4.0.1",
  578. "System.Xml.XPath.XmlDocument": "4.0.1",
  579. "System.Xml.XmlDocument": "4.0.1"
  580. },
  581. "runtime": {
  582. "lib/netstandard1.3/Renci.SshNet.dll": {
  583. "assemblyVersion": "2016.1.0.0",
  584. "fileVersion": "2016.1.0.0"
  585. }
  586. }
  587. },
  588. "SshNet.Security.Cryptography/1.2.0": {
  589. "dependencies": {
  590. "System.IO": "4.3.0",
  591. "System.Security.Cryptography.Primitives": "4.0.0"
  592. },
  593. "runtime": {
  594. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  595. "assemblyVersion": "1.2.0.0",
  596. "fileVersion": "1.2.0.0"
  597. }
  598. }
  599. },
  600. "System.AppContext/4.1.0": {
  601. "dependencies": {
  602. "System.Runtime": "4.3.0"
  603. }
  604. },
  605. "System.Buffers/4.5.1": {},
  606. "System.Collections/4.0.11": {
  607. "dependencies": {
  608. "Microsoft.NETCore.Platforms": "3.1.0",
  609. "Microsoft.NETCore.Targets": "1.1.0",
  610. "System.Runtime": "4.3.0"
  611. }
  612. },
  613. "System.Collections.Concurrent/4.0.12": {
  614. "dependencies": {
  615. "System.Collections": "4.0.11",
  616. "System.Diagnostics.Debug": "4.0.11",
  617. "System.Diagnostics.Tracing": "4.1.0",
  618. "System.Globalization": "4.0.11",
  619. "System.Reflection": "4.3.0",
  620. "System.Resources.ResourceManager": "4.0.1",
  621. "System.Runtime": "4.3.0",
  622. "System.Runtime.Extensions": "4.1.0",
  623. "System.Threading": "4.0.11",
  624. "System.Threading.Tasks": "4.3.0"
  625. }
  626. },
  627. "System.Collections.Immutable/5.0.0": {
  628. "runtime": {
  629. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  630. "assemblyVersion": "5.0.0.0",
  631. "fileVersion": "5.0.20.51904"
  632. }
  633. }
  634. },
  635. "System.ComponentModel.Annotations/5.0.0": {
  636. "runtime": {
  637. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  638. "assemblyVersion": "5.0.0.0",
  639. "fileVersion": "5.0.20.51904"
  640. }
  641. }
  642. },
  643. "System.Configuration.ConfigurationManager/4.4.1": {
  644. "dependencies": {
  645. "System.Security.Cryptography.ProtectedData": "4.4.0"
  646. },
  647. "runtime": {
  648. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  649. "assemblyVersion": "4.0.0.0",
  650. "fileVersion": "4.6.25921.2"
  651. }
  652. }
  653. },
  654. "System.Console/4.0.0": {
  655. "dependencies": {
  656. "Microsoft.NETCore.Platforms": "3.1.0",
  657. "Microsoft.NETCore.Targets": "1.1.0",
  658. "System.IO": "4.3.0",
  659. "System.Runtime": "4.3.0",
  660. "System.Text.Encoding": "4.3.0"
  661. }
  662. },
  663. "System.Data.SqlClient/4.8.3": {
  664. "dependencies": {
  665. "Microsoft.Win32.Registry": "4.7.0",
  666. "System.Security.Principal.Windows": "4.7.0",
  667. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  668. },
  669. "runtime": {
  670. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  671. "assemblyVersion": "4.6.1.3",
  672. "fileVersion": "4.700.21.41603"
  673. }
  674. },
  675. "runtimeTargets": {
  676. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  677. "rid": "unix",
  678. "assetType": "runtime",
  679. "assemblyVersion": "4.6.1.3",
  680. "fileVersion": "4.700.21.41603"
  681. },
  682. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  683. "rid": "win",
  684. "assetType": "runtime",
  685. "assemblyVersion": "4.6.1.3",
  686. "fileVersion": "4.700.21.41603"
  687. }
  688. }
  689. },
  690. "System.Diagnostics.Debug/4.0.11": {
  691. "dependencies": {
  692. "Microsoft.NETCore.Platforms": "3.1.0",
  693. "Microsoft.NETCore.Targets": "1.1.0",
  694. "System.Runtime": "4.3.0"
  695. }
  696. },
  697. "System.Diagnostics.DiagnosticSource/5.0.1": {
  698. "runtime": {
  699. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  700. "assemblyVersion": "5.0.0.0",
  701. "fileVersion": "5.0.220.61120"
  702. }
  703. }
  704. },
  705. "System.Diagnostics.Tools/4.0.1": {
  706. "dependencies": {
  707. "Microsoft.NETCore.Platforms": "3.1.0",
  708. "Microsoft.NETCore.Targets": "1.1.0",
  709. "System.Runtime": "4.3.0"
  710. }
  711. },
  712. "System.Diagnostics.TraceSource/4.0.0": {
  713. "dependencies": {
  714. "Microsoft.NETCore.Platforms": "3.1.0",
  715. "System.Collections": "4.0.11",
  716. "System.Diagnostics.Debug": "4.0.11",
  717. "System.Globalization": "4.0.11",
  718. "System.Resources.ResourceManager": "4.0.1",
  719. "System.Runtime": "4.3.0",
  720. "System.Runtime.Extensions": "4.1.0",
  721. "System.Threading": "4.0.11",
  722. "runtime.native.System": "4.0.0"
  723. }
  724. },
  725. "System.Diagnostics.Tracing/4.1.0": {
  726. "dependencies": {
  727. "Microsoft.NETCore.Platforms": "3.1.0",
  728. "Microsoft.NETCore.Targets": "1.1.0",
  729. "System.Runtime": "4.3.0"
  730. }
  731. },
  732. "System.Drawing.Common/4.7.0": {
  733. "dependencies": {
  734. "Microsoft.NETCore.Platforms": "3.1.0",
  735. "Microsoft.Win32.SystemEvents": "4.7.0"
  736. },
  737. "runtime": {
  738. "lib/netstandard2.0/System.Drawing.Common.dll": {
  739. "assemblyVersion": "4.0.0.1",
  740. "fileVersion": "4.6.26919.2"
  741. }
  742. },
  743. "runtimeTargets": {
  744. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  745. "rid": "unix",
  746. "assetType": "runtime",
  747. "assemblyVersion": "4.0.2.0",
  748. "fileVersion": "4.700.19.56404"
  749. },
  750. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  751. "rid": "win",
  752. "assetType": "runtime",
  753. "assemblyVersion": "4.0.2.0",
  754. "fileVersion": "4.700.19.56404"
  755. }
  756. }
  757. },
  758. "System.Dynamic.Runtime/4.0.11": {
  759. "dependencies": {
  760. "System.Collections": "4.0.11",
  761. "System.Diagnostics.Debug": "4.0.11",
  762. "System.Globalization": "4.0.11",
  763. "System.Linq": "4.1.0",
  764. "System.Linq.Expressions": "4.1.0",
  765. "System.ObjectModel": "4.0.12",
  766. "System.Reflection": "4.3.0",
  767. "System.Reflection.Emit": "4.0.1",
  768. "System.Reflection.Emit.ILGeneration": "4.0.1",
  769. "System.Reflection.Primitives": "4.3.0",
  770. "System.Reflection.TypeExtensions": "4.1.0",
  771. "System.Resources.ResourceManager": "4.0.1",
  772. "System.Runtime": "4.3.0",
  773. "System.Runtime.Extensions": "4.1.0",
  774. "System.Threading": "4.0.11"
  775. }
  776. },
  777. "System.Globalization/4.0.11": {
  778. "dependencies": {
  779. "Microsoft.NETCore.Platforms": "3.1.0",
  780. "Microsoft.NETCore.Targets": "1.1.0",
  781. "System.Runtime": "4.3.0"
  782. }
  783. },
  784. "System.Globalization.Calendars/4.0.1": {
  785. "dependencies": {
  786. "Microsoft.NETCore.Platforms": "3.1.0",
  787. "Microsoft.NETCore.Targets": "1.1.0",
  788. "System.Globalization": "4.0.11",
  789. "System.Runtime": "4.3.0"
  790. }
  791. },
  792. "System.Globalization.Extensions/4.0.1": {
  793. "dependencies": {
  794. "Microsoft.NETCore.Platforms": "3.1.0",
  795. "System.Globalization": "4.0.11",
  796. "System.Resources.ResourceManager": "4.0.1",
  797. "System.Runtime": "4.3.0",
  798. "System.Runtime.Extensions": "4.1.0",
  799. "System.Runtime.InteropServices": "4.1.0"
  800. }
  801. },
  802. "System.IO/4.3.0": {
  803. "dependencies": {
  804. "Microsoft.NETCore.Platforms": "3.1.0",
  805. "Microsoft.NETCore.Targets": "1.1.0",
  806. "System.Runtime": "4.3.0",
  807. "System.Text.Encoding": "4.3.0",
  808. "System.Threading.Tasks": "4.3.0"
  809. }
  810. },
  811. "System.IO.Compression/4.1.0": {
  812. "dependencies": {
  813. "Microsoft.NETCore.Platforms": "3.1.0",
  814. "System.Collections": "4.0.11",
  815. "System.Diagnostics.Debug": "4.0.11",
  816. "System.IO": "4.3.0",
  817. "System.Resources.ResourceManager": "4.0.1",
  818. "System.Runtime": "4.3.0",
  819. "System.Runtime.Extensions": "4.1.0",
  820. "System.Runtime.Handles": "4.0.1",
  821. "System.Runtime.InteropServices": "4.1.0",
  822. "System.Text.Encoding": "4.3.0",
  823. "System.Threading": "4.0.11",
  824. "System.Threading.Tasks": "4.3.0",
  825. "runtime.native.System": "4.0.0",
  826. "runtime.native.System.IO.Compression": "4.1.0"
  827. }
  828. },
  829. "System.IO.Compression.ZipFile/4.0.1": {
  830. "dependencies": {
  831. "System.Buffers": "4.5.1",
  832. "System.IO": "4.3.0",
  833. "System.IO.Compression": "4.1.0",
  834. "System.IO.FileSystem": "4.0.1",
  835. "System.IO.FileSystem.Primitives": "4.0.1",
  836. "System.Resources.ResourceManager": "4.0.1",
  837. "System.Runtime": "4.3.0",
  838. "System.Runtime.Extensions": "4.1.0",
  839. "System.Text.Encoding": "4.3.0"
  840. }
  841. },
  842. "System.IO.FileSystem/4.0.1": {
  843. "dependencies": {
  844. "Microsoft.NETCore.Platforms": "3.1.0",
  845. "Microsoft.NETCore.Targets": "1.1.0",
  846. "System.IO": "4.3.0",
  847. "System.IO.FileSystem.Primitives": "4.0.1",
  848. "System.Runtime": "4.3.0",
  849. "System.Runtime.Handles": "4.0.1",
  850. "System.Text.Encoding": "4.3.0",
  851. "System.Threading.Tasks": "4.3.0"
  852. }
  853. },
  854. "System.IO.FileSystem.Primitives/4.0.1": {
  855. "dependencies": {
  856. "System.Runtime": "4.3.0"
  857. }
  858. },
  859. "System.Linq/4.1.0": {
  860. "dependencies": {
  861. "System.Collections": "4.0.11",
  862. "System.Diagnostics.Debug": "4.0.11",
  863. "System.Resources.ResourceManager": "4.0.1",
  864. "System.Runtime": "4.3.0",
  865. "System.Runtime.Extensions": "4.1.0"
  866. }
  867. },
  868. "System.Linq.Expressions/4.1.0": {
  869. "dependencies": {
  870. "System.Collections": "4.0.11",
  871. "System.Diagnostics.Debug": "4.0.11",
  872. "System.Globalization": "4.0.11",
  873. "System.IO": "4.3.0",
  874. "System.Linq": "4.1.0",
  875. "System.ObjectModel": "4.0.12",
  876. "System.Reflection": "4.3.0",
  877. "System.Reflection.Emit": "4.0.1",
  878. "System.Reflection.Emit.ILGeneration": "4.0.1",
  879. "System.Reflection.Emit.Lightweight": "4.0.1",
  880. "System.Reflection.Extensions": "4.0.1",
  881. "System.Reflection.Primitives": "4.3.0",
  882. "System.Reflection.TypeExtensions": "4.1.0",
  883. "System.Resources.ResourceManager": "4.0.1",
  884. "System.Runtime": "4.3.0",
  885. "System.Runtime.Extensions": "4.1.0",
  886. "System.Threading": "4.0.11"
  887. }
  888. },
  889. "System.Memory/4.5.3": {},
  890. "System.Net.Http/4.1.0": {
  891. "dependencies": {
  892. "Microsoft.NETCore.Platforms": "3.1.0",
  893. "System.Collections": "4.0.11",
  894. "System.Diagnostics.Debug": "4.0.11",
  895. "System.Diagnostics.DiagnosticSource": "5.0.1",
  896. "System.Diagnostics.Tracing": "4.1.0",
  897. "System.Globalization": "4.0.11",
  898. "System.Globalization.Extensions": "4.0.1",
  899. "System.IO": "4.3.0",
  900. "System.IO.FileSystem": "4.0.1",
  901. "System.Net.Primitives": "4.0.11",
  902. "System.Resources.ResourceManager": "4.0.1",
  903. "System.Runtime": "4.3.0",
  904. "System.Runtime.Extensions": "4.1.0",
  905. "System.Runtime.Handles": "4.0.1",
  906. "System.Runtime.InteropServices": "4.1.0",
  907. "System.Security.Cryptography.Algorithms": "4.2.0",
  908. "System.Security.Cryptography.Encoding": "4.0.0",
  909. "System.Security.Cryptography.OpenSsl": "4.0.0",
  910. "System.Security.Cryptography.Primitives": "4.0.0",
  911. "System.Security.Cryptography.X509Certificates": "4.1.0",
  912. "System.Text.Encoding": "4.3.0",
  913. "System.Threading": "4.0.11",
  914. "System.Threading.Tasks": "4.3.0",
  915. "runtime.native.System": "4.0.0",
  916. "runtime.native.System.Net.Http": "4.0.1",
  917. "runtime.native.System.Security.Cryptography": "4.0.0"
  918. }
  919. },
  920. "System.Net.NameResolution/4.0.0": {
  921. "dependencies": {
  922. "Microsoft.NETCore.Platforms": "3.1.0",
  923. "System.Collections": "4.0.11",
  924. "System.Diagnostics.Tracing": "4.1.0",
  925. "System.Globalization": "4.0.11",
  926. "System.Net.Primitives": "4.0.11",
  927. "System.Resources.ResourceManager": "4.0.1",
  928. "System.Runtime": "4.3.0",
  929. "System.Runtime.Extensions": "4.1.0",
  930. "System.Runtime.Handles": "4.0.1",
  931. "System.Runtime.InteropServices": "4.1.0",
  932. "System.Security.Principal.Windows": "4.7.0",
  933. "System.Threading": "4.0.11",
  934. "System.Threading.Tasks": "4.3.0",
  935. "runtime.native.System": "4.0.0"
  936. }
  937. },
  938. "System.Net.Primitives/4.0.11": {
  939. "dependencies": {
  940. "Microsoft.NETCore.Platforms": "3.1.0",
  941. "Microsoft.NETCore.Targets": "1.1.0",
  942. "System.Runtime": "4.3.0",
  943. "System.Runtime.Handles": "4.0.1"
  944. }
  945. },
  946. "System.Net.Sockets/4.1.0": {
  947. "dependencies": {
  948. "Microsoft.NETCore.Platforms": "3.1.0",
  949. "Microsoft.NETCore.Targets": "1.1.0",
  950. "System.IO": "4.3.0",
  951. "System.Net.Primitives": "4.0.11",
  952. "System.Runtime": "4.3.0",
  953. "System.Threading.Tasks": "4.3.0"
  954. }
  955. },
  956. "System.ObjectModel/4.0.12": {
  957. "dependencies": {
  958. "System.Collections": "4.0.11",
  959. "System.Diagnostics.Debug": "4.0.11",
  960. "System.Resources.ResourceManager": "4.0.1",
  961. "System.Runtime": "4.3.0",
  962. "System.Threading": "4.0.11"
  963. }
  964. },
  965. "System.Reflection/4.3.0": {
  966. "dependencies": {
  967. "Microsoft.NETCore.Platforms": "3.1.0",
  968. "Microsoft.NETCore.Targets": "1.1.0",
  969. "System.IO": "4.3.0",
  970. "System.Reflection.Primitives": "4.3.0",
  971. "System.Runtime": "4.3.0"
  972. }
  973. },
  974. "System.Reflection.Emit/4.0.1": {
  975. "dependencies": {
  976. "System.IO": "4.3.0",
  977. "System.Reflection": "4.3.0",
  978. "System.Reflection.Emit.ILGeneration": "4.0.1",
  979. "System.Reflection.Primitives": "4.3.0",
  980. "System.Runtime": "4.3.0"
  981. }
  982. },
  983. "System.Reflection.Emit.ILGeneration/4.0.1": {
  984. "dependencies": {
  985. "System.Reflection": "4.3.0",
  986. "System.Reflection.Primitives": "4.3.0",
  987. "System.Runtime": "4.3.0"
  988. }
  989. },
  990. "System.Reflection.Emit.Lightweight/4.0.1": {
  991. "dependencies": {
  992. "System.Reflection": "4.3.0",
  993. "System.Reflection.Emit.ILGeneration": "4.0.1",
  994. "System.Reflection.Primitives": "4.3.0",
  995. "System.Runtime": "4.3.0"
  996. }
  997. },
  998. "System.Reflection.Extensions/4.0.1": {
  999. "dependencies": {
  1000. "Microsoft.NETCore.Platforms": "3.1.0",
  1001. "Microsoft.NETCore.Targets": "1.1.0",
  1002. "System.Reflection": "4.3.0",
  1003. "System.Runtime": "4.3.0"
  1004. }
  1005. },
  1006. "System.Reflection.Primitives/4.3.0": {
  1007. "dependencies": {
  1008. "Microsoft.NETCore.Platforms": "3.1.0",
  1009. "Microsoft.NETCore.Targets": "1.1.0",
  1010. "System.Runtime": "4.3.0"
  1011. }
  1012. },
  1013. "System.Reflection.TypeExtensions/4.1.0": {
  1014. "dependencies": {
  1015. "System.Reflection": "4.3.0",
  1016. "System.Runtime": "4.3.0"
  1017. }
  1018. },
  1019. "System.Resources.ResourceManager/4.0.1": {
  1020. "dependencies": {
  1021. "Microsoft.NETCore.Platforms": "3.1.0",
  1022. "Microsoft.NETCore.Targets": "1.1.0",
  1023. "System.Globalization": "4.0.11",
  1024. "System.Reflection": "4.3.0",
  1025. "System.Runtime": "4.3.0"
  1026. }
  1027. },
  1028. "System.Runtime/4.3.0": {
  1029. "dependencies": {
  1030. "Microsoft.NETCore.Platforms": "3.1.0",
  1031. "Microsoft.NETCore.Targets": "1.1.0"
  1032. }
  1033. },
  1034. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  1035. "runtime": {
  1036. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  1037. "assemblyVersion": "6.0.0.0",
  1038. "fileVersion": "6.0.21.52210"
  1039. }
  1040. }
  1041. },
  1042. "System.Runtime.Extensions/4.1.0": {
  1043. "dependencies": {
  1044. "Microsoft.NETCore.Platforms": "3.1.0",
  1045. "Microsoft.NETCore.Targets": "1.1.0",
  1046. "System.Runtime": "4.3.0"
  1047. }
  1048. },
  1049. "System.Runtime.Handles/4.0.1": {
  1050. "dependencies": {
  1051. "Microsoft.NETCore.Platforms": "3.1.0",
  1052. "Microsoft.NETCore.Targets": "1.1.0",
  1053. "System.Runtime": "4.3.0"
  1054. }
  1055. },
  1056. "System.Runtime.InteropServices/4.1.0": {
  1057. "dependencies": {
  1058. "Microsoft.NETCore.Platforms": "3.1.0",
  1059. "Microsoft.NETCore.Targets": "1.1.0",
  1060. "System.Reflection": "4.3.0",
  1061. "System.Reflection.Primitives": "4.3.0",
  1062. "System.Runtime": "4.3.0",
  1063. "System.Runtime.Handles": "4.0.1"
  1064. }
  1065. },
  1066. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  1067. "dependencies": {
  1068. "Microsoft.NETCore.Platforms": "3.1.0",
  1069. "System.Reflection": "4.3.0",
  1070. "System.Resources.ResourceManager": "4.0.1",
  1071. "System.Runtime": "4.3.0",
  1072. "System.Runtime.InteropServices": "4.1.0",
  1073. "System.Threading": "4.0.11",
  1074. "runtime.native.System": "4.0.0"
  1075. }
  1076. },
  1077. "System.Runtime.Numerics/4.0.1": {
  1078. "dependencies": {
  1079. "System.Globalization": "4.0.11",
  1080. "System.Resources.ResourceManager": "4.0.1",
  1081. "System.Runtime": "4.3.0",
  1082. "System.Runtime.Extensions": "4.1.0"
  1083. }
  1084. },
  1085. "System.Security.AccessControl/4.7.0": {
  1086. "dependencies": {
  1087. "Microsoft.NETCore.Platforms": "3.1.0",
  1088. "System.Security.Principal.Windows": "4.7.0"
  1089. }
  1090. },
  1091. "System.Security.Cryptography.Algorithms/4.2.0": {
  1092. "dependencies": {
  1093. "Microsoft.NETCore.Platforms": "3.1.0",
  1094. "System.Collections": "4.0.11",
  1095. "System.IO": "4.3.0",
  1096. "System.Resources.ResourceManager": "4.0.1",
  1097. "System.Runtime": "4.3.0",
  1098. "System.Runtime.Extensions": "4.1.0",
  1099. "System.Runtime.Handles": "4.0.1",
  1100. "System.Runtime.InteropServices": "4.1.0",
  1101. "System.Runtime.Numerics": "4.0.1",
  1102. "System.Security.Cryptography.Encoding": "4.0.0",
  1103. "System.Security.Cryptography.Primitives": "4.0.0",
  1104. "System.Text.Encoding": "4.3.0",
  1105. "runtime.native.System.Security.Cryptography": "4.0.0"
  1106. }
  1107. },
  1108. "System.Security.Cryptography.Cng/4.2.0": {
  1109. "dependencies": {
  1110. "Microsoft.NETCore.Platforms": "3.1.0",
  1111. "System.IO": "4.3.0",
  1112. "System.Resources.ResourceManager": "4.0.1",
  1113. "System.Runtime": "4.3.0",
  1114. "System.Runtime.Extensions": "4.1.0",
  1115. "System.Runtime.Handles": "4.0.1",
  1116. "System.Runtime.InteropServices": "4.1.0",
  1117. "System.Security.Cryptography.Algorithms": "4.2.0",
  1118. "System.Security.Cryptography.Encoding": "4.0.0",
  1119. "System.Security.Cryptography.Primitives": "4.0.0",
  1120. "System.Text.Encoding": "4.3.0"
  1121. }
  1122. },
  1123. "System.Security.Cryptography.Csp/4.0.0": {
  1124. "dependencies": {
  1125. "Microsoft.NETCore.Platforms": "3.1.0",
  1126. "System.IO": "4.3.0",
  1127. "System.Reflection": "4.3.0",
  1128. "System.Resources.ResourceManager": "4.0.1",
  1129. "System.Runtime": "4.3.0",
  1130. "System.Runtime.Extensions": "4.1.0",
  1131. "System.Runtime.Handles": "4.0.1",
  1132. "System.Runtime.InteropServices": "4.1.0",
  1133. "System.Security.Cryptography.Algorithms": "4.2.0",
  1134. "System.Security.Cryptography.Encoding": "4.0.0",
  1135. "System.Security.Cryptography.Primitives": "4.0.0",
  1136. "System.Text.Encoding": "4.3.0",
  1137. "System.Threading": "4.0.11"
  1138. }
  1139. },
  1140. "System.Security.Cryptography.Encoding/4.0.0": {
  1141. "dependencies": {
  1142. "Microsoft.NETCore.Platforms": "3.1.0",
  1143. "System.Collections": "4.0.11",
  1144. "System.Collections.Concurrent": "4.0.12",
  1145. "System.Linq": "4.1.0",
  1146. "System.Resources.ResourceManager": "4.0.1",
  1147. "System.Runtime": "4.3.0",
  1148. "System.Runtime.Extensions": "4.1.0",
  1149. "System.Runtime.Handles": "4.0.1",
  1150. "System.Runtime.InteropServices": "4.1.0",
  1151. "System.Security.Cryptography.Primitives": "4.0.0",
  1152. "System.Text.Encoding": "4.3.0",
  1153. "runtime.native.System.Security.Cryptography": "4.0.0"
  1154. }
  1155. },
  1156. "System.Security.Cryptography.OpenSsl/4.0.0": {
  1157. "dependencies": {
  1158. "System.Collections": "4.0.11",
  1159. "System.IO": "4.3.0",
  1160. "System.Resources.ResourceManager": "4.0.1",
  1161. "System.Runtime": "4.3.0",
  1162. "System.Runtime.Extensions": "4.1.0",
  1163. "System.Runtime.Handles": "4.0.1",
  1164. "System.Runtime.InteropServices": "4.1.0",
  1165. "System.Runtime.Numerics": "4.0.1",
  1166. "System.Security.Cryptography.Algorithms": "4.2.0",
  1167. "System.Security.Cryptography.Encoding": "4.0.0",
  1168. "System.Security.Cryptography.Primitives": "4.0.0",
  1169. "System.Text.Encoding": "4.3.0",
  1170. "runtime.native.System.Security.Cryptography": "4.0.0"
  1171. }
  1172. },
  1173. "System.Security.Cryptography.Primitives/4.0.0": {
  1174. "dependencies": {
  1175. "System.Diagnostics.Debug": "4.0.11",
  1176. "System.Globalization": "4.0.11",
  1177. "System.IO": "4.3.0",
  1178. "System.Resources.ResourceManager": "4.0.1",
  1179. "System.Runtime": "4.3.0",
  1180. "System.Threading": "4.0.11",
  1181. "System.Threading.Tasks": "4.3.0"
  1182. }
  1183. },
  1184. "System.Security.Cryptography.ProtectedData/4.4.0": {
  1185. "runtime": {
  1186. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1187. "assemblyVersion": "4.0.2.0",
  1188. "fileVersion": "4.6.25519.3"
  1189. }
  1190. },
  1191. "runtimeTargets": {
  1192. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1193. "rid": "win",
  1194. "assetType": "runtime",
  1195. "assemblyVersion": "4.0.2.0",
  1196. "fileVersion": "4.6.25519.3"
  1197. }
  1198. }
  1199. },
  1200. "System.Security.Cryptography.X509Certificates/4.1.0": {
  1201. "dependencies": {
  1202. "Microsoft.NETCore.Platforms": "3.1.0",
  1203. "System.Collections": "4.0.11",
  1204. "System.Diagnostics.Debug": "4.0.11",
  1205. "System.Globalization": "4.0.11",
  1206. "System.Globalization.Calendars": "4.0.1",
  1207. "System.IO": "4.3.0",
  1208. "System.IO.FileSystem": "4.0.1",
  1209. "System.IO.FileSystem.Primitives": "4.0.1",
  1210. "System.Resources.ResourceManager": "4.0.1",
  1211. "System.Runtime": "4.3.0",
  1212. "System.Runtime.Extensions": "4.1.0",
  1213. "System.Runtime.Handles": "4.0.1",
  1214. "System.Runtime.InteropServices": "4.1.0",
  1215. "System.Runtime.Numerics": "4.0.1",
  1216. "System.Security.Cryptography.Algorithms": "4.2.0",
  1217. "System.Security.Cryptography.Cng": "4.2.0",
  1218. "System.Security.Cryptography.Csp": "4.0.0",
  1219. "System.Security.Cryptography.Encoding": "4.0.0",
  1220. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1221. "System.Security.Cryptography.Primitives": "4.0.0",
  1222. "System.Text.Encoding": "4.3.0",
  1223. "System.Threading": "4.0.11",
  1224. "runtime.native.System": "4.0.0",
  1225. "runtime.native.System.Net.Http": "4.0.1",
  1226. "runtime.native.System.Security.Cryptography": "4.0.0"
  1227. }
  1228. },
  1229. "System.Security.Permissions/4.7.0": {
  1230. "dependencies": {
  1231. "System.Security.AccessControl": "4.7.0",
  1232. "System.Windows.Extensions": "4.7.0"
  1233. },
  1234. "runtime": {
  1235. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  1236. "assemblyVersion": "4.0.3.0",
  1237. "fileVersion": "4.700.19.56404"
  1238. }
  1239. }
  1240. },
  1241. "System.Security.Principal.Windows/4.7.0": {},
  1242. "System.Text.Encoding/4.3.0": {
  1243. "dependencies": {
  1244. "Microsoft.NETCore.Platforms": "3.1.0",
  1245. "Microsoft.NETCore.Targets": "1.1.0",
  1246. "System.Runtime": "4.3.0"
  1247. }
  1248. },
  1249. "System.Text.Encoding.CodePages/4.4.0": {
  1250. "dependencies": {
  1251. "Microsoft.NETCore.Platforms": "3.1.0"
  1252. }
  1253. },
  1254. "System.Text.Encoding.Extensions/4.0.11": {
  1255. "dependencies": {
  1256. "Microsoft.NETCore.Platforms": "3.1.0",
  1257. "Microsoft.NETCore.Targets": "1.1.0",
  1258. "System.Runtime": "4.3.0",
  1259. "System.Text.Encoding": "4.3.0"
  1260. }
  1261. },
  1262. "System.Text.Encodings.Web/4.5.0": {},
  1263. "System.Text.RegularExpressions/4.1.0": {
  1264. "dependencies": {
  1265. "System.Collections": "4.0.11",
  1266. "System.Globalization": "4.0.11",
  1267. "System.Resources.ResourceManager": "4.0.1",
  1268. "System.Runtime": "4.3.0",
  1269. "System.Runtime.Extensions": "4.1.0",
  1270. "System.Threading": "4.0.11"
  1271. }
  1272. },
  1273. "System.Threading/4.0.11": {
  1274. "dependencies": {
  1275. "System.Runtime": "4.3.0",
  1276. "System.Threading.Tasks": "4.3.0"
  1277. }
  1278. },
  1279. "System.Threading.Tasks/4.3.0": {
  1280. "dependencies": {
  1281. "Microsoft.NETCore.Platforms": "3.1.0",
  1282. "Microsoft.NETCore.Targets": "1.1.0",
  1283. "System.Runtime": "4.3.0"
  1284. }
  1285. },
  1286. "System.Threading.Tasks.Extensions/4.0.0": {
  1287. "dependencies": {
  1288. "System.Collections": "4.0.11",
  1289. "System.Runtime": "4.3.0",
  1290. "System.Threading.Tasks": "4.3.0"
  1291. }
  1292. },
  1293. "System.Threading.Thread/4.0.0": {
  1294. "dependencies": {
  1295. "System.Runtime": "4.3.0"
  1296. }
  1297. },
  1298. "System.Threading.ThreadPool/4.0.10": {
  1299. "dependencies": {
  1300. "System.Runtime": "4.3.0",
  1301. "System.Runtime.Handles": "4.0.1"
  1302. }
  1303. },
  1304. "System.Threading.Timer/4.0.1": {
  1305. "dependencies": {
  1306. "Microsoft.NETCore.Platforms": "3.1.0",
  1307. "Microsoft.NETCore.Targets": "1.1.0",
  1308. "System.Runtime": "4.3.0"
  1309. }
  1310. },
  1311. "System.Windows.Extensions/4.7.0": {
  1312. "dependencies": {
  1313. "System.Drawing.Common": "4.7.0"
  1314. },
  1315. "runtime": {
  1316. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1317. "assemblyVersion": "4.0.1.0",
  1318. "fileVersion": "4.700.19.56404"
  1319. }
  1320. },
  1321. "runtimeTargets": {
  1322. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1323. "rid": "win",
  1324. "assetType": "runtime",
  1325. "assemblyVersion": "4.0.1.0",
  1326. "fileVersion": "4.700.19.56404"
  1327. }
  1328. }
  1329. },
  1330. "System.Xml.ReaderWriter/4.0.11": {
  1331. "dependencies": {
  1332. "System.Collections": "4.0.11",
  1333. "System.Diagnostics.Debug": "4.0.11",
  1334. "System.Globalization": "4.0.11",
  1335. "System.IO": "4.3.0",
  1336. "System.IO.FileSystem": "4.0.1",
  1337. "System.IO.FileSystem.Primitives": "4.0.1",
  1338. "System.Resources.ResourceManager": "4.0.1",
  1339. "System.Runtime": "4.3.0",
  1340. "System.Runtime.Extensions": "4.1.0",
  1341. "System.Runtime.InteropServices": "4.1.0",
  1342. "System.Text.Encoding": "4.3.0",
  1343. "System.Text.Encoding.Extensions": "4.0.11",
  1344. "System.Text.RegularExpressions": "4.1.0",
  1345. "System.Threading.Tasks": "4.3.0",
  1346. "System.Threading.Tasks.Extensions": "4.0.0"
  1347. }
  1348. },
  1349. "System.Xml.XDocument/4.0.11": {
  1350. "dependencies": {
  1351. "System.Collections": "4.0.11",
  1352. "System.Diagnostics.Debug": "4.0.11",
  1353. "System.Diagnostics.Tools": "4.0.1",
  1354. "System.Globalization": "4.0.11",
  1355. "System.IO": "4.3.0",
  1356. "System.Reflection": "4.3.0",
  1357. "System.Resources.ResourceManager": "4.0.1",
  1358. "System.Runtime": "4.3.0",
  1359. "System.Runtime.Extensions": "4.1.0",
  1360. "System.Text.Encoding": "4.3.0",
  1361. "System.Threading": "4.0.11",
  1362. "System.Xml.ReaderWriter": "4.0.11"
  1363. }
  1364. },
  1365. "System.Xml.XmlDocument/4.0.1": {
  1366. "dependencies": {
  1367. "System.Collections": "4.0.11",
  1368. "System.Diagnostics.Debug": "4.0.11",
  1369. "System.Globalization": "4.0.11",
  1370. "System.IO": "4.3.0",
  1371. "System.Resources.ResourceManager": "4.0.1",
  1372. "System.Runtime": "4.3.0",
  1373. "System.Runtime.Extensions": "4.1.0",
  1374. "System.Text.Encoding": "4.3.0",
  1375. "System.Threading": "4.0.11",
  1376. "System.Xml.ReaderWriter": "4.0.11"
  1377. }
  1378. },
  1379. "System.Xml.XPath/4.0.1": {
  1380. "dependencies": {
  1381. "System.Collections": "4.0.11",
  1382. "System.Diagnostics.Debug": "4.0.11",
  1383. "System.Globalization": "4.0.11",
  1384. "System.IO": "4.3.0",
  1385. "System.Resources.ResourceManager": "4.0.1",
  1386. "System.Runtime": "4.3.0",
  1387. "System.Runtime.Extensions": "4.1.0",
  1388. "System.Threading": "4.0.11",
  1389. "System.Xml.ReaderWriter": "4.0.11"
  1390. }
  1391. },
  1392. "System.Xml.XPath.XmlDocument/4.0.1": {
  1393. "dependencies": {
  1394. "System.Collections": "4.0.11",
  1395. "System.Globalization": "4.0.11",
  1396. "System.IO": "4.3.0",
  1397. "System.Resources.ResourceManager": "4.0.1",
  1398. "System.Runtime": "4.3.0",
  1399. "System.Runtime.Extensions": "4.1.0",
  1400. "System.Threading": "4.0.11",
  1401. "System.Xml.ReaderWriter": "4.0.11",
  1402. "System.Xml.XPath": "4.0.1",
  1403. "System.Xml.XmlDocument": "4.0.1"
  1404. },
  1405. "runtime": {
  1406. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  1407. "assemblyVersion": "4.0.1.0",
  1408. "fileVersion": "1.0.24212.1"
  1409. }
  1410. }
  1411. }
  1412. }
  1413. },
  1414. "libraries": {
  1415. "Backend.Data/1.0.0": {
  1416. "type": "project",
  1417. "serviceable": false,
  1418. "sha512": ""
  1419. },
  1420. "BouncyCastle.NetCore/1.8.3": {
  1421. "type": "package",
  1422. "serviceable": true,
  1423. "sha512": "sha512-jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  1424. "path": "bouncycastle.netcore/1.8.3",
  1425. "hashPath": "bouncycastle.netcore.1.8.3.nupkg.sha512"
  1426. },
  1427. "EntityFramework/6.1.0": {
  1428. "type": "package",
  1429. "serviceable": true,
  1430. "sha512": "sha512-u/M0OEfqxTUsL5BwzD66eBGm278/ozqdLK3JvMO6QwUxxc+z7ZUkTYm4suDhWRqzkc6mOhvXDQY5dZUwbldxyQ==",
  1431. "path": "entityframework/6.1.0",
  1432. "hashPath": "entityframework.6.1.0.nupkg.sha512"
  1433. },
  1434. "Google.Protobuf/3.11.4": {
  1435. "type": "package",
  1436. "serviceable": true,
  1437. "sha512": "sha512-dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  1438. "path": "google.protobuf/3.11.4",
  1439. "hashPath": "google.protobuf.3.11.4.nupkg.sha512"
  1440. },
  1441. "K4os.Compression.LZ4/1.1.11": {
  1442. "type": "package",
  1443. "serviceable": true,
  1444. "sha512": "sha512-RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  1445. "path": "k4os.compression.lz4/1.1.11",
  1446. "hashPath": "k4os.compression.lz4.1.1.11.nupkg.sha512"
  1447. },
  1448. "K4os.Compression.LZ4.Streams/1.1.11": {
  1449. "type": "package",
  1450. "serviceable": true,
  1451. "sha512": "sha512-x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  1452. "path": "k4os.compression.lz4.streams/1.1.11",
  1453. "hashPath": "k4os.compression.lz4.streams.1.1.11.nupkg.sha512"
  1454. },
  1455. "K4os.Hash.xxHash/1.0.6": {
  1456. "type": "package",
  1457. "serviceable": true,
  1458. "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  1459. "path": "k4os.hash.xxhash/1.0.6",
  1460. "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512"
  1461. },
  1462. "Microsoft.AspNet.Identity.Core/2.2.3": {
  1463. "type": "package",
  1464. "serviceable": true,
  1465. "sha512": "sha512-Mv5FpoaxspE8hlWLE4r1IdZtovg/OyFgVRhxQbx47J4sqdLImN1hnM1lnwCj+/wLmqtqFk/RYMoZ5GAcwm/00g==",
  1466. "path": "microsoft.aspnet.identity.core/2.2.3",
  1467. "hashPath": "microsoft.aspnet.identity.core.2.2.3.nupkg.sha512"
  1468. },
  1469. "Microsoft.AspNet.Identity.EntityFramework/2.2.3": {
  1470. "type": "package",
  1471. "serviceable": true,
  1472. "sha512": "sha512-dt4XZChjw3a6jE66Yd6LkF9omspxi0A9lJpwBZz8Wl1sabOS6dlLP1OOTVuUjtPaoAshjoIzvS6DFRQdPyq55g==",
  1473. "path": "microsoft.aspnet.identity.entityframework/2.2.3",
  1474. "hashPath": "microsoft.aspnet.identity.entityframework.2.2.3.nupkg.sha512"
  1475. },
  1476. "Microsoft.AspNetCore.Cryptography.Internal/5.0.10": {
  1477. "type": "package",
  1478. "serviceable": true,
  1479. "sha512": "sha512-xqdkq+lsWeVBxGq0bwgQeT1inqdFErG/McEBNqFVw0hnNQKxWaGPuBDFc8JBQC82Qn6+V1utI3lWvFmUMGEc8Q==",
  1480. "path": "microsoft.aspnetcore.cryptography.internal/5.0.10",
  1481. "hashPath": "microsoft.aspnetcore.cryptography.internal.5.0.10.nupkg.sha512"
  1482. },
  1483. "Microsoft.AspNetCore.Cryptography.KeyDerivation/5.0.10": {
  1484. "type": "package",
  1485. "serviceable": true,
  1486. "sha512": "sha512-iXsPFNrM6cVGx/zCkz88nDP/pUKn/ni13B6JQhLwOoqI+tsA1x6fVfPp0MKnQtx5AZngGzuNMx+AYR1ED9ZVeg==",
  1487. "path": "microsoft.aspnetcore.cryptography.keyderivation/5.0.10",
  1488. "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.5.0.10.nupkg.sha512"
  1489. },
  1490. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  1491. "type": "package",
  1492. "serviceable": true,
  1493. "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  1494. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  1495. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
  1496. },
  1497. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  1498. "type": "package",
  1499. "serviceable": true,
  1500. "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  1501. "path": "microsoft.aspnetcore.http.features/2.2.0",
  1502. "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
  1503. },
  1504. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/5.0.10": {
  1505. "type": "package",
  1506. "serviceable": true,
  1507. "sha512": "sha512-L9Tavjj82A9Ybo6Uedxu5CDie7DXXjx5tXLy3P0Ade2LXcrQwC4bJcdj8+QvBHqMnsd9ZsGZfO/T6tqxTYpAJg==",
  1508. "path": "microsoft.aspnetcore.identity.entityframeworkcore/5.0.10",
  1509. "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.5.0.10.nupkg.sha512"
  1510. },
  1511. "Microsoft.CSharp/4.0.1": {
  1512. "type": "package",
  1513. "serviceable": true,
  1514. "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==",
  1515. "path": "microsoft.csharp/4.0.1",
  1516. "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512"
  1517. },
  1518. "Microsoft.EntityFrameworkCore/5.0.10": {
  1519. "type": "package",
  1520. "serviceable": true,
  1521. "sha512": "sha512-w5+5oewaQWDj4ChxxjLhdxIi98dK+kq7wvqnTco9PodkqHIDMfKk+5fQCQGLQrbhTdNaqyfYE1ApFP66mLXv6Q==",
  1522. "path": "microsoft.entityframeworkcore/5.0.10",
  1523. "hashPath": "microsoft.entityframeworkcore.5.0.10.nupkg.sha512"
  1524. },
  1525. "Microsoft.EntityFrameworkCore.Abstractions/5.0.10": {
  1526. "type": "package",
  1527. "serviceable": true,
  1528. "sha512": "sha512-Ib85lZI/jxvsKcCS0GHVeqBv/JGzEvKa6HkoyxNu0EDmzDoh4OFl+dDKSx4Vr6I5YWT7nQj3sz6I4I0wHSN0xg==",
  1529. "path": "microsoft.entityframeworkcore.abstractions/5.0.10",
  1530. "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.10.nupkg.sha512"
  1531. },
  1532. "Microsoft.EntityFrameworkCore.Analyzers/5.0.10": {
  1533. "type": "package",
  1534. "serviceable": true,
  1535. "sha512": "sha512-MBnG+g6jrmK72y4rU+4y2btHrl72i2q3zrXG3pj2zZGXXrG9Q4SlwL5ul0ASmQXYjhJ4VpDfd4o1/gdRPsa2jA==",
  1536. "path": "microsoft.entityframeworkcore.analyzers/5.0.10",
  1537. "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.10.nupkg.sha512"
  1538. },
  1539. "Microsoft.EntityFrameworkCore.Relational/5.0.10": {
  1540. "type": "package",
  1541. "serviceable": true,
  1542. "sha512": "sha512-3l7GA+0y5E3kDOl85KRHhC0zXYA/CyQBQqDXvFGkqYzdPMRyWQkaQz2+yN4CN/SC+TVa48FPIAc2Wim8aWAliQ==",
  1543. "path": "microsoft.entityframeworkcore.relational/5.0.10",
  1544. "hashPath": "microsoft.entityframeworkcore.relational.5.0.10.nupkg.sha512"
  1545. },
  1546. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  1547. "type": "package",
  1548. "serviceable": true,
  1549. "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  1550. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  1551. "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512"
  1552. },
  1553. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  1554. "type": "package",
  1555. "serviceable": true,
  1556. "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  1557. "path": "microsoft.extensions.caching.memory/5.0.0",
  1558. "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512"
  1559. },
  1560. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  1561. "type": "package",
  1562. "serviceable": true,
  1563. "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  1564. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  1565. "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512"
  1566. },
  1567. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  1568. "type": "package",
  1569. "serviceable": true,
  1570. "sha512": "sha512-xzFW00AZEvOXM1OX+0+AYH5op/Hf3u//e6wszBd/rK72sypD+jx5CtsHxM4BVuFBEs8SajfO4QzSJtrQaHDr4A==",
  1571. "path": "microsoft.extensions.dependencyinjection/5.0.2",
  1572. "hashPath": "microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512"
  1573. },
  1574. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1575. "type": "package",
  1576. "serviceable": true,
  1577. "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  1578. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  1579. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
  1580. },
  1581. "Microsoft.Extensions.Identity.Core/5.0.10": {
  1582. "type": "package",
  1583. "serviceable": true,
  1584. "sha512": "sha512-WKl22APvpTy+wIqvUd1Gvp8FOs7nTHCZDMeMNNC6fDVfzVKWQF55vOJXbkw7dU70sC6GewE/zsqmwyJAHXgDJw==",
  1585. "path": "microsoft.extensions.identity.core/5.0.10",
  1586. "hashPath": "microsoft.extensions.identity.core.5.0.10.nupkg.sha512"
  1587. },
  1588. "Microsoft.Extensions.Identity.Stores/5.0.10": {
  1589. "type": "package",
  1590. "serviceable": true,
  1591. "sha512": "sha512-fZDlK8G+jzV9ld0jiO2eQ5JQbOmpiND92gX7bP6rcTZ7YJHzIxCw7Hx8+yf4Ex9f6q7v2LJymkmsUz1k7o5nPg==",
  1592. "path": "microsoft.extensions.identity.stores/5.0.10",
  1593. "hashPath": "microsoft.extensions.identity.stores.5.0.10.nupkg.sha512"
  1594. },
  1595. "Microsoft.Extensions.Logging/5.0.0": {
  1596. "type": "package",
  1597. "serviceable": true,
  1598. "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  1599. "path": "microsoft.extensions.logging/5.0.0",
  1600. "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
  1601. },
  1602. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  1603. "type": "package",
  1604. "serviceable": true,
  1605. "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  1606. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  1607. "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
  1608. },
  1609. "Microsoft.Extensions.Options/5.0.0": {
  1610. "type": "package",
  1611. "serviceable": true,
  1612. "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  1613. "path": "microsoft.extensions.options/5.0.0",
  1614. "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
  1615. },
  1616. "Microsoft.Extensions.Primitives/6.0.0": {
  1617. "type": "package",
  1618. "serviceable": true,
  1619. "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  1620. "path": "microsoft.extensions.primitives/6.0.0",
  1621. "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512"
  1622. },
  1623. "Microsoft.NETCore.Platforms/3.1.0": {
  1624. "type": "package",
  1625. "serviceable": true,
  1626. "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  1627. "path": "microsoft.netcore.platforms/3.1.0",
  1628. "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
  1629. },
  1630. "Microsoft.NETCore.Targets/1.1.0": {
  1631. "type": "package",
  1632. "serviceable": true,
  1633. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1634. "path": "microsoft.netcore.targets/1.1.0",
  1635. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1636. },
  1637. "Microsoft.Win32.Primitives/4.0.1": {
  1638. "type": "package",
  1639. "serviceable": true,
  1640. "sha512": "sha512-fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  1641. "path": "microsoft.win32.primitives/4.0.1",
  1642. "hashPath": "microsoft.win32.primitives.4.0.1.nupkg.sha512"
  1643. },
  1644. "Microsoft.Win32.Registry/4.7.0": {
  1645. "type": "package",
  1646. "serviceable": true,
  1647. "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  1648. "path": "microsoft.win32.registry/4.7.0",
  1649. "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
  1650. },
  1651. "Microsoft.Win32.SystemEvents/4.7.0": {
  1652. "type": "package",
  1653. "serviceable": true,
  1654. "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  1655. "path": "microsoft.win32.systemevents/4.7.0",
  1656. "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
  1657. },
  1658. "MySql.Data/8.0.22": {
  1659. "type": "package",
  1660. "serviceable": true,
  1661. "sha512": "sha512-DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  1662. "path": "mysql.data/8.0.22",
  1663. "hashPath": "mysql.data.8.0.22.nupkg.sha512"
  1664. },
  1665. "MySql.Data.EntityFrameworkCore/8.0.22": {
  1666. "type": "package",
  1667. "serviceable": true,
  1668. "sha512": "sha512-o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  1669. "path": "mysql.data.entityframeworkcore/8.0.22",
  1670. "hashPath": "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512"
  1671. },
  1672. "MySqlConnector/1.1.0": {
  1673. "type": "package",
  1674. "serviceable": true,
  1675. "sha512": "sha512-RQPR2vkQjSiyGH2mV17K4+gDcgI8hidxgD2qli3OcRupvqpQjoL6S35M3ZjIM6CXC0TgImvJo3HA/fLSOG+oBA==",
  1676. "path": "mysqlconnector/1.1.0",
  1677. "hashPath": "mysqlconnector.1.1.0.nupkg.sha512"
  1678. },
  1679. "NETStandard.Library/1.6.0": {
  1680. "type": "package",
  1681. "serviceable": true,
  1682. "sha512": "sha512-ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  1683. "path": "netstandard.library/1.6.0",
  1684. "hashPath": "netstandard.library.1.6.0.nupkg.sha512"
  1685. },
  1686. "Pomelo.EntityFrameworkCore.MySql/5.0.0-alpha.2": {
  1687. "type": "package",
  1688. "serviceable": true,
  1689. "sha512": "sha512-g2+otNSXHxzmWUJI7+KfoL9C35V8BAKC1fqfriHNNghMQiwrUkK+xaN+3w5r5+YUKA1qfiJH6+Wwc+Kkcsr3Og==",
  1690. "path": "pomelo.entityframeworkcore.mysql/5.0.0-alpha.2",
  1691. "hashPath": "pomelo.entityframeworkcore.mysql.5.0.0-alpha.2.nupkg.sha512"
  1692. },
  1693. "runtime.native.System/4.0.0": {
  1694. "type": "package",
  1695. "serviceable": true,
  1696. "sha512": "sha512-QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  1697. "path": "runtime.native.system/4.0.0",
  1698. "hashPath": "runtime.native.system.4.0.0.nupkg.sha512"
  1699. },
  1700. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  1701. "type": "package",
  1702. "serviceable": true,
  1703. "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  1704. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  1705. "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512"
  1706. },
  1707. "runtime.native.System.IO.Compression/4.1.0": {
  1708. "type": "package",
  1709. "serviceable": true,
  1710. "sha512": "sha512-Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  1711. "path": "runtime.native.system.io.compression/4.1.0",
  1712. "hashPath": "runtime.native.system.io.compression.4.1.0.nupkg.sha512"
  1713. },
  1714. "runtime.native.System.Net.Http/4.0.1": {
  1715. "type": "package",
  1716. "serviceable": true,
  1717. "sha512": "sha512-Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  1718. "path": "runtime.native.system.net.http/4.0.1",
  1719. "hashPath": "runtime.native.system.net.http.4.0.1.nupkg.sha512"
  1720. },
  1721. "runtime.native.System.Security.Cryptography/4.0.0": {
  1722. "type": "package",
  1723. "serviceable": true,
  1724. "sha512": "sha512-2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  1725. "path": "runtime.native.system.security.cryptography/4.0.0",
  1726. "hashPath": "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512"
  1727. },
  1728. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1729. "type": "package",
  1730. "serviceable": true,
  1731. "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  1732. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  1733. "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  1734. },
  1735. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1736. "type": "package",
  1737. "serviceable": true,
  1738. "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  1739. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  1740. "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  1741. },
  1742. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1743. "type": "package",
  1744. "serviceable": true,
  1745. "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  1746. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  1747. "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
  1748. },
  1749. "SSH.NET/2016.1.0": {
  1750. "type": "package",
  1751. "serviceable": true,
  1752. "sha512": "sha512-b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  1753. "path": "ssh.net/2016.1.0",
  1754. "hashPath": "ssh.net.2016.1.0.nupkg.sha512"
  1755. },
  1756. "SshNet.Security.Cryptography/1.2.0": {
  1757. "type": "package",
  1758. "serviceable": true,
  1759. "sha512": "sha512-EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  1760. "path": "sshnet.security.cryptography/1.2.0",
  1761. "hashPath": "sshnet.security.cryptography.1.2.0.nupkg.sha512"
  1762. },
  1763. "System.AppContext/4.1.0": {
  1764. "type": "package",
  1765. "serviceable": true,
  1766. "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  1767. "path": "system.appcontext/4.1.0",
  1768. "hashPath": "system.appcontext.4.1.0.nupkg.sha512"
  1769. },
  1770. "System.Buffers/4.5.1": {
  1771. "type": "package",
  1772. "serviceable": true,
  1773. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  1774. "path": "system.buffers/4.5.1",
  1775. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  1776. },
  1777. "System.Collections/4.0.11": {
  1778. "type": "package",
  1779. "serviceable": true,
  1780. "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  1781. "path": "system.collections/4.0.11",
  1782. "hashPath": "system.collections.4.0.11.nupkg.sha512"
  1783. },
  1784. "System.Collections.Concurrent/4.0.12": {
  1785. "type": "package",
  1786. "serviceable": true,
  1787. "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  1788. "path": "system.collections.concurrent/4.0.12",
  1789. "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512"
  1790. },
  1791. "System.Collections.Immutable/5.0.0": {
  1792. "type": "package",
  1793. "serviceable": true,
  1794. "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  1795. "path": "system.collections.immutable/5.0.0",
  1796. "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
  1797. },
  1798. "System.ComponentModel.Annotations/5.0.0": {
  1799. "type": "package",
  1800. "serviceable": true,
  1801. "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  1802. "path": "system.componentmodel.annotations/5.0.0",
  1803. "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
  1804. },
  1805. "System.Configuration.ConfigurationManager/4.4.1": {
  1806. "type": "package",
  1807. "serviceable": true,
  1808. "sha512": "sha512-jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==",
  1809. "path": "system.configuration.configurationmanager/4.4.1",
  1810. "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512"
  1811. },
  1812. "System.Console/4.0.0": {
  1813. "type": "package",
  1814. "serviceable": true,
  1815. "sha512": "sha512-qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  1816. "path": "system.console/4.0.0",
  1817. "hashPath": "system.console.4.0.0.nupkg.sha512"
  1818. },
  1819. "System.Data.SqlClient/4.8.3": {
  1820. "type": "package",
  1821. "serviceable": true,
  1822. "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==",
  1823. "path": "system.data.sqlclient/4.8.3",
  1824. "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512"
  1825. },
  1826. "System.Diagnostics.Debug/4.0.11": {
  1827. "type": "package",
  1828. "serviceable": true,
  1829. "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  1830. "path": "system.diagnostics.debug/4.0.11",
  1831. "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512"
  1832. },
  1833. "System.Diagnostics.DiagnosticSource/5.0.1": {
  1834. "type": "package",
  1835. "serviceable": true,
  1836. "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  1837. "path": "system.diagnostics.diagnosticsource/5.0.1",
  1838. "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512"
  1839. },
  1840. "System.Diagnostics.Tools/4.0.1": {
  1841. "type": "package",
  1842. "serviceable": true,
  1843. "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  1844. "path": "system.diagnostics.tools/4.0.1",
  1845. "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512"
  1846. },
  1847. "System.Diagnostics.TraceSource/4.0.0": {
  1848. "type": "package",
  1849. "serviceable": true,
  1850. "sha512": "sha512-6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  1851. "path": "system.diagnostics.tracesource/4.0.0",
  1852. "hashPath": "system.diagnostics.tracesource.4.0.0.nupkg.sha512"
  1853. },
  1854. "System.Diagnostics.Tracing/4.1.0": {
  1855. "type": "package",
  1856. "serviceable": true,
  1857. "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  1858. "path": "system.diagnostics.tracing/4.1.0",
  1859. "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512"
  1860. },
  1861. "System.Drawing.Common/4.7.0": {
  1862. "type": "package",
  1863. "serviceable": true,
  1864. "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  1865. "path": "system.drawing.common/4.7.0",
  1866. "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
  1867. },
  1868. "System.Dynamic.Runtime/4.0.11": {
  1869. "type": "package",
  1870. "serviceable": true,
  1871. "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  1872. "path": "system.dynamic.runtime/4.0.11",
  1873. "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512"
  1874. },
  1875. "System.Globalization/4.0.11": {
  1876. "type": "package",
  1877. "serviceable": true,
  1878. "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  1879. "path": "system.globalization/4.0.11",
  1880. "hashPath": "system.globalization.4.0.11.nupkg.sha512"
  1881. },
  1882. "System.Globalization.Calendars/4.0.1": {
  1883. "type": "package",
  1884. "serviceable": true,
  1885. "sha512": "sha512-L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  1886. "path": "system.globalization.calendars/4.0.1",
  1887. "hashPath": "system.globalization.calendars.4.0.1.nupkg.sha512"
  1888. },
  1889. "System.Globalization.Extensions/4.0.1": {
  1890. "type": "package",
  1891. "serviceable": true,
  1892. "sha512": "sha512-KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  1893. "path": "system.globalization.extensions/4.0.1",
  1894. "hashPath": "system.globalization.extensions.4.0.1.nupkg.sha512"
  1895. },
  1896. "System.IO/4.3.0": {
  1897. "type": "package",
  1898. "serviceable": true,
  1899. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1900. "path": "system.io/4.3.0",
  1901. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1902. },
  1903. "System.IO.Compression/4.1.0": {
  1904. "type": "package",
  1905. "serviceable": true,
  1906. "sha512": "sha512-TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  1907. "path": "system.io.compression/4.1.0",
  1908. "hashPath": "system.io.compression.4.1.0.nupkg.sha512"
  1909. },
  1910. "System.IO.Compression.ZipFile/4.0.1": {
  1911. "type": "package",
  1912. "serviceable": true,
  1913. "sha512": "sha512-hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  1914. "path": "system.io.compression.zipfile/4.0.1",
  1915. "hashPath": "system.io.compression.zipfile.4.0.1.nupkg.sha512"
  1916. },
  1917. "System.IO.FileSystem/4.0.1": {
  1918. "type": "package",
  1919. "serviceable": true,
  1920. "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  1921. "path": "system.io.filesystem/4.0.1",
  1922. "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512"
  1923. },
  1924. "System.IO.FileSystem.Primitives/4.0.1": {
  1925. "type": "package",
  1926. "serviceable": true,
  1927. "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  1928. "path": "system.io.filesystem.primitives/4.0.1",
  1929. "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512"
  1930. },
  1931. "System.Linq/4.1.0": {
  1932. "type": "package",
  1933. "serviceable": true,
  1934. "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  1935. "path": "system.linq/4.1.0",
  1936. "hashPath": "system.linq.4.1.0.nupkg.sha512"
  1937. },
  1938. "System.Linq.Expressions/4.1.0": {
  1939. "type": "package",
  1940. "serviceable": true,
  1941. "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  1942. "path": "system.linq.expressions/4.1.0",
  1943. "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512"
  1944. },
  1945. "System.Memory/4.5.3": {
  1946. "type": "package",
  1947. "serviceable": true,
  1948. "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  1949. "path": "system.memory/4.5.3",
  1950. "hashPath": "system.memory.4.5.3.nupkg.sha512"
  1951. },
  1952. "System.Net.Http/4.1.0": {
  1953. "type": "package",
  1954. "serviceable": true,
  1955. "sha512": "sha512-ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  1956. "path": "system.net.http/4.1.0",
  1957. "hashPath": "system.net.http.4.1.0.nupkg.sha512"
  1958. },
  1959. "System.Net.NameResolution/4.0.0": {
  1960. "type": "package",
  1961. "serviceable": true,
  1962. "sha512": "sha512-JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  1963. "path": "system.net.nameresolution/4.0.0",
  1964. "hashPath": "system.net.nameresolution.4.0.0.nupkg.sha512"
  1965. },
  1966. "System.Net.Primitives/4.0.11": {
  1967. "type": "package",
  1968. "serviceable": true,
  1969. "sha512": "sha512-hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  1970. "path": "system.net.primitives/4.0.11",
  1971. "hashPath": "system.net.primitives.4.0.11.nupkg.sha512"
  1972. },
  1973. "System.Net.Sockets/4.1.0": {
  1974. "type": "package",
  1975. "serviceable": true,
  1976. "sha512": "sha512-xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  1977. "path": "system.net.sockets/4.1.0",
  1978. "hashPath": "system.net.sockets.4.1.0.nupkg.sha512"
  1979. },
  1980. "System.ObjectModel/4.0.12": {
  1981. "type": "package",
  1982. "serviceable": true,
  1983. "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  1984. "path": "system.objectmodel/4.0.12",
  1985. "hashPath": "system.objectmodel.4.0.12.nupkg.sha512"
  1986. },
  1987. "System.Reflection/4.3.0": {
  1988. "type": "package",
  1989. "serviceable": true,
  1990. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1991. "path": "system.reflection/4.3.0",
  1992. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1993. },
  1994. "System.Reflection.Emit/4.0.1": {
  1995. "type": "package",
  1996. "serviceable": true,
  1997. "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  1998. "path": "system.reflection.emit/4.0.1",
  1999. "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512"
  2000. },
  2001. "System.Reflection.Emit.ILGeneration/4.0.1": {
  2002. "type": "package",
  2003. "serviceable": true,
  2004. "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  2005. "path": "system.reflection.emit.ilgeneration/4.0.1",
  2006. "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512"
  2007. },
  2008. "System.Reflection.Emit.Lightweight/4.0.1": {
  2009. "type": "package",
  2010. "serviceable": true,
  2011. "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  2012. "path": "system.reflection.emit.lightweight/4.0.1",
  2013. "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512"
  2014. },
  2015. "System.Reflection.Extensions/4.0.1": {
  2016. "type": "package",
  2017. "serviceable": true,
  2018. "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  2019. "path": "system.reflection.extensions/4.0.1",
  2020. "hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512"
  2021. },
  2022. "System.Reflection.Primitives/4.3.0": {
  2023. "type": "package",
  2024. "serviceable": true,
  2025. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  2026. "path": "system.reflection.primitives/4.3.0",
  2027. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  2028. },
  2029. "System.Reflection.TypeExtensions/4.1.0": {
  2030. "type": "package",
  2031. "serviceable": true,
  2032. "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  2033. "path": "system.reflection.typeextensions/4.1.0",
  2034. "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512"
  2035. },
  2036. "System.Resources.ResourceManager/4.0.1": {
  2037. "type": "package",
  2038. "serviceable": true,
  2039. "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  2040. "path": "system.resources.resourcemanager/4.0.1",
  2041. "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512"
  2042. },
  2043. "System.Runtime/4.3.0": {
  2044. "type": "package",
  2045. "serviceable": true,
  2046. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  2047. "path": "system.runtime/4.3.0",
  2048. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  2049. },
  2050. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2051. "type": "package",
  2052. "serviceable": true,
  2053. "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  2054. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  2055. "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
  2056. },
  2057. "System.Runtime.Extensions/4.1.0": {
  2058. "type": "package",
  2059. "serviceable": true,
  2060. "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  2061. "path": "system.runtime.extensions/4.1.0",
  2062. "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512"
  2063. },
  2064. "System.Runtime.Handles/4.0.1": {
  2065. "type": "package",
  2066. "serviceable": true,
  2067. "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  2068. "path": "system.runtime.handles/4.0.1",
  2069. "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512"
  2070. },
  2071. "System.Runtime.InteropServices/4.1.0": {
  2072. "type": "package",
  2073. "serviceable": true,
  2074. "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  2075. "path": "system.runtime.interopservices/4.1.0",
  2076. "hashPath": "system.runtime.interopservices.4.1.0.nupkg.sha512"
  2077. },
  2078. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  2079. "type": "package",
  2080. "serviceable": true,
  2081. "sha512": "sha512-hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  2082. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  2083. "hashPath": "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512"
  2084. },
  2085. "System.Runtime.Numerics/4.0.1": {
  2086. "type": "package",
  2087. "serviceable": true,
  2088. "sha512": "sha512-+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  2089. "path": "system.runtime.numerics/4.0.1",
  2090. "hashPath": "system.runtime.numerics.4.0.1.nupkg.sha512"
  2091. },
  2092. "System.Security.AccessControl/4.7.0": {
  2093. "type": "package",
  2094. "serviceable": true,
  2095. "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  2096. "path": "system.security.accesscontrol/4.7.0",
  2097. "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512"
  2098. },
  2099. "System.Security.Cryptography.Algorithms/4.2.0": {
  2100. "type": "package",
  2101. "serviceable": true,
  2102. "sha512": "sha512-8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  2103. "path": "system.security.cryptography.algorithms/4.2.0",
  2104. "hashPath": "system.security.cryptography.algorithms.4.2.0.nupkg.sha512"
  2105. },
  2106. "System.Security.Cryptography.Cng/4.2.0": {
  2107. "type": "package",
  2108. "serviceable": true,
  2109. "sha512": "sha512-cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==",
  2110. "path": "system.security.cryptography.cng/4.2.0",
  2111. "hashPath": "system.security.cryptography.cng.4.2.0.nupkg.sha512"
  2112. },
  2113. "System.Security.Cryptography.Csp/4.0.0": {
  2114. "type": "package",
  2115. "serviceable": true,
  2116. "sha512": "sha512-/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  2117. "path": "system.security.cryptography.csp/4.0.0",
  2118. "hashPath": "system.security.cryptography.csp.4.0.0.nupkg.sha512"
  2119. },
  2120. "System.Security.Cryptography.Encoding/4.0.0": {
  2121. "type": "package",
  2122. "serviceable": true,
  2123. "sha512": "sha512-FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  2124. "path": "system.security.cryptography.encoding/4.0.0",
  2125. "hashPath": "system.security.cryptography.encoding.4.0.0.nupkg.sha512"
  2126. },
  2127. "System.Security.Cryptography.OpenSsl/4.0.0": {
  2128. "type": "package",
  2129. "serviceable": true,
  2130. "sha512": "sha512-HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  2131. "path": "system.security.cryptography.openssl/4.0.0",
  2132. "hashPath": "system.security.cryptography.openssl.4.0.0.nupkg.sha512"
  2133. },
  2134. "System.Security.Cryptography.Primitives/4.0.0": {
  2135. "type": "package",
  2136. "serviceable": true,
  2137. "sha512": "sha512-Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  2138. "path": "system.security.cryptography.primitives/4.0.0",
  2139. "hashPath": "system.security.cryptography.primitives.4.0.0.nupkg.sha512"
  2140. },
  2141. "System.Security.Cryptography.ProtectedData/4.4.0": {
  2142. "type": "package",
  2143. "serviceable": true,
  2144. "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==",
  2145. "path": "system.security.cryptography.protecteddata/4.4.0",
  2146. "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512"
  2147. },
  2148. "System.Security.Cryptography.X509Certificates/4.1.0": {
  2149. "type": "package",
  2150. "serviceable": true,
  2151. "sha512": "sha512-4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  2152. "path": "system.security.cryptography.x509certificates/4.1.0",
  2153. "hashPath": "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512"
  2154. },
  2155. "System.Security.Permissions/4.7.0": {
  2156. "type": "package",
  2157. "serviceable": true,
  2158. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  2159. "path": "system.security.permissions/4.7.0",
  2160. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  2161. },
  2162. "System.Security.Principal.Windows/4.7.0": {
  2163. "type": "package",
  2164. "serviceable": true,
  2165. "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  2166. "path": "system.security.principal.windows/4.7.0",
  2167. "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
  2168. },
  2169. "System.Text.Encoding/4.3.0": {
  2170. "type": "package",
  2171. "serviceable": true,
  2172. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  2173. "path": "system.text.encoding/4.3.0",
  2174. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  2175. },
  2176. "System.Text.Encoding.CodePages/4.4.0": {
  2177. "type": "package",
  2178. "serviceable": true,
  2179. "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==",
  2180. "path": "system.text.encoding.codepages/4.4.0",
  2181. "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512"
  2182. },
  2183. "System.Text.Encoding.Extensions/4.0.11": {
  2184. "type": "package",
  2185. "serviceable": true,
  2186. "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  2187. "path": "system.text.encoding.extensions/4.0.11",
  2188. "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512"
  2189. },
  2190. "System.Text.Encodings.Web/4.5.0": {
  2191. "type": "package",
  2192. "serviceable": true,
  2193. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  2194. "path": "system.text.encodings.web/4.5.0",
  2195. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  2196. },
  2197. "System.Text.RegularExpressions/4.1.0": {
  2198. "type": "package",
  2199. "serviceable": true,
  2200. "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  2201. "path": "system.text.regularexpressions/4.1.0",
  2202. "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512"
  2203. },
  2204. "System.Threading/4.0.11": {
  2205. "type": "package",
  2206. "serviceable": true,
  2207. "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  2208. "path": "system.threading/4.0.11",
  2209. "hashPath": "system.threading.4.0.11.nupkg.sha512"
  2210. },
  2211. "System.Threading.Tasks/4.3.0": {
  2212. "type": "package",
  2213. "serviceable": true,
  2214. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  2215. "path": "system.threading.tasks/4.3.0",
  2216. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  2217. },
  2218. "System.Threading.Tasks.Extensions/4.0.0": {
  2219. "type": "package",
  2220. "serviceable": true,
  2221. "sha512": "sha512-pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==",
  2222. "path": "system.threading.tasks.extensions/4.0.0",
  2223. "hashPath": "system.threading.tasks.extensions.4.0.0.nupkg.sha512"
  2224. },
  2225. "System.Threading.Thread/4.0.0": {
  2226. "type": "package",
  2227. "serviceable": true,
  2228. "sha512": "sha512-gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  2229. "path": "system.threading.thread/4.0.0",
  2230. "hashPath": "system.threading.thread.4.0.0.nupkg.sha512"
  2231. },
  2232. "System.Threading.ThreadPool/4.0.10": {
  2233. "type": "package",
  2234. "serviceable": true,
  2235. "sha512": "sha512-IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  2236. "path": "system.threading.threadpool/4.0.10",
  2237. "hashPath": "system.threading.threadpool.4.0.10.nupkg.sha512"
  2238. },
  2239. "System.Threading.Timer/4.0.1": {
  2240. "type": "package",
  2241. "serviceable": true,
  2242. "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  2243. "path": "system.threading.timer/4.0.1",
  2244. "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
  2245. },
  2246. "System.Windows.Extensions/4.7.0": {
  2247. "type": "package",
  2248. "serviceable": true,
  2249. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  2250. "path": "system.windows.extensions/4.7.0",
  2251. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  2252. },
  2253. "System.Xml.ReaderWriter/4.0.11": {
  2254. "type": "package",
  2255. "serviceable": true,
  2256. "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  2257. "path": "system.xml.readerwriter/4.0.11",
  2258. "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512"
  2259. },
  2260. "System.Xml.XDocument/4.0.11": {
  2261. "type": "package",
  2262. "serviceable": true,
  2263. "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  2264. "path": "system.xml.xdocument/4.0.11",
  2265. "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512"
  2266. },
  2267. "System.Xml.XmlDocument/4.0.1": {
  2268. "type": "package",
  2269. "serviceable": true,
  2270. "sha512": "sha512-2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  2271. "path": "system.xml.xmldocument/4.0.1",
  2272. "hashPath": "system.xml.xmldocument.4.0.1.nupkg.sha512"
  2273. },
  2274. "System.Xml.XPath/4.0.1": {
  2275. "type": "package",
  2276. "serviceable": true,
  2277. "sha512": "sha512-UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  2278. "path": "system.xml.xpath/4.0.1",
  2279. "hashPath": "system.xml.xpath.4.0.1.nupkg.sha512"
  2280. },
  2281. "System.Xml.XPath.XmlDocument/4.0.1": {
  2282. "type": "package",
  2283. "serviceable": true,
  2284. "sha512": "sha512-Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  2285. "path": "system.xml.xpath.xmldocument/4.0.1",
  2286. "hashPath": "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512"
  2287. }
  2288. }
  2289. }

Powered by TurnKey Linux.