WpfApp2.designer.deps.json 77 KB

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