No Description

Backend.MSTest.deps.json 90KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v3.1",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v3.1": {
  9. "Backend.MSTest/1.0.0": {
  10. "dependencies": {
  11. "Backend.ApplicationCore": "1.0.0",
  12. "Backend.Infrastructure": "1.0.0",
  13. "MSTest.TestAdapter": "2.2.3",
  14. "MSTest.TestFramework": "2.2.3",
  15. "Microsoft.NET.Test.Sdk": "16.9.4",
  16. "NSubstitute": "4.2.2",
  17. "coverlet.collector": "3.0.2"
  18. },
  19. "runtime": {
  20. "Backend.MSTest.dll": {}
  21. }
  22. },
  23. "AutoMapper/10.1.1": {
  24. "dependencies": {
  25. "Microsoft.CSharp": "4.7.0",
  26. "System.Reflection.Emit": "4.7.0"
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/AutoMapper.dll": {
  30. "assemblyVersion": "10.0.0.0",
  31. "fileVersion": "10.1.1.0"
  32. }
  33. }
  34. },
  35. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  36. "dependencies": {
  37. "AutoMapper": "10.1.1",
  38. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  39. "Microsoft.Extensions.Options": "5.0.0"
  40. },
  41. "runtime": {
  42. "lib/netstandard2.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {
  43. "assemblyVersion": "8.0.0.0",
  44. "fileVersion": "8.1.1.0"
  45. }
  46. }
  47. },
  48. "Castle.Core/4.4.0": {
  49. "dependencies": {
  50. "NETStandard.Library": "1.6.1",
  51. "System.Collections.Specialized": "4.3.0",
  52. "System.ComponentModel": "4.3.0",
  53. "System.ComponentModel.TypeConverter": "4.3.0",
  54. "System.Diagnostics.TraceSource": "4.3.0",
  55. "System.Dynamic.Runtime": "4.3.0",
  56. "System.Reflection": "4.3.0",
  57. "System.Reflection.Emit": "4.7.0",
  58. "System.Reflection.TypeExtensions": "4.3.0",
  59. "System.Xml.XmlDocument": "4.3.0"
  60. },
  61. "runtime": {
  62. "lib/netstandard1.5/Castle.Core.dll": {
  63. "assemblyVersion": "4.0.0.0",
  64. "fileVersion": "4.4.0.0"
  65. }
  66. }
  67. },
  68. "coverlet.collector/3.0.2": {},
  69. "MediatR/7.0.0": {
  70. "runtime": {
  71. "lib/netstandard2.0/MediatR.dll": {
  72. "assemblyVersion": "7.0.0.0",
  73. "fileVersion": "7.0.0.0"
  74. }
  75. }
  76. },
  77. "MediatR.Extensions.Microsoft.DependencyInjection/7.0.0": {
  78. "dependencies": {
  79. "MediatR": "7.0.0",
  80. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  81. },
  82. "runtime": {
  83. "lib/netstandard2.0/MediatR.Extensions.Microsoft.DependencyInjection.dll": {
  84. "assemblyVersion": "7.0.0.0",
  85. "fileVersion": "7.0.0.0"
  86. }
  87. }
  88. },
  89. "Microsoft.CodeCoverage/16.9.4": {
  90. "runtime": {
  91. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
  92. "assemblyVersion": "15.0.0.0",
  93. "fileVersion": "16.900.21.15801"
  94. }
  95. }
  96. },
  97. "Microsoft.CSharp/4.7.0": {},
  98. "Microsoft.EntityFrameworkCore/5.0.13": {
  99. "dependencies": {
  100. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.13",
  101. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.13",
  102. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  103. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  104. "Microsoft.Extensions.Logging": "5.0.0",
  105. "System.Collections.Immutable": "5.0.0",
  106. "System.ComponentModel.Annotations": "5.0.0",
  107. "System.Diagnostics.DiagnosticSource": "5.0.1"
  108. },
  109. "runtime": {
  110. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  111. "assemblyVersion": "5.0.13.0",
  112. "fileVersion": "5.0.1321.56013"
  113. }
  114. }
  115. },
  116. "Microsoft.EntityFrameworkCore.Abstractions/5.0.13": {
  117. "runtime": {
  118. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  119. "assemblyVersion": "5.0.13.0",
  120. "fileVersion": "5.0.1321.56013"
  121. }
  122. }
  123. },
  124. "Microsoft.EntityFrameworkCore.Analyzers/5.0.13": {},
  125. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  126. "dependencies": {
  127. "Microsoft.Extensions.Primitives": "5.0.0"
  128. },
  129. "runtime": {
  130. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  131. "assemblyVersion": "5.0.0.0",
  132. "fileVersion": "5.0.20.51904"
  133. }
  134. }
  135. },
  136. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  137. "dependencies": {
  138. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  139. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  140. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  141. "Microsoft.Extensions.Options": "5.0.0",
  142. "Microsoft.Extensions.Primitives": "5.0.0"
  143. },
  144. "runtime": {
  145. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  146. "assemblyVersion": "5.0.0.0",
  147. "fileVersion": "5.0.20.51904"
  148. }
  149. }
  150. },
  151. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  152. "dependencies": {
  153. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  154. },
  155. "runtime": {
  156. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  157. "assemblyVersion": "5.0.0.1",
  158. "fileVersion": "5.0.821.31504"
  159. }
  160. }
  161. },
  162. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  163. "runtime": {
  164. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  165. "assemblyVersion": "5.0.0.0",
  166. "fileVersion": "5.0.20.51904"
  167. }
  168. }
  169. },
  170. "Microsoft.Extensions.Logging/5.0.0": {
  171. "dependencies": {
  172. "Microsoft.Extensions.DependencyInjection": "5.0.2",
  173. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  174. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  175. "Microsoft.Extensions.Options": "5.0.0",
  176. "System.Diagnostics.DiagnosticSource": "5.0.1"
  177. },
  178. "runtime": {
  179. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  180. "assemblyVersion": "5.0.0.0",
  181. "fileVersion": "5.0.20.51904"
  182. }
  183. }
  184. },
  185. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  186. "runtime": {
  187. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  188. "assemblyVersion": "5.0.0.0",
  189. "fileVersion": "5.0.20.51904"
  190. }
  191. }
  192. },
  193. "Microsoft.Extensions.Options/5.0.0": {
  194. "dependencies": {
  195. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  196. "Microsoft.Extensions.Primitives": "5.0.0"
  197. },
  198. "runtime": {
  199. "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
  200. "assemblyVersion": "5.0.0.0",
  201. "fileVersion": "5.0.20.51904"
  202. }
  203. }
  204. },
  205. "Microsoft.Extensions.Primitives/5.0.0": {
  206. "runtime": {
  207. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  208. "assemblyVersion": "5.0.0.0",
  209. "fileVersion": "5.0.20.51904"
  210. }
  211. }
  212. },
  213. "Microsoft.NET.Test.Sdk/16.9.4": {
  214. "dependencies": {
  215. "Microsoft.CodeCoverage": "16.9.4",
  216. "Microsoft.TestPlatform.TestHost": "16.9.4"
  217. }
  218. },
  219. "Microsoft.NETCore.Platforms/1.1.0": {},
  220. "Microsoft.NETCore.Targets/1.1.0": {},
  221. "Microsoft.TestPlatform.ObjectModel/16.9.4": {
  222. "dependencies": {
  223. "NuGet.Frameworks": "5.0.0",
  224. "System.Reflection.Metadata": "1.6.0"
  225. },
  226. "runtime": {
  227. "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": {
  228. "assemblyVersion": "15.0.0.0",
  229. "fileVersion": "15.0.0.0"
  230. },
  231. "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": {
  232. "assemblyVersion": "15.0.0.0",
  233. "fileVersion": "15.0.0.0"
  234. },
  235. "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
  236. "assemblyVersion": "15.0.0.0",
  237. "fileVersion": "15.0.0.0"
  238. }
  239. },
  240. "resources": {
  241. "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  242. "locale": "cs"
  243. },
  244. "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  245. "locale": "cs"
  246. },
  247. "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  248. "locale": "de"
  249. },
  250. "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  251. "locale": "de"
  252. },
  253. "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  254. "locale": "es"
  255. },
  256. "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  257. "locale": "es"
  258. },
  259. "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  260. "locale": "fr"
  261. },
  262. "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  263. "locale": "fr"
  264. },
  265. "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  266. "locale": "it"
  267. },
  268. "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  269. "locale": "it"
  270. },
  271. "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  272. "locale": "ja"
  273. },
  274. "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  275. "locale": "ja"
  276. },
  277. "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  278. "locale": "ko"
  279. },
  280. "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  281. "locale": "ko"
  282. },
  283. "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  284. "locale": "pl"
  285. },
  286. "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  287. "locale": "pl"
  288. },
  289. "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  290. "locale": "pt-BR"
  291. },
  292. "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  293. "locale": "pt-BR"
  294. },
  295. "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  296. "locale": "ru"
  297. },
  298. "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  299. "locale": "ru"
  300. },
  301. "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  302. "locale": "tr"
  303. },
  304. "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  305. "locale": "tr"
  306. },
  307. "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  308. "locale": "zh-Hans"
  309. },
  310. "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  311. "locale": "zh-Hans"
  312. },
  313. "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  314. "locale": "zh-Hant"
  315. },
  316. "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  317. "locale": "zh-Hant"
  318. }
  319. }
  320. },
  321. "Microsoft.TestPlatform.TestHost/16.9.4": {
  322. "dependencies": {
  323. "Microsoft.TestPlatform.ObjectModel": "16.9.4",
  324. "Newtonsoft.Json": "9.0.1"
  325. },
  326. "runtime": {
  327. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {
  328. "assemblyVersion": "15.0.0.0",
  329. "fileVersion": "15.0.0.0"
  330. },
  331. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {
  332. "assemblyVersion": "15.0.0.0",
  333. "fileVersion": "15.0.0.0"
  334. },
  335. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {
  336. "assemblyVersion": "15.0.0.0",
  337. "fileVersion": "15.0.0.0"
  338. },
  339. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {
  340. "assemblyVersion": "15.0.0.0",
  341. "fileVersion": "15.0.0.0"
  342. },
  343. "lib/netcoreapp2.1/testhost.dll": {
  344. "assemblyVersion": "15.0.0.0",
  345. "fileVersion": "15.0.0.0"
  346. }
  347. },
  348. "resources": {
  349. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  350. "locale": "cs"
  351. },
  352. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  353. "locale": "cs"
  354. },
  355. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  356. "locale": "cs"
  357. },
  358. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  359. "locale": "de"
  360. },
  361. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  362. "locale": "de"
  363. },
  364. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  365. "locale": "de"
  366. },
  367. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  368. "locale": "es"
  369. },
  370. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  371. "locale": "es"
  372. },
  373. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  374. "locale": "es"
  375. },
  376. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  377. "locale": "fr"
  378. },
  379. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  380. "locale": "fr"
  381. },
  382. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  383. "locale": "fr"
  384. },
  385. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  386. "locale": "it"
  387. },
  388. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  389. "locale": "it"
  390. },
  391. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  392. "locale": "it"
  393. },
  394. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  395. "locale": "ja"
  396. },
  397. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  398. "locale": "ja"
  399. },
  400. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  401. "locale": "ja"
  402. },
  403. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  404. "locale": "ko"
  405. },
  406. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  407. "locale": "ko"
  408. },
  409. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  410. "locale": "ko"
  411. },
  412. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  413. "locale": "pl"
  414. },
  415. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  416. "locale": "pl"
  417. },
  418. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  419. "locale": "pl"
  420. },
  421. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  422. "locale": "pt-BR"
  423. },
  424. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  425. "locale": "pt-BR"
  426. },
  427. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  428. "locale": "pt-BR"
  429. },
  430. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  431. "locale": "ru"
  432. },
  433. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  434. "locale": "ru"
  435. },
  436. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  437. "locale": "ru"
  438. },
  439. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  440. "locale": "tr"
  441. },
  442. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  443. "locale": "tr"
  444. },
  445. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  446. "locale": "tr"
  447. },
  448. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  449. "locale": "zh-Hans"
  450. },
  451. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  452. "locale": "zh-Hans"
  453. },
  454. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  455. "locale": "zh-Hans"
  456. },
  457. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  458. "locale": "zh-Hant"
  459. },
  460. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  461. "locale": "zh-Hant"
  462. },
  463. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  464. "locale": "zh-Hant"
  465. }
  466. }
  467. },
  468. "Microsoft.Win32.Primitives/4.3.0": {
  469. "dependencies": {
  470. "Microsoft.NETCore.Platforms": "1.1.0",
  471. "Microsoft.NETCore.Targets": "1.1.0",
  472. "System.Runtime": "4.3.0"
  473. }
  474. },
  475. "MSTest.TestAdapter/2.2.3": {
  476. "dependencies": {
  477. "NETStandard.Library": "1.6.1",
  478. "System.Diagnostics.TextWriterTraceListener": "4.3.0"
  479. }
  480. },
  481. "MSTest.TestFramework/2.2.3": {
  482. "dependencies": {
  483. "NETStandard.Library": "1.6.1",
  484. "System.Diagnostics.TextWriterTraceListener": "4.3.0"
  485. },
  486. "runtime": {
  487. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {
  488. "assemblyVersion": "14.0.0.0",
  489. "fileVersion": "14.0.5816.2"
  490. },
  491. "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {
  492. "assemblyVersion": "14.0.0.0",
  493. "fileVersion": "14.0.5816.2"
  494. }
  495. }
  496. },
  497. "NETStandard.Library/1.6.1": {
  498. "dependencies": {
  499. "Microsoft.NETCore.Platforms": "1.1.0",
  500. "Microsoft.Win32.Primitives": "4.3.0",
  501. "System.AppContext": "4.3.0",
  502. "System.Collections": "4.3.0",
  503. "System.Collections.Concurrent": "4.3.0",
  504. "System.Console": "4.3.0",
  505. "System.Diagnostics.Debug": "4.3.0",
  506. "System.Diagnostics.Tools": "4.3.0",
  507. "System.Diagnostics.Tracing": "4.3.0",
  508. "System.Globalization": "4.3.0",
  509. "System.Globalization.Calendars": "4.3.0",
  510. "System.IO": "4.3.0",
  511. "System.IO.Compression": "4.3.0",
  512. "System.IO.Compression.ZipFile": "4.3.0",
  513. "System.IO.FileSystem": "4.3.0",
  514. "System.IO.FileSystem.Primitives": "4.3.0",
  515. "System.Linq": "4.3.0",
  516. "System.Linq.Expressions": "4.3.0",
  517. "System.Net.Http": "4.3.0",
  518. "System.Net.Primitives": "4.3.0",
  519. "System.Net.Sockets": "4.3.0",
  520. "System.ObjectModel": "4.3.0",
  521. "System.Reflection": "4.3.0",
  522. "System.Reflection.Extensions": "4.3.0",
  523. "System.Reflection.Primitives": "4.3.0",
  524. "System.Resources.ResourceManager": "4.3.0",
  525. "System.Runtime": "4.3.0",
  526. "System.Runtime.Extensions": "4.3.0",
  527. "System.Runtime.Handles": "4.3.0",
  528. "System.Runtime.InteropServices": "4.3.0",
  529. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  530. "System.Runtime.Numerics": "4.3.0",
  531. "System.Security.Cryptography.Algorithms": "4.3.0",
  532. "System.Security.Cryptography.Encoding": "4.3.0",
  533. "System.Security.Cryptography.Primitives": "4.3.0",
  534. "System.Security.Cryptography.X509Certificates": "4.3.0",
  535. "System.Text.Encoding": "4.3.0",
  536. "System.Text.Encoding.Extensions": "4.3.0",
  537. "System.Text.RegularExpressions": "4.3.0",
  538. "System.Threading": "4.3.0",
  539. "System.Threading.Tasks": "4.3.0",
  540. "System.Threading.Timer": "4.3.0",
  541. "System.Xml.ReaderWriter": "4.3.0",
  542. "System.Xml.XDocument": "4.3.0"
  543. }
  544. },
  545. "Newtonsoft.Json/9.0.1": {
  546. "dependencies": {
  547. "Microsoft.CSharp": "4.7.0",
  548. "System.Collections": "4.3.0",
  549. "System.Diagnostics.Debug": "4.3.0",
  550. "System.Dynamic.Runtime": "4.3.0",
  551. "System.Globalization": "4.3.0",
  552. "System.IO": "4.3.0",
  553. "System.Linq": "4.3.0",
  554. "System.Linq.Expressions": "4.3.0",
  555. "System.ObjectModel": "4.3.0",
  556. "System.Reflection": "4.3.0",
  557. "System.Reflection.Extensions": "4.3.0",
  558. "System.Resources.ResourceManager": "4.3.0",
  559. "System.Runtime": "4.3.0",
  560. "System.Runtime.Extensions": "4.3.0",
  561. "System.Runtime.Serialization.Primitives": "4.1.1",
  562. "System.Text.Encoding": "4.3.0",
  563. "System.Text.Encoding.Extensions": "4.3.0",
  564. "System.Text.RegularExpressions": "4.3.0",
  565. "System.Threading": "4.3.0",
  566. "System.Threading.Tasks": "4.3.0",
  567. "System.Xml.ReaderWriter": "4.3.0",
  568. "System.Xml.XDocument": "4.3.0"
  569. },
  570. "runtime": {
  571. "lib/netstandard1.0/Newtonsoft.Json.dll": {
  572. "assemblyVersion": "9.0.0.0",
  573. "fileVersion": "9.0.1.19813"
  574. }
  575. }
  576. },
  577. "NSubstitute/4.2.2": {
  578. "dependencies": {
  579. "Castle.Core": "4.4.0",
  580. "System.Threading.Tasks.Extensions": "4.3.0"
  581. },
  582. "runtime": {
  583. "lib/netstandard2.0/NSubstitute.dll": {
  584. "assemblyVersion": "4.2.0.0",
  585. "fileVersion": "4.2.2.0"
  586. }
  587. }
  588. },
  589. "NuGet.Frameworks/5.0.0": {
  590. "runtime": {
  591. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  592. "assemblyVersion": "5.0.0.6",
  593. "fileVersion": "5.0.0.5923"
  594. }
  595. }
  596. },
  597. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  598. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  599. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  600. "runtime.native.System/4.3.0": {
  601. "dependencies": {
  602. "Microsoft.NETCore.Platforms": "1.1.0",
  603. "Microsoft.NETCore.Targets": "1.1.0"
  604. }
  605. },
  606. "runtime.native.System.IO.Compression/4.3.0": {
  607. "dependencies": {
  608. "Microsoft.NETCore.Platforms": "1.1.0",
  609. "Microsoft.NETCore.Targets": "1.1.0"
  610. }
  611. },
  612. "runtime.native.System.Net.Http/4.3.0": {
  613. "dependencies": {
  614. "Microsoft.NETCore.Platforms": "1.1.0",
  615. "Microsoft.NETCore.Targets": "1.1.0"
  616. }
  617. },
  618. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  619. "dependencies": {
  620. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  621. }
  622. },
  623. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  624. "dependencies": {
  625. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  626. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  627. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  628. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  629. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  630. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  631. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  632. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  633. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  634. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  635. }
  636. },
  637. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  638. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  639. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {},
  640. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  641. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  642. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  643. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  644. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {},
  645. "System.AppContext/4.3.0": {
  646. "dependencies": {
  647. "System.Runtime": "4.3.0"
  648. }
  649. },
  650. "System.Buffers/4.3.0": {
  651. "dependencies": {
  652. "System.Diagnostics.Debug": "4.3.0",
  653. "System.Diagnostics.Tracing": "4.3.0",
  654. "System.Resources.ResourceManager": "4.3.0",
  655. "System.Runtime": "4.3.0",
  656. "System.Threading": "4.3.0"
  657. }
  658. },
  659. "System.Collections/4.3.0": {
  660. "dependencies": {
  661. "Microsoft.NETCore.Platforms": "1.1.0",
  662. "Microsoft.NETCore.Targets": "1.1.0",
  663. "System.Runtime": "4.3.0"
  664. }
  665. },
  666. "System.Collections.Concurrent/4.3.0": {
  667. "dependencies": {
  668. "System.Collections": "4.3.0",
  669. "System.Diagnostics.Debug": "4.3.0",
  670. "System.Diagnostics.Tracing": "4.3.0",
  671. "System.Globalization": "4.3.0",
  672. "System.Reflection": "4.3.0",
  673. "System.Resources.ResourceManager": "4.3.0",
  674. "System.Runtime": "4.3.0",
  675. "System.Runtime.Extensions": "4.3.0",
  676. "System.Threading": "4.3.0",
  677. "System.Threading.Tasks": "4.3.0"
  678. }
  679. },
  680. "System.Collections.Immutable/5.0.0": {
  681. "runtime": {
  682. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  683. "assemblyVersion": "5.0.0.0",
  684. "fileVersion": "5.0.20.51904"
  685. }
  686. }
  687. },
  688. "System.Collections.NonGeneric/4.3.0": {
  689. "dependencies": {
  690. "System.Diagnostics.Debug": "4.3.0",
  691. "System.Globalization": "4.3.0",
  692. "System.Resources.ResourceManager": "4.3.0",
  693. "System.Runtime": "4.3.0",
  694. "System.Runtime.Extensions": "4.3.0",
  695. "System.Threading": "4.3.0"
  696. }
  697. },
  698. "System.Collections.Specialized/4.3.0": {
  699. "dependencies": {
  700. "System.Collections.NonGeneric": "4.3.0",
  701. "System.Globalization": "4.3.0",
  702. "System.Globalization.Extensions": "4.3.0",
  703. "System.Resources.ResourceManager": "4.3.0",
  704. "System.Runtime": "4.3.0",
  705. "System.Runtime.Extensions": "4.3.0",
  706. "System.Threading": "4.3.0"
  707. }
  708. },
  709. "System.ComponentModel/4.3.0": {
  710. "dependencies": {
  711. "System.Runtime": "4.3.0"
  712. }
  713. },
  714. "System.ComponentModel.Annotations/5.0.0": {
  715. "runtime": {
  716. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  717. "assemblyVersion": "5.0.0.0",
  718. "fileVersion": "5.0.20.51904"
  719. }
  720. }
  721. },
  722. "System.ComponentModel.Primitives/4.3.0": {
  723. "dependencies": {
  724. "System.ComponentModel": "4.3.0",
  725. "System.Resources.ResourceManager": "4.3.0",
  726. "System.Runtime": "4.3.0"
  727. }
  728. },
  729. "System.ComponentModel.TypeConverter/4.3.0": {
  730. "dependencies": {
  731. "System.Collections": "4.3.0",
  732. "System.Collections.NonGeneric": "4.3.0",
  733. "System.Collections.Specialized": "4.3.0",
  734. "System.ComponentModel": "4.3.0",
  735. "System.ComponentModel.Primitives": "4.3.0",
  736. "System.Globalization": "4.3.0",
  737. "System.Linq": "4.3.0",
  738. "System.Reflection": "4.3.0",
  739. "System.Reflection.Extensions": "4.3.0",
  740. "System.Reflection.Primitives": "4.3.0",
  741. "System.Reflection.TypeExtensions": "4.3.0",
  742. "System.Resources.ResourceManager": "4.3.0",
  743. "System.Runtime": "4.3.0",
  744. "System.Runtime.Extensions": "4.3.0",
  745. "System.Threading": "4.3.0"
  746. }
  747. },
  748. "System.Console/4.3.0": {
  749. "dependencies": {
  750. "Microsoft.NETCore.Platforms": "1.1.0",
  751. "Microsoft.NETCore.Targets": "1.1.0",
  752. "System.IO": "4.3.0",
  753. "System.Runtime": "4.3.0",
  754. "System.Text.Encoding": "4.3.0"
  755. }
  756. },
  757. "System.Diagnostics.Debug/4.3.0": {
  758. "dependencies": {
  759. "Microsoft.NETCore.Platforms": "1.1.0",
  760. "Microsoft.NETCore.Targets": "1.1.0",
  761. "System.Runtime": "4.3.0"
  762. }
  763. },
  764. "System.Diagnostics.DiagnosticSource/5.0.1": {
  765. "runtime": {
  766. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {
  767. "assemblyVersion": "5.0.0.0",
  768. "fileVersion": "5.0.220.61120"
  769. }
  770. }
  771. },
  772. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  773. "dependencies": {
  774. "System.Diagnostics.TraceSource": "4.3.0",
  775. "System.Globalization": "4.3.0",
  776. "System.IO": "4.3.0",
  777. "System.Resources.ResourceManager": "4.3.0",
  778. "System.Runtime": "4.3.0",
  779. "System.Threading": "4.3.0"
  780. }
  781. },
  782. "System.Diagnostics.Tools/4.3.0": {
  783. "dependencies": {
  784. "Microsoft.NETCore.Platforms": "1.1.0",
  785. "Microsoft.NETCore.Targets": "1.1.0",
  786. "System.Runtime": "4.3.0"
  787. }
  788. },
  789. "System.Diagnostics.TraceSource/4.3.0": {
  790. "dependencies": {
  791. "Microsoft.NETCore.Platforms": "1.1.0",
  792. "System.Collections": "4.3.0",
  793. "System.Diagnostics.Debug": "4.3.0",
  794. "System.Globalization": "4.3.0",
  795. "System.Resources.ResourceManager": "4.3.0",
  796. "System.Runtime": "4.3.0",
  797. "System.Runtime.Extensions": "4.3.0",
  798. "System.Threading": "4.3.0",
  799. "runtime.native.System": "4.3.0"
  800. }
  801. },
  802. "System.Diagnostics.Tracing/4.3.0": {
  803. "dependencies": {
  804. "Microsoft.NETCore.Platforms": "1.1.0",
  805. "Microsoft.NETCore.Targets": "1.1.0",
  806. "System.Runtime": "4.3.0"
  807. }
  808. },
  809. "System.Dynamic.Runtime/4.3.0": {
  810. "dependencies": {
  811. "System.Collections": "4.3.0",
  812. "System.Diagnostics.Debug": "4.3.0",
  813. "System.Linq": "4.3.0",
  814. "System.Linq.Expressions": "4.3.0",
  815. "System.ObjectModel": "4.3.0",
  816. "System.Reflection": "4.3.0",
  817. "System.Reflection.Emit": "4.7.0",
  818. "System.Reflection.Emit.ILGeneration": "4.3.0",
  819. "System.Reflection.Primitives": "4.3.0",
  820. "System.Reflection.TypeExtensions": "4.3.0",
  821. "System.Resources.ResourceManager": "4.3.0",
  822. "System.Runtime": "4.3.0",
  823. "System.Runtime.Extensions": "4.3.0",
  824. "System.Threading": "4.3.0"
  825. }
  826. },
  827. "System.Globalization/4.3.0": {
  828. "dependencies": {
  829. "Microsoft.NETCore.Platforms": "1.1.0",
  830. "Microsoft.NETCore.Targets": "1.1.0",
  831. "System.Runtime": "4.3.0"
  832. }
  833. },
  834. "System.Globalization.Calendars/4.3.0": {
  835. "dependencies": {
  836. "Microsoft.NETCore.Platforms": "1.1.0",
  837. "Microsoft.NETCore.Targets": "1.1.0",
  838. "System.Globalization": "4.3.0",
  839. "System.Runtime": "4.3.0"
  840. }
  841. },
  842. "System.Globalization.Extensions/4.3.0": {
  843. "dependencies": {
  844. "Microsoft.NETCore.Platforms": "1.1.0",
  845. "System.Globalization": "4.3.0",
  846. "System.Resources.ResourceManager": "4.3.0",
  847. "System.Runtime": "4.3.0",
  848. "System.Runtime.Extensions": "4.3.0",
  849. "System.Runtime.InteropServices": "4.3.0"
  850. }
  851. },
  852. "System.IO/4.3.0": {
  853. "dependencies": {
  854. "Microsoft.NETCore.Platforms": "1.1.0",
  855. "Microsoft.NETCore.Targets": "1.1.0",
  856. "System.Runtime": "4.3.0",
  857. "System.Text.Encoding": "4.3.0",
  858. "System.Threading.Tasks": "4.3.0"
  859. }
  860. },
  861. "System.IO.Compression/4.3.0": {
  862. "dependencies": {
  863. "Microsoft.NETCore.Platforms": "1.1.0",
  864. "System.Buffers": "4.3.0",
  865. "System.Collections": "4.3.0",
  866. "System.Diagnostics.Debug": "4.3.0",
  867. "System.IO": "4.3.0",
  868. "System.Resources.ResourceManager": "4.3.0",
  869. "System.Runtime": "4.3.0",
  870. "System.Runtime.Extensions": "4.3.0",
  871. "System.Runtime.Handles": "4.3.0",
  872. "System.Runtime.InteropServices": "4.3.0",
  873. "System.Text.Encoding": "4.3.0",
  874. "System.Threading": "4.3.0",
  875. "System.Threading.Tasks": "4.3.0",
  876. "runtime.native.System": "4.3.0",
  877. "runtime.native.System.IO.Compression": "4.3.0"
  878. }
  879. },
  880. "System.IO.Compression.ZipFile/4.3.0": {
  881. "dependencies": {
  882. "System.Buffers": "4.3.0",
  883. "System.IO": "4.3.0",
  884. "System.IO.Compression": "4.3.0",
  885. "System.IO.FileSystem": "4.3.0",
  886. "System.IO.FileSystem.Primitives": "4.3.0",
  887. "System.Resources.ResourceManager": "4.3.0",
  888. "System.Runtime": "4.3.0",
  889. "System.Runtime.Extensions": "4.3.0",
  890. "System.Text.Encoding": "4.3.0"
  891. }
  892. },
  893. "System.IO.FileSystem/4.3.0": {
  894. "dependencies": {
  895. "Microsoft.NETCore.Platforms": "1.1.0",
  896. "Microsoft.NETCore.Targets": "1.1.0",
  897. "System.IO": "4.3.0",
  898. "System.IO.FileSystem.Primitives": "4.3.0",
  899. "System.Runtime": "4.3.0",
  900. "System.Runtime.Handles": "4.3.0",
  901. "System.Text.Encoding": "4.3.0",
  902. "System.Threading.Tasks": "4.3.0"
  903. }
  904. },
  905. "System.IO.FileSystem.Primitives/4.3.0": {
  906. "dependencies": {
  907. "System.Runtime": "4.3.0"
  908. }
  909. },
  910. "System.Linq/4.3.0": {
  911. "dependencies": {
  912. "System.Collections": "4.3.0",
  913. "System.Diagnostics.Debug": "4.3.0",
  914. "System.Resources.ResourceManager": "4.3.0",
  915. "System.Runtime": "4.3.0",
  916. "System.Runtime.Extensions": "4.3.0"
  917. }
  918. },
  919. "System.Linq.Expressions/4.3.0": {
  920. "dependencies": {
  921. "System.Collections": "4.3.0",
  922. "System.Diagnostics.Debug": "4.3.0",
  923. "System.Globalization": "4.3.0",
  924. "System.IO": "4.3.0",
  925. "System.Linq": "4.3.0",
  926. "System.ObjectModel": "4.3.0",
  927. "System.Reflection": "4.3.0",
  928. "System.Reflection.Emit": "4.7.0",
  929. "System.Reflection.Emit.ILGeneration": "4.3.0",
  930. "System.Reflection.Emit.Lightweight": "4.3.0",
  931. "System.Reflection.Extensions": "4.3.0",
  932. "System.Reflection.Primitives": "4.3.0",
  933. "System.Reflection.TypeExtensions": "4.3.0",
  934. "System.Resources.ResourceManager": "4.3.0",
  935. "System.Runtime": "4.3.0",
  936. "System.Runtime.Extensions": "4.3.0",
  937. "System.Threading": "4.3.0"
  938. }
  939. },
  940. "System.Net.Http/4.3.0": {
  941. "dependencies": {
  942. "Microsoft.NETCore.Platforms": "1.1.0",
  943. "System.Collections": "4.3.0",
  944. "System.Diagnostics.Debug": "4.3.0",
  945. "System.Diagnostics.DiagnosticSource": "5.0.1",
  946. "System.Diagnostics.Tracing": "4.3.0",
  947. "System.Globalization": "4.3.0",
  948. "System.Globalization.Extensions": "4.3.0",
  949. "System.IO": "4.3.0",
  950. "System.IO.FileSystem": "4.3.0",
  951. "System.Net.Primitives": "4.3.0",
  952. "System.Resources.ResourceManager": "4.3.0",
  953. "System.Runtime": "4.3.0",
  954. "System.Runtime.Extensions": "4.3.0",
  955. "System.Runtime.Handles": "4.3.0",
  956. "System.Runtime.InteropServices": "4.3.0",
  957. "System.Security.Cryptography.Algorithms": "4.3.0",
  958. "System.Security.Cryptography.Encoding": "4.3.0",
  959. "System.Security.Cryptography.OpenSsl": "4.3.0",
  960. "System.Security.Cryptography.Primitives": "4.3.0",
  961. "System.Security.Cryptography.X509Certificates": "4.3.0",
  962. "System.Text.Encoding": "4.3.0",
  963. "System.Threading": "4.3.0",
  964. "System.Threading.Tasks": "4.3.0",
  965. "runtime.native.System": "4.3.0",
  966. "runtime.native.System.Net.Http": "4.3.0",
  967. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  968. }
  969. },
  970. "System.Net.Primitives/4.3.0": {
  971. "dependencies": {
  972. "Microsoft.NETCore.Platforms": "1.1.0",
  973. "Microsoft.NETCore.Targets": "1.1.0",
  974. "System.Runtime": "4.3.0",
  975. "System.Runtime.Handles": "4.3.0"
  976. }
  977. },
  978. "System.Net.Sockets/4.3.0": {
  979. "dependencies": {
  980. "Microsoft.NETCore.Platforms": "1.1.0",
  981. "Microsoft.NETCore.Targets": "1.1.0",
  982. "System.IO": "4.3.0",
  983. "System.Net.Primitives": "4.3.0",
  984. "System.Runtime": "4.3.0",
  985. "System.Threading.Tasks": "4.3.0"
  986. }
  987. },
  988. "System.ObjectModel/4.3.0": {
  989. "dependencies": {
  990. "System.Collections": "4.3.0",
  991. "System.Diagnostics.Debug": "4.3.0",
  992. "System.Resources.ResourceManager": "4.3.0",
  993. "System.Runtime": "4.3.0",
  994. "System.Threading": "4.3.0"
  995. }
  996. },
  997. "System.Reflection/4.3.0": {
  998. "dependencies": {
  999. "Microsoft.NETCore.Platforms": "1.1.0",
  1000. "Microsoft.NETCore.Targets": "1.1.0",
  1001. "System.IO": "4.3.0",
  1002. "System.Reflection.Primitives": "4.3.0",
  1003. "System.Runtime": "4.3.0"
  1004. }
  1005. },
  1006. "System.Reflection.Emit/4.7.0": {},
  1007. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1008. "dependencies": {
  1009. "System.Reflection": "4.3.0",
  1010. "System.Reflection.Primitives": "4.3.0",
  1011. "System.Runtime": "4.3.0"
  1012. }
  1013. },
  1014. "System.Reflection.Emit.Lightweight/4.3.0": {
  1015. "dependencies": {
  1016. "System.Reflection": "4.3.0",
  1017. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1018. "System.Reflection.Primitives": "4.3.0",
  1019. "System.Runtime": "4.3.0"
  1020. }
  1021. },
  1022. "System.Reflection.Extensions/4.3.0": {
  1023. "dependencies": {
  1024. "Microsoft.NETCore.Platforms": "1.1.0",
  1025. "Microsoft.NETCore.Targets": "1.1.0",
  1026. "System.Reflection": "4.3.0",
  1027. "System.Runtime": "4.3.0"
  1028. }
  1029. },
  1030. "System.Reflection.Metadata/1.6.0": {},
  1031. "System.Reflection.Primitives/4.3.0": {
  1032. "dependencies": {
  1033. "Microsoft.NETCore.Platforms": "1.1.0",
  1034. "Microsoft.NETCore.Targets": "1.1.0",
  1035. "System.Runtime": "4.3.0"
  1036. }
  1037. },
  1038. "System.Reflection.TypeExtensions/4.3.0": {
  1039. "dependencies": {
  1040. "System.Reflection": "4.3.0",
  1041. "System.Runtime": "4.3.0"
  1042. }
  1043. },
  1044. "System.Resources.ResourceManager/4.3.0": {
  1045. "dependencies": {
  1046. "Microsoft.NETCore.Platforms": "1.1.0",
  1047. "Microsoft.NETCore.Targets": "1.1.0",
  1048. "System.Globalization": "4.3.0",
  1049. "System.Reflection": "4.3.0",
  1050. "System.Runtime": "4.3.0"
  1051. }
  1052. },
  1053. "System.Runtime/4.3.0": {
  1054. "dependencies": {
  1055. "Microsoft.NETCore.Platforms": "1.1.0",
  1056. "Microsoft.NETCore.Targets": "1.1.0"
  1057. }
  1058. },
  1059. "System.Runtime.Extensions/4.3.0": {
  1060. "dependencies": {
  1061. "Microsoft.NETCore.Platforms": "1.1.0",
  1062. "Microsoft.NETCore.Targets": "1.1.0",
  1063. "System.Runtime": "4.3.0"
  1064. }
  1065. },
  1066. "System.Runtime.Handles/4.3.0": {
  1067. "dependencies": {
  1068. "Microsoft.NETCore.Platforms": "1.1.0",
  1069. "Microsoft.NETCore.Targets": "1.1.0",
  1070. "System.Runtime": "4.3.0"
  1071. }
  1072. },
  1073. "System.Runtime.InteropServices/4.3.0": {
  1074. "dependencies": {
  1075. "Microsoft.NETCore.Platforms": "1.1.0",
  1076. "Microsoft.NETCore.Targets": "1.1.0",
  1077. "System.Reflection": "4.3.0",
  1078. "System.Reflection.Primitives": "4.3.0",
  1079. "System.Runtime": "4.3.0",
  1080. "System.Runtime.Handles": "4.3.0"
  1081. }
  1082. },
  1083. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  1084. "dependencies": {
  1085. "System.Reflection": "4.3.0",
  1086. "System.Reflection.Extensions": "4.3.0",
  1087. "System.Resources.ResourceManager": "4.3.0",
  1088. "System.Runtime": "4.3.0",
  1089. "System.Runtime.InteropServices": "4.3.0",
  1090. "System.Threading": "4.3.0",
  1091. "runtime.native.System": "4.3.0"
  1092. }
  1093. },
  1094. "System.Runtime.Numerics/4.3.0": {
  1095. "dependencies": {
  1096. "System.Globalization": "4.3.0",
  1097. "System.Resources.ResourceManager": "4.3.0",
  1098. "System.Runtime": "4.3.0",
  1099. "System.Runtime.Extensions": "4.3.0"
  1100. }
  1101. },
  1102. "System.Runtime.Serialization.Primitives/4.1.1": {
  1103. "dependencies": {
  1104. "System.Resources.ResourceManager": "4.3.0",
  1105. "System.Runtime": "4.3.0"
  1106. }
  1107. },
  1108. "System.Security.Cryptography.Algorithms/4.3.0": {
  1109. "dependencies": {
  1110. "Microsoft.NETCore.Platforms": "1.1.0",
  1111. "System.Collections": "4.3.0",
  1112. "System.IO": "4.3.0",
  1113. "System.Resources.ResourceManager": "4.3.0",
  1114. "System.Runtime": "4.3.0",
  1115. "System.Runtime.Extensions": "4.3.0",
  1116. "System.Runtime.Handles": "4.3.0",
  1117. "System.Runtime.InteropServices": "4.3.0",
  1118. "System.Runtime.Numerics": "4.3.0",
  1119. "System.Security.Cryptography.Encoding": "4.3.0",
  1120. "System.Security.Cryptography.Primitives": "4.3.0",
  1121. "System.Text.Encoding": "4.3.0",
  1122. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  1123. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1124. }
  1125. },
  1126. "System.Security.Cryptography.Cng/4.3.0": {
  1127. "dependencies": {
  1128. "Microsoft.NETCore.Platforms": "1.1.0",
  1129. "System.IO": "4.3.0",
  1130. "System.Resources.ResourceManager": "4.3.0",
  1131. "System.Runtime": "4.3.0",
  1132. "System.Runtime.Extensions": "4.3.0",
  1133. "System.Runtime.Handles": "4.3.0",
  1134. "System.Runtime.InteropServices": "4.3.0",
  1135. "System.Security.Cryptography.Algorithms": "4.3.0",
  1136. "System.Security.Cryptography.Encoding": "4.3.0",
  1137. "System.Security.Cryptography.Primitives": "4.3.0",
  1138. "System.Text.Encoding": "4.3.0"
  1139. }
  1140. },
  1141. "System.Security.Cryptography.Csp/4.3.0": {
  1142. "dependencies": {
  1143. "Microsoft.NETCore.Platforms": "1.1.0",
  1144. "System.IO": "4.3.0",
  1145. "System.Reflection": "4.3.0",
  1146. "System.Resources.ResourceManager": "4.3.0",
  1147. "System.Runtime": "4.3.0",
  1148. "System.Runtime.Extensions": "4.3.0",
  1149. "System.Runtime.Handles": "4.3.0",
  1150. "System.Runtime.InteropServices": "4.3.0",
  1151. "System.Security.Cryptography.Algorithms": "4.3.0",
  1152. "System.Security.Cryptography.Encoding": "4.3.0",
  1153. "System.Security.Cryptography.Primitives": "4.3.0",
  1154. "System.Text.Encoding": "4.3.0",
  1155. "System.Threading": "4.3.0"
  1156. }
  1157. },
  1158. "System.Security.Cryptography.Encoding/4.3.0": {
  1159. "dependencies": {
  1160. "Microsoft.NETCore.Platforms": "1.1.0",
  1161. "System.Collections": "4.3.0",
  1162. "System.Collections.Concurrent": "4.3.0",
  1163. "System.Linq": "4.3.0",
  1164. "System.Resources.ResourceManager": "4.3.0",
  1165. "System.Runtime": "4.3.0",
  1166. "System.Runtime.Extensions": "4.3.0",
  1167. "System.Runtime.Handles": "4.3.0",
  1168. "System.Runtime.InteropServices": "4.3.0",
  1169. "System.Security.Cryptography.Primitives": "4.3.0",
  1170. "System.Text.Encoding": "4.3.0",
  1171. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1172. }
  1173. },
  1174. "System.Security.Cryptography.OpenSsl/4.3.0": {
  1175. "dependencies": {
  1176. "System.Collections": "4.3.0",
  1177. "System.IO": "4.3.0",
  1178. "System.Resources.ResourceManager": "4.3.0",
  1179. "System.Runtime": "4.3.0",
  1180. "System.Runtime.Extensions": "4.3.0",
  1181. "System.Runtime.Handles": "4.3.0",
  1182. "System.Runtime.InteropServices": "4.3.0",
  1183. "System.Runtime.Numerics": "4.3.0",
  1184. "System.Security.Cryptography.Algorithms": "4.3.0",
  1185. "System.Security.Cryptography.Encoding": "4.3.0",
  1186. "System.Security.Cryptography.Primitives": "4.3.0",
  1187. "System.Text.Encoding": "4.3.0",
  1188. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1189. }
  1190. },
  1191. "System.Security.Cryptography.Primitives/4.3.0": {
  1192. "dependencies": {
  1193. "System.Diagnostics.Debug": "4.3.0",
  1194. "System.Globalization": "4.3.0",
  1195. "System.IO": "4.3.0",
  1196. "System.Resources.ResourceManager": "4.3.0",
  1197. "System.Runtime": "4.3.0",
  1198. "System.Threading": "4.3.0",
  1199. "System.Threading.Tasks": "4.3.0"
  1200. }
  1201. },
  1202. "System.Security.Cryptography.X509Certificates/4.3.0": {
  1203. "dependencies": {
  1204. "Microsoft.NETCore.Platforms": "1.1.0",
  1205. "System.Collections": "4.3.0",
  1206. "System.Diagnostics.Debug": "4.3.0",
  1207. "System.Globalization": "4.3.0",
  1208. "System.Globalization.Calendars": "4.3.0",
  1209. "System.IO": "4.3.0",
  1210. "System.IO.FileSystem": "4.3.0",
  1211. "System.IO.FileSystem.Primitives": "4.3.0",
  1212. "System.Resources.ResourceManager": "4.3.0",
  1213. "System.Runtime": "4.3.0",
  1214. "System.Runtime.Extensions": "4.3.0",
  1215. "System.Runtime.Handles": "4.3.0",
  1216. "System.Runtime.InteropServices": "4.3.0",
  1217. "System.Runtime.Numerics": "4.3.0",
  1218. "System.Security.Cryptography.Algorithms": "4.3.0",
  1219. "System.Security.Cryptography.Cng": "4.3.0",
  1220. "System.Security.Cryptography.Csp": "4.3.0",
  1221. "System.Security.Cryptography.Encoding": "4.3.0",
  1222. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1223. "System.Security.Cryptography.Primitives": "4.3.0",
  1224. "System.Text.Encoding": "4.3.0",
  1225. "System.Threading": "4.3.0",
  1226. "runtime.native.System": "4.3.0",
  1227. "runtime.native.System.Net.Http": "4.3.0",
  1228. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1229. }
  1230. },
  1231. "System.Text.Encoding/4.3.0": {
  1232. "dependencies": {
  1233. "Microsoft.NETCore.Platforms": "1.1.0",
  1234. "Microsoft.NETCore.Targets": "1.1.0",
  1235. "System.Runtime": "4.3.0"
  1236. }
  1237. },
  1238. "System.Text.Encoding.Extensions/4.3.0": {
  1239. "dependencies": {
  1240. "Microsoft.NETCore.Platforms": "1.1.0",
  1241. "Microsoft.NETCore.Targets": "1.1.0",
  1242. "System.Runtime": "4.3.0",
  1243. "System.Text.Encoding": "4.3.0"
  1244. }
  1245. },
  1246. "System.Text.RegularExpressions/4.3.0": {
  1247. "dependencies": {
  1248. "System.Runtime": "4.3.0"
  1249. }
  1250. },
  1251. "System.Threading/4.3.0": {
  1252. "dependencies": {
  1253. "System.Runtime": "4.3.0",
  1254. "System.Threading.Tasks": "4.3.0"
  1255. }
  1256. },
  1257. "System.Threading.Tasks/4.3.0": {
  1258. "dependencies": {
  1259. "Microsoft.NETCore.Platforms": "1.1.0",
  1260. "Microsoft.NETCore.Targets": "1.1.0",
  1261. "System.Runtime": "4.3.0"
  1262. }
  1263. },
  1264. "System.Threading.Tasks.Extensions/4.3.0": {
  1265. "dependencies": {
  1266. "System.Collections": "4.3.0",
  1267. "System.Runtime": "4.3.0",
  1268. "System.Threading.Tasks": "4.3.0"
  1269. }
  1270. },
  1271. "System.Threading.Timer/4.3.0": {
  1272. "dependencies": {
  1273. "Microsoft.NETCore.Platforms": "1.1.0",
  1274. "Microsoft.NETCore.Targets": "1.1.0",
  1275. "System.Runtime": "4.3.0"
  1276. }
  1277. },
  1278. "System.Xml.ReaderWriter/4.3.0": {
  1279. "dependencies": {
  1280. "System.Collections": "4.3.0",
  1281. "System.Diagnostics.Debug": "4.3.0",
  1282. "System.Globalization": "4.3.0",
  1283. "System.IO": "4.3.0",
  1284. "System.IO.FileSystem": "4.3.0",
  1285. "System.IO.FileSystem.Primitives": "4.3.0",
  1286. "System.Resources.ResourceManager": "4.3.0",
  1287. "System.Runtime": "4.3.0",
  1288. "System.Runtime.Extensions": "4.3.0",
  1289. "System.Runtime.InteropServices": "4.3.0",
  1290. "System.Text.Encoding": "4.3.0",
  1291. "System.Text.Encoding.Extensions": "4.3.0",
  1292. "System.Text.RegularExpressions": "4.3.0",
  1293. "System.Threading.Tasks": "4.3.0",
  1294. "System.Threading.Tasks.Extensions": "4.3.0"
  1295. }
  1296. },
  1297. "System.Xml.XDocument/4.3.0": {
  1298. "dependencies": {
  1299. "System.Collections": "4.3.0",
  1300. "System.Diagnostics.Debug": "4.3.0",
  1301. "System.Diagnostics.Tools": "4.3.0",
  1302. "System.Globalization": "4.3.0",
  1303. "System.IO": "4.3.0",
  1304. "System.Reflection": "4.3.0",
  1305. "System.Resources.ResourceManager": "4.3.0",
  1306. "System.Runtime": "4.3.0",
  1307. "System.Runtime.Extensions": "4.3.0",
  1308. "System.Text.Encoding": "4.3.0",
  1309. "System.Threading": "4.3.0",
  1310. "System.Xml.ReaderWriter": "4.3.0"
  1311. }
  1312. },
  1313. "System.Xml.XmlDocument/4.3.0": {
  1314. "dependencies": {
  1315. "System.Collections": "4.3.0",
  1316. "System.Diagnostics.Debug": "4.3.0",
  1317. "System.Globalization": "4.3.0",
  1318. "System.IO": "4.3.0",
  1319. "System.Resources.ResourceManager": "4.3.0",
  1320. "System.Runtime": "4.3.0",
  1321. "System.Runtime.Extensions": "4.3.0",
  1322. "System.Text.Encoding": "4.3.0",
  1323. "System.Threading": "4.3.0",
  1324. "System.Xml.ReaderWriter": "4.3.0"
  1325. }
  1326. },
  1327. "Backend.ApplicationCore/1.0.0": {
  1328. "dependencies": {
  1329. "AutoMapper": "10.1.1",
  1330. "AutoMapper.Extensions.Microsoft.DependencyInjection": "8.1.1",
  1331. "Backend.Domain": "1.0.0",
  1332. "MediatR": "7.0.0",
  1333. "MediatR.Extensions.Microsoft.DependencyInjection": "7.0.0",
  1334. "Microsoft.EntityFrameworkCore": "5.0.13"
  1335. },
  1336. "runtime": {
  1337. "Backend.ApplicationCore.dll": {}
  1338. }
  1339. },
  1340. "Backend.Domain/1.0.0": {
  1341. "runtime": {
  1342. "Backend.Domain.dll": {}
  1343. }
  1344. },
  1345. "Backend.Infrastructure/1.0.0": {
  1346. "dependencies": {
  1347. "Backend.ApplicationCore": "1.0.0",
  1348. "Backend.Domain": "1.0.0"
  1349. },
  1350. "runtime": {
  1351. "Backend.Infrastructure.dll": {}
  1352. }
  1353. }
  1354. }
  1355. },
  1356. "libraries": {
  1357. "Backend.MSTest/1.0.0": {
  1358. "type": "project",
  1359. "serviceable": false,
  1360. "sha512": ""
  1361. },
  1362. "AutoMapper/10.1.1": {
  1363. "type": "package",
  1364. "serviceable": true,
  1365. "sha512": "sha512-uMgbqOdu9ZG5cIOty0C85hzzayBH2i9BthnS5FlMqKtMSHDv4ts81a2jS1VFaDBVhlBeIqJ/kQKjQY95BZde9w==",
  1366. "path": "automapper/10.1.1",
  1367. "hashPath": "automapper.10.1.1.nupkg.sha512"
  1368. },
  1369. "AutoMapper.Extensions.Microsoft.DependencyInjection/8.1.1": {
  1370. "type": "package",
  1371. "serviceable": true,
  1372. "sha512": "sha512-xSWoVzOipuDU4PeZcUfaZQ+xqXU8QmGv5jrdlxt3MYm9xaOmrefqcfzGQ3SQ+D+8wfBa/ZwSuL0qKOVj080inA==",
  1373. "path": "automapper.extensions.microsoft.dependencyinjection/8.1.1",
  1374. "hashPath": "automapper.extensions.microsoft.dependencyinjection.8.1.1.nupkg.sha512"
  1375. },
  1376. "Castle.Core/4.4.0": {
  1377. "type": "package",
  1378. "serviceable": true,
  1379. "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==",
  1380. "path": "castle.core/4.4.0",
  1381. "hashPath": "castle.core.4.4.0.nupkg.sha512"
  1382. },
  1383. "coverlet.collector/3.0.2": {
  1384. "type": "package",
  1385. "serviceable": true,
  1386. "sha512": "sha512-iBvPAIDaI7j/iMx/DzCGCJ3rdiOmel9VINEfaTiBv/NKIGHOP4X3hqc6Q1wgMtArEshlhXexQknP17SK4vXb1w==",
  1387. "path": "coverlet.collector/3.0.2",
  1388. "hashPath": "coverlet.collector.3.0.2.nupkg.sha512"
  1389. },
  1390. "MediatR/7.0.0": {
  1391. "type": "package",
  1392. "serviceable": true,
  1393. "sha512": "sha512-sgfHxkBsmMlHOD564SnLqTvSbAuGlFiZfc6ybxBSI1wYV/2u+Y5TXtFoIhCISFg5/s/6aMvB338QC2JseHsjTA==",
  1394. "path": "mediatr/7.0.0",
  1395. "hashPath": "mediatr.7.0.0.nupkg.sha512"
  1396. },
  1397. "MediatR.Extensions.Microsoft.DependencyInjection/7.0.0": {
  1398. "type": "package",
  1399. "serviceable": true,
  1400. "sha512": "sha512-DRf8jBnjBg84da1L1L0YmwqkhCV+UJTg7bTBHOhleWrLfrtSK5h5aNeE1HOofs1Afisq03B6H2C10NmS47gmqA==",
  1401. "path": "mediatr.extensions.microsoft.dependencyinjection/7.0.0",
  1402. "hashPath": "mediatr.extensions.microsoft.dependencyinjection.7.0.0.nupkg.sha512"
  1403. },
  1404. "Microsoft.CodeCoverage/16.9.4": {
  1405. "type": "package",
  1406. "serviceable": true,
  1407. "sha512": "sha512-N/RYB07gJkPZ1nJiq0QGxFIL+X5vVl4GI99PiTYXpbfI30NTZMRJgZ+4jYLFYLDQqj9o1Juhv+3iiymd7lozrA==",
  1408. "path": "microsoft.codecoverage/16.9.4",
  1409. "hashPath": "microsoft.codecoverage.16.9.4.nupkg.sha512"
  1410. },
  1411. "Microsoft.CSharp/4.7.0": {
  1412. "type": "package",
  1413. "serviceable": true,
  1414. "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  1415. "path": "microsoft.csharp/4.7.0",
  1416. "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
  1417. },
  1418. "Microsoft.EntityFrameworkCore/5.0.13": {
  1419. "type": "package",
  1420. "serviceable": true,
  1421. "sha512": "sha512-Q5dVSbK5Id01xuAvm2xzrzEUNgO0fFD8mD/qFkD2F4Q23rs5YnrHH+/Wr9PAGNLdKqYWmkB0yTxKBL/0nLgr3g==",
  1422. "path": "microsoft.entityframeworkcore/5.0.13",
  1423. "hashPath": "microsoft.entityframeworkcore.5.0.13.nupkg.sha512"
  1424. },
  1425. "Microsoft.EntityFrameworkCore.Abstractions/5.0.13": {
  1426. "type": "package",
  1427. "serviceable": true,
  1428. "sha512": "sha512-TdnEXtDpm3o9s6RzUX0Mjgfgms4BD04uyvyxM9Xg8tQPOqqh7ZO6fWy+xJTj+wTcYuY5pYSkfPNGvtJ5FRmqWQ==",
  1429. "path": "microsoft.entityframeworkcore.abstractions/5.0.13",
  1430. "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.13.nupkg.sha512"
  1431. },
  1432. "Microsoft.EntityFrameworkCore.Analyzers/5.0.13": {
  1433. "type": "package",
  1434. "serviceable": true,
  1435. "sha512": "sha512-torTg+dQC/vOlFI5FZsRmOAA5pKtr8cJNJ5SWsl0RVYmhb5I7s/V3T1NsIzSqJTYzGBssHl5mFbiBODeBdQpnQ==",
  1436. "path": "microsoft.entityframeworkcore.analyzers/5.0.13",
  1437. "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.13.nupkg.sha512"
  1438. },
  1439. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  1440. "type": "package",
  1441. "serviceable": true,
  1442. "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  1443. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  1444. "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512"
  1445. },
  1446. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  1447. "type": "package",
  1448. "serviceable": true,
  1449. "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  1450. "path": "microsoft.extensions.caching.memory/5.0.0",
  1451. "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512"
  1452. },
  1453. "Microsoft.Extensions.DependencyInjection/5.0.2": {
  1454. "type": "package",
  1455. "serviceable": true,
  1456. "sha512": "sha512-xzFW00AZEvOXM1OX+0+AYH5op/Hf3u//e6wszBd/rK72sypD+jx5CtsHxM4BVuFBEs8SajfO4QzSJtrQaHDr4A==",
  1457. "path": "microsoft.extensions.dependencyinjection/5.0.2",
  1458. "hashPath": "microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512"
  1459. },
  1460. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1461. "type": "package",
  1462. "serviceable": true,
  1463. "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  1464. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  1465. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
  1466. },
  1467. "Microsoft.Extensions.Logging/5.0.0": {
  1468. "type": "package",
  1469. "serviceable": true,
  1470. "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  1471. "path": "microsoft.extensions.logging/5.0.0",
  1472. "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
  1473. },
  1474. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  1475. "type": "package",
  1476. "serviceable": true,
  1477. "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  1478. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  1479. "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
  1480. },
  1481. "Microsoft.Extensions.Options/5.0.0": {
  1482. "type": "package",
  1483. "serviceable": true,
  1484. "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  1485. "path": "microsoft.extensions.options/5.0.0",
  1486. "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
  1487. },
  1488. "Microsoft.Extensions.Primitives/5.0.0": {
  1489. "type": "package",
  1490. "serviceable": true,
  1491. "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
  1492. "path": "microsoft.extensions.primitives/5.0.0",
  1493. "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
  1494. },
  1495. "Microsoft.NET.Test.Sdk/16.9.4": {
  1496. "type": "package",
  1497. "serviceable": true,
  1498. "sha512": "sha512-M/k16vmS7Hz/+Kuy3p6XE743XPjYYMzfN5ZvpSLY44Ngh5IBMk0Je5Qed8oq6/kvzJA2DTrXa7YrfceHhbQKeQ==",
  1499. "path": "microsoft.net.test.sdk/16.9.4",
  1500. "hashPath": "microsoft.net.test.sdk.16.9.4.nupkg.sha512"
  1501. },
  1502. "Microsoft.NETCore.Platforms/1.1.0": {
  1503. "type": "package",
  1504. "serviceable": true,
  1505. "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
  1506. "path": "microsoft.netcore.platforms/1.1.0",
  1507. "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
  1508. },
  1509. "Microsoft.NETCore.Targets/1.1.0": {
  1510. "type": "package",
  1511. "serviceable": true,
  1512. "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  1513. "path": "microsoft.netcore.targets/1.1.0",
  1514. "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
  1515. },
  1516. "Microsoft.TestPlatform.ObjectModel/16.9.4": {
  1517. "type": "package",
  1518. "serviceable": true,
  1519. "sha512": "sha512-t43y1MZYshZFfc/g8nzy4o86PW2WfFcoQ+MjgYUlfj1pptKHc7Xr+R6sFBODA+y1I+Mc+Ujzme/c2cGX2AuOwQ==",
  1520. "path": "microsoft.testplatform.objectmodel/16.9.4",
  1521. "hashPath": "microsoft.testplatform.objectmodel.16.9.4.nupkg.sha512"
  1522. },
  1523. "Microsoft.TestPlatform.TestHost/16.9.4": {
  1524. "type": "package",
  1525. "serviceable": true,
  1526. "sha512": "sha512-3YuJ7OSb1YPk+OTZfpa8U7I+TUZRH/nCeOWcN+TERp1SUZrcGeG2IGBZvVZ9CbKuQ+7wLiwsfcIgKIu+kbvibg==",
  1527. "path": "microsoft.testplatform.testhost/16.9.4",
  1528. "hashPath": "microsoft.testplatform.testhost.16.9.4.nupkg.sha512"
  1529. },
  1530. "Microsoft.Win32.Primitives/4.3.0": {
  1531. "type": "package",
  1532. "serviceable": true,
  1533. "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  1534. "path": "microsoft.win32.primitives/4.3.0",
  1535. "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512"
  1536. },
  1537. "MSTest.TestAdapter/2.2.3": {
  1538. "type": "package",
  1539. "serviceable": true,
  1540. "sha512": "sha512-Xxc6+JyELKOmM46CYrHxL9f2LMZGnx1Neh0dr52THZbmVTwlJM1tj0U5RQ50G+wxsfsU8ZfR1HAUugc+64b6TA==",
  1541. "path": "mstest.testadapter/2.2.3",
  1542. "hashPath": "mstest.testadapter.2.2.3.nupkg.sha512"
  1543. },
  1544. "MSTest.TestFramework/2.2.3": {
  1545. "type": "package",
  1546. "serviceable": true,
  1547. "sha512": "sha512-wqrF2D/uqhTCFJ4bQjhf5vLPXnsjbRZMncr2/+wnhy922YAqLGO2VOjQ6grxGqOWyVWFeIDnQFpLKFRNnrAd7w==",
  1548. "path": "mstest.testframework/2.2.3",
  1549. "hashPath": "mstest.testframework.2.2.3.nupkg.sha512"
  1550. },
  1551. "NETStandard.Library/1.6.1": {
  1552. "type": "package",
  1553. "serviceable": true,
  1554. "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  1555. "path": "netstandard.library/1.6.1",
  1556. "hashPath": "netstandard.library.1.6.1.nupkg.sha512"
  1557. },
  1558. "Newtonsoft.Json/9.0.1": {
  1559. "type": "package",
  1560. "serviceable": true,
  1561. "sha512": "sha512-U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  1562. "path": "newtonsoft.json/9.0.1",
  1563. "hashPath": "newtonsoft.json.9.0.1.nupkg.sha512"
  1564. },
  1565. "NSubstitute/4.2.2": {
  1566. "type": "package",
  1567. "serviceable": true,
  1568. "sha512": "sha512-s+H1fUo+WSymYxNdZlwhekdNDLv4w0ZvmwYheMEe4tWACcMDNoqfcDpeL66RyWfurNvvIYQJNP3VUwX2aAC1gw==",
  1569. "path": "nsubstitute/4.2.2",
  1570. "hashPath": "nsubstitute.4.2.2.nupkg.sha512"
  1571. },
  1572. "NuGet.Frameworks/5.0.0": {
  1573. "type": "package",
  1574. "serviceable": true,
  1575. "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==",
  1576. "path": "nuget.frameworks/5.0.0",
  1577. "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512"
  1578. },
  1579. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1580. "type": "package",
  1581. "serviceable": true,
  1582. "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  1583. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1584. "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1585. },
  1586. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1587. "type": "package",
  1588. "serviceable": true,
  1589. "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  1590. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1591. "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1592. },
  1593. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1594. "type": "package",
  1595. "serviceable": true,
  1596. "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  1597. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1598. "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1599. },
  1600. "runtime.native.System/4.3.0": {
  1601. "type": "package",
  1602. "serviceable": true,
  1603. "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  1604. "path": "runtime.native.system/4.3.0",
  1605. "hashPath": "runtime.native.system.4.3.0.nupkg.sha512"
  1606. },
  1607. "runtime.native.System.IO.Compression/4.3.0": {
  1608. "type": "package",
  1609. "serviceable": true,
  1610. "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  1611. "path": "runtime.native.system.io.compression/4.3.0",
  1612. "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512"
  1613. },
  1614. "runtime.native.System.Net.Http/4.3.0": {
  1615. "type": "package",
  1616. "serviceable": true,
  1617. "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  1618. "path": "runtime.native.system.net.http/4.3.0",
  1619. "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512"
  1620. },
  1621. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1622. "type": "package",
  1623. "serviceable": true,
  1624. "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  1625. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  1626. "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1627. },
  1628. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1629. "type": "package",
  1630. "serviceable": true,
  1631. "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  1632. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  1633. "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1634. },
  1635. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1636. "type": "package",
  1637. "serviceable": true,
  1638. "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  1639. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1640. "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1641. },
  1642. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1643. "type": "package",
  1644. "serviceable": true,
  1645. "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  1646. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1647. "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1648. },
  1649. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1650. "type": "package",
  1651. "serviceable": true,
  1652. "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  1653. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  1654. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512"
  1655. },
  1656. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1657. "type": "package",
  1658. "serviceable": true,
  1659. "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  1660. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1661. "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1662. },
  1663. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1664. "type": "package",
  1665. "serviceable": true,
  1666. "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  1667. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1668. "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1669. },
  1670. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1671. "type": "package",
  1672. "serviceable": true,
  1673. "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  1674. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1675. "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1676. },
  1677. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1678. "type": "package",
  1679. "serviceable": true,
  1680. "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  1681. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1682. "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1683. },
  1684. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1685. "type": "package",
  1686. "serviceable": true,
  1687. "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  1688. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  1689. "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  1690. },
  1691. "System.AppContext/4.3.0": {
  1692. "type": "package",
  1693. "serviceable": true,
  1694. "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  1695. "path": "system.appcontext/4.3.0",
  1696. "hashPath": "system.appcontext.4.3.0.nupkg.sha512"
  1697. },
  1698. "System.Buffers/4.3.0": {
  1699. "type": "package",
  1700. "serviceable": true,
  1701. "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  1702. "path": "system.buffers/4.3.0",
  1703. "hashPath": "system.buffers.4.3.0.nupkg.sha512"
  1704. },
  1705. "System.Collections/4.3.0": {
  1706. "type": "package",
  1707. "serviceable": true,
  1708. "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  1709. "path": "system.collections/4.3.0",
  1710. "hashPath": "system.collections.4.3.0.nupkg.sha512"
  1711. },
  1712. "System.Collections.Concurrent/4.3.0": {
  1713. "type": "package",
  1714. "serviceable": true,
  1715. "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  1716. "path": "system.collections.concurrent/4.3.0",
  1717. "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512"
  1718. },
  1719. "System.Collections.Immutable/5.0.0": {
  1720. "type": "package",
  1721. "serviceable": true,
  1722. "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  1723. "path": "system.collections.immutable/5.0.0",
  1724. "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
  1725. },
  1726. "System.Collections.NonGeneric/4.3.0": {
  1727. "type": "package",
  1728. "serviceable": true,
  1729. "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  1730. "path": "system.collections.nongeneric/4.3.0",
  1731. "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512"
  1732. },
  1733. "System.Collections.Specialized/4.3.0": {
  1734. "type": "package",
  1735. "serviceable": true,
  1736. "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  1737. "path": "system.collections.specialized/4.3.0",
  1738. "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512"
  1739. },
  1740. "System.ComponentModel/4.3.0": {
  1741. "type": "package",
  1742. "serviceable": true,
  1743. "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  1744. "path": "system.componentmodel/4.3.0",
  1745. "hashPath": "system.componentmodel.4.3.0.nupkg.sha512"
  1746. },
  1747. "System.ComponentModel.Annotations/5.0.0": {
  1748. "type": "package",
  1749. "serviceable": true,
  1750. "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  1751. "path": "system.componentmodel.annotations/5.0.0",
  1752. "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
  1753. },
  1754. "System.ComponentModel.Primitives/4.3.0": {
  1755. "type": "package",
  1756. "serviceable": true,
  1757. "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  1758. "path": "system.componentmodel.primitives/4.3.0",
  1759. "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512"
  1760. },
  1761. "System.ComponentModel.TypeConverter/4.3.0": {
  1762. "type": "package",
  1763. "serviceable": true,
  1764. "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  1765. "path": "system.componentmodel.typeconverter/4.3.0",
  1766. "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512"
  1767. },
  1768. "System.Console/4.3.0": {
  1769. "type": "package",
  1770. "serviceable": true,
  1771. "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  1772. "path": "system.console/4.3.0",
  1773. "hashPath": "system.console.4.3.0.nupkg.sha512"
  1774. },
  1775. "System.Diagnostics.Debug/4.3.0": {
  1776. "type": "package",
  1777. "serviceable": true,
  1778. "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  1779. "path": "system.diagnostics.debug/4.3.0",
  1780. "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
  1781. },
  1782. "System.Diagnostics.DiagnosticSource/5.0.1": {
  1783. "type": "package",
  1784. "serviceable": true,
  1785. "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==",
  1786. "path": "system.diagnostics.diagnosticsource/5.0.1",
  1787. "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512"
  1788. },
  1789. "System.Diagnostics.TextWriterTraceListener/4.3.0": {
  1790. "type": "package",
  1791. "serviceable": true,
  1792. "sha512": "sha512-F11kHWeiwYjFWto+kr8tt9ULMH0k8MsT1XmdCGPTLYHhWgN+2g7JsIZiXDrxlFGccSNkbjfwQy4xIS38gzUiZA==",
  1793. "path": "system.diagnostics.textwritertracelistener/4.3.0",
  1794. "hashPath": "system.diagnostics.textwritertracelistener.4.3.0.nupkg.sha512"
  1795. },
  1796. "System.Diagnostics.Tools/4.3.0": {
  1797. "type": "package",
  1798. "serviceable": true,
  1799. "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  1800. "path": "system.diagnostics.tools/4.3.0",
  1801. "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512"
  1802. },
  1803. "System.Diagnostics.TraceSource/4.3.0": {
  1804. "type": "package",
  1805. "serviceable": true,
  1806. "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==",
  1807. "path": "system.diagnostics.tracesource/4.3.0",
  1808. "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512"
  1809. },
  1810. "System.Diagnostics.Tracing/4.3.0": {
  1811. "type": "package",
  1812. "serviceable": true,
  1813. "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  1814. "path": "system.diagnostics.tracing/4.3.0",
  1815. "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512"
  1816. },
  1817. "System.Dynamic.Runtime/4.3.0": {
  1818. "type": "package",
  1819. "serviceable": true,
  1820. "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
  1821. "path": "system.dynamic.runtime/4.3.0",
  1822. "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
  1823. },
  1824. "System.Globalization/4.3.0": {
  1825. "type": "package",
  1826. "serviceable": true,
  1827. "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  1828. "path": "system.globalization/4.3.0",
  1829. "hashPath": "system.globalization.4.3.0.nupkg.sha512"
  1830. },
  1831. "System.Globalization.Calendars/4.3.0": {
  1832. "type": "package",
  1833. "serviceable": true,
  1834. "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  1835. "path": "system.globalization.calendars/4.3.0",
  1836. "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512"
  1837. },
  1838. "System.Globalization.Extensions/4.3.0": {
  1839. "type": "package",
  1840. "serviceable": true,
  1841. "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  1842. "path": "system.globalization.extensions/4.3.0",
  1843. "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512"
  1844. },
  1845. "System.IO/4.3.0": {
  1846. "type": "package",
  1847. "serviceable": true,
  1848. "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  1849. "path": "system.io/4.3.0",
  1850. "hashPath": "system.io.4.3.0.nupkg.sha512"
  1851. },
  1852. "System.IO.Compression/4.3.0": {
  1853. "type": "package",
  1854. "serviceable": true,
  1855. "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  1856. "path": "system.io.compression/4.3.0",
  1857. "hashPath": "system.io.compression.4.3.0.nupkg.sha512"
  1858. },
  1859. "System.IO.Compression.ZipFile/4.3.0": {
  1860. "type": "package",
  1861. "serviceable": true,
  1862. "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  1863. "path": "system.io.compression.zipfile/4.3.0",
  1864. "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512"
  1865. },
  1866. "System.IO.FileSystem/4.3.0": {
  1867. "type": "package",
  1868. "serviceable": true,
  1869. "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  1870. "path": "system.io.filesystem/4.3.0",
  1871. "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512"
  1872. },
  1873. "System.IO.FileSystem.Primitives/4.3.0": {
  1874. "type": "package",
  1875. "serviceable": true,
  1876. "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  1877. "path": "system.io.filesystem.primitives/4.3.0",
  1878. "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512"
  1879. },
  1880. "System.Linq/4.3.0": {
  1881. "type": "package",
  1882. "serviceable": true,
  1883. "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  1884. "path": "system.linq/4.3.0",
  1885. "hashPath": "system.linq.4.3.0.nupkg.sha512"
  1886. },
  1887. "System.Linq.Expressions/4.3.0": {
  1888. "type": "package",
  1889. "serviceable": true,
  1890. "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  1891. "path": "system.linq.expressions/4.3.0",
  1892. "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
  1893. },
  1894. "System.Net.Http/4.3.0": {
  1895. "type": "package",
  1896. "serviceable": true,
  1897. "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  1898. "path": "system.net.http/4.3.0",
  1899. "hashPath": "system.net.http.4.3.0.nupkg.sha512"
  1900. },
  1901. "System.Net.Primitives/4.3.0": {
  1902. "type": "package",
  1903. "serviceable": true,
  1904. "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  1905. "path": "system.net.primitives/4.3.0",
  1906. "hashPath": "system.net.primitives.4.3.0.nupkg.sha512"
  1907. },
  1908. "System.Net.Sockets/4.3.0": {
  1909. "type": "package",
  1910. "serviceable": true,
  1911. "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  1912. "path": "system.net.sockets/4.3.0",
  1913. "hashPath": "system.net.sockets.4.3.0.nupkg.sha512"
  1914. },
  1915. "System.ObjectModel/4.3.0": {
  1916. "type": "package",
  1917. "serviceable": true,
  1918. "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  1919. "path": "system.objectmodel/4.3.0",
  1920. "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
  1921. },
  1922. "System.Reflection/4.3.0": {
  1923. "type": "package",
  1924. "serviceable": true,
  1925. "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  1926. "path": "system.reflection/4.3.0",
  1927. "hashPath": "system.reflection.4.3.0.nupkg.sha512"
  1928. },
  1929. "System.Reflection.Emit/4.7.0": {
  1930. "type": "package",
  1931. "serviceable": true,
  1932. "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
  1933. "path": "system.reflection.emit/4.7.0",
  1934. "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
  1935. },
  1936. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1937. "type": "package",
  1938. "serviceable": true,
  1939. "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  1940. "path": "system.reflection.emit.ilgeneration/4.3.0",
  1941. "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
  1942. },
  1943. "System.Reflection.Emit.Lightweight/4.3.0": {
  1944. "type": "package",
  1945. "serviceable": true,
  1946. "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  1947. "path": "system.reflection.emit.lightweight/4.3.0",
  1948. "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
  1949. },
  1950. "System.Reflection.Extensions/4.3.0": {
  1951. "type": "package",
  1952. "serviceable": true,
  1953. "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  1954. "path": "system.reflection.extensions/4.3.0",
  1955. "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
  1956. },
  1957. "System.Reflection.Metadata/1.6.0": {
  1958. "type": "package",
  1959. "serviceable": true,
  1960. "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  1961. "path": "system.reflection.metadata/1.6.0",
  1962. "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
  1963. },
  1964. "System.Reflection.Primitives/4.3.0": {
  1965. "type": "package",
  1966. "serviceable": true,
  1967. "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  1968. "path": "system.reflection.primitives/4.3.0",
  1969. "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
  1970. },
  1971. "System.Reflection.TypeExtensions/4.3.0": {
  1972. "type": "package",
  1973. "serviceable": true,
  1974. "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  1975. "path": "system.reflection.typeextensions/4.3.0",
  1976. "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
  1977. },
  1978. "System.Resources.ResourceManager/4.3.0": {
  1979. "type": "package",
  1980. "serviceable": true,
  1981. "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  1982. "path": "system.resources.resourcemanager/4.3.0",
  1983. "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
  1984. },
  1985. "System.Runtime/4.3.0": {
  1986. "type": "package",
  1987. "serviceable": true,
  1988. "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  1989. "path": "system.runtime/4.3.0",
  1990. "hashPath": "system.runtime.4.3.0.nupkg.sha512"
  1991. },
  1992. "System.Runtime.Extensions/4.3.0": {
  1993. "type": "package",
  1994. "serviceable": true,
  1995. "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  1996. "path": "system.runtime.extensions/4.3.0",
  1997. "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
  1998. },
  1999. "System.Runtime.Handles/4.3.0": {
  2000. "type": "package",
  2001. "serviceable": true,
  2002. "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  2003. "path": "system.runtime.handles/4.3.0",
  2004. "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
  2005. },
  2006. "System.Runtime.InteropServices/4.3.0": {
  2007. "type": "package",
  2008. "serviceable": true,
  2009. "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  2010. "path": "system.runtime.interopservices/4.3.0",
  2011. "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
  2012. },
  2013. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2014. "type": "package",
  2015. "serviceable": true,
  2016. "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  2017. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  2018. "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512"
  2019. },
  2020. "System.Runtime.Numerics/4.3.0": {
  2021. "type": "package",
  2022. "serviceable": true,
  2023. "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  2024. "path": "system.runtime.numerics/4.3.0",
  2025. "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512"
  2026. },
  2027. "System.Runtime.Serialization.Primitives/4.1.1": {
  2028. "type": "package",
  2029. "serviceable": true,
  2030. "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  2031. "path": "system.runtime.serialization.primitives/4.1.1",
  2032. "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512"
  2033. },
  2034. "System.Security.Cryptography.Algorithms/4.3.0": {
  2035. "type": "package",
  2036. "serviceable": true,
  2037. "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  2038. "path": "system.security.cryptography.algorithms/4.3.0",
  2039. "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512"
  2040. },
  2041. "System.Security.Cryptography.Cng/4.3.0": {
  2042. "type": "package",
  2043. "serviceable": true,
  2044. "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==",
  2045. "path": "system.security.cryptography.cng/4.3.0",
  2046. "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512"
  2047. },
  2048. "System.Security.Cryptography.Csp/4.3.0": {
  2049. "type": "package",
  2050. "serviceable": true,
  2051. "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  2052. "path": "system.security.cryptography.csp/4.3.0",
  2053. "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512"
  2054. },
  2055. "System.Security.Cryptography.Encoding/4.3.0": {
  2056. "type": "package",
  2057. "serviceable": true,
  2058. "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  2059. "path": "system.security.cryptography.encoding/4.3.0",
  2060. "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512"
  2061. },
  2062. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2063. "type": "package",
  2064. "serviceable": true,
  2065. "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  2066. "path": "system.security.cryptography.openssl/4.3.0",
  2067. "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512"
  2068. },
  2069. "System.Security.Cryptography.Primitives/4.3.0": {
  2070. "type": "package",
  2071. "serviceable": true,
  2072. "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  2073. "path": "system.security.cryptography.primitives/4.3.0",
  2074. "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512"
  2075. },
  2076. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2077. "type": "package",
  2078. "serviceable": true,
  2079. "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  2080. "path": "system.security.cryptography.x509certificates/4.3.0",
  2081. "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512"
  2082. },
  2083. "System.Text.Encoding/4.3.0": {
  2084. "type": "package",
  2085. "serviceable": true,
  2086. "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  2087. "path": "system.text.encoding/4.3.0",
  2088. "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
  2089. },
  2090. "System.Text.Encoding.Extensions/4.3.0": {
  2091. "type": "package",
  2092. "serviceable": true,
  2093. "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  2094. "path": "system.text.encoding.extensions/4.3.0",
  2095. "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512"
  2096. },
  2097. "System.Text.RegularExpressions/4.3.0": {
  2098. "type": "package",
  2099. "serviceable": true,
  2100. "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  2101. "path": "system.text.regularexpressions/4.3.0",
  2102. "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512"
  2103. },
  2104. "System.Threading/4.3.0": {
  2105. "type": "package",
  2106. "serviceable": true,
  2107. "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  2108. "path": "system.threading/4.3.0",
  2109. "hashPath": "system.threading.4.3.0.nupkg.sha512"
  2110. },
  2111. "System.Threading.Tasks/4.3.0": {
  2112. "type": "package",
  2113. "serviceable": true,
  2114. "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  2115. "path": "system.threading.tasks/4.3.0",
  2116. "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
  2117. },
  2118. "System.Threading.Tasks.Extensions/4.3.0": {
  2119. "type": "package",
  2120. "serviceable": true,
  2121. "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==",
  2122. "path": "system.threading.tasks.extensions/4.3.0",
  2123. "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512"
  2124. },
  2125. "System.Threading.Timer/4.3.0": {
  2126. "type": "package",
  2127. "serviceable": true,
  2128. "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  2129. "path": "system.threading.timer/4.3.0",
  2130. "hashPath": "system.threading.timer.4.3.0.nupkg.sha512"
  2131. },
  2132. "System.Xml.ReaderWriter/4.3.0": {
  2133. "type": "package",
  2134. "serviceable": true,
  2135. "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  2136. "path": "system.xml.readerwriter/4.3.0",
  2137. "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512"
  2138. },
  2139. "System.Xml.XDocument/4.3.0": {
  2140. "type": "package",
  2141. "serviceable": true,
  2142. "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  2143. "path": "system.xml.xdocument/4.3.0",
  2144. "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512"
  2145. },
  2146. "System.Xml.XmlDocument/4.3.0": {
  2147. "type": "package",
  2148. "serviceable": true,
  2149. "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  2150. "path": "system.xml.xmldocument/4.3.0",
  2151. "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512"
  2152. },
  2153. "Backend.ApplicationCore/1.0.0": {
  2154. "type": "project",
  2155. "serviceable": false,
  2156. "sha512": ""
  2157. },
  2158. "Backend.Domain/1.0.0": {
  2159. "type": "project",
  2160. "serviceable": false,
  2161. "sha512": ""
  2162. },
  2163. "Backend.Infrastructure/1.0.0": {
  2164. "type": "project",
  2165. "serviceable": false,
  2166. "sha512": ""
  2167. }
  2168. }
  2169. }

Powered by TurnKey Linux.