You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MVCTemplate.Business.deps.json 77KB

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