BookStore.designer.deps.json 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v5.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v5.0": {
  9. "Microsoft.CSharp/4.5.0": {},
  10. "Microsoft.Data.SqlClient/2.0.1": {
  11. "dependencies": {
  12. "Microsoft.Data.SqlClient.SNI.runtime": "2.0.1",
  13. "Microsoft.Identity.Client": "4.14.0",
  14. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  15. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.6.0",
  16. "Microsoft.Win32.Registry": "4.7.0",
  17. "System.Configuration.ConfigurationManager": "6.0.0",
  18. "System.Diagnostics.DiagnosticSource": "5.0.1",
  19. "System.Runtime.Caching": "4.7.0",
  20. "System.Security.Principal.Windows": "5.0.0",
  21. "System.Text.Encoding.CodePages": "4.7.0"
  22. },
  23. "runtime": {
  24. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  25. "assemblyVersion": "2.0.20168.4",
  26. "fileVersion": "2.0.20168.4"
  27. }
  28. },
  29. "runtimeTargets": {
  30. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  31. "rid": "unix",
  32. "assetType": "runtime",
  33. "assemblyVersion": "2.0.20168.4",
  34. "fileVersion": "2.0.20168.4"
  35. },
  36. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  37. "rid": "win",
  38. "assetType": "runtime",
  39. "assemblyVersion": "2.0.20168.4",
  40. "fileVersion": "2.0.20168.4"
  41. }
  42. }
  43. },
  44. "Microsoft.Data.SqlClient.SNI.runtime/2.0.1": {
  45. "runtimeTargets": {
  46. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  47. "rid": "win-arm",
  48. "assetType": "native",
  49. "fileVersion": "2.0.1.0"
  50. },
  51. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb": {
  52. "rid": "win-arm",
  53. "assetType": "native",
  54. "fileVersion": "0.0.0.0"
  55. },
  56. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  57. "rid": "win-arm64",
  58. "assetType": "native",
  59. "fileVersion": "2.0.1.0"
  60. },
  61. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb": {
  62. "rid": "win-arm64",
  63. "assetType": "native",
  64. "fileVersion": "0.0.0.0"
  65. },
  66. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  67. "rid": "win-x64",
  68. "assetType": "native",
  69. "fileVersion": "2.0.1.0"
  70. },
  71. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb": {
  72. "rid": "win-x64",
  73. "assetType": "native",
  74. "fileVersion": "0.0.0.0"
  75. },
  76. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  77. "rid": "win-x86",
  78. "assetType": "native",
  79. "fileVersion": "2.0.1.0"
  80. },
  81. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb": {
  82. "rid": "win-x86",
  83. "assetType": "native",
  84. "fileVersion": "0.0.0.0"
  85. }
  86. }
  87. },
  88. "Microsoft.EntityFrameworkCore/5.0.9": {
  89. "dependencies": {
  90. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.9",
  91. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.9",
  92. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  93. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  94. "Microsoft.Extensions.Logging": "5.0.0",
  95. "System.Collections.Immutable": "5.0.0",
  96. "System.ComponentModel.Annotations": "5.0.0",
  97. "System.Diagnostics.DiagnosticSource": "5.0.1"
  98. },
  99. "runtime": {
  100. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  101. "assemblyVersion": "5.0.9.0",
  102. "fileVersion": "5.0.921.36501"
  103. }
  104. }
  105. },
  106. "Microsoft.EntityFrameworkCore.Abstractions/5.0.9": {
  107. "runtime": {
  108. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  109. "assemblyVersion": "5.0.9.0",
  110. "fileVersion": "5.0.921.36501"
  111. }
  112. }
  113. },
  114. "Microsoft.EntityFrameworkCore.Analyzers/5.0.9": {},
  115. "Microsoft.EntityFrameworkCore.Relational/5.0.9": {
  116. "dependencies": {
  117. "Microsoft.EntityFrameworkCore": "5.0.9",
  118. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  119. },
  120. "runtime": {
  121. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  122. "assemblyVersion": "5.0.9.0",
  123. "fileVersion": "5.0.921.36501"
  124. }
  125. }
  126. },
  127. "Microsoft.EntityFrameworkCore.SqlServer/5.0.9": {
  128. "dependencies": {
  129. "Microsoft.Data.SqlClient": "2.0.1",
  130. "Microsoft.EntityFrameworkCore.Relational": "5.0.9"
  131. },
  132. "runtime": {
  133. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  134. "assemblyVersion": "5.0.9.0",
  135. "fileVersion": "5.0.921.36501"
  136. }
  137. }
  138. },
  139. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  140. "dependencies": {
  141. "Microsoft.Extensions.Primitives": "5.0.0"
  142. },
  143. "runtime": {
  144. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  145. "assemblyVersion": "5.0.0.0",
  146. "fileVersion": "5.0.20.51904"
  147. }
  148. }
  149. },
  150. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  151. "dependencies": {
  152. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  153. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  154. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  155. "Microsoft.Extensions.Options": "5.0.0",
  156. "Microsoft.Extensions.Primitives": "5.0.0"
  157. },
  158. "runtime": {
  159. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  160. "assemblyVersion": "5.0.0.0",
  161. "fileVersion": "5.0.20.51904"
  162. }
  163. }
  164. },
  165. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  166. "dependencies": {
  167. "Microsoft.Extensions.Primitives": "5.0.0"
  168. },
  169. "runtime": {
  170. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  171. "assemblyVersion": "5.0.0.0",
  172. "fileVersion": "5.0.20.51904"
  173. }
  174. }
  175. },
  176. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  177. "dependencies": {
  178. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  179. },
  180. "runtime": {
  181. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  182. "assemblyVersion": "5.0.0.1",
  183. "fileVersion": "5.0.821.31504"
  184. }
  185. }
  186. },
  187. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  188. "runtime": {
  189. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  190. "assemblyVersion": "5.0.0.0",
  191. "fileVersion": "5.0.20.51904"
  192. }
  193. }
  194. },
  195. "Microsoft.Extensions.Logging/5.0.0": {
  196. "dependencies": {
  197. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  198. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  199. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  200. "Microsoft.Extensions.Options": "5.0.0"
  201. },
  202. "runtime": {
  203. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  204. "assemblyVersion": "5.0.0.0",
  205. "fileVersion": "5.0.20.51904"
  206. }
  207. }
  208. },
  209. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  210. "runtime": {
  211. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  212. "assemblyVersion": "5.0.0.0",
  213. "fileVersion": "5.0.20.51904"
  214. }
  215. }
  216. },
  217. "Microsoft.Extensions.Options/5.0.0": {
  218. "dependencies": {
  219. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  220. "Microsoft.Extensions.Primitives": "5.0.0"
  221. },
  222. "runtime": {
  223. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  224. "assemblyVersion": "5.0.0.0",
  225. "fileVersion": "5.0.20.51904"
  226. }
  227. }
  228. },
  229. "Microsoft.Extensions.Primitives/5.0.0": {
  230. "runtime": {
  231. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  232. "assemblyVersion": "5.0.0.0",
  233. "fileVersion": "5.0.20.51904"
  234. }
  235. }
  236. },
  237. "Microsoft.Identity.Client/4.14.0": {
  238. "dependencies": {
  239. "Microsoft.CSharp": "4.5.0",
  240. "System.ComponentModel.TypeConverter": "4.3.0",
  241. "System.Net.NameResolution": "4.3.0",
  242. "System.Private.Uri": "4.3.2",
  243. "System.Runtime.Serialization.Formatters": "4.3.0",
  244. "System.Runtime.Serialization.Json": "4.3.0",
  245. "System.Runtime.Serialization.Primitives": "4.3.0",
  246. "System.Security.SecureString": "4.3.0",
  247. "System.Xml.XDocument": "4.3.0"
  248. },
  249. "runtime": {
  250. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  251. "assemblyVersion": "4.14.0.0",
  252. "fileVersion": "4.14.0.0"
  253. }
  254. }
  255. },
  256. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  257. "dependencies": {
  258. "Microsoft.IdentityModel.Tokens": "5.6.0",
  259. "Newtonsoft.Json": "10.0.1"
  260. },
  261. "runtime": {
  262. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  263. "assemblyVersion": "5.6.0.0",
  264. "fileVersion": "5.6.0.61018"
  265. }
  266. }
  267. },
  268. "Microsoft.IdentityModel.Logging/5.6.0": {
  269. "runtime": {
  270. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  271. "assemblyVersion": "5.6.0.0",
  272. "fileVersion": "5.6.0.61018"
  273. }
  274. }
  275. },
  276. "Microsoft.IdentityModel.Protocols/5.6.0": {
  277. "dependencies": {
  278. "Microsoft.IdentityModel.Logging": "5.6.0",
  279. "Microsoft.IdentityModel.Tokens": "5.6.0"
  280. },
  281. "runtime": {
  282. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  283. "assemblyVersion": "5.6.0.0",
  284. "fileVersion": "5.6.0.61018"
  285. }
  286. }
  287. },
  288. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.6.0": {
  289. "dependencies": {
  290. "Microsoft.IdentityModel.Protocols": "5.6.0",
  291. "Newtonsoft.Json": "10.0.1",
  292. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  293. },
  294. "runtime": {
  295. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  296. "assemblyVersion": "5.6.0.0",
  297. "fileVersion": "5.6.0.61018"
  298. }
  299. }
  300. },
  301. "Microsoft.IdentityModel.Tokens/5.6.0": {
  302. "dependencies": {
  303. "Microsoft.IdentityModel.Logging": "5.6.0",
  304. "Newtonsoft.Json": "10.0.1",
  305. "System.Security.Cryptography.Cng": "4.5.0"
  306. },
  307. "runtime": {
  308. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  309. "assemblyVersion": "5.6.0.0",
  310. "fileVersion": "5.6.0.61018"
  311. }
  312. }
  313. },
  314. "Microsoft.NETCore.Platforms/3.1.0": {},
  315. "Microsoft.NETCore.Targets/1.1.3": {},
  316. "Microsoft.Win32.Registry/4.7.0": {
  317. "dependencies": {
  318. "System.Security.AccessControl": "6.0.0",
  319. "System.Security.Principal.Windows": "5.0.0"
  320. },
  321. "runtime": {
  322. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  323. "assemblyVersion": "4.1.3.0",
  324. "fileVersion": "4.700.19.56404"
  325. }
  326. },
  327. "runtimeTargets": {
  328. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  329. "rid": "unix",
  330. "assetType": "runtime",
  331. "assemblyVersion": "4.1.3.0",
  332. "fileVersion": "4.700.19.56404"
  333. },
  334. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  335. "rid": "win",
  336. "assetType": "runtime",
  337. "assemblyVersion": "4.1.3.0",
  338. "fileVersion": "4.700.19.56404"
  339. }
  340. }
  341. },
  342. "Microsoft.Win32.SystemEvents/6.0.0": {
  343. "runtime": {
  344. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  345. "assemblyVersion": "6.0.0.0",
  346. "fileVersion": "6.0.21.52210"
  347. }
  348. },
  349. "runtimeTargets": {
  350. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  351. "rid": "win",
  352. "assetType": "runtime",
  353. "assemblyVersion": "6.0.0.0",
  354. "fileVersion": "6.0.21.52210"
  355. }
  356. }
  357. },
  358. "Newtonsoft.Json/10.0.1": {
  359. "dependencies": {
  360. "Microsoft.CSharp": "4.5.0",
  361. "System.Collections": "4.3.0",
  362. "System.ComponentModel.TypeConverter": "4.3.0",
  363. "System.Diagnostics.Debug": "4.3.0",
  364. "System.Dynamic.Runtime": "4.3.0",
  365. "System.Globalization": "4.3.0",
  366. "System.IO": "4.3.0",
  367. "System.Linq": "4.3.0",
  368. "System.Linq.Expressions": "4.3.0",
  369. "System.ObjectModel": "4.3.0",
  370. "System.Reflection": "4.3.0",
  371. "System.Reflection.Extensions": "4.3.0",
  372. "System.Resources.ResourceManager": "4.3.0",
  373. "System.Runtime": "4.3.0",
  374. "System.Runtime.Extensions": "4.3.0",
  375. "System.Runtime.Numerics": "4.3.0",
  376. "System.Runtime.Serialization.Formatters": "4.3.0",
  377. "System.Runtime.Serialization.Primitives": "4.3.0",
  378. "System.Text.Encoding": "4.3.0",
  379. "System.Text.Encoding.Extensions": "4.3.0",
  380. "System.Text.RegularExpressions": "4.3.0",
  381. "System.Threading": "4.3.0",
  382. "System.Threading.Tasks": "4.3.0",
  383. "System.Xml.ReaderWriter": "4.3.0",
  384. "System.Xml.XDocument": "4.3.0",
  385. "System.Xml.XmlDocument": "4.3.0"
  386. },
  387. "runtime": {
  388. "lib/netstandard1.3/Newtonsoft.Json.dll": {
  389. "assemblyVersion": "10.0.0.0",
  390. "fileVersion": "10.0.1.20720"
  391. }
  392. }
  393. },
  394. "runtime.native.System/4.3.0": {
  395. "dependencies": {
  396. "Microsoft.NETCore.Platforms": "3.1.0",
  397. "Microsoft.NETCore.Targets": "1.1.3"
  398. }
  399. },
  400. "System.Collections/4.3.0": {
  401. "dependencies": {
  402. "Microsoft.NETCore.Platforms": "3.1.0",
  403. "Microsoft.NETCore.Targets": "1.1.3",
  404. "System.Runtime": "4.3.0"
  405. }
  406. },
  407. "System.Collections.Concurrent/4.3.0": {
  408. "dependencies": {
  409. "System.Collections": "4.3.0",
  410. "System.Diagnostics.Debug": "4.3.0",
  411. "System.Diagnostics.Tracing": "4.3.0",
  412. "System.Globalization": "4.3.0",
  413. "System.Reflection": "4.3.0",
  414. "System.Resources.ResourceManager": "4.3.0",
  415. "System.Runtime": "4.3.0",
  416. "System.Runtime.Extensions": "4.3.0",
  417. "System.Threading": "4.3.0",
  418. "System.Threading.Tasks": "4.3.0"
  419. },
  420. "runtime": {
  421. "lib/netstandard1.3/System.Collections.Concurrent.dll": {
  422. "assemblyVersion": "4.0.13.0",
  423. "fileVersion": "4.6.24705.1"
  424. }
  425. }
  426. },
  427. "System.Collections.Immutable/5.0.0": {
  428. "runtime": {
  429. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  430. "assemblyVersion": "5.0.0.0",
  431. "fileVersion": "5.0.20.51904"
  432. }
  433. }
  434. },
  435. "System.Collections.NonGeneric/4.3.0": {
  436. "dependencies": {
  437. "System.Diagnostics.Debug": "4.3.0",
  438. "System.Globalization": "4.3.0",
  439. "System.Resources.ResourceManager": "4.3.0",
  440. "System.Runtime": "4.3.0",
  441. "System.Runtime.Extensions": "4.3.0",
  442. "System.Threading": "4.3.0"
  443. },
  444. "runtime": {
  445. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {
  446. "assemblyVersion": "4.0.2.0",
  447. "fileVersion": "4.6.24705.1"
  448. }
  449. }
  450. },
  451. "System.Collections.Specialized/4.3.0": {
  452. "dependencies": {
  453. "System.Collections.NonGeneric": "4.3.0",
  454. "System.Globalization": "4.3.0",
  455. "System.Globalization.Extensions": "4.3.0",
  456. "System.Resources.ResourceManager": "4.3.0",
  457. "System.Runtime": "4.3.0",
  458. "System.Runtime.Extensions": "4.3.0",
  459. "System.Threading": "4.3.0"
  460. },
  461. "runtime": {
  462. "lib/netstandard1.3/System.Collections.Specialized.dll": {
  463. "assemblyVersion": "4.0.2.0",
  464. "fileVersion": "4.6.24705.1"
  465. }
  466. }
  467. },
  468. "System.ComponentModel/4.3.0": {
  469. "dependencies": {
  470. "System.Runtime": "4.3.0"
  471. },
  472. "runtime": {
  473. "lib/netstandard1.3/System.ComponentModel.dll": {
  474. "assemblyVersion": "4.0.2.0",
  475. "fileVersion": "4.6.24705.1"
  476. }
  477. }
  478. },
  479. "System.ComponentModel.Annotations/5.0.0": {
  480. "runtime": {
  481. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  482. "assemblyVersion": "5.0.0.0",
  483. "fileVersion": "5.0.20.51904"
  484. }
  485. }
  486. },
  487. "System.ComponentModel.Primitives/4.3.0": {
  488. "dependencies": {
  489. "System.ComponentModel": "4.3.0",
  490. "System.Resources.ResourceManager": "4.3.0",
  491. "System.Runtime": "4.3.0"
  492. },
  493. "runtime": {
  494. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {
  495. "assemblyVersion": "4.1.1.0",
  496. "fileVersion": "4.6.24705.1"
  497. }
  498. }
  499. },
  500. "System.ComponentModel.TypeConverter/4.3.0": {
  501. "dependencies": {
  502. "System.Collections": "4.3.0",
  503. "System.Collections.NonGeneric": "4.3.0",
  504. "System.Collections.Specialized": "4.3.0",
  505. "System.ComponentModel": "4.3.0",
  506. "System.ComponentModel.Primitives": "4.3.0",
  507. "System.Globalization": "4.3.0",
  508. "System.Linq": "4.3.0",
  509. "System.Reflection": "4.3.0",
  510. "System.Reflection.Extensions": "4.3.0",
  511. "System.Reflection.Primitives": "4.3.0",
  512. "System.Reflection.TypeExtensions": "4.3.0",
  513. "System.Resources.ResourceManager": "4.3.0",
  514. "System.Runtime": "4.3.0",
  515. "System.Runtime.Extensions": "4.3.0",
  516. "System.Threading": "4.3.0"
  517. },
  518. "runtime": {
  519. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {
  520. "assemblyVersion": "4.1.1.0",
  521. "fileVersion": "4.6.24705.1"
  522. }
  523. }
  524. },
  525. "System.Configuration.ConfigurationManager/6.0.0": {
  526. "dependencies": {
  527. "System.Security.Cryptography.ProtectedData": "6.0.0",
  528. "System.Security.Permissions": "6.0.0"
  529. },
  530. "runtime": {
  531. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  532. "assemblyVersion": "6.0.0.0",
  533. "fileVersion": "6.0.21.52210"
  534. }
  535. }
  536. },
  537. "System.Diagnostics.Debug/4.3.0": {
  538. "dependencies": {
  539. "Microsoft.NETCore.Platforms": "3.1.0",
  540. "Microsoft.NETCore.Targets": "1.1.3",
  541. "System.Runtime": "4.3.0"
  542. }
  543. },
  544. "System.Diagnostics.DiagnosticSource/5.0.1": {
  545. "runtime": {
  546. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  547. "assemblyVersion": "5.0.0.0",
  548. "fileVersion": "5.0.220.61120"
  549. }
  550. }
  551. },
  552. "System.Diagnostics.Tools/4.3.0": {
  553. "dependencies": {
  554. "Microsoft.NETCore.Platforms": "3.1.0",
  555. "Microsoft.NETCore.Targets": "1.1.3",
  556. "System.Runtime": "4.3.0"
  557. }
  558. },
  559. "System.Diagnostics.Tracing/4.3.0": {
  560. "dependencies": {
  561. "Microsoft.NETCore.Platforms": "3.1.0",
  562. "Microsoft.NETCore.Targets": "1.1.3",
  563. "System.Runtime": "4.3.0"
  564. }
  565. },
  566. "System.Drawing.Common/6.0.0": {
  567. "dependencies": {
  568. "Microsoft.Win32.SystemEvents": "6.0.0"
  569. },
  570. "runtime": {
  571. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  572. "assemblyVersion": "6.0.0.0",
  573. "fileVersion": "6.0.21.52210"
  574. }
  575. },
  576. "runtimeTargets": {
  577. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  578. "rid": "unix",
  579. "assetType": "runtime",
  580. "assemblyVersion": "6.0.0.0",
  581. "fileVersion": "6.0.21.52210"
  582. },
  583. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  584. "rid": "win",
  585. "assetType": "runtime",
  586. "assemblyVersion": "6.0.0.0",
  587. "fileVersion": "6.0.21.52210"
  588. }
  589. }
  590. },
  591. "System.Dynamic.Runtime/4.3.0": {
  592. "dependencies": {
  593. "System.Collections": "4.3.0",
  594. "System.Diagnostics.Debug": "4.3.0",
  595. "System.Linq": "4.3.0",
  596. "System.Linq.Expressions": "4.3.0",
  597. "System.ObjectModel": "4.3.0",
  598. "System.Reflection": "4.3.0",
  599. "System.Reflection.Emit": "4.3.0",
  600. "System.Reflection.Emit.ILGeneration": "4.3.0",
  601. "System.Reflection.Primitives": "4.3.0",
  602. "System.Reflection.TypeExtensions": "4.3.0",
  603. "System.Resources.ResourceManager": "4.3.0",
  604. "System.Runtime": "4.3.0",
  605. "System.Runtime.Extensions": "4.3.0",
  606. "System.Threading": "4.3.0"
  607. },
  608. "runtime": {
  609. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {
  610. "assemblyVersion": "4.0.12.0",
  611. "fileVersion": "4.6.24705.1"
  612. }
  613. }
  614. },
  615. "System.Globalization/4.3.0": {
  616. "dependencies": {
  617. "Microsoft.NETCore.Platforms": "3.1.0",
  618. "Microsoft.NETCore.Targets": "1.1.3",
  619. "System.Runtime": "4.3.0"
  620. }
  621. },
  622. "System.Globalization.Extensions/4.3.0": {
  623. "dependencies": {
  624. "Microsoft.NETCore.Platforms": "3.1.0",
  625. "System.Globalization": "4.3.0",
  626. "System.Resources.ResourceManager": "4.3.0",
  627. "System.Runtime": "4.3.0",
  628. "System.Runtime.Extensions": "4.3.0",
  629. "System.Runtime.InteropServices": "4.3.0"
  630. },
  631. "runtimeTargets": {
  632. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  633. "rid": "unix",
  634. "assetType": "runtime",
  635. "assemblyVersion": "4.0.2.0",
  636. "fileVersion": "4.6.24705.1"
  637. },
  638. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  639. "rid": "win",
  640. "assetType": "runtime",
  641. "assemblyVersion": "4.0.2.0",
  642. "fileVersion": "4.6.24705.1"
  643. }
  644. }
  645. },
  646. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  647. "dependencies": {
  648. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  649. "Microsoft.IdentityModel.Tokens": "5.6.0",
  650. "Newtonsoft.Json": "10.0.1"
  651. },
  652. "runtime": {
  653. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  654. "assemblyVersion": "5.6.0.0",
  655. "fileVersion": "5.6.0.61018"
  656. }
  657. }
  658. },
  659. "System.IO/4.3.0": {
  660. "dependencies": {
  661. "Microsoft.NETCore.Platforms": "3.1.0",
  662. "Microsoft.NETCore.Targets": "1.1.3",
  663. "System.Runtime": "4.3.0",
  664. "System.Text.Encoding": "4.3.0",
  665. "System.Threading.Tasks": "4.3.0"
  666. }
  667. },
  668. "System.IO.FileSystem/4.3.0": {
  669. "dependencies": {
  670. "Microsoft.NETCore.Platforms": "3.1.0",
  671. "Microsoft.NETCore.Targets": "1.1.3",
  672. "System.IO": "4.3.0",
  673. "System.IO.FileSystem.Primitives": "4.3.0",
  674. "System.Runtime": "4.3.0",
  675. "System.Runtime.Handles": "4.3.0",
  676. "System.Text.Encoding": "4.3.0",
  677. "System.Threading.Tasks": "4.3.0"
  678. }
  679. },
  680. "System.IO.FileSystem.Primitives/4.3.0": {
  681. "dependencies": {
  682. "System.Runtime": "4.3.0"
  683. },
  684. "runtime": {
  685. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  686. "assemblyVersion": "4.0.2.0",
  687. "fileVersion": "4.6.24705.1"
  688. }
  689. }
  690. },
  691. "System.Linq/4.3.0": {
  692. "dependencies": {
  693. "System.Collections": "4.3.0",
  694. "System.Diagnostics.Debug": "4.3.0",
  695. "System.Resources.ResourceManager": "4.3.0",
  696. "System.Runtime": "4.3.0",
  697. "System.Runtime.Extensions": "4.3.0"
  698. },
  699. "runtime": {
  700. "lib/netstandard1.6/System.Linq.dll": {
  701. "assemblyVersion": "4.1.1.0",
  702. "fileVersion": "4.6.24705.1"
  703. }
  704. }
  705. },
  706. "System.Linq.Expressions/4.3.0": {
  707. "dependencies": {
  708. "System.Collections": "4.3.0",
  709. "System.Diagnostics.Debug": "4.3.0",
  710. "System.Globalization": "4.3.0",
  711. "System.IO": "4.3.0",
  712. "System.Linq": "4.3.0",
  713. "System.ObjectModel": "4.3.0",
  714. "System.Reflection": "4.3.0",
  715. "System.Reflection.Emit": "4.3.0",
  716. "System.Reflection.Emit.ILGeneration": "4.3.0",
  717. "System.Reflection.Emit.Lightweight": "4.3.0",
  718. "System.Reflection.Extensions": "4.3.0",
  719. "System.Reflection.Primitives": "4.3.0",
  720. "System.Reflection.TypeExtensions": "4.3.0",
  721. "System.Resources.ResourceManager": "4.3.0",
  722. "System.Runtime": "4.3.0",
  723. "System.Runtime.Extensions": "4.3.0",
  724. "System.Threading": "4.3.0"
  725. },
  726. "runtime": {
  727. "lib/netstandard1.6/System.Linq.Expressions.dll": {
  728. "assemblyVersion": "4.1.1.0",
  729. "fileVersion": "4.6.24705.1"
  730. }
  731. }
  732. },
  733. "System.Memory/4.5.4": {},
  734. "System.Net.NameResolution/4.3.0": {
  735. "dependencies": {
  736. "Microsoft.NETCore.Platforms": "3.1.0",
  737. "System.Collections": "4.3.0",
  738. "System.Diagnostics.Tracing": "4.3.0",
  739. "System.Globalization": "4.3.0",
  740. "System.Net.Primitives": "4.3.0",
  741. "System.Resources.ResourceManager": "4.3.0",
  742. "System.Runtime": "4.3.0",
  743. "System.Runtime.Extensions": "4.3.0",
  744. "System.Runtime.Handles": "4.3.0",
  745. "System.Runtime.InteropServices": "4.3.0",
  746. "System.Security.Principal.Windows": "5.0.0",
  747. "System.Threading": "4.3.0",
  748. "System.Threading.Tasks": "4.3.0",
  749. "runtime.native.System": "4.3.0"
  750. },
  751. "runtimeTargets": {
  752. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  753. "rid": "unix",
  754. "assetType": "runtime",
  755. "assemblyVersion": "4.0.1.0",
  756. "fileVersion": "4.6.24705.1"
  757. },
  758. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  759. "rid": "win",
  760. "assetType": "runtime",
  761. "assemblyVersion": "4.0.1.0",
  762. "fileVersion": "4.6.24705.1"
  763. }
  764. }
  765. },
  766. "System.Net.Primitives/4.3.0": {
  767. "dependencies": {
  768. "Microsoft.NETCore.Platforms": "3.1.0",
  769. "Microsoft.NETCore.Targets": "1.1.3",
  770. "System.Runtime": "4.3.0",
  771. "System.Runtime.Handles": "4.3.0"
  772. }
  773. },
  774. "System.ObjectModel/4.3.0": {
  775. "dependencies": {
  776. "System.Collections": "4.3.0",
  777. "System.Diagnostics.Debug": "4.3.0",
  778. "System.Resources.ResourceManager": "4.3.0",
  779. "System.Runtime": "4.3.0",
  780. "System.Threading": "4.3.0"
  781. },
  782. "runtime": {
  783. "lib/netstandard1.3/System.ObjectModel.dll": {
  784. "assemblyVersion": "4.0.13.0",
  785. "fileVersion": "4.6.24705.1"
  786. }
  787. }
  788. },
  789. "System.Private.DataContractSerialization/4.3.0": {
  790. "dependencies": {
  791. "System.Collections": "4.3.0",
  792. "System.Collections.Concurrent": "4.3.0",
  793. "System.Diagnostics.Debug": "4.3.0",
  794. "System.Globalization": "4.3.0",
  795. "System.IO": "4.3.0",
  796. "System.Linq": "4.3.0",
  797. "System.Reflection": "4.3.0",
  798. "System.Reflection.Emit.ILGeneration": "4.3.0",
  799. "System.Reflection.Emit.Lightweight": "4.3.0",
  800. "System.Reflection.Extensions": "4.3.0",
  801. "System.Reflection.Primitives": "4.3.0",
  802. "System.Reflection.TypeExtensions": "4.3.0",
  803. "System.Resources.ResourceManager": "4.3.0",
  804. "System.Runtime": "4.3.0",
  805. "System.Runtime.Extensions": "4.3.0",
  806. "System.Runtime.Serialization.Primitives": "4.3.0",
  807. "System.Text.Encoding": "4.3.0",
  808. "System.Text.Encoding.Extensions": "4.3.0",
  809. "System.Text.RegularExpressions": "4.3.0",
  810. "System.Threading": "4.3.0",
  811. "System.Threading.Tasks": "4.3.0",
  812. "System.Xml.ReaderWriter": "4.3.0",
  813. "System.Xml.XDocument": "4.3.0",
  814. "System.Xml.XmlDocument": "4.3.0",
  815. "System.Xml.XmlSerializer": "4.3.0"
  816. },
  817. "runtime": {
  818. "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {
  819. "assemblyVersion": "4.1.2.0",
  820. "fileVersion": "4.6.24705.1"
  821. }
  822. }
  823. },
  824. "System.Private.Uri/4.3.2": {
  825. "dependencies": {
  826. "Microsoft.NETCore.Platforms": "3.1.0",
  827. "Microsoft.NETCore.Targets": "1.1.3"
  828. }
  829. },
  830. "System.Reflection/4.3.0": {
  831. "dependencies": {
  832. "Microsoft.NETCore.Platforms": "3.1.0",
  833. "Microsoft.NETCore.Targets": "1.1.3",
  834. "System.IO": "4.3.0",
  835. "System.Reflection.Primitives": "4.3.0",
  836. "System.Runtime": "4.3.0"
  837. }
  838. },
  839. "System.Reflection.Emit/4.3.0": {
  840. "dependencies": {
  841. "System.IO": "4.3.0",
  842. "System.Reflection": "4.3.0",
  843. "System.Reflection.Emit.ILGeneration": "4.3.0",
  844. "System.Reflection.Primitives": "4.3.0",
  845. "System.Runtime": "4.3.0"
  846. },
  847. "runtime": {
  848. "lib/netstandard1.3/System.Reflection.Emit.dll": {
  849. "assemblyVersion": "4.0.2.0",
  850. "fileVersion": "4.6.24705.1"
  851. }
  852. }
  853. },
  854. "System.Reflection.Emit.ILGeneration/4.3.0": {
  855. "dependencies": {
  856. "System.Reflection": "4.3.0",
  857. "System.Reflection.Primitives": "4.3.0",
  858. "System.Runtime": "4.3.0"
  859. },
  860. "runtime": {
  861. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {
  862. "assemblyVersion": "4.0.2.0",
  863. "fileVersion": "4.6.24705.1"
  864. }
  865. }
  866. },
  867. "System.Reflection.Emit.Lightweight/4.3.0": {
  868. "dependencies": {
  869. "System.Reflection": "4.3.0",
  870. "System.Reflection.Emit.ILGeneration": "4.3.0",
  871. "System.Reflection.Primitives": "4.3.0",
  872. "System.Runtime": "4.3.0"
  873. },
  874. "runtime": {
  875. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {
  876. "assemblyVersion": "4.0.2.0",
  877. "fileVersion": "4.6.24705.1"
  878. }
  879. }
  880. },
  881. "System.Reflection.Extensions/4.3.0": {
  882. "dependencies": {
  883. "Microsoft.NETCore.Platforms": "3.1.0",
  884. "Microsoft.NETCore.Targets": "1.1.3",
  885. "System.Reflection": "4.3.0",
  886. "System.Runtime": "4.3.0"
  887. }
  888. },
  889. "System.Reflection.Primitives/4.3.0": {
  890. "dependencies": {
  891. "Microsoft.NETCore.Platforms": "3.1.0",
  892. "Microsoft.NETCore.Targets": "1.1.3",
  893. "System.Runtime": "4.3.0"
  894. }
  895. },
  896. "System.Reflection.TypeExtensions/4.3.0": {
  897. "dependencies": {
  898. "System.Reflection": "4.3.0",
  899. "System.Runtime": "4.3.0"
  900. },
  901. "runtime": {
  902. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  903. "assemblyVersion": "4.1.1.0",
  904. "fileVersion": "4.6.24705.1"
  905. }
  906. }
  907. },
  908. "System.Resources.ResourceManager/4.3.0": {
  909. "dependencies": {
  910. "Microsoft.NETCore.Platforms": "3.1.0",
  911. "Microsoft.NETCore.Targets": "1.1.3",
  912. "System.Globalization": "4.3.0",
  913. "System.Reflection": "4.3.0",
  914. "System.Runtime": "4.3.0"
  915. }
  916. },
  917. "System.Runtime/4.3.0": {
  918. "dependencies": {
  919. "Microsoft.NETCore.Platforms": "3.1.0",
  920. "Microsoft.NETCore.Targets": "1.1.3"
  921. }
  922. },
  923. "System.Runtime.Caching/4.7.0": {
  924. "dependencies": {
  925. "System.Configuration.ConfigurationManager": "6.0.0"
  926. },
  927. "runtime": {
  928. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  929. "assemblyVersion": "4.0.1.0",
  930. "fileVersion": "4.700.19.56404"
  931. }
  932. },
  933. "runtimeTargets": {
  934. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  935. "rid": "win",
  936. "assetType": "runtime",
  937. "assemblyVersion": "4.0.1.0",
  938. "fileVersion": "4.700.19.56404"
  939. }
  940. }
  941. },
  942. "System.Runtime.Extensions/4.3.0": {
  943. "dependencies": {
  944. "Microsoft.NETCore.Platforms": "3.1.0",
  945. "Microsoft.NETCore.Targets": "1.1.3",
  946. "System.Runtime": "4.3.0"
  947. }
  948. },
  949. "System.Runtime.Handles/4.3.0": {
  950. "dependencies": {
  951. "Microsoft.NETCore.Platforms": "3.1.0",
  952. "Microsoft.NETCore.Targets": "1.1.3",
  953. "System.Runtime": "4.3.0"
  954. }
  955. },
  956. "System.Runtime.InteropServices/4.3.0": {
  957. "dependencies": {
  958. "Microsoft.NETCore.Platforms": "3.1.0",
  959. "Microsoft.NETCore.Targets": "1.1.3",
  960. "System.Reflection": "4.3.0",
  961. "System.Reflection.Primitives": "4.3.0",
  962. "System.Runtime": "4.3.0",
  963. "System.Runtime.Handles": "4.3.0"
  964. }
  965. },
  966. "System.Runtime.Numerics/4.3.0": {
  967. "dependencies": {
  968. "System.Globalization": "4.3.0",
  969. "System.Resources.ResourceManager": "4.3.0",
  970. "System.Runtime": "4.3.0",
  971. "System.Runtime.Extensions": "4.3.0"
  972. },
  973. "runtime": {
  974. "lib/netstandard1.3/System.Runtime.Numerics.dll": {
  975. "assemblyVersion": "4.0.2.0",
  976. "fileVersion": "4.6.24705.1"
  977. }
  978. }
  979. },
  980. "System.Runtime.Serialization.Formatters/4.3.0": {
  981. "dependencies": {
  982. "System.Collections": "4.3.0",
  983. "System.Reflection": "4.3.0",
  984. "System.Resources.ResourceManager": "4.3.0",
  985. "System.Runtime": "4.3.0",
  986. "System.Runtime.Serialization.Primitives": "4.3.0"
  987. },
  988. "runtime": {
  989. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {
  990. "assemblyVersion": "4.0.1.0",
  991. "fileVersion": "4.6.24705.1"
  992. }
  993. }
  994. },
  995. "System.Runtime.Serialization.Json/4.3.0": {
  996. "dependencies": {
  997. "System.IO": "4.3.0",
  998. "System.Private.DataContractSerialization": "4.3.0",
  999. "System.Runtime": "4.3.0"
  1000. },
  1001. "runtime": {
  1002. "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {
  1003. "assemblyVersion": "4.0.3.0",
  1004. "fileVersion": "4.6.24705.1"
  1005. }
  1006. }
  1007. },
  1008. "System.Runtime.Serialization.Primitives/4.3.0": {
  1009. "dependencies": {
  1010. "System.Resources.ResourceManager": "4.3.0",
  1011. "System.Runtime": "4.3.0"
  1012. },
  1013. "runtime": {
  1014. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {
  1015. "assemblyVersion": "4.1.2.0",
  1016. "fileVersion": "4.6.24705.1"
  1017. }
  1018. }
  1019. },
  1020. "System.Security.AccessControl/6.0.0": {
  1021. "dependencies": {
  1022. "System.Security.Principal.Windows": "5.0.0"
  1023. },
  1024. "runtime": {
  1025. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  1026. "assemblyVersion": "6.0.0.0",
  1027. "fileVersion": "6.0.21.52210"
  1028. }
  1029. },
  1030. "runtimeTargets": {
  1031. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  1032. "rid": "win",
  1033. "assetType": "runtime",
  1034. "assemblyVersion": "6.0.0.0",
  1035. "fileVersion": "6.0.21.52210"
  1036. }
  1037. }
  1038. },
  1039. "System.Security.Cryptography.Cng/4.5.0": {
  1040. "runtime": {
  1041. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1042. "assemblyVersion": "4.3.1.0",
  1043. "fileVersion": "4.6.26515.6"
  1044. }
  1045. },
  1046. "runtimeTargets": {
  1047. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  1048. "rid": "win",
  1049. "assetType": "runtime",
  1050. "assemblyVersion": "4.3.1.0",
  1051. "fileVersion": "4.6.26515.6"
  1052. }
  1053. }
  1054. },
  1055. "System.Security.Cryptography.Primitives/4.3.0": {
  1056. "dependencies": {
  1057. "System.Diagnostics.Debug": "4.3.0",
  1058. "System.Globalization": "4.3.0",
  1059. "System.IO": "4.3.0",
  1060. "System.Resources.ResourceManager": "4.3.0",
  1061. "System.Runtime": "4.3.0",
  1062. "System.Threading": "4.3.0",
  1063. "System.Threading.Tasks": "4.3.0"
  1064. },
  1065. "runtime": {
  1066. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {
  1067. "assemblyVersion": "4.0.1.0",
  1068. "fileVersion": "4.6.24705.1"
  1069. }
  1070. }
  1071. },
  1072. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1073. "dependencies": {
  1074. "System.Memory": "4.5.4"
  1075. },
  1076. "runtime": {
  1077. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1078. "assemblyVersion": "6.0.0.0",
  1079. "fileVersion": "6.0.21.52210"
  1080. }
  1081. },
  1082. "runtimeTargets": {
  1083. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1084. "rid": "win",
  1085. "assetType": "runtime",
  1086. "assemblyVersion": "6.0.0.0",
  1087. "fileVersion": "6.0.21.52210"
  1088. }
  1089. }
  1090. },
  1091. "System.Security.Permissions/6.0.0": {
  1092. "dependencies": {
  1093. "System.Security.AccessControl": "6.0.0",
  1094. "System.Windows.Extensions": "6.0.0"
  1095. },
  1096. "runtime": {
  1097. "lib/net5.0/System.Security.Permissions.dll": {
  1098. "assemblyVersion": "6.0.0.0",
  1099. "fileVersion": "6.0.21.52210"
  1100. }
  1101. }
  1102. },
  1103. "System.Security.Principal.Windows/5.0.0": {
  1104. "runtime": {
  1105. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  1106. "assemblyVersion": "5.0.0.0",
  1107. "fileVersion": "5.0.20.51904"
  1108. }
  1109. },
  1110. "runtimeTargets": {
  1111. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1112. "rid": "unix",
  1113. "assetType": "runtime",
  1114. "assemblyVersion": "5.0.0.0",
  1115. "fileVersion": "5.0.20.51904"
  1116. },
  1117. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  1118. "rid": "win",
  1119. "assetType": "runtime",
  1120. "assemblyVersion": "5.0.0.0",
  1121. "fileVersion": "5.0.20.51904"
  1122. }
  1123. }
  1124. },
  1125. "System.Security.SecureString/4.3.0": {
  1126. "dependencies": {
  1127. "Microsoft.NETCore.Platforms": "3.1.0",
  1128. "System.Resources.ResourceManager": "4.3.0",
  1129. "System.Runtime": "4.3.0",
  1130. "System.Runtime.Handles": "4.3.0",
  1131. "System.Runtime.InteropServices": "4.3.0",
  1132. "System.Security.Cryptography.Primitives": "4.3.0",
  1133. "System.Text.Encoding": "4.3.0",
  1134. "System.Threading": "4.3.0"
  1135. },
  1136. "runtimeTargets": {
  1137. "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll": {
  1138. "rid": "unix",
  1139. "assetType": "runtime",
  1140. "assemblyVersion": "4.0.1.0",
  1141. "fileVersion": "4.6.24705.1"
  1142. },
  1143. "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll": {
  1144. "rid": "win",
  1145. "assetType": "runtime",
  1146. "assemblyVersion": "4.0.1.0",
  1147. "fileVersion": "4.6.24705.1"
  1148. }
  1149. }
  1150. },
  1151. "System.Text.Encoding/4.3.0": {
  1152. "dependencies": {
  1153. "Microsoft.NETCore.Platforms": "3.1.0",
  1154. "Microsoft.NETCore.Targets": "1.1.3",
  1155. "System.Runtime": "4.3.0"
  1156. }
  1157. },
  1158. "System.Text.Encoding.CodePages/4.7.0": {
  1159. "dependencies": {
  1160. "Microsoft.NETCore.Platforms": "3.1.0"
  1161. },
  1162. "runtime": {
  1163. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  1164. "assemblyVersion": "4.1.3.0",
  1165. "fileVersion": "4.700.19.56404"
  1166. }
  1167. },
  1168. "runtimeTargets": {
  1169. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  1170. "rid": "win",
  1171. "assetType": "runtime",
  1172. "assemblyVersion": "4.1.3.0",
  1173. "fileVersion": "4.700.19.56404"
  1174. }
  1175. }
  1176. },
  1177. "System.Text.Encoding.Extensions/4.3.0": {
  1178. "dependencies": {
  1179. "Microsoft.NETCore.Platforms": "3.1.0",
  1180. "Microsoft.NETCore.Targets": "1.1.3",
  1181. "System.Runtime": "4.3.0",
  1182. "System.Text.Encoding": "4.3.0"
  1183. }
  1184. },
  1185. "System.Text.RegularExpressions/4.3.0": {
  1186. "dependencies": {
  1187. "System.Runtime": "4.3.0"
  1188. },
  1189. "runtime": {
  1190. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {
  1191. "assemblyVersion": "4.1.1.0",
  1192. "fileVersion": "4.6.24705.1"
  1193. }
  1194. }
  1195. },
  1196. "System.Threading/4.3.0": {
  1197. "dependencies": {
  1198. "System.Runtime": "4.3.0",
  1199. "System.Threading.Tasks": "4.3.0"
  1200. },
  1201. "runtime": {
  1202. "lib/netstandard1.3/System.Threading.dll": {
  1203. "assemblyVersion": "4.0.12.0",
  1204. "fileVersion": "4.6.24705.1"
  1205. }
  1206. }
  1207. },
  1208. "System.Threading.Tasks/4.3.0": {
  1209. "dependencies": {
  1210. "Microsoft.NETCore.Platforms": "3.1.0",
  1211. "Microsoft.NETCore.Targets": "1.1.3",
  1212. "System.Runtime": "4.3.0"
  1213. }
  1214. },
  1215. "System.Threading.Tasks.Extensions/4.3.0": {
  1216. "dependencies": {
  1217. "System.Collections": "4.3.0",
  1218. "System.Runtime": "4.3.0",
  1219. "System.Threading.Tasks": "4.3.0"
  1220. },
  1221. "runtime": {
  1222. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {
  1223. "assemblyVersion": "4.1.0.0",
  1224. "fileVersion": "4.6.24705.1"
  1225. }
  1226. }
  1227. },
  1228. "System.Windows.Extensions/6.0.0": {
  1229. "dependencies": {
  1230. "System.Drawing.Common": "6.0.0"
  1231. },
  1232. "runtime": {
  1233. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  1234. "assemblyVersion": "6.0.0.0",
  1235. "fileVersion": "6.0.21.52210"
  1236. }
  1237. },
  1238. "runtimeTargets": {
  1239. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  1240. "rid": "win",
  1241. "assetType": "runtime",
  1242. "assemblyVersion": "6.0.0.0",
  1243. "fileVersion": "6.0.21.52210"
  1244. }
  1245. }
  1246. },
  1247. "System.Xml.ReaderWriter/4.3.0": {
  1248. "dependencies": {
  1249. "System.Collections": "4.3.0",
  1250. "System.Diagnostics.Debug": "4.3.0",
  1251. "System.Globalization": "4.3.0",
  1252. "System.IO": "4.3.0",
  1253. "System.IO.FileSystem": "4.3.0",
  1254. "System.IO.FileSystem.Primitives": "4.3.0",
  1255. "System.Resources.ResourceManager": "4.3.0",
  1256. "System.Runtime": "4.3.0",
  1257. "System.Runtime.Extensions": "4.3.0",
  1258. "System.Runtime.InteropServices": "4.3.0",
  1259. "System.Text.Encoding": "4.3.0",
  1260. "System.Text.Encoding.Extensions": "4.3.0",
  1261. "System.Text.RegularExpressions": "4.3.0",
  1262. "System.Threading.Tasks": "4.3.0",
  1263. "System.Threading.Tasks.Extensions": "4.3.0"
  1264. },
  1265. "runtime": {
  1266. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {
  1267. "assemblyVersion": "4.1.0.0",
  1268. "fileVersion": "4.6.24705.1"
  1269. }
  1270. }
  1271. },
  1272. "System.Xml.XDocument/4.3.0": {
  1273. "dependencies": {
  1274. "System.Collections": "4.3.0",
  1275. "System.Diagnostics.Debug": "4.3.0",
  1276. "System.Diagnostics.Tools": "4.3.0",
  1277. "System.Globalization": "4.3.0",
  1278. "System.IO": "4.3.0",
  1279. "System.Reflection": "4.3.0",
  1280. "System.Resources.ResourceManager": "4.3.0",
  1281. "System.Runtime": "4.3.0",
  1282. "System.Runtime.Extensions": "4.3.0",
  1283. "System.Text.Encoding": "4.3.0",
  1284. "System.Threading": "4.3.0",
  1285. "System.Xml.ReaderWriter": "4.3.0"
  1286. },
  1287. "runtime": {
  1288. "lib/netstandard1.3/System.Xml.XDocument.dll": {
  1289. "assemblyVersion": "4.0.12.0",
  1290. "fileVersion": "4.6.24705.1"
  1291. }
  1292. }
  1293. },
  1294. "System.Xml.XmlDocument/4.3.0": {
  1295. "dependencies": {
  1296. "System.Collections": "4.3.0",
  1297. "System.Diagnostics.Debug": "4.3.0",
  1298. "System.Globalization": "4.3.0",
  1299. "System.IO": "4.3.0",
  1300. "System.Resources.ResourceManager": "4.3.0",
  1301. "System.Runtime": "4.3.0",
  1302. "System.Runtime.Extensions": "4.3.0",
  1303. "System.Text.Encoding": "4.3.0",
  1304. "System.Threading": "4.3.0",
  1305. "System.Xml.ReaderWriter": "4.3.0"
  1306. },
  1307. "runtime": {
  1308. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {
  1309. "assemblyVersion": "4.0.2.0",
  1310. "fileVersion": "4.6.24705.1"
  1311. }
  1312. }
  1313. },
  1314. "System.Xml.XmlSerializer/4.3.0": {
  1315. "dependencies": {
  1316. "System.Collections": "4.3.0",
  1317. "System.Globalization": "4.3.0",
  1318. "System.IO": "4.3.0",
  1319. "System.Linq": "4.3.0",
  1320. "System.Reflection": "4.3.0",
  1321. "System.Reflection.Emit": "4.3.0",
  1322. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1323. "System.Reflection.Extensions": "4.3.0",
  1324. "System.Reflection.Primitives": "4.3.0",
  1325. "System.Reflection.TypeExtensions": "4.3.0",
  1326. "System.Resources.ResourceManager": "4.3.0",
  1327. "System.Runtime": "4.3.0",
  1328. "System.Runtime.Extensions": "4.3.0",
  1329. "System.Text.RegularExpressions": "4.3.0",
  1330. "System.Threading": "4.3.0",
  1331. "System.Xml.ReaderWriter": "4.3.0",
  1332. "System.Xml.XmlDocument": "4.3.0"
  1333. },
  1334. "runtime": {
  1335. "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {
  1336. "assemblyVersion": "4.0.12.0",
  1337. "fileVersion": "4.6.24705.1"
  1338. }
  1339. }
  1340. }
  1341. }
  1342. },
  1343. "libraries": {
  1344. "Microsoft.CSharp/4.5.0": {
  1345. "type": "package",
  1346. "serviceable": true,
  1347. "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  1348. "path": "microsoft.csharp/4.5.0",
  1349. "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
  1350. },
  1351. "Microsoft.Data.SqlClient/2.0.1": {
  1352. "type": "package",
  1353. "serviceable": true,
  1354. "sha512": "sha512-cff+ug/XZnGmX6DFgLY92t7G9W3i8r23w5Qnuby41l9rS+X+f7Y51hV5glvIrmsu3tIcnxbR+Z4CQ2zGhksIJw==",
  1355. "path": "microsoft.data.sqlclient/2.0.1",
  1356. "hashPath": "microsoft.data.sqlclient.2.0.1.nupkg.sha512"
  1357. },
  1358. "Microsoft.Data.SqlClient.SNI.runtime/2.0.1": {
  1359. "type": "package",
  1360. "serviceable": true,
  1361. "sha512": "sha512-MalWSIMdwLZoNXxjmFmeRrFgaUXbEADkYNGm6HM33pculFv8gKt53s1Frs+kTfVPWMYjocd4gqwz92KrkcLfXA==",
  1362. "path": "microsoft.data.sqlclient.sni.runtime/2.0.1",
  1363. "hashPath": "microsoft.data.sqlclient.sni.runtime.2.0.1.nupkg.sha512"
  1364. },
  1365. "Microsoft.EntityFrameworkCore/5.0.9": {
  1366. "type": "package",
  1367. "serviceable": true,
  1368. "sha512": "sha512-mA+W/zpJZMp802xt2D+qBXrme4VFN+FlsrHdU6WG5HKDAnezClRksJhJicUR8XojnSPp9SgZKa1aIAasB5G67g==",
  1369. "path": "microsoft.entityframeworkcore/5.0.9",
  1370. "hashPath": "microsoft.entityframeworkcore.5.0.9.nupkg.sha512"
  1371. },
  1372. "Microsoft.EntityFrameworkCore.Abstractions/5.0.9": {
  1373. "type": "package",
  1374. "serviceable": true,
  1375. "sha512": "sha512-csbpDaXe9iQUkvDS3JZRAFfkgcRA7BlHE3u8feBLlYervmTAS1WIWPBZKMtH0a2GO5njwAABU3j+hZMCPYBrzQ==",
  1376. "path": "microsoft.entityframeworkcore.abstractions/5.0.9",
  1377. "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.9.nupkg.sha512"
  1378. },
  1379. "Microsoft.EntityFrameworkCore.Analyzers/5.0.9": {
  1380. "type": "package",
  1381. "serviceable": true,
  1382. "sha512": "sha512-eyuPLRFjcF7VWH8qy1uUuMrO02W15n9EXAXnYjCTWgH0SDIeZAa2XZXMZ9U3dvOPtvllMBy0obYA5SSbnpaNoQ==",
  1383. "path": "microsoft.entityframeworkcore.analyzers/5.0.9",
  1384. "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.9.nupkg.sha512"
  1385. },
  1386. "Microsoft.EntityFrameworkCore.Relational/5.0.9": {
  1387. "type": "package",
  1388. "serviceable": true,
  1389. "sha512": "sha512-rGXoju3HtnxtdYlH7/lOyVlKJ9fZSwORukVCN250Aub2gx9bEmfXlDHeM9Gw9bkeunLEx3OoqL6DAz9VW8YTJA==",
  1390. "path": "microsoft.entityframeworkcore.relational/5.0.9",
  1391. "hashPath": "microsoft.entityframeworkcore.relational.5.0.9.nupkg.sha512"
  1392. },
  1393. "Microsoft.EntityFrameworkCore.SqlServer/5.0.9": {
  1394. "type": "package",
  1395. "serviceable": true,
  1396. "sha512": "sha512-WGKYDApx75QRQ8LecGoPi5tvwHM8CvHz383U4c9zfW2Pjz+yUNUL4XAzLRlkg9QyE7USGk4VnAVNS0sTXK4qVQ==",
  1397. "path": "microsoft.entityframeworkcore.sqlserver/5.0.9",
  1398. "hashPath": "microsoft.entityframeworkcore.sqlserver.5.0.9.nupkg.sha512"
  1399. },
  1400. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  1401. "type": "package",
  1402. "serviceable": true,
  1403. "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  1404. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  1405. "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512"
  1406. },
  1407. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  1408. "type": "package",
  1409. "serviceable": true,
  1410. "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  1411. "path": "microsoft.extensions.caching.memory/5.0.0",
  1412. "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512"
  1413. },
  1414. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  1415. "type": "package",
  1416. "serviceable": true,
  1417. "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  1418. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  1419. "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
  1420. },
  1421. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  1422. "type": "package",
  1423. "serviceable": true,
  1424. "sha512": "sha512-xzFW00AZEvOXM1OX+0+AYH5op/Hf3u//e6wszBd/rK72sypD+jx5CtsHxM4BVuFBEs8SajfO4QzSJtrQaHDr4A==",
  1425. "path": "microsoft.extensions.dependencyinjection/5.0.2",
  1426. "hashPath": "microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512"
  1427. },
  1428. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1429. "type": "package",
  1430. "serviceable": true,
  1431. "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  1432. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  1433. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
  1434. },
  1435. "Microsoft.Extensions.Logging/5.0.0": {
  1436. "type": "package",
  1437. "serviceable": true,
  1438. "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  1439. "path": "microsoft.extensions.logging/5.0.0",
  1440. "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
  1441. },
  1442. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  1443. "type": "package",
  1444. "serviceable": true,
  1445. "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  1446. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  1447. "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
  1448. },
  1449. "Microsoft.Extensions.Options/5.0.0": {
  1450. "type": "package",
  1451. "serviceable": true,
  1452. "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  1453. "path": "microsoft.extensions.options/5.0.0",
  1454. "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
  1455. },
  1456. "Microsoft.Extensions.Primitives/5.0.0": {
  1457. "type": "package",
  1458. "serviceable": true,
  1459. "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  1460. "path": "microsoft.extensions.primitives/5.0.0",
  1461. "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
  1462. },
  1463. "Microsoft.Identity.Client/4.14.0": {
  1464. "type": "package",
  1465. "serviceable": true,
  1466. "sha512": "sha512-Etqux6Zuuv1yEN4UwKbAn6EZv0Rooc+vM4N9z7gxmeT7dyoKlXIRN44DQPzD9LV1CW0KsTVqH+2B42p1NKqPlQ==",
  1467. "path": "microsoft.identity.client/4.14.0",
  1468. "hashPath": "microsoft.identity.client.4.14.0.nupkg.sha512"
  1469. },
  1470. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  1471. "type": "package",
  1472. "serviceable": true,
  1473. "sha512": "sha512-0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  1474. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  1475. "hashPath": "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512"
  1476. },
  1477. "Microsoft.IdentityModel.Logging/5.6.0": {
  1478. "type": "package",
  1479. "serviceable": true,
  1480. "sha512": "sha512-zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  1481. "path": "microsoft.identitymodel.logging/5.6.0",
  1482. "hashPath": "microsoft.identitymodel.logging.5.6.0.nupkg.sha512"
  1483. },
  1484. "Microsoft.IdentityModel.Protocols/5.6.0": {
  1485. "type": "package",
  1486. "serviceable": true,
  1487. "sha512": "sha512-ei7YqYx0pIFL6JjK8ZnPK0MXZRWUNHtJPUl3KqSvj9+2f5CMa6GRSEC+BMDHr17tP6yujYUg0IQOcKzmC7qN5g==",
  1488. "path": "microsoft.identitymodel.protocols/5.6.0",
  1489. "hashPath": "microsoft.identitymodel.protocols.5.6.0.nupkg.sha512"
  1490. },
  1491. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.6.0": {
  1492. "type": "package",
  1493. "serviceable": true,
  1494. "sha512": "sha512-yh3n+uXiwpBy/5+t67tYcmRxb9kwQdaKRyG/DNipRMF37bg5Jr0vENOo1BQz6OySMl5WIK544SzPjtr7/KkucA==",
  1495. "path": "microsoft.identitymodel.protocols.openidconnect/5.6.0",
  1496. "hashPath": "microsoft.identitymodel.protocols.openidconnect.5.6.0.nupkg.sha512"
  1497. },
  1498. "Microsoft.IdentityModel.Tokens/5.6.0": {
  1499. "type": "package",
  1500. "serviceable": true,
  1501. "sha512": "sha512-C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  1502. "path": "microsoft.identitymodel.tokens/5.6.0",
  1503. "hashPath": "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512"
  1504. },
  1505. "Microsoft.NETCore.Platforms/3.1.0": {
  1506. "type": "package",
  1507. "serviceable": true,
  1508. "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  1509. "path": "microsoft.netcore.platforms/3.1.0",
  1510. "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512"
  1511. },
  1512. "Microsoft.NETCore.Targets/1.1.3": {
  1513. "type": "package",
  1514. "serviceable": true,
  1515. "sha512": "sha512-3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
  1516. "path": "microsoft.netcore.targets/1.1.3",
  1517. "hashPath": "microsoft.netcore.targets.1.1.3.nupkg.sha512"
  1518. },
  1519. "Microsoft.Win32.Registry/4.7.0": {
  1520. "type": "package",
  1521. "serviceable": true,
  1522. "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  1523. "path": "microsoft.win32.registry/4.7.0",
  1524. "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512"
  1525. },
  1526. "Microsoft.Win32.SystemEvents/6.0.0": {
  1527. "type": "package",
  1528. "serviceable": true,
  1529. "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  1530. "path": "microsoft.win32.systemevents/6.0.0",
  1531. "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
  1532. },
  1533. "Newtonsoft.Json/10.0.1": {
  1534. "type": "package",
  1535. "serviceable": true,
  1536. "sha512": "sha512-ebWzW9j2nwxQeBo59As2TYn7nYr9BHicqqCwHOD1Vdo+50HBtLPuqdiCYJcLdTRknpYis/DSEOQz5KmZxwrIAg==",
  1537. "path": "newtonsoft.json/10.0.1",
  1538. "hashPath": "newtonsoft.json.10.0.1.nupkg.sha512"
  1539. },
  1540. "runtime.native.System/4.3.0": {
  1541. "type": "package",
  1542. "serviceable": true,
  1543. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1544. "path": "runtime.native.system/4.3.0",
  1545. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  1546. },
  1547. "System.Collections/4.3.0": {
  1548. "type": "package",
  1549. "serviceable": true,
  1550. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  1551. "path": "system.collections/4.3.0",
  1552. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  1553. },
  1554. "System.Collections.Concurrent/4.3.0": {
  1555. "type": "package",
  1556. "serviceable": true,
  1557. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  1558. "path": "system.collections.concurrent/4.3.0",
  1559. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  1560. },
  1561. "System.Collections.Immutable/5.0.0": {
  1562. "type": "package",
  1563. "serviceable": true,
  1564. "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  1565. "path": "system.collections.immutable/5.0.0",
  1566. "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
  1567. },
  1568. "System.Collections.NonGeneric/4.3.0": {
  1569. "type": "package",
  1570. "serviceable": true,
  1571. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  1572. "path": "system.collections.nongeneric/4.3.0",
  1573. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  1574. },
  1575. "System.Collections.Specialized/4.3.0": {
  1576. "type": "package",
  1577. "serviceable": true,
  1578. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  1579. "path": "system.collections.specialized/4.3.0",
  1580. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  1581. },
  1582. "System.ComponentModel/4.3.0": {
  1583. "type": "package",
  1584. "serviceable": true,
  1585. "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  1586. "path": "system.componentmodel/4.3.0",
  1587. "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
  1588. },
  1589. "System.ComponentModel.Annotations/5.0.0": {
  1590. "type": "package",
  1591. "serviceable": true,
  1592. "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  1593. "path": "system.componentmodel.annotations/5.0.0",
  1594. "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
  1595. },
  1596. "System.ComponentModel.Primitives/4.3.0": {
  1597. "type": "package",
  1598. "serviceable": true,
  1599. "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  1600. "path": "system.componentmodel.primitives/4.3.0",
  1601. "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
  1602. },
  1603. "System.ComponentModel.TypeConverter/4.3.0": {
  1604. "type": "package",
  1605. "serviceable": true,
  1606. "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  1607. "path": "system.componentmodel.typeconverter/4.3.0",
  1608. "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
  1609. },
  1610. "System.Configuration.ConfigurationManager/6.0.0": {
  1611. "type": "package",
  1612. "serviceable": true,
  1613. "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
  1614. "path": "system.configuration.configurationmanager/6.0.0",
  1615. "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512"
  1616. },
  1617. "System.Diagnostics.Debug/4.3.0": {
  1618. "type": "package",
  1619. "serviceable": true,
  1620. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  1621. "path": "system.diagnostics.debug/4.3.0",
  1622. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  1623. },
  1624. "System.Diagnostics.DiagnosticSource/5.0.1": {
  1625. "type": "package",
  1626. "serviceable": true,
  1627. "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  1628. "path": "system.diagnostics.diagnosticsource/5.0.1",
  1629. "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512"
  1630. },
  1631. "System.Diagnostics.Tools/4.3.0": {
  1632. "type": "package",
  1633. "serviceable": true,
  1634. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  1635. "path": "system.diagnostics.tools/4.3.0",
  1636. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  1637. },
  1638. "System.Diagnostics.Tracing/4.3.0": {
  1639. "type": "package",
  1640. "serviceable": true,
  1641. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  1642. "path": "system.diagnostics.tracing/4.3.0",
  1643. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1644. },
  1645. "System.Drawing.Common/6.0.0": {
  1646. "type": "package",
  1647. "serviceable": true,
  1648. "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  1649. "path": "system.drawing.common/6.0.0",
  1650. "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
  1651. },
  1652. "System.Dynamic.Runtime/4.3.0": {
  1653. "type": "package",
  1654. "serviceable": true,
  1655. "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  1656. "path": "system.dynamic.runtime/4.3.0",
  1657. "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
  1658. },
  1659. "System.Globalization/4.3.0": {
  1660. "type": "package",
  1661. "serviceable": true,
  1662. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  1663. "path": "system.globalization/4.3.0",
  1664. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  1665. },
  1666. "System.Globalization.Extensions/4.3.0": {
  1667. "type": "package",
  1668. "serviceable": true,
  1669. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  1670. "path": "system.globalization.extensions/4.3.0",
  1671. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  1672. },
  1673. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  1674. "type": "package",
  1675. "serviceable": true,
  1676. "sha512": "sha512-KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  1677. "path": "system.identitymodel.tokens.jwt/5.6.0",
  1678. "hashPath": "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512"
  1679. },
  1680. "System.IO/4.3.0": {
  1681. "type": "package",
  1682. "serviceable": true,
  1683. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1684. "path": "system.io/4.3.0",
  1685. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1686. },
  1687. "System.IO.FileSystem/4.3.0": {
  1688. "type": "package",
  1689. "serviceable": true,
  1690. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  1691. "path": "system.io.filesystem/4.3.0",
  1692. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  1693. },
  1694. "System.IO.FileSystem.Primitives/4.3.0": {
  1695. "type": "package",
  1696. "serviceable": true,
  1697. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  1698. "path": "system.io.filesystem.primitives/4.3.0",
  1699. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  1700. },
  1701. "System.Linq/4.3.0": {
  1702. "type": "package",
  1703. "serviceable": true,
  1704. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  1705. "path": "system.linq/4.3.0",
  1706. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  1707. },
  1708. "System.Linq.Expressions/4.3.0": {
  1709. "type": "package",
  1710. "serviceable": true,
  1711. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  1712. "path": "system.linq.expressions/4.3.0",
  1713. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  1714. },
  1715. "System.Memory/4.5.4": {
  1716. "type": "package",
  1717. "serviceable": true,
  1718. "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  1719. "path": "system.memory/4.5.4",
  1720. "hashPath": "system.memory.4.5.4.nupkg.sha512"
  1721. },
  1722. "System.Net.NameResolution/4.3.0": {
  1723. "type": "package",
  1724. "serviceable": true,
  1725. "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  1726. "path": "system.net.nameresolution/4.3.0",
  1727. "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512"
  1728. },
  1729. "System.Net.Primitives/4.3.0": {
  1730. "type": "package",
  1731. "serviceable": true,
  1732. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  1733. "path": "system.net.primitives/4.3.0",
  1734. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  1735. },
  1736. "System.ObjectModel/4.3.0": {
  1737. "type": "package",
  1738. "serviceable": true,
  1739. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  1740. "path": "system.objectmodel/4.3.0",
  1741. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  1742. },
  1743. "System.Private.DataContractSerialization/4.3.0": {
  1744. "type": "package",
  1745. "serviceable": true,
  1746. "sha512": "sha512-yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
  1747. "path": "system.private.datacontractserialization/4.3.0",
  1748. "hashPath": "system.private.datacontractserialization.4.3.0.nupkg.sha512"
  1749. },
  1750. "System.Private.Uri/4.3.2": {
  1751. "type": "package",
  1752. "serviceable": true,
  1753. "sha512": "sha512-o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
  1754. "path": "system.private.uri/4.3.2",
  1755. "hashPath": "system.private.uri.4.3.2.nupkg.sha512"
  1756. },
  1757. "System.Reflection/4.3.0": {
  1758. "type": "package",
  1759. "serviceable": true,
  1760. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1761. "path": "system.reflection/4.3.0",
  1762. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1763. },
  1764. "System.Reflection.Emit/4.3.0": {
  1765. "type": "package",
  1766. "serviceable": true,
  1767. "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  1768. "path": "system.reflection.emit/4.3.0",
  1769. "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
  1770. },
  1771. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1772. "type": "package",
  1773. "serviceable": true,
  1774. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  1775. "path": "system.reflection.emit.ilgeneration/4.3.0",
  1776. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  1777. },
  1778. "System.Reflection.Emit.Lightweight/4.3.0": {
  1779. "type": "package",
  1780. "serviceable": true,
  1781. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  1782. "path": "system.reflection.emit.lightweight/4.3.0",
  1783. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  1784. },
  1785. "System.Reflection.Extensions/4.3.0": {
  1786. "type": "package",
  1787. "serviceable": true,
  1788. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  1789. "path": "system.reflection.extensions/4.3.0",
  1790. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  1791. },
  1792. "System.Reflection.Primitives/4.3.0": {
  1793. "type": "package",
  1794. "serviceable": true,
  1795. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1796. "path": "system.reflection.primitives/4.3.0",
  1797. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  1798. },
  1799. "System.Reflection.TypeExtensions/4.3.0": {
  1800. "type": "package",
  1801. "serviceable": true,
  1802. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  1803. "path": "system.reflection.typeextensions/4.3.0",
  1804. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  1805. },
  1806. "System.Resources.ResourceManager/4.3.0": {
  1807. "type": "package",
  1808. "serviceable": true,
  1809. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  1810. "path": "system.resources.resourcemanager/4.3.0",
  1811. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1812. },
  1813. "System.Runtime/4.3.0": {
  1814. "type": "package",
  1815. "serviceable": true,
  1816. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1817. "path": "system.runtime/4.3.0",
  1818. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  1819. },
  1820. "System.Runtime.Caching/4.7.0": {
  1821. "type": "package",
  1822. "serviceable": true,
  1823. "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  1824. "path": "system.runtime.caching/4.7.0",
  1825. "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512"
  1826. },
  1827. "System.Runtime.Extensions/4.3.0": {
  1828. "type": "package",
  1829. "serviceable": true,
  1830. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  1831. "path": "system.runtime.extensions/4.3.0",
  1832. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  1833. },
  1834. "System.Runtime.Handles/4.3.0": {
  1835. "type": "package",
  1836. "serviceable": true,
  1837. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  1838. "path": "system.runtime.handles/4.3.0",
  1839. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  1840. },
  1841. "System.Runtime.InteropServices/4.3.0": {
  1842. "type": "package",
  1843. "serviceable": true,
  1844. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  1845. "path": "system.runtime.interopservices/4.3.0",
  1846. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  1847. },
  1848. "System.Runtime.Numerics/4.3.0": {
  1849. "type": "package",
  1850. "serviceable": true,
  1851. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  1852. "path": "system.runtime.numerics/4.3.0",
  1853. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  1854. },
  1855. "System.Runtime.Serialization.Formatters/4.3.0": {
  1856. "type": "package",
  1857. "serviceable": true,
  1858. "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  1859. "path": "system.runtime.serialization.formatters/4.3.0",
  1860. "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512"
  1861. },
  1862. "System.Runtime.Serialization.Json/4.3.0": {
  1863. "type": "package",
  1864. "serviceable": true,
  1865. "sha512": "sha512-CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
  1866. "path": "system.runtime.serialization.json/4.3.0",
  1867. "hashPath": "system.runtime.serialization.json.4.3.0.nupkg.sha512"
  1868. },
  1869. "System.Runtime.Serialization.Primitives/4.3.0": {
  1870. "type": "package",
  1871. "serviceable": true,
  1872. "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  1873. "path": "system.runtime.serialization.primitives/4.3.0",
  1874. "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512"
  1875. },
  1876. "System.Security.AccessControl/6.0.0": {
  1877. "type": "package",
  1878. "serviceable": true,
  1879. "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  1880. "path": "system.security.accesscontrol/6.0.0",
  1881. "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512"
  1882. },
  1883. "System.Security.Cryptography.Cng/4.5.0": {
  1884. "type": "package",
  1885. "serviceable": true,
  1886. "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  1887. "path": "system.security.cryptography.cng/4.5.0",
  1888. "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
  1889. },
  1890. "System.Security.Cryptography.Primitives/4.3.0": {
  1891. "type": "package",
  1892. "serviceable": true,
  1893. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  1894. "path": "system.security.cryptography.primitives/4.3.0",
  1895. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  1896. },
  1897. "System.Security.Cryptography.ProtectedData/6.0.0": {
  1898. "type": "package",
  1899. "serviceable": true,
  1900. "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  1901. "path": "system.security.cryptography.protecteddata/6.0.0",
  1902. "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512"
  1903. },
  1904. "System.Security.Permissions/6.0.0": {
  1905. "type": "package",
  1906. "serviceable": true,
  1907. "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  1908. "path": "system.security.permissions/6.0.0",
  1909. "hashPath": "system.security.permissions.6.0.0.nupkg.sha512"
  1910. },
  1911. "System.Security.Principal.Windows/5.0.0": {
  1912. "type": "package",
  1913. "serviceable": true,
  1914. "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  1915. "path": "system.security.principal.windows/5.0.0",
  1916. "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
  1917. },
  1918. "System.Security.SecureString/4.3.0": {
  1919. "type": "package",
  1920. "serviceable": true,
  1921. "sha512": "sha512-PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
  1922. "path": "system.security.securestring/4.3.0",
  1923. "hashPath": "system.security.securestring.4.3.0.nupkg.sha512"
  1924. },
  1925. "System.Text.Encoding/4.3.0": {
  1926. "type": "package",
  1927. "serviceable": true,
  1928. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  1929. "path": "system.text.encoding/4.3.0",
  1930. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  1931. },
  1932. "System.Text.Encoding.CodePages/4.7.0": {
  1933. "type": "package",
  1934. "serviceable": true,
  1935. "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  1936. "path": "system.text.encoding.codepages/4.7.0",
  1937. "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512"
  1938. },
  1939. "System.Text.Encoding.Extensions/4.3.0": {
  1940. "type": "package",
  1941. "serviceable": true,
  1942. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  1943. "path": "system.text.encoding.extensions/4.3.0",
  1944. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  1945. },
  1946. "System.Text.RegularExpressions/4.3.0": {
  1947. "type": "package",
  1948. "serviceable": true,
  1949. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  1950. "path": "system.text.regularexpressions/4.3.0",
  1951. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  1952. },
  1953. "System.Threading/4.3.0": {
  1954. "type": "package",
  1955. "serviceable": true,
  1956. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  1957. "path": "system.threading/4.3.0",
  1958. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  1959. },
  1960. "System.Threading.Tasks/4.3.0": {
  1961. "type": "package",
  1962. "serviceable": true,
  1963. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  1964. "path": "system.threading.tasks/4.3.0",
  1965. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  1966. },
  1967. "System.Threading.Tasks.Extensions/4.3.0": {
  1968. "type": "package",
  1969. "serviceable": true,
  1970. "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  1971. "path": "system.threading.tasks.extensions/4.3.0",
  1972. "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
  1973. },
  1974. "System.Windows.Extensions/6.0.0": {
  1975. "type": "package",
  1976. "serviceable": true,
  1977. "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  1978. "path": "system.windows.extensions/6.0.0",
  1979. "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512"
  1980. },
  1981. "System.Xml.ReaderWriter/4.3.0": {
  1982. "type": "package",
  1983. "serviceable": true,
  1984. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  1985. "path": "system.xml.readerwriter/4.3.0",
  1986. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  1987. },
  1988. "System.Xml.XDocument/4.3.0": {
  1989. "type": "package",
  1990. "serviceable": true,
  1991. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  1992. "path": "system.xml.xdocument/4.3.0",
  1993. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  1994. },
  1995. "System.Xml.XmlDocument/4.3.0": {
  1996. "type": "package",
  1997. "serviceable": true,
  1998. "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  1999. "path": "system.xml.xmldocument/4.3.0",
  2000. "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
  2001. },
  2002. "System.Xml.XmlSerializer/4.3.0": {
  2003. "type": "package",
  2004. "serviceable": true,
  2005. "sha512": "sha512-MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
  2006. "path": "system.xml.xmlserializer/4.3.0",
  2007. "hashPath": "system.xml.xmlserializer.4.3.0.nupkg.sha512"
  2008. }
  2009. }
  2010. }