Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Tests.deps.json 120KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994
  1. {
  2. "runtimeTarget": {
  3. "name": ".NETCoreApp,Version=v6.0",
  4. "signature": ""
  5. },
  6. "compilationOptions": {},
  7. "targets": {
  8. ".NETCoreApp,Version=v6.0": {
  9. "Tests/1.0.0": {
  10. "dependencies": {
  11. "Diligent.WebAPI.Business": "1.0.0",
  12. "Diligent.WebAPI.Data": "1.0.0",
  13. "Diligent.WebAPI.Host": "1.0.0",
  14. "FluentAssertions": "6.7.0",
  15. "Microsoft.NET.Test.Sdk": "17.1.0",
  16. "Moq": "4.18.2",
  17. "NUnit": "3.13.3",
  18. "NUnit.Analyzers": "3.3.0",
  19. "NUnit3TestAdapter": "4.2.1",
  20. "coverlet.collector": "3.1.2",
  21. "coverlet.msbuild": "3.1.2"
  22. },
  23. "runtime": {
  24. "Tests.dll": {}
  25. }
  26. },
  27. "AspNetCore.Identity.MongoDbCore/3.1.2": {
  28. "dependencies": {
  29. "Microsoft.Extensions.Identity.Core": "3.1.12",
  30. "Microsoft.Extensions.Identity.Stores": "3.1.12",
  31. "MongoDB.Driver": "2.16.1",
  32. "MongoDbGenericRepository": "1.4.8"
  33. },
  34. "runtime": {
  35. "lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.dll": {
  36. "assemblyVersion": "3.1.2.0",
  37. "fileVersion": "3.1.2.0"
  38. }
  39. }
  40. },
  41. "AutoMapper/11.0.1": {
  42. "dependencies": {
  43. "Microsoft.CSharp": "4.7.0"
  44. },
  45. "runtime": {
  46. "lib/netstandard2.1/AutoMapper.dll": {
  47. "assemblyVersion": "11.0.0.0",
  48. "fileVersion": "11.0.1.0"
  49. }
  50. }
  51. },
  52. "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": {
  53. "dependencies": {
  54. "AutoMapper": "11.0.1",
  55. "Microsoft.Extensions.Options": "6.0.0"
  56. },
  57. "runtime": {
  58. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {
  59. "assemblyVersion": "11.0.0.0",
  60. "fileVersion": "11.0.0.0"
  61. }
  62. }
  63. },
  64. "Castle.Core/5.1.0": {
  65. "dependencies": {
  66. "System.Diagnostics.EventLog": "6.0.0"
  67. },
  68. "runtime": {
  69. "lib/net6.0/Castle.Core.dll": {
  70. "assemblyVersion": "5.0.0.0",
  71. "fileVersion": "5.1.0.0"
  72. }
  73. }
  74. },
  75. "coverlet.collector/3.1.2": {},
  76. "coverlet.msbuild/3.1.2": {},
  77. "DnsClient/1.6.1": {
  78. "dependencies": {
  79. "Microsoft.Win32.Registry": "5.0.0"
  80. },
  81. "runtime": {
  82. "lib/net5.0/DnsClient.dll": {
  83. "assemblyVersion": "1.6.1.0",
  84. "fileVersion": "1.6.1.0"
  85. }
  86. }
  87. },
  88. "FluentAssertions/6.7.0": {
  89. "dependencies": {
  90. "System.Configuration.ConfigurationManager": "4.7.0"
  91. },
  92. "runtime": {
  93. "lib/net6.0/FluentAssertions.dll": {
  94. "assemblyVersion": "6.7.0.0",
  95. "fileVersion": "6.7.0.0"
  96. }
  97. }
  98. },
  99. "MediatR/10.0.1": {
  100. "dependencies": {
  101. "MediatR.Contracts": "1.0.1"
  102. },
  103. "runtime": {
  104. "lib/netstandard2.1/MediatR.dll": {
  105. "assemblyVersion": "10.0.0.0",
  106. "fileVersion": "10.0.1.0"
  107. }
  108. }
  109. },
  110. "MediatR.Contracts/1.0.1": {
  111. "runtime": {
  112. "lib/netstandard2.0/MediatR.Contracts.dll": {
  113. "assemblyVersion": "1.0.1.0",
  114. "fileVersion": "1.0.1.0"
  115. }
  116. }
  117. },
  118. "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": {
  119. "dependencies": {
  120. "MediatR": "10.0.1",
  121. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  122. },
  123. "runtime": {
  124. "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {
  125. "assemblyVersion": "10.0.0.0",
  126. "fileVersion": "10.0.1.0"
  127. }
  128. }
  129. },
  130. "Microsoft.AspNet.WebApi.Client/5.2.9": {
  131. "dependencies": {
  132. "Newtonsoft.Json": "11.0.2",
  133. "Newtonsoft.Json.Bson": "1.0.1"
  134. },
  135. "runtime": {
  136. "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
  137. "assemblyVersion": "5.2.9.0",
  138. "fileVersion": "5.2.61129.10"
  139. }
  140. }
  141. },
  142. "Microsoft.AspNet.WebApi.Core/5.2.9": {
  143. "dependencies": {
  144. "Microsoft.AspNet.WebApi.Client": "5.2.9"
  145. },
  146. "runtime": {
  147. "lib/net45/System.Web.Http.dll": {
  148. "assemblyVersion": "5.2.9.0",
  149. "fileVersion": "5.2.61129.10"
  150. }
  151. }
  152. },
  153. "Microsoft.AspNetCore/2.2.0": {
  154. "dependencies": {
  155. "Microsoft.AspNetCore.Diagnostics": "2.2.0",
  156. "Microsoft.AspNetCore.HostFiltering": "2.2.0",
  157. "Microsoft.AspNetCore.Hosting": "2.2.0",
  158. "Microsoft.AspNetCore.Routing": "2.2.0",
  159. "Microsoft.AspNetCore.Server.IIS": "2.2.0",
  160. "Microsoft.AspNetCore.Server.IISIntegration": "2.2.0",
  161. "Microsoft.AspNetCore.Server.Kestrel": "2.2.0",
  162. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
  163. "Microsoft.Extensions.Configuration.CommandLine": "2.2.0",
  164. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
  165. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  166. "Microsoft.Extensions.Configuration.Json": "2.2.0",
  167. "Microsoft.Extensions.Configuration.UserSecrets": "2.2.0",
  168. "Microsoft.Extensions.Logging": "6.0.0",
  169. "Microsoft.Extensions.Logging.Configuration": "2.2.0",
  170. "Microsoft.Extensions.Logging.Console": "2.2.0",
  171. "Microsoft.Extensions.Logging.Debug": "2.2.0",
  172. "Microsoft.Extensions.Logging.EventSource": "2.2.0"
  173. }
  174. },
  175. "Microsoft.AspNetCore.Authentication/2.2.0": {
  176. "dependencies": {
  177. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  178. "Microsoft.AspNetCore.DataProtection": "2.2.0",
  179. "Microsoft.AspNetCore.Http": "2.2.0",
  180. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  181. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  182. "Microsoft.Extensions.Options": "6.0.0",
  183. "Microsoft.Extensions.WebEncoders": "2.2.0"
  184. }
  185. },
  186. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  187. "dependencies": {
  188. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  189. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  190. "Microsoft.Extensions.Options": "6.0.0"
  191. }
  192. },
  193. "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": {
  194. "dependencies": {
  195. "Microsoft.AspNetCore.Authentication": "2.2.0"
  196. }
  197. },
  198. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  199. "dependencies": {
  200. "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
  201. "Microsoft.AspNetCore.Http": "2.2.0",
  202. "Microsoft.AspNetCore.Http.Extensions": "2.2.0"
  203. }
  204. },
  205. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.6": {
  206. "dependencies": {
  207. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0"
  208. },
  209. "runtime": {
  210. "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  211. "assemblyVersion": "6.0.6.0",
  212. "fileVersion": "6.0.622.26805"
  213. }
  214. }
  215. },
  216. "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
  217. "dependencies": {
  218. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  219. "System.IO.Pipelines": "4.5.2"
  220. }
  221. },
  222. "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": {},
  223. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": {
  224. "dependencies": {
  225. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.12"
  226. }
  227. },
  228. "Microsoft.AspNetCore.DataProtection/2.2.0": {
  229. "dependencies": {
  230. "Microsoft.AspNetCore.Cryptography.Internal": "3.1.12",
  231. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0",
  232. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  233. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  234. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  235. "Microsoft.Extensions.Options": "6.0.0",
  236. "Microsoft.Win32.Registry": "5.0.0",
  237. "System.Security.Cryptography.Xml": "4.5.0",
  238. "System.Security.Principal.Windows": "5.0.0"
  239. }
  240. },
  241. "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {},
  242. "Microsoft.AspNetCore.Diagnostics/2.2.0": {
  243. "dependencies": {
  244. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0",
  245. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  246. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  247. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  248. "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
  249. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  250. "Microsoft.Extensions.Options": "6.0.0",
  251. "System.Diagnostics.DiagnosticSource": "6.0.0",
  252. "System.Reflection.Metadata": "1.6.0"
  253. }
  254. },
  255. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {},
  256. "Microsoft.AspNetCore.HostFiltering/2.2.0": {
  257. "dependencies": {
  258. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  259. "Microsoft.AspNetCore.Http": "2.2.0",
  260. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  261. "Microsoft.Extensions.Options": "6.0.0"
  262. }
  263. },
  264. "Microsoft.AspNetCore.Hosting/2.2.0": {
  265. "dependencies": {
  266. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  267. "Microsoft.AspNetCore.Http": "2.2.0",
  268. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  269. "Microsoft.Extensions.Configuration": "2.2.0",
  270. "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
  271. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  272. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  273. "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
  274. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
  275. "Microsoft.Extensions.Logging": "6.0.0",
  276. "Microsoft.Extensions.Options": "6.0.0",
  277. "System.Diagnostics.DiagnosticSource": "6.0.0",
  278. "System.Reflection.Metadata": "1.6.0"
  279. }
  280. },
  281. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  282. "dependencies": {
  283. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  284. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  285. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8"
  286. }
  287. },
  288. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  289. "dependencies": {
  290. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  291. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  292. }
  293. },
  294. "Microsoft.AspNetCore.Http/2.2.0": {
  295. "dependencies": {
  296. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  297. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  298. "Microsoft.Extensions.ObjectPool": "2.2.0",
  299. "Microsoft.Extensions.Options": "6.0.0",
  300. "Microsoft.Net.Http.Headers": "2.2.0"
  301. }
  302. },
  303. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  304. "dependencies": {
  305. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  306. "System.Text.Encodings.Web": "4.5.0"
  307. }
  308. },
  309. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  310. "dependencies": {
  311. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  312. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
  313. "Microsoft.Net.Http.Headers": "2.2.0",
  314. "System.Buffers": "4.5.1"
  315. }
  316. },
  317. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  318. "dependencies": {
  319. "Microsoft.Extensions.Primitives": "6.0.0"
  320. }
  321. },
  322. "Microsoft.AspNetCore.HttpOverrides/2.2.0": {
  323. "dependencies": {
  324. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  325. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  326. "Microsoft.Extensions.Options": "6.0.0"
  327. }
  328. },
  329. "Microsoft.AspNetCore.Identity/2.2.0": {
  330. "dependencies": {
  331. "Microsoft.AspNetCore.Authentication.Cookies": "2.2.0",
  332. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.12",
  333. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  334. "Microsoft.Extensions.Identity.Core": "3.1.12"
  335. }
  336. },
  337. "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
  338. "runtime": {
  339. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll": {
  340. "assemblyVersion": "5.0.0.0",
  341. "fileVersion": "5.0.7710.5690"
  342. }
  343. }
  344. },
  345. "Microsoft.AspNetCore.Routing/2.2.0": {
  346. "dependencies": {
  347. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  348. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  349. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  350. "Microsoft.Extensions.ObjectPool": "2.2.0",
  351. "Microsoft.Extensions.Options": "6.0.0"
  352. }
  353. },
  354. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  355. "dependencies": {
  356. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  357. }
  358. },
  359. "Microsoft.AspNetCore.Server.IIS/2.2.0": {
  360. "dependencies": {
  361. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  362. "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0",
  363. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  364. "System.IO.Pipelines": "4.5.2",
  365. "System.Security.Principal.Windows": "5.0.0"
  366. }
  367. },
  368. "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": {
  369. "dependencies": {
  370. "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
  371. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  372. "Microsoft.AspNetCore.Http": "2.2.0",
  373. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  374. "Microsoft.AspNetCore.HttpOverrides": "2.2.0",
  375. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  376. "Microsoft.Extensions.Options": "6.0.0",
  377. "System.Buffers": "4.5.1",
  378. "System.IO.Pipelines": "4.5.2",
  379. "System.Memory": "4.5.1",
  380. "System.Numerics.Vectors": "4.5.0",
  381. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  382. "System.Security.Principal.Windows": "5.0.0"
  383. }
  384. },
  385. "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
  386. "dependencies": {
  387. "Microsoft.AspNetCore.Hosting": "2.2.0",
  388. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0",
  389. "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
  390. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.0"
  391. }
  392. },
  393. "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
  394. "dependencies": {
  395. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  396. "Microsoft.AspNetCore.Http": "2.2.0",
  397. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
  398. "Microsoft.AspNetCore.WebUtilities": "2.2.0",
  399. "Microsoft.Extensions.Configuration.Binder": "2.2.0",
  400. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  401. "Microsoft.Extensions.Options": "6.0.0",
  402. "Microsoft.Net.Http.Headers": "2.2.0",
  403. "System.Memory": "4.5.1",
  404. "System.Numerics.Vectors": "4.5.0",
  405. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  406. "System.Security.Cryptography.Cng": "4.5.0",
  407. "System.Threading.Tasks.Extensions": "4.5.1"
  408. }
  409. },
  410. "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
  411. "dependencies": {
  412. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  413. "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0"
  414. },
  415. "runtime": {
  416. "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
  417. "assemblyVersion": "2.2.0.0",
  418. "fileVersion": "2.2.0.18316"
  419. }
  420. }
  421. },
  422. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
  423. "dependencies": {
  424. "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0"
  425. },
  426. "runtime": {
  427. "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
  428. "assemblyVersion": "2.2.0.0",
  429. "fileVersion": "2.2.0.18316"
  430. }
  431. }
  432. },
  433. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": {
  434. "dependencies": {
  435. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  436. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
  437. "Microsoft.Extensions.Options": "6.0.0"
  438. }
  439. },
  440. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  441. "dependencies": {
  442. "Microsoft.Net.Http.Headers": "2.2.0",
  443. "System.Text.Encodings.Web": "4.5.0"
  444. }
  445. },
  446. "Microsoft.CodeCoverage/17.1.0": {
  447. "runtime": {
  448. "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
  449. "assemblyVersion": "15.0.0.0",
  450. "fileVersion": "17.100.221.61401"
  451. }
  452. }
  453. },
  454. "Microsoft.CSharp/4.7.0": {},
  455. "Microsoft.Data.SqlClient/2.1.4": {
  456. "dependencies": {
  457. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  458. "Microsoft.Identity.Client": "4.21.1",
  459. "Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
  460. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0",
  461. "Microsoft.Win32.Registry": "5.0.0",
  462. "System.Configuration.ConfigurationManager": "4.7.0",
  463. "System.Diagnostics.DiagnosticSource": "6.0.0",
  464. "System.Runtime.Caching": "4.7.0",
  465. "System.Security.Principal.Windows": "5.0.0",
  466. "System.Text.Encoding.CodePages": "4.7.0"
  467. },
  468. "runtime": {
  469. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  470. "assemblyVersion": "2.0.20168.4",
  471. "fileVersion": "2.0.20168.4"
  472. }
  473. },
  474. "runtimeTargets": {
  475. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  476. "rid": "unix",
  477. "assetType": "runtime",
  478. "assemblyVersion": "2.0.20168.4",
  479. "fileVersion": "2.0.20168.4"
  480. },
  481. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  482. "rid": "win",
  483. "assetType": "runtime",
  484. "assemblyVersion": "2.0.20168.4",
  485. "fileVersion": "2.0.20168.4"
  486. }
  487. }
  488. },
  489. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  490. "runtimeTargets": {
  491. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  492. "rid": "win-arm",
  493. "assetType": "native",
  494. "fileVersion": "2.1.1.0"
  495. },
  496. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  497. "rid": "win-arm64",
  498. "assetType": "native",
  499. "fileVersion": "2.1.1.0"
  500. },
  501. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  502. "rid": "win-x64",
  503. "assetType": "native",
  504. "fileVersion": "2.1.1.0"
  505. },
  506. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  507. "rid": "win-x86",
  508. "assetType": "native",
  509. "fileVersion": "2.1.1.0"
  510. }
  511. }
  512. },
  513. "Microsoft.EntityFrameworkCore/6.0.3": {
  514. "dependencies": {
  515. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.3",
  516. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.3",
  517. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  518. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  519. "Microsoft.Extensions.Logging": "6.0.0",
  520. "System.Collections.Immutable": "6.0.0",
  521. "System.Diagnostics.DiagnosticSource": "6.0.0"
  522. },
  523. "runtime": {
  524. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  525. "assemblyVersion": "6.0.3.0",
  526. "fileVersion": "6.0.322.12306"
  527. }
  528. }
  529. },
  530. "Microsoft.EntityFrameworkCore.Abstractions/6.0.3": {
  531. "runtime": {
  532. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  533. "assemblyVersion": "6.0.3.0",
  534. "fileVersion": "6.0.322.12306"
  535. }
  536. }
  537. },
  538. "Microsoft.EntityFrameworkCore.Analyzers/6.0.3": {},
  539. "Microsoft.EntityFrameworkCore.Relational/6.0.3": {
  540. "dependencies": {
  541. "Microsoft.EntityFrameworkCore": "6.0.3",
  542. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  543. },
  544. "runtime": {
  545. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  546. "assemblyVersion": "6.0.3.0",
  547. "fileVersion": "6.0.322.12306"
  548. }
  549. }
  550. },
  551. "Microsoft.EntityFrameworkCore.SqlServer/6.0.3": {
  552. "dependencies": {
  553. "Microsoft.Data.SqlClient": "2.1.4",
  554. "Microsoft.EntityFrameworkCore.Relational": "6.0.3"
  555. },
  556. "runtime": {
  557. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  558. "assemblyVersion": "6.0.3.0",
  559. "fileVersion": "6.0.322.12306"
  560. }
  561. }
  562. },
  563. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
  564. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  565. "dependencies": {
  566. "Microsoft.Extensions.Primitives": "6.0.0"
  567. }
  568. },
  569. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  570. "dependencies": {
  571. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  572. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  573. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  574. "Microsoft.Extensions.Options": "6.0.0",
  575. "Microsoft.Extensions.Primitives": "6.0.0"
  576. },
  577. "runtime": {
  578. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  579. "assemblyVersion": "6.0.0.0",
  580. "fileVersion": "6.0.222.6406"
  581. }
  582. }
  583. },
  584. "Microsoft.Extensions.Configuration/2.2.0": {
  585. "dependencies": {
  586. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  587. }
  588. },
  589. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  590. "dependencies": {
  591. "Microsoft.Extensions.Primitives": "6.0.0"
  592. }
  593. },
  594. "Microsoft.Extensions.Configuration.Binder/2.2.0": {
  595. "dependencies": {
  596. "Microsoft.Extensions.Configuration": "2.2.0"
  597. }
  598. },
  599. "Microsoft.Extensions.Configuration.CommandLine/2.2.0": {
  600. "dependencies": {
  601. "Microsoft.Extensions.Configuration": "2.2.0"
  602. }
  603. },
  604. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
  605. "dependencies": {
  606. "Microsoft.Extensions.Configuration": "2.2.0"
  607. }
  608. },
  609. "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
  610. "dependencies": {
  611. "Microsoft.Extensions.Configuration": "2.2.0",
  612. "Microsoft.Extensions.FileProviders.Physical": "2.2.0"
  613. }
  614. },
  615. "Microsoft.Extensions.Configuration.Json/2.2.0": {
  616. "dependencies": {
  617. "Microsoft.Extensions.Configuration": "2.2.0",
  618. "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
  619. "Newtonsoft.Json": "11.0.2"
  620. }
  621. },
  622. "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": {
  623. "dependencies": {
  624. "Microsoft.Extensions.Configuration.Json": "2.2.0"
  625. }
  626. },
  627. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  628. "dependencies": {
  629. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  630. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  631. }
  632. },
  633. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
  634. "Microsoft.Extensions.DependencyModel/3.0.0": {
  635. "dependencies": {
  636. "System.Text.Json": "4.6.0"
  637. },
  638. "runtime": {
  639. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  640. "assemblyVersion": "3.0.0.0",
  641. "fileVersion": "3.0.19.46305"
  642. }
  643. }
  644. },
  645. "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": {
  646. "dependencies": {
  647. "Microsoft.Extensions.Primitives": "6.0.0"
  648. }
  649. },
  650. "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
  651. "dependencies": {
  652. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
  653. "Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
  654. }
  655. },
  656. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {},
  657. "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
  658. "dependencies": {
  659. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  660. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  661. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
  662. "Microsoft.Extensions.Logging.Abstractions": "6.0.0"
  663. }
  664. },
  665. "Microsoft.Extensions.Identity.Core/3.1.12": {
  666. "dependencies": {
  667. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.12",
  668. "Microsoft.Extensions.Logging": "6.0.0",
  669. "Microsoft.Extensions.Options": "6.0.0"
  670. }
  671. },
  672. "Microsoft.Extensions.Identity.Stores/3.1.12": {
  673. "dependencies": {
  674. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  675. "Microsoft.Extensions.Identity.Core": "3.1.12",
  676. "Microsoft.Extensions.Logging": "6.0.0"
  677. }
  678. },
  679. "Microsoft.Extensions.Logging/6.0.0": {
  680. "dependencies": {
  681. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  682. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  683. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  684. "Microsoft.Extensions.Options": "6.0.0",
  685. "System.Diagnostics.DiagnosticSource": "6.0.0"
  686. }
  687. },
  688. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {},
  689. "Microsoft.Extensions.Logging.Configuration/2.2.0": {
  690. "dependencies": {
  691. "Microsoft.Extensions.Logging": "6.0.0",
  692. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0"
  693. }
  694. },
  695. "Microsoft.Extensions.Logging.Console/2.2.0": {
  696. "dependencies": {
  697. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  698. "Microsoft.Extensions.Logging": "6.0.0",
  699. "Microsoft.Extensions.Logging.Configuration": "2.2.0"
  700. }
  701. },
  702. "Microsoft.Extensions.Logging.Debug/2.2.0": {
  703. "dependencies": {
  704. "Microsoft.Extensions.Logging": "6.0.0"
  705. }
  706. },
  707. "Microsoft.Extensions.Logging.EventSource/2.2.0": {
  708. "dependencies": {
  709. "Microsoft.Extensions.Logging": "6.0.0",
  710. "Newtonsoft.Json": "11.0.2"
  711. }
  712. },
  713. "Microsoft.Extensions.ObjectPool/2.2.0": {},
  714. "Microsoft.Extensions.Options/6.0.0": {
  715. "dependencies": {
  716. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  717. "Microsoft.Extensions.Primitives": "6.0.0"
  718. }
  719. },
  720. "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": {
  721. "dependencies": {
  722. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  723. "Microsoft.Extensions.Configuration.Binder": "2.2.0",
  724. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  725. "Microsoft.Extensions.Options": "6.0.0"
  726. }
  727. },
  728. "Microsoft.Extensions.Primitives/6.0.0": {
  729. "dependencies": {
  730. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  731. }
  732. },
  733. "Microsoft.Extensions.WebEncoders/2.2.0": {
  734. "dependencies": {
  735. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  736. "Microsoft.Extensions.Options": "6.0.0",
  737. "System.Text.Encodings.Web": "4.5.0"
  738. }
  739. },
  740. "Microsoft.Identity.Client/4.21.1": {
  741. "runtime": {
  742. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  743. "assemblyVersion": "4.21.1.0",
  744. "fileVersion": "4.21.1.0"
  745. }
  746. }
  747. },
  748. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  749. "dependencies": {
  750. "Microsoft.IdentityModel.Tokens": "6.10.0"
  751. },
  752. "runtime": {
  753. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  754. "assemblyVersion": "6.10.0.0",
  755. "fileVersion": "6.10.0.20330"
  756. }
  757. }
  758. },
  759. "Microsoft.IdentityModel.Logging/6.10.0": {
  760. "runtime": {
  761. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  762. "assemblyVersion": "6.10.0.0",
  763. "fileVersion": "6.10.0.20330"
  764. }
  765. }
  766. },
  767. "Microsoft.IdentityModel.Protocols/6.10.0": {
  768. "dependencies": {
  769. "Microsoft.IdentityModel.Logging": "6.10.0",
  770. "Microsoft.IdentityModel.Tokens": "6.10.0"
  771. },
  772. "runtime": {
  773. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  774. "assemblyVersion": "6.10.0.0",
  775. "fileVersion": "6.10.0.20330"
  776. }
  777. }
  778. },
  779. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  780. "dependencies": {
  781. "Microsoft.IdentityModel.Protocols": "6.10.0",
  782. "System.IdentityModel.Tokens.Jwt": "6.10.0"
  783. },
  784. "runtime": {
  785. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  786. "assemblyVersion": "6.10.0.0",
  787. "fileVersion": "6.10.0.20330"
  788. }
  789. }
  790. },
  791. "Microsoft.IdentityModel.Tokens/6.10.0": {
  792. "dependencies": {
  793. "Microsoft.CSharp": "4.7.0",
  794. "Microsoft.IdentityModel.Logging": "6.10.0",
  795. "System.Security.Cryptography.Cng": "4.5.0"
  796. },
  797. "runtime": {
  798. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  799. "assemblyVersion": "6.10.0.0",
  800. "fileVersion": "6.10.0.20330"
  801. }
  802. }
  803. },
  804. "Microsoft.Net.Http.Headers/2.2.0": {
  805. "dependencies": {
  806. "Microsoft.Extensions.Primitives": "6.0.0",
  807. "System.Buffers": "4.5.1"
  808. }
  809. },
  810. "Microsoft.NET.Test.Sdk/17.1.0": {
  811. "dependencies": {
  812. "Microsoft.CodeCoverage": "17.1.0",
  813. "Microsoft.TestPlatform.TestHost": "17.1.0"
  814. }
  815. },
  816. "Microsoft.NETCore.Platforms/5.0.0": {},
  817. "Microsoft.NETCore.Targets/1.0.1": {},
  818. "Microsoft.OpenApi/1.2.3": {
  819. "runtime": {
  820. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  821. "assemblyVersion": "1.2.3.0",
  822. "fileVersion": "1.2.3.0"
  823. }
  824. }
  825. },
  826. "Microsoft.TestPlatform.ObjectModel/17.1.0": {
  827. "dependencies": {
  828. "NuGet.Frameworks": "5.11.0",
  829. "System.Reflection.Metadata": "1.6.0"
  830. },
  831. "runtime": {
  832. "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {
  833. "assemblyVersion": "15.0.0.0",
  834. "fileVersion": "15.0.0.0"
  835. },
  836. "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {
  837. "assemblyVersion": "15.0.0.0",
  838. "fileVersion": "15.0.0.0"
  839. },
  840. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
  841. "assemblyVersion": "15.0.0.0",
  842. "fileVersion": "15.0.0.0"
  843. }
  844. },
  845. "resources": {
  846. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  847. "locale": "cs"
  848. },
  849. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  850. "locale": "cs"
  851. },
  852. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  853. "locale": "de"
  854. },
  855. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  856. "locale": "de"
  857. },
  858. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  859. "locale": "es"
  860. },
  861. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  862. "locale": "es"
  863. },
  864. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  865. "locale": "fr"
  866. },
  867. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  868. "locale": "fr"
  869. },
  870. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  871. "locale": "it"
  872. },
  873. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  874. "locale": "it"
  875. },
  876. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  877. "locale": "ja"
  878. },
  879. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  880. "locale": "ja"
  881. },
  882. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  883. "locale": "ko"
  884. },
  885. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  886. "locale": "ko"
  887. },
  888. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  889. "locale": "pl"
  890. },
  891. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  892. "locale": "pl"
  893. },
  894. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  895. "locale": "pt-BR"
  896. },
  897. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  898. "locale": "pt-BR"
  899. },
  900. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  901. "locale": "ru"
  902. },
  903. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  904. "locale": "ru"
  905. },
  906. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  907. "locale": "tr"
  908. },
  909. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  910. "locale": "tr"
  911. },
  912. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  913. "locale": "zh-Hans"
  914. },
  915. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  916. "locale": "zh-Hans"
  917. },
  918. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
  919. "locale": "zh-Hant"
  920. },
  921. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
  922. "locale": "zh-Hant"
  923. }
  924. }
  925. },
  926. "Microsoft.TestPlatform.TestHost/17.1.0": {
  927. "dependencies": {
  928. "Microsoft.TestPlatform.ObjectModel": "17.1.0",
  929. "Newtonsoft.Json": "11.0.2"
  930. },
  931. "runtime": {
  932. "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {
  933. "assemblyVersion": "15.0.0.0",
  934. "fileVersion": "15.0.0.0"
  935. },
  936. "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {
  937. "assemblyVersion": "15.0.0.0",
  938. "fileVersion": "15.0.0.0"
  939. },
  940. "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {
  941. "assemblyVersion": "15.0.0.0",
  942. "fileVersion": "15.0.0.0"
  943. },
  944. "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {
  945. "assemblyVersion": "15.0.0.0",
  946. "fileVersion": "15.0.0.0"
  947. },
  948. "lib/netcoreapp2.1/testhost.dll": {
  949. "assemblyVersion": "15.0.0.0",
  950. "fileVersion": "15.0.0.0"
  951. }
  952. },
  953. "resources": {
  954. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  955. "locale": "cs"
  956. },
  957. "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  958. "locale": "cs"
  959. },
  960. "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  961. "locale": "cs"
  962. },
  963. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  964. "locale": "de"
  965. },
  966. "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  967. "locale": "de"
  968. },
  969. "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  970. "locale": "de"
  971. },
  972. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  973. "locale": "es"
  974. },
  975. "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  976. "locale": "es"
  977. },
  978. "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  979. "locale": "es"
  980. },
  981. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  982. "locale": "fr"
  983. },
  984. "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  985. "locale": "fr"
  986. },
  987. "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  988. "locale": "fr"
  989. },
  990. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  991. "locale": "it"
  992. },
  993. "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  994. "locale": "it"
  995. },
  996. "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  997. "locale": "it"
  998. },
  999. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1000. "locale": "ja"
  1001. },
  1002. "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1003. "locale": "ja"
  1004. },
  1005. "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1006. "locale": "ja"
  1007. },
  1008. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1009. "locale": "ko"
  1010. },
  1011. "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1012. "locale": "ko"
  1013. },
  1014. "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1015. "locale": "ko"
  1016. },
  1017. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1018. "locale": "pl"
  1019. },
  1020. "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1021. "locale": "pl"
  1022. },
  1023. "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1024. "locale": "pl"
  1025. },
  1026. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1027. "locale": "pt-BR"
  1028. },
  1029. "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1030. "locale": "pt-BR"
  1031. },
  1032. "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1033. "locale": "pt-BR"
  1034. },
  1035. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1036. "locale": "ru"
  1037. },
  1038. "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1039. "locale": "ru"
  1040. },
  1041. "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1042. "locale": "ru"
  1043. },
  1044. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1045. "locale": "tr"
  1046. },
  1047. "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1048. "locale": "tr"
  1049. },
  1050. "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1051. "locale": "tr"
  1052. },
  1053. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1054. "locale": "zh-Hans"
  1055. },
  1056. "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1057. "locale": "zh-Hans"
  1058. },
  1059. "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1060. "locale": "zh-Hans"
  1061. },
  1062. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
  1063. "locale": "zh-Hant"
  1064. },
  1065. "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
  1066. "locale": "zh-Hant"
  1067. },
  1068. "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
  1069. "locale": "zh-Hant"
  1070. }
  1071. }
  1072. },
  1073. "Microsoft.Win32.Registry/5.0.0": {
  1074. "dependencies": {
  1075. "System.Security.AccessControl": "5.0.0",
  1076. "System.Security.Principal.Windows": "5.0.0"
  1077. }
  1078. },
  1079. "Microsoft.Win32.SystemEvents/4.7.0": {
  1080. "dependencies": {
  1081. "Microsoft.NETCore.Platforms": "5.0.0"
  1082. },
  1083. "runtime": {
  1084. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1085. "assemblyVersion": "4.0.2.0",
  1086. "fileVersion": "4.700.19.56404"
  1087. }
  1088. },
  1089. "runtimeTargets": {
  1090. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1091. "rid": "win",
  1092. "assetType": "runtime",
  1093. "assemblyVersion": "4.0.2.0",
  1094. "fileVersion": "4.700.19.56404"
  1095. }
  1096. }
  1097. },
  1098. "MongoDB.Bson/2.16.1": {
  1099. "dependencies": {
  1100. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1101. },
  1102. "runtime": {
  1103. "lib/netstandard2.1/MongoDB.Bson.dll": {
  1104. "assemblyVersion": "2.16.1.0",
  1105. "fileVersion": "2.16.1.0"
  1106. }
  1107. }
  1108. },
  1109. "MongoDB.Driver/2.16.1": {
  1110. "dependencies": {
  1111. "MongoDB.Bson": "2.16.1",
  1112. "MongoDB.Driver.Core": "2.16.1",
  1113. "MongoDB.Libmongocrypt": "1.5.3"
  1114. },
  1115. "runtime": {
  1116. "lib/netstandard2.1/MongoDB.Driver.dll": {
  1117. "assemblyVersion": "2.16.1.0",
  1118. "fileVersion": "2.16.1.0"
  1119. }
  1120. }
  1121. },
  1122. "MongoDB.Driver.Core/2.16.1": {
  1123. "dependencies": {
  1124. "DnsClient": "1.6.1",
  1125. "MongoDB.Bson": "2.16.1",
  1126. "MongoDB.Libmongocrypt": "1.5.3",
  1127. "SharpCompress": "0.30.1",
  1128. "System.Buffers": "4.5.1"
  1129. },
  1130. "runtime": {
  1131. "lib/netstandard2.1/MongoDB.Driver.Core.dll": {
  1132. "assemblyVersion": "2.16.1.0",
  1133. "fileVersion": "2.16.1.0"
  1134. }
  1135. },
  1136. "runtimeTargets": {
  1137. "runtimes/linux/native/libsnappy64.so": {
  1138. "rid": "linux",
  1139. "assetType": "native",
  1140. "fileVersion": "0.0.0.0"
  1141. },
  1142. "runtimes/linux/native/libzstd.so": {
  1143. "rid": "linux",
  1144. "assetType": "native",
  1145. "fileVersion": "0.0.0.0"
  1146. },
  1147. "runtimes/osx/native/libsnappy64.dylib": {
  1148. "rid": "osx",
  1149. "assetType": "native",
  1150. "fileVersion": "0.0.0.0"
  1151. },
  1152. "runtimes/osx/native/libzstd.dylib": {
  1153. "rid": "osx",
  1154. "assetType": "native",
  1155. "fileVersion": "0.0.0.0"
  1156. },
  1157. "runtimes/win/native/libzstd.dll": {
  1158. "rid": "win",
  1159. "assetType": "native",
  1160. "fileVersion": "0.0.0.0"
  1161. },
  1162. "runtimes/win/native/snappy32.dll": {
  1163. "rid": "win",
  1164. "assetType": "native",
  1165. "fileVersion": "1.1.1.7"
  1166. },
  1167. "runtimes/win/native/snappy64.dll": {
  1168. "rid": "win",
  1169. "assetType": "native",
  1170. "fileVersion": "1.1.1.7"
  1171. }
  1172. }
  1173. },
  1174. "MongoDB.Libmongocrypt/1.5.3": {
  1175. "runtime": {
  1176. "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {
  1177. "assemblyVersion": "1.5.3.0",
  1178. "fileVersion": "1.5.3.0"
  1179. }
  1180. },
  1181. "runtimeTargets": {
  1182. "runtimes/linux/native/libmongocrypt.so": {
  1183. "rid": "linux",
  1184. "assetType": "native",
  1185. "fileVersion": "0.0.0.0"
  1186. },
  1187. "runtimes/osx/native/libmongocrypt.dylib": {
  1188. "rid": "osx",
  1189. "assetType": "native",
  1190. "fileVersion": "0.0.0.0"
  1191. },
  1192. "runtimes/win/native/mongocrypt.dll": {
  1193. "rid": "win",
  1194. "assetType": "native",
  1195. "fileVersion": "0.0.0.0"
  1196. }
  1197. }
  1198. },
  1199. "MongoDbGenericRepository/1.4.8": {
  1200. "dependencies": {
  1201. "MongoDB.Driver": "2.16.1"
  1202. },
  1203. "runtime": {
  1204. "lib/netstandard2.0/MongoDbGenericRepository.dll": {
  1205. "assemblyVersion": "1.4.8.0",
  1206. "fileVersion": "1.4.8.0"
  1207. }
  1208. }
  1209. },
  1210. "Moq/4.18.2": {
  1211. "dependencies": {
  1212. "Castle.Core": "5.1.0"
  1213. },
  1214. "runtime": {
  1215. "lib/net6.0/Moq.dll": {
  1216. "assemblyVersion": "4.18.0.0",
  1217. "fileVersion": "4.18.2.0"
  1218. }
  1219. }
  1220. },
  1221. "NETStandard.Library/2.0.0": {
  1222. "dependencies": {
  1223. "Microsoft.NETCore.Platforms": "5.0.0"
  1224. }
  1225. },
  1226. "Newtonsoft.Json/11.0.2": {
  1227. "runtime": {
  1228. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1229. "assemblyVersion": "11.0.0.0",
  1230. "fileVersion": "11.0.2.21924"
  1231. }
  1232. }
  1233. },
  1234. "Newtonsoft.Json.Bson/1.0.1": {
  1235. "dependencies": {
  1236. "NETStandard.Library": "2.0.0",
  1237. "Newtonsoft.Json": "11.0.2"
  1238. },
  1239. "runtime": {
  1240. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  1241. "assemblyVersion": "1.0.0.0",
  1242. "fileVersion": "1.0.1.20722"
  1243. }
  1244. }
  1245. },
  1246. "NuGet.Frameworks/5.11.0": {
  1247. "runtime": {
  1248. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  1249. "assemblyVersion": "5.11.0.10",
  1250. "fileVersion": "5.11.0.10"
  1251. }
  1252. }
  1253. },
  1254. "NUnit/3.13.3": {
  1255. "dependencies": {
  1256. "NETStandard.Library": "2.0.0"
  1257. },
  1258. "runtime": {
  1259. "lib/netstandard2.0/nunit.framework.dll": {
  1260. "assemblyVersion": "3.13.3.0",
  1261. "fileVersion": "3.13.3.0"
  1262. }
  1263. }
  1264. },
  1265. "NUnit.Analyzers/3.3.0": {},
  1266. "NUnit3TestAdapter/4.2.1": {},
  1267. "Serilog/2.11.0": {
  1268. "runtime": {
  1269. "lib/net5.0/Serilog.dll": {
  1270. "assemblyVersion": "2.0.0.0",
  1271. "fileVersion": "2.11.0.0"
  1272. }
  1273. }
  1274. },
  1275. "Serilog.AspNetCore/5.0.0": {
  1276. "dependencies": {
  1277. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1278. "Microsoft.Extensions.Logging": "6.0.0",
  1279. "Serilog": "2.11.0",
  1280. "Serilog.Extensions.Hosting": "4.2.0",
  1281. "Serilog.Formatting.Compact": "1.1.0",
  1282. "Serilog.Settings.Configuration": "3.3.0",
  1283. "Serilog.Sinks.Console": "4.0.1",
  1284. "Serilog.Sinks.Debug": "2.0.0",
  1285. "Serilog.Sinks.File": "5.0.0"
  1286. },
  1287. "runtime": {
  1288. "lib/net5.0/Serilog.AspNetCore.dll": {
  1289. "assemblyVersion": "2.0.0.0",
  1290. "fileVersion": "5.0.0.0"
  1291. }
  1292. }
  1293. },
  1294. "Serilog.Extensions.Hosting/4.2.0": {
  1295. "dependencies": {
  1296. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1297. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
  1298. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1299. "Serilog": "2.11.0",
  1300. "Serilog.Extensions.Logging": "3.1.0"
  1301. },
  1302. "runtime": {
  1303. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  1304. "assemblyVersion": "2.0.0.0",
  1305. "fileVersion": "4.2.0.0"
  1306. }
  1307. }
  1308. },
  1309. "Serilog.Extensions.Logging/3.1.0": {
  1310. "dependencies": {
  1311. "Microsoft.Extensions.Logging": "6.0.0",
  1312. "Serilog": "2.11.0"
  1313. },
  1314. "runtime": {
  1315. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1316. "assemblyVersion": "2.0.0.0",
  1317. "fileVersion": "3.1.0.0"
  1318. }
  1319. }
  1320. },
  1321. "Serilog.Formatting.Compact/1.1.0": {
  1322. "dependencies": {
  1323. "Serilog": "2.11.0"
  1324. },
  1325. "runtime": {
  1326. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1327. "assemblyVersion": "1.1.0.0",
  1328. "fileVersion": "1.1.0.0"
  1329. }
  1330. }
  1331. },
  1332. "Serilog.Settings.Configuration/3.3.0": {
  1333. "dependencies": {
  1334. "Microsoft.Extensions.DependencyModel": "3.0.0",
  1335. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0",
  1336. "Serilog": "2.11.0"
  1337. },
  1338. "runtime": {
  1339. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1340. "assemblyVersion": "3.3.0.0",
  1341. "fileVersion": "3.3.0.0"
  1342. }
  1343. }
  1344. },
  1345. "Serilog.Sinks.Console/4.0.1": {
  1346. "dependencies": {
  1347. "Serilog": "2.11.0"
  1348. },
  1349. "runtime": {
  1350. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1351. "assemblyVersion": "4.0.1.0",
  1352. "fileVersion": "4.0.1.0"
  1353. }
  1354. }
  1355. },
  1356. "Serilog.Sinks.Debug/2.0.0": {
  1357. "dependencies": {
  1358. "Serilog": "2.11.0"
  1359. },
  1360. "runtime": {
  1361. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  1362. "assemblyVersion": "2.0.0.0",
  1363. "fileVersion": "2.0.0.0"
  1364. }
  1365. }
  1366. },
  1367. "Serilog.Sinks.File/5.0.0": {
  1368. "dependencies": {
  1369. "Serilog": "2.11.0"
  1370. },
  1371. "runtime": {
  1372. "lib/net5.0/Serilog.Sinks.File.dll": {
  1373. "assemblyVersion": "5.0.0.0",
  1374. "fileVersion": "5.0.0.0"
  1375. }
  1376. }
  1377. },
  1378. "Serilog.Sinks.PeriodicBatching/2.3.0": {
  1379. "dependencies": {
  1380. "Serilog": "2.11.0",
  1381. "System.Collections.Concurrent": "4.0.12",
  1382. "System.Threading.Timer": "4.0.1"
  1383. },
  1384. "runtime": {
  1385. "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": {
  1386. "assemblyVersion": "2.0.0.0",
  1387. "fileVersion": "2.3.0.0"
  1388. }
  1389. }
  1390. },
  1391. "Serilog.Sinks.Seq/5.1.1": {
  1392. "dependencies": {
  1393. "Serilog": "2.11.0",
  1394. "Serilog.Formatting.Compact": "1.1.0",
  1395. "Serilog.Sinks.File": "5.0.0",
  1396. "Serilog.Sinks.PeriodicBatching": "2.3.0"
  1397. },
  1398. "runtime": {
  1399. "lib/net5.0/Serilog.Sinks.Seq.dll": {
  1400. "assemblyVersion": "5.1.1.0",
  1401. "fileVersion": "5.1.1.0"
  1402. }
  1403. }
  1404. },
  1405. "SharpCompress/0.30.1": {
  1406. "runtime": {
  1407. "lib/net5.0/SharpCompress.dll": {
  1408. "assemblyVersion": "0.30.1.0",
  1409. "fileVersion": "0.30.1.0"
  1410. }
  1411. }
  1412. },
  1413. "Swashbuckle.AspNetCore/6.4.0": {
  1414. "dependencies": {
  1415. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  1416. "Swashbuckle.AspNetCore.Swagger": "6.4.0",
  1417. "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0",
  1418. "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0"
  1419. }
  1420. },
  1421. "Swashbuckle.AspNetCore.Swagger/6.4.0": {
  1422. "dependencies": {
  1423. "Microsoft.OpenApi": "1.2.3"
  1424. },
  1425. "runtime": {
  1426. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1427. "assemblyVersion": "6.4.0.0",
  1428. "fileVersion": "6.4.0.0"
  1429. }
  1430. }
  1431. },
  1432. "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
  1433. "dependencies": {
  1434. "Swashbuckle.AspNetCore.Swagger": "6.4.0"
  1435. },
  1436. "runtime": {
  1437. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1438. "assemblyVersion": "6.4.0.0",
  1439. "fileVersion": "6.4.0.0"
  1440. }
  1441. }
  1442. },
  1443. "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
  1444. "runtime": {
  1445. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1446. "assemblyVersion": "6.4.0.0",
  1447. "fileVersion": "6.4.0.0"
  1448. }
  1449. }
  1450. },
  1451. "System.Buffers/4.5.1": {},
  1452. "System.Collections/4.0.11": {
  1453. "dependencies": {
  1454. "Microsoft.NETCore.Platforms": "5.0.0",
  1455. "Microsoft.NETCore.Targets": "1.0.1",
  1456. "System.Runtime": "4.1.0"
  1457. }
  1458. },
  1459. "System.Collections.Concurrent/4.0.12": {
  1460. "dependencies": {
  1461. "System.Collections": "4.0.11",
  1462. "System.Diagnostics.Debug": "4.0.11",
  1463. "System.Diagnostics.Tracing": "4.1.0",
  1464. "System.Globalization": "4.0.11",
  1465. "System.Reflection": "4.1.0",
  1466. "System.Resources.ResourceManager": "4.0.1",
  1467. "System.Runtime": "4.1.0",
  1468. "System.Runtime.Extensions": "4.1.0",
  1469. "System.Threading": "4.0.11",
  1470. "System.Threading.Tasks": "4.0.11"
  1471. }
  1472. },
  1473. "System.Collections.Immutable/6.0.0": {
  1474. "dependencies": {
  1475. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1476. }
  1477. },
  1478. "System.Configuration.ConfigurationManager/4.7.0": {
  1479. "dependencies": {
  1480. "System.Security.Cryptography.ProtectedData": "4.7.0",
  1481. "System.Security.Permissions": "4.7.0"
  1482. },
  1483. "runtime": {
  1484. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1485. "assemblyVersion": "4.0.3.0",
  1486. "fileVersion": "4.700.19.56404"
  1487. }
  1488. }
  1489. },
  1490. "System.Diagnostics.Debug/4.0.11": {
  1491. "dependencies": {
  1492. "Microsoft.NETCore.Platforms": "5.0.0",
  1493. "Microsoft.NETCore.Targets": "1.0.1",
  1494. "System.Runtime": "4.1.0"
  1495. }
  1496. },
  1497. "System.Diagnostics.DiagnosticSource/6.0.0": {
  1498. "dependencies": {
  1499. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1500. }
  1501. },
  1502. "System.Diagnostics.EventLog/6.0.0": {},
  1503. "System.Diagnostics.Tracing/4.1.0": {
  1504. "dependencies": {
  1505. "Microsoft.NETCore.Platforms": "5.0.0",
  1506. "Microsoft.NETCore.Targets": "1.0.1",
  1507. "System.Runtime": "4.1.0"
  1508. }
  1509. },
  1510. "System.Drawing.Common/4.7.0": {
  1511. "dependencies": {
  1512. "Microsoft.NETCore.Platforms": "5.0.0",
  1513. "Microsoft.Win32.SystemEvents": "4.7.0"
  1514. },
  1515. "runtime": {
  1516. "lib/netstandard2.0/System.Drawing.Common.dll": {
  1517. "assemblyVersion": "4.0.0.1",
  1518. "fileVersion": "4.6.26919.2"
  1519. }
  1520. },
  1521. "runtimeTargets": {
  1522. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1523. "rid": "unix",
  1524. "assetType": "runtime",
  1525. "assemblyVersion": "4.0.2.0",
  1526. "fileVersion": "4.700.19.56404"
  1527. },
  1528. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  1529. "rid": "win",
  1530. "assetType": "runtime",
  1531. "assemblyVersion": "4.0.2.0",
  1532. "fileVersion": "4.700.19.56404"
  1533. }
  1534. }
  1535. },
  1536. "System.Globalization/4.0.11": {
  1537. "dependencies": {
  1538. "Microsoft.NETCore.Platforms": "5.0.0",
  1539. "Microsoft.NETCore.Targets": "1.0.1",
  1540. "System.Runtime": "4.1.0"
  1541. }
  1542. },
  1543. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  1544. "dependencies": {
  1545. "Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
  1546. "Microsoft.IdentityModel.Tokens": "6.10.0"
  1547. },
  1548. "runtime": {
  1549. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1550. "assemblyVersion": "6.10.0.0",
  1551. "fileVersion": "6.10.0.20330"
  1552. }
  1553. }
  1554. },
  1555. "System.IO/4.1.0": {
  1556. "dependencies": {
  1557. "Microsoft.NETCore.Platforms": "5.0.0",
  1558. "Microsoft.NETCore.Targets": "1.0.1",
  1559. "System.Runtime": "4.1.0",
  1560. "System.Text.Encoding": "4.0.11",
  1561. "System.Threading.Tasks": "4.0.11"
  1562. }
  1563. },
  1564. "System.IO.Pipelines/4.5.2": {},
  1565. "System.Memory/4.5.1": {},
  1566. "System.Numerics.Vectors/4.5.0": {},
  1567. "System.Reflection/4.1.0": {
  1568. "dependencies": {
  1569. "Microsoft.NETCore.Platforms": "5.0.0",
  1570. "Microsoft.NETCore.Targets": "1.0.1",
  1571. "System.IO": "4.1.0",
  1572. "System.Reflection.Primitives": "4.0.1",
  1573. "System.Runtime": "4.1.0"
  1574. }
  1575. },
  1576. "System.Reflection.Metadata/1.6.0": {},
  1577. "System.Reflection.Primitives/4.0.1": {
  1578. "dependencies": {
  1579. "Microsoft.NETCore.Platforms": "5.0.0",
  1580. "Microsoft.NETCore.Targets": "1.0.1",
  1581. "System.Runtime": "4.1.0"
  1582. }
  1583. },
  1584. "System.Resources.ResourceManager/4.0.1": {
  1585. "dependencies": {
  1586. "Microsoft.NETCore.Platforms": "5.0.0",
  1587. "Microsoft.NETCore.Targets": "1.0.1",
  1588. "System.Globalization": "4.0.11",
  1589. "System.Reflection": "4.1.0",
  1590. "System.Runtime": "4.1.0"
  1591. }
  1592. },
  1593. "System.Runtime/4.1.0": {
  1594. "dependencies": {
  1595. "Microsoft.NETCore.Platforms": "5.0.0",
  1596. "Microsoft.NETCore.Targets": "1.0.1"
  1597. }
  1598. },
  1599. "System.Runtime.Caching/4.7.0": {
  1600. "dependencies": {
  1601. "System.Configuration.ConfigurationManager": "4.7.0"
  1602. },
  1603. "runtime": {
  1604. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  1605. "assemblyVersion": "4.0.1.0",
  1606. "fileVersion": "4.700.19.56404"
  1607. }
  1608. },
  1609. "runtimeTargets": {
  1610. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  1611. "rid": "win",
  1612. "assetType": "runtime",
  1613. "assemblyVersion": "4.0.1.0",
  1614. "fileVersion": "4.700.19.56404"
  1615. }
  1616. }
  1617. },
  1618. "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
  1619. "System.Runtime.Extensions/4.1.0": {
  1620. "dependencies": {
  1621. "Microsoft.NETCore.Platforms": "5.0.0",
  1622. "Microsoft.NETCore.Targets": "1.0.1",
  1623. "System.Runtime": "4.1.0"
  1624. }
  1625. },
  1626. "System.Security.AccessControl/5.0.0": {
  1627. "dependencies": {
  1628. "Microsoft.NETCore.Platforms": "5.0.0",
  1629. "System.Security.Principal.Windows": "5.0.0"
  1630. }
  1631. },
  1632. "System.Security.Cryptography.Cng/4.5.0": {},
  1633. "System.Security.Cryptography.Pkcs/4.5.0": {
  1634. "dependencies": {
  1635. "System.Security.Cryptography.Cng": "4.5.0"
  1636. }
  1637. },
  1638. "System.Security.Cryptography.ProtectedData/4.7.0": {
  1639. "runtime": {
  1640. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1641. "assemblyVersion": "4.0.5.0",
  1642. "fileVersion": "4.700.19.56404"
  1643. }
  1644. },
  1645. "runtimeTargets": {
  1646. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  1647. "rid": "win",
  1648. "assetType": "runtime",
  1649. "assemblyVersion": "4.0.5.0",
  1650. "fileVersion": "4.700.19.56404"
  1651. }
  1652. }
  1653. },
  1654. "System.Security.Cryptography.Xml/4.5.0": {
  1655. "dependencies": {
  1656. "System.Security.Cryptography.Pkcs": "4.5.0",
  1657. "System.Security.Permissions": "4.7.0"
  1658. }
  1659. },
  1660. "System.Security.Permissions/4.7.0": {
  1661. "dependencies": {
  1662. "System.Security.AccessControl": "5.0.0",
  1663. "System.Windows.Extensions": "4.7.0"
  1664. },
  1665. "runtime": {
  1666. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  1667. "assemblyVersion": "4.0.3.0",
  1668. "fileVersion": "4.700.19.56404"
  1669. }
  1670. }
  1671. },
  1672. "System.Security.Principal.Windows/5.0.0": {},
  1673. "System.Text.Encoding/4.0.11": {
  1674. "dependencies": {
  1675. "Microsoft.NETCore.Platforms": "5.0.0",
  1676. "Microsoft.NETCore.Targets": "1.0.1",
  1677. "System.Runtime": "4.1.0"
  1678. }
  1679. },
  1680. "System.Text.Encoding.CodePages/4.7.0": {
  1681. "dependencies": {
  1682. "Microsoft.NETCore.Platforms": "5.0.0"
  1683. }
  1684. },
  1685. "System.Text.Encodings.Web/4.5.0": {},
  1686. "System.Text.Json/4.6.0": {},
  1687. "System.Threading/4.0.11": {
  1688. "dependencies": {
  1689. "System.Runtime": "4.1.0",
  1690. "System.Threading.Tasks": "4.0.11"
  1691. }
  1692. },
  1693. "System.Threading.Tasks/4.0.11": {
  1694. "dependencies": {
  1695. "Microsoft.NETCore.Platforms": "5.0.0",
  1696. "Microsoft.NETCore.Targets": "1.0.1",
  1697. "System.Runtime": "4.1.0"
  1698. }
  1699. },
  1700. "System.Threading.Tasks.Extensions/4.5.1": {},
  1701. "System.Threading.Timer/4.0.1": {
  1702. "dependencies": {
  1703. "Microsoft.NETCore.Platforms": "5.0.0",
  1704. "Microsoft.NETCore.Targets": "1.0.1",
  1705. "System.Runtime": "4.1.0"
  1706. }
  1707. },
  1708. "System.Windows.Extensions/4.7.0": {
  1709. "dependencies": {
  1710. "System.Drawing.Common": "4.7.0"
  1711. },
  1712. "runtime": {
  1713. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1714. "assemblyVersion": "4.0.1.0",
  1715. "fileVersion": "4.700.19.56404"
  1716. }
  1717. },
  1718. "runtimeTargets": {
  1719. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  1720. "rid": "win",
  1721. "assetType": "runtime",
  1722. "assemblyVersion": "4.0.1.0",
  1723. "fileVersion": "4.700.19.56404"
  1724. }
  1725. }
  1726. },
  1727. "Diligent.WebAPI.Business/1.0.0": {
  1728. "dependencies": {
  1729. "AutoMapper": "11.0.1",
  1730. "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0",
  1731. "Diligent.WebAPI.Data": "1.0.0",
  1732. "MongoDB.Driver": "2.16.1"
  1733. },
  1734. "runtime": {
  1735. "Diligent.WebAPI.Business.dll": {}
  1736. }
  1737. },
  1738. "Diligent.WebAPI.Data/1.0.0": {
  1739. "dependencies": {
  1740. "AspNetCore.Identity.MongoDbCore": "3.1.2",
  1741. "AutoMapper": "11.0.1",
  1742. "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0",
  1743. "Microsoft.AspNetCore": "2.2.0",
  1744. "Microsoft.EntityFrameworkCore.SqlServer": "6.0.3",
  1745. "MongoDB.Driver": "2.16.1"
  1746. },
  1747. "runtime": {
  1748. "Diligent.WebAPI.Data.dll": {}
  1749. }
  1750. },
  1751. "Diligent.WebAPI.Host/1.0.0": {
  1752. "dependencies": {
  1753. "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0",
  1754. "Diligent.WebAPI.Business": "1.0.0",
  1755. "Diligent.WebAPI.Data": "1.0.0",
  1756. "MediatR": "10.0.1",
  1757. "MediatR.Extensions.Microsoft.DependencyInjection": "10.0.1",
  1758. "Microsoft.AspNet.WebApi.Core": "5.2.9",
  1759. "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.6",
  1760. "Microsoft.AspNetCore.Identity": "2.2.0",
  1761. "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0",
  1762. "Serilog": "2.11.0",
  1763. "Serilog.AspNetCore": "5.0.0",
  1764. "Serilog.Sinks.Console": "4.0.1",
  1765. "Serilog.Sinks.File": "5.0.0",
  1766. "Serilog.Sinks.Seq": "5.1.1",
  1767. "Swashbuckle.AspNetCore": "6.4.0"
  1768. },
  1769. "runtime": {
  1770. "Diligent.WebAPI.Host.dll": {}
  1771. }
  1772. }
  1773. }
  1774. },
  1775. "libraries": {
  1776. "Tests/1.0.0": {
  1777. "type": "project",
  1778. "serviceable": false,
  1779. "sha512": ""
  1780. },
  1781. "AspNetCore.Identity.MongoDbCore/3.1.2": {
  1782. "type": "package",
  1783. "serviceable": true,
  1784. "sha512": "sha512-ichSW3Vs51f+Ol7Ska1jIOlKc+i2Am3UeNvGhhIb59MXOKyhZGpyulUnFdN62IpP779EkLrLf3ZMwSZ2bVgY+g==",
  1785. "path": "aspnetcore.identity.mongodbcore/3.1.2",
  1786. "hashPath": "aspnetcore.identity.mongodbcore.3.1.2.nupkg.sha512"
  1787. },
  1788. "AutoMapper/11.0.1": {
  1789. "type": "package",
  1790. "serviceable": true,
  1791. "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==",
  1792. "path": "automapper/11.0.1",
  1793. "hashPath": "automapper.11.0.1.nupkg.sha512"
  1794. },
  1795. "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": {
  1796. "type": "package",
  1797. "serviceable": true,
  1798. "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==",
  1799. "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0",
  1800. "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512"
  1801. },
  1802. "Castle.Core/5.1.0": {
  1803. "type": "package",
  1804. "serviceable": true,
  1805. "sha512": "sha512-31UJpTHOiWq95CDOHazE3Ub/hE/PydNWsJMwnEVTqFFP4WhAugwpaVGxzOxKgNeSUUeqS2W6lxV+q7u1pAOfXg==",
  1806. "path": "castle.core/5.1.0",
  1807. "hashPath": "castle.core.5.1.0.nupkg.sha512"
  1808. },
  1809. "coverlet.collector/3.1.2": {
  1810. "type": "package",
  1811. "serviceable": true,
  1812. "sha512": "sha512-wuLDIDKD5XMt0A7lE31JPenT7QQwZPFkP5rRpdJeblyXZ9MGLI8rYjvm5fvAKln+2/X+4IxxQDxBtwdrqKNLZw==",
  1813. "path": "coverlet.collector/3.1.2",
  1814. "hashPath": "coverlet.collector.3.1.2.nupkg.sha512"
  1815. },
  1816. "coverlet.msbuild/3.1.2": {
  1817. "type": "package",
  1818. "serviceable": true,
  1819. "sha512": "sha512-QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==",
  1820. "path": "coverlet.msbuild/3.1.2",
  1821. "hashPath": "coverlet.msbuild.3.1.2.nupkg.sha512"
  1822. },
  1823. "DnsClient/1.6.1": {
  1824. "type": "package",
  1825. "serviceable": true,
  1826. "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
  1827. "path": "dnsclient/1.6.1",
  1828. "hashPath": "dnsclient.1.6.1.nupkg.sha512"
  1829. },
  1830. "FluentAssertions/6.7.0": {
  1831. "type": "package",
  1832. "serviceable": true,
  1833. "sha512": "sha512-PWbow/R3MnYDP8UW7zh/w80rGb+1NufGoNJeuzouTo2bqpvwNTFxbDwF6XWfFZ5IuquL2225Um+qSyZ8jVsT+w==",
  1834. "path": "fluentassertions/6.7.0",
  1835. "hashPath": "fluentassertions.6.7.0.nupkg.sha512"
  1836. },
  1837. "MediatR/10.0.1": {
  1838. "type": "package",
  1839. "serviceable": true,
  1840. "sha512": "sha512-vnjbk4giDJzJelh34Ygt0eorApCKrRFB7j0pauFPY1oxfO3cEZ7FugBrIOjCM76SDGTOmPFfbfmVnz1t3iFrGA==",
  1841. "path": "mediatr/10.0.1",
  1842. "hashPath": "mediatr.10.0.1.nupkg.sha512"
  1843. },
  1844. "MediatR.Contracts/1.0.1": {
  1845. "type": "package",
  1846. "serviceable": true,
  1847. "sha512": "sha512-NsRvOxthhkYml4DcBMyJsmym8C4MchioH7wxKVPEg7plFj9Euh/i4IcmZ3Gvgx6+K8obeuhPeJdoBl56wnuo3A==",
  1848. "path": "mediatr.contracts/1.0.1",
  1849. "hashPath": "mediatr.contracts.1.0.1.nupkg.sha512"
  1850. },
  1851. "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": {
  1852. "type": "package",
  1853. "serviceable": true,
  1854. "sha512": "sha512-mYdfMvpkahCAj4tRfBoeMlUBZa2WthaONdQ4y5TtIyxcZYb5e7AE7c1eITTZVWcQhguxvD8AdExdaiAW6RhrVA==",
  1855. "path": "mediatr.extensions.microsoft.dependencyinjection/10.0.1",
  1856. "hashPath": "mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512"
  1857. },
  1858. "Microsoft.AspNet.WebApi.Client/5.2.9": {
  1859. "type": "package",
  1860. "serviceable": true,
  1861. "sha512": "sha512-cuVhPjjNMSEFpKXweMNBbsG4RUFuuZpFBm8tSyw309U9JEjcnbB6n3EPb4xwgcy9bJ38ctIbv5G8zXUBhlrPWw==",
  1862. "path": "microsoft.aspnet.webapi.client/5.2.9",
  1863. "hashPath": "microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512"
  1864. },
  1865. "Microsoft.AspNet.WebApi.Core/5.2.9": {
  1866. "type": "package",
  1867. "serviceable": true,
  1868. "sha512": "sha512-9C0/gBUeMBjorRFSmR5Z2j5wznf9BP5SddN+OZE7X0BpXgivBZTZ42d0h8tIjJzSLHYVCU4HZBf51+cidCY4fQ==",
  1869. "path": "microsoft.aspnet.webapi.core/5.2.9",
  1870. "hashPath": "microsoft.aspnet.webapi.core.5.2.9.nupkg.sha512"
  1871. },
  1872. "Microsoft.AspNetCore/2.2.0": {
  1873. "type": "package",
  1874. "serviceable": true,
  1875. "sha512": "sha512-Bs75iht4lXS8uVWy/Cbsr9i0m2jRtnrfPEWU+6t0dQTZcJEfF9b7G2F7XvstLFWkAKSgYRzFkAwi/KypY0Qtew==",
  1876. "path": "microsoft.aspnetcore/2.2.0",
  1877. "hashPath": "microsoft.aspnetcore.2.2.0.nupkg.sha512"
  1878. },
  1879. "Microsoft.AspNetCore.Authentication/2.2.0": {
  1880. "type": "package",
  1881. "serviceable": true,
  1882. "sha512": "sha512-b0R9X7L6zMqNsssKDvhYHuNi5x0s4DyHTeXybIAyGaitKiW1Q5aAGKdV2codHPiePv9yHfC9hAMyScXQ/xXhPw==",
  1883. "path": "microsoft.aspnetcore.authentication/2.2.0",
  1884. "hashPath": "microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512"
  1885. },
  1886. "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
  1887. "type": "package",
  1888. "serviceable": true,
  1889. "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
  1890. "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
  1891. "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512"
  1892. },
  1893. "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": {
  1894. "type": "package",
  1895. "serviceable": true,
  1896. "sha512": "sha512-Iar9VFlBHkZGdSG9ZUTmn6Q8Qg+6CtW5G/TyJI2F8B432TOH+nZlkU7O0W0byow6xsxqOYeTviSHz4cCJ3amfQ==",
  1897. "path": "microsoft.aspnetcore.authentication.cookies/2.2.0",
  1898. "hashPath": "microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512"
  1899. },
  1900. "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
  1901. "type": "package",
  1902. "serviceable": true,
  1903. "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==",
  1904. "path": "microsoft.aspnetcore.authentication.core/2.2.0",
  1905. "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512"
  1906. },
  1907. "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.6": {
  1908. "type": "package",
  1909. "serviceable": true,
  1910. "sha512": "sha512-lrfPEeisa0xCmZKKQIKxuks37aGE6jgGqDq1ikZDwNLWfIt2/ajOQpHMSE6a5uLjEVqkChKpXpvA7ZvfIKvdzA==",
  1911. "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.6",
  1912. "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.6.0.6.nupkg.sha512"
  1913. },
  1914. "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
  1915. "type": "package",
  1916. "serviceable": true,
  1917. "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==",
  1918. "path": "microsoft.aspnetcore.connections.abstractions/2.2.0",
  1919. "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512"
  1920. },
  1921. "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": {
  1922. "type": "package",
  1923. "serviceable": true,
  1924. "sha512": "sha512-9V7Acx9lFw2KA23FOqH4TH5wQzZN/px/ovmRWBb8I3rf9arZ/cKniwRmRNrwgmShtQXhu1t124rrl1du2ueODA==",
  1925. "path": "microsoft.aspnetcore.cryptography.internal/3.1.12",
  1926. "hashPath": "microsoft.aspnetcore.cryptography.internal.3.1.12.nupkg.sha512"
  1927. },
  1928. "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": {
  1929. "type": "package",
  1930. "serviceable": true,
  1931. "sha512": "sha512-LNaiyMe0J8kkXglqtmE3wK1xu3ofvKh1WTVmJs0yl/uFfo9Vbr6lSyZ0k+5sTUxuIS1WU6dHe4nO0ikRlXq6CQ==",
  1932. "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.12",
  1933. "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.3.1.12.nupkg.sha512"
  1934. },
  1935. "Microsoft.AspNetCore.DataProtection/2.2.0": {
  1936. "type": "package",
  1937. "serviceable": true,
  1938. "sha512": "sha512-G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==",
  1939. "path": "microsoft.aspnetcore.dataprotection/2.2.0",
  1940. "hashPath": "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512"
  1941. },
  1942. "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {
  1943. "type": "package",
  1944. "serviceable": true,
  1945. "sha512": "sha512-seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==",
  1946. "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0",
  1947. "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512"
  1948. },
  1949. "Microsoft.AspNetCore.Diagnostics/2.2.0": {
  1950. "type": "package",
  1951. "serviceable": true,
  1952. "sha512": "sha512-RobNuZecn/eefWVApOE+OWAZXCdgfzm8pB7tBvJkahsjWfn1a+bLM9I2cuKlp/9aFBok1O/oDXlgYSvaQYu/yg==",
  1953. "path": "microsoft.aspnetcore.diagnostics/2.2.0",
  1954. "hashPath": "microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512"
  1955. },
  1956. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {
  1957. "type": "package",
  1958. "serviceable": true,
  1959. "sha512": "sha512-pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==",
  1960. "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0",
  1961. "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512"
  1962. },
  1963. "Microsoft.AspNetCore.HostFiltering/2.2.0": {
  1964. "type": "package",
  1965. "serviceable": true,
  1966. "sha512": "sha512-JSX6ZlVWDkokZ+xCKDhUVQNqbmFn1lHQNzJc8K4Y/uTUocZS83+b/8Q7y/yx3oJ362etGMVy0keAvmCdqbP8nA==",
  1967. "path": "microsoft.aspnetcore.hostfiltering/2.2.0",
  1968. "hashPath": "microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512"
  1969. },
  1970. "Microsoft.AspNetCore.Hosting/2.2.0": {
  1971. "type": "package",
  1972. "serviceable": true,
  1973. "sha512": "sha512-7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==",
  1974. "path": "microsoft.aspnetcore.hosting/2.2.0",
  1975. "hashPath": "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512"
  1976. },
  1977. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  1978. "type": "package",
  1979. "serviceable": true,
  1980. "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  1981. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  1982. "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512"
  1983. },
  1984. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  1985. "type": "package",
  1986. "serviceable": true,
  1987. "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  1988. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  1989. "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512"
  1990. },
  1991. "Microsoft.AspNetCore.Http/2.2.0": {
  1992. "type": "package",
  1993. "serviceable": true,
  1994. "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
  1995. "path": "microsoft.aspnetcore.http/2.2.0",
  1996. "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512"
  1997. },
  1998. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  1999. "type": "package",
  2000. "serviceable": true,
  2001. "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  2002. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  2003. "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
  2004. },
  2005. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  2006. "type": "package",
  2007. "serviceable": true,
  2008. "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  2009. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  2010. "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512"
  2011. },
  2012. "Microsoft.AspNetCore.Http.Features/2.2.0": {
  2013. "type": "package",
  2014. "serviceable": true,
  2015. "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
  2016. "path": "microsoft.aspnetcore.http.features/2.2.0",
  2017. "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
  2018. },
  2019. "Microsoft.AspNetCore.HttpOverrides/2.2.0": {
  2020. "type": "package",
  2021. "serviceable": true,
  2022. "sha512": "sha512-pOlLQyNKQduGbtbgB55RyTHFeshSfKi3DmofrVjk+UBQjyp+Tm0RNNJFQf+sv34hlFsel+VnD79QyO9Zk/c3oA==",
  2023. "path": "microsoft.aspnetcore.httpoverrides/2.2.0",
  2024. "hashPath": "microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512"
  2025. },
  2026. "Microsoft.AspNetCore.Identity/2.2.0": {
  2027. "type": "package",
  2028. "serviceable": true,
  2029. "sha512": "sha512-F16BKeS96wKhyIyhaFR7m8kRIwIvPUW9Dx7IlGWmu2IIwnUDCdo+2z7IrWKA8r77pZQ1UE9kYcBPg5456YdAIA==",
  2030. "path": "microsoft.aspnetcore.identity/2.2.0",
  2031. "hashPath": "microsoft.aspnetcore.identity.2.2.0.nupkg.sha512"
  2032. },
  2033. "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
  2034. "type": "package",
  2035. "serviceable": true,
  2036. "sha512": "sha512-mN9IARvNpHMBD2/oGmp5Bxp1Dg45Hfcp+LWaAyTtL2HisWLMOIcf0Ox1qW9IvCvdbHM+2A9dWEInhiqBsNxsJA==",
  2037. "path": "microsoft.aspnetcore.mvc.versioning/5.0.0",
  2038. "hashPath": "microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512"
  2039. },
  2040. "Microsoft.AspNetCore.Routing/2.2.0": {
  2041. "type": "package",
  2042. "serviceable": true,
  2043. "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  2044. "path": "microsoft.aspnetcore.routing/2.2.0",
  2045. "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512"
  2046. },
  2047. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  2048. "type": "package",
  2049. "serviceable": true,
  2050. "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  2051. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  2052. "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512"
  2053. },
  2054. "Microsoft.AspNetCore.Server.IIS/2.2.0": {
  2055. "type": "package",
  2056. "serviceable": true,
  2057. "sha512": "sha512-6NEwFAJFrnZ0f5eJB1ReIpgPM1ZRDj3IE3Rda01nD3vJANCyJFjZ4SGW3Ckn1AmMi225fGflWzpCKLb7/l43jw==",
  2058. "path": "microsoft.aspnetcore.server.iis/2.2.0",
  2059. "hashPath": "microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512"
  2060. },
  2061. "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": {
  2062. "type": "package",
  2063. "serviceable": true,
  2064. "sha512": "sha512-iVjgAg+doTTrTFCOq6kZRpebXq94YGCx9efMIwO5QhwdY/sHAjfrVz2lXzji63G96YjJVK3ZRrlpgS2fd49ABw==",
  2065. "path": "microsoft.aspnetcore.server.iisintegration/2.2.0",
  2066. "hashPath": "microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512"
  2067. },
  2068. "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
  2069. "type": "package",
  2070. "serviceable": true,
  2071. "sha512": "sha512-D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==",
  2072. "path": "microsoft.aspnetcore.server.kestrel/2.2.0",
  2073. "hashPath": "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512"
  2074. },
  2075. "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
  2076. "type": "package",
  2077. "serviceable": true,
  2078. "sha512": "sha512-F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==",
  2079. "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0",
  2080. "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512"
  2081. },
  2082. "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
  2083. "type": "package",
  2084. "serviceable": true,
  2085. "sha512": "sha512-nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==",
  2086. "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0",
  2087. "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512"
  2088. },
  2089. "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
  2090. "type": "package",
  2091. "serviceable": true,
  2092. "sha512": "sha512-j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==",
  2093. "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0",
  2094. "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512"
  2095. },
  2096. "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": {
  2097. "type": "package",
  2098. "serviceable": true,
  2099. "sha512": "sha512-qTACI0wePgAKCH+YKrMgChyfqJpjwgGZEtSuwBw6TjWLQ66THGasleia/7EZz2t2eAjwWxw8RA/D8ODrBqpj9A==",
  2100. "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.0",
  2101. "hashPath": "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512"
  2102. },
  2103. "Microsoft.AspNetCore.WebUtilities/2.2.0": {
  2104. "type": "package",
  2105. "serviceable": true,
  2106. "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
  2107. "path": "microsoft.aspnetcore.webutilities/2.2.0",
  2108. "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512"
  2109. },
  2110. "Microsoft.CodeCoverage/17.1.0": {
  2111. "type": "package",
  2112. "serviceable": true,
  2113. "sha512": "sha512-0N/ZJ71ncCxQWhgtkEYKOgu2oMHa8h1tsOUbhmIKXF8UwtSUCe4vHAsJ3DVcNWRwNfQzSTy263ZE+QF6MdIhhQ==",
  2114. "path": "microsoft.codecoverage/17.1.0",
  2115. "hashPath": "microsoft.codecoverage.17.1.0.nupkg.sha512"
  2116. },
  2117. "Microsoft.CSharp/4.7.0": {
  2118. "type": "package",
  2119. "serviceable": true,
  2120. "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2121. "path": "microsoft.csharp/4.7.0",
  2122. "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
  2123. },
  2124. "Microsoft.Data.SqlClient/2.1.4": {
  2125. "type": "package",
  2126. "serviceable": true,
  2127. "sha512": "sha512-cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
  2128. "path": "microsoft.data.sqlclient/2.1.4",
  2129. "hashPath": "microsoft.data.sqlclient.2.1.4.nupkg.sha512"
  2130. },
  2131. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  2132. "type": "package",
  2133. "serviceable": true,
  2134. "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  2135. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  2136. "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512"
  2137. },
  2138. "Microsoft.EntityFrameworkCore/6.0.3": {
  2139. "type": "package",
  2140. "serviceable": true,
  2141. "sha512": "sha512-f7ZlNOI1wPg/r0zRgvmcLAM3kwuCVGe5cZc8rYoKPDGZs5dgRFe5a43H9FnCXsyFAF6FILB08Nr9RkuNMwd3TQ==",
  2142. "path": "microsoft.entityframeworkcore/6.0.3",
  2143. "hashPath": "microsoft.entityframeworkcore.6.0.3.nupkg.sha512"
  2144. },
  2145. "Microsoft.EntityFrameworkCore.Abstractions/6.0.3": {
  2146. "type": "package",
  2147. "serviceable": true,
  2148. "sha512": "sha512-7c6wJtTFj7FDe20IVPDKeCzxWIMu+XDpYi7aYuUo6knu4vDeB3N3F0pjAZgXJ96GwTZYBrjOEwnbpYmfapEz/w==",
  2149. "path": "microsoft.entityframeworkcore.abstractions/6.0.3",
  2150. "hashPath": "microsoft.entityframeworkcore.abstractions.6.0.3.nupkg.sha512"
  2151. },
  2152. "Microsoft.EntityFrameworkCore.Analyzers/6.0.3": {
  2153. "type": "package",
  2154. "serviceable": true,
  2155. "sha512": "sha512-Ld9HyVABYor3Tq43/sG2JERL94UnDHJPg5PwpkCW4CWsf/CbxHetdecv+bCXA/Hg4q+44sov0GVl4Ywjk4PnyA==",
  2156. "path": "microsoft.entityframeworkcore.analyzers/6.0.3",
  2157. "hashPath": "microsoft.entityframeworkcore.analyzers.6.0.3.nupkg.sha512"
  2158. },
  2159. "Microsoft.EntityFrameworkCore.Relational/6.0.3": {
  2160. "type": "package",
  2161. "serviceable": true,
  2162. "sha512": "sha512-Dga4OH8QxmPT9APr7ZL5R0TvNADOcjDNNvJa8pU3QbPJ6OvRPTlzqAehfEBow0/NXBTKbIO48b4aIJI4VCO7fg==",
  2163. "path": "microsoft.entityframeworkcore.relational/6.0.3",
  2164. "hashPath": "microsoft.entityframeworkcore.relational.6.0.3.nupkg.sha512"
  2165. },
  2166. "Microsoft.EntityFrameworkCore.SqlServer/6.0.3": {
  2167. "type": "package",
  2168. "serviceable": true,
  2169. "sha512": "sha512-rd1lGh5au10tB6J0Jt3ZLLA78Bs/eQSWgkMSBE9n+cRAs/Db99OfdnxgkK3JqCCyFfp12LAsboWDUCnRhPOskw==",
  2170. "path": "microsoft.entityframeworkcore.sqlserver/6.0.3",
  2171. "hashPath": "microsoft.entityframeworkcore.sqlserver.6.0.3.nupkg.sha512"
  2172. },
  2173. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  2174. "type": "package",
  2175. "serviceable": true,
  2176. "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  2177. "path": "microsoft.extensions.apidescription.server/6.0.5",
  2178. "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
  2179. },
  2180. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  2181. "type": "package",
  2182. "serviceable": true,
  2183. "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  2184. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  2185. "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512"
  2186. },
  2187. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  2188. "type": "package",
  2189. "serviceable": true,
  2190. "sha512": "sha512-B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
  2191. "path": "microsoft.extensions.caching.memory/6.0.1",
  2192. "hashPath": "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512"
  2193. },
  2194. "Microsoft.Extensions.Configuration/2.2.0": {
  2195. "type": "package",
  2196. "serviceable": true,
  2197. "sha512": "sha512-nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
  2198. "path": "microsoft.extensions.configuration/2.2.0",
  2199. "hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512"
  2200. },
  2201. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  2202. "type": "package",
  2203. "serviceable": true,
  2204. "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  2205. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  2206. "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512"
  2207. },
  2208. "Microsoft.Extensions.Configuration.Binder/2.2.0": {
  2209. "type": "package",
  2210. "serviceable": true,
  2211. "sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
  2212. "path": "microsoft.extensions.configuration.binder/2.2.0",
  2213. "hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
  2214. },
  2215. "Microsoft.Extensions.Configuration.CommandLine/2.2.0": {
  2216. "type": "package",
  2217. "serviceable": true,
  2218. "sha512": "sha512-4kJIGOSRqD1Ccqerst4t/zsNs51plR7BIxbdKO1J/9rL+2DuNT+ieAuEv+HROelqTam3yOpKFR7TtHBt3oLpOA==",
  2219. "path": "microsoft.extensions.configuration.commandline/2.2.0",
  2220. "hashPath": "microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512"
  2221. },
  2222. "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
  2223. "type": "package",
  2224. "serviceable": true,
  2225. "sha512": "sha512-gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==",
  2226. "path": "microsoft.extensions.configuration.environmentvariables/2.2.0",
  2227. "hashPath": "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512"
  2228. },
  2229. "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
  2230. "type": "package",
  2231. "serviceable": true,
  2232. "sha512": "sha512-H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==",
  2233. "path": "microsoft.extensions.configuration.fileextensions/2.2.0",
  2234. "hashPath": "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512"
  2235. },
  2236. "Microsoft.Extensions.Configuration.Json/2.2.0": {
  2237. "type": "package",
  2238. "serviceable": true,
  2239. "sha512": "sha512-jUDdmLyFmLf9V3mqnMzSAzAv4QigJ67tZh5Q7HBXeBnESL2UyeesNG6jSBti+b63JpxZf+EDyn+anx3gyrNxug==",
  2240. "path": "microsoft.extensions.configuration.json/2.2.0",
  2241. "hashPath": "microsoft.extensions.configuration.json.2.2.0.nupkg.sha512"
  2242. },
  2243. "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": {
  2244. "type": "package",
  2245. "serviceable": true,
  2246. "sha512": "sha512-2/N2xo6/sNbVshnKktmq5lwaQbsAR2SrzCVrJEeMP8OKZVI7SzT8P6/WXZF8/YC7dTYsMe3nrHzgl1cF9i5ZKQ==",
  2247. "path": "microsoft.extensions.configuration.usersecrets/2.2.0",
  2248. "hashPath": "microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512"
  2249. },
  2250. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  2251. "type": "package",
  2252. "serviceable": true,
  2253. "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  2254. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  2255. "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
  2256. },
  2257. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  2258. "type": "package",
  2259. "serviceable": true,
  2260. "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  2261. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  2262. "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512"
  2263. },
  2264. "Microsoft.Extensions.DependencyModel/3.0.0": {
  2265. "type": "package",
  2266. "serviceable": true,
  2267. "sha512": "sha512-Iaectmzg9Dc4ZbKX/FurrRjgO/I8rTumL5UU+Uube6vZuGetcnXoIgTA94RthFWePhdMVm8MMhVFJZdbzMsdyQ==",
  2268. "path": "microsoft.extensions.dependencymodel/3.0.0",
  2269. "hashPath": "microsoft.extensions.dependencymodel.3.0.0.nupkg.sha512"
  2270. },
  2271. "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": {
  2272. "type": "package",
  2273. "serviceable": true,
  2274. "sha512": "sha512-U7ffyzrPfRDH5K3h/mBpqJVoHbppw1kc1KyHZcZeDR7b1A0FRaqMSiizGpN9IGwWs9BuN7oXIKFyviuSGBjHtQ==",
  2275. "path": "microsoft.extensions.fileproviders.abstractions/3.1.8",
  2276. "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512"
  2277. },
  2278. "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
  2279. "type": "package",
  2280. "serviceable": true,
  2281. "sha512": "sha512-tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==",
  2282. "path": "microsoft.extensions.fileproviders.physical/2.2.0",
  2283. "hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512"
  2284. },
  2285. "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
  2286. "type": "package",
  2287. "serviceable": true,
  2288. "sha512": "sha512-ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==",
  2289. "path": "microsoft.extensions.filesystemglobbing/2.2.0",
  2290. "hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512"
  2291. },
  2292. "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
  2293. "type": "package",
  2294. "serviceable": true,
  2295. "sha512": "sha512-7ZJUKwPipkDvuv2KJPZ3r01wp2AWNMiYH+61i0dL89F7QICknjKpWgLKLpTSUYFgl77S3b4264I6i4HzDdrb2A==",
  2296. "path": "microsoft.extensions.hosting.abstractions/3.1.8",
  2297. "hashPath": "microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512"
  2298. },
  2299. "Microsoft.Extensions.Identity.Core/3.1.12": {
  2300. "type": "package",
  2301. "serviceable": true,
  2302. "sha512": "sha512-MRNaIsE3PdT24+6cWxJhiyfTY3Eoncr/m+5nW3NtBjPQXhJKECGNdquh5EH5KwNaYls2KI53znl7KD4pWMkKyw==",
  2303. "path": "microsoft.extensions.identity.core/3.1.12",
  2304. "hashPath": "microsoft.extensions.identity.core.3.1.12.nupkg.sha512"
  2305. },
  2306. "Microsoft.Extensions.Identity.Stores/3.1.12": {
  2307. "type": "package",
  2308. "serviceable": true,
  2309. "sha512": "sha512-xQOIvN3nFJ0ptl/qnozFJPzfY/TxrJFr9k/EPJkqHZx8jtzlGJ4mqvgknau0AunW25uXyT+O6co3AJ4B4OKcRQ==",
  2310. "path": "microsoft.extensions.identity.stores/3.1.12",
  2311. "hashPath": "microsoft.extensions.identity.stores.3.1.12.nupkg.sha512"
  2312. },
  2313. "Microsoft.Extensions.Logging/6.0.0": {
  2314. "type": "package",
  2315. "serviceable": true,
  2316. "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  2317. "path": "microsoft.extensions.logging/6.0.0",
  2318. "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512"
  2319. },
  2320. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  2321. "type": "package",
  2322. "serviceable": true,
  2323. "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==",
  2324. "path": "microsoft.extensions.logging.abstractions/6.0.0",
  2325. "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512"
  2326. },
  2327. "Microsoft.Extensions.Logging.Configuration/2.2.0": {
  2328. "type": "package",
  2329. "serviceable": true,
  2330. "sha512": "sha512-ukU1mQGX9+xBsEzpNd13yl4deFVYI+fxxnmKpOhvNZsF+/trCrAUQh+9QM5pPGHbfYkz3lLQ4BXfKCP0502dLw==",
  2331. "path": "microsoft.extensions.logging.configuration/2.2.0",
  2332. "hashPath": "microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512"
  2333. },
  2334. "Microsoft.Extensions.Logging.Console/2.2.0": {
  2335. "type": "package",
  2336. "serviceable": true,
  2337. "sha512": "sha512-1eGgcOJ++PMxW6sn++j6U7wsWvhEBm/5ScqBUUBGLRE8M7AHahi9tsxivDMqEXVM3F0/pshHl3kEpMXtw4BeFg==",
  2338. "path": "microsoft.extensions.logging.console/2.2.0",
  2339. "hashPath": "microsoft.extensions.logging.console.2.2.0.nupkg.sha512"
  2340. },
  2341. "Microsoft.Extensions.Logging.Debug/2.2.0": {
  2342. "type": "package",
  2343. "serviceable": true,
  2344. "sha512": "sha512-JjqWtshxUujSnxslFccCRAaH8uFOciqXkYdRw+h5MwpC4sUc+ju9yZzvVi6PA5vW09ckv26EkasEvXrofGiaJg==",
  2345. "path": "microsoft.extensions.logging.debug/2.2.0",
  2346. "hashPath": "microsoft.extensions.logging.debug.2.2.0.nupkg.sha512"
  2347. },
  2348. "Microsoft.Extensions.Logging.EventSource/2.2.0": {
  2349. "type": "package",
  2350. "serviceable": true,
  2351. "sha512": "sha512-oOa5H+vdNgpsxE6vgtX4U/godKtX2edVi+QjlWb2PBQfavGIQ3WxtjxN+B0DQAjwBNdV4mW8cgOiDEZ8KdR7Ig==",
  2352. "path": "microsoft.extensions.logging.eventsource/2.2.0",
  2353. "hashPath": "microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512"
  2354. },
  2355. "Microsoft.Extensions.ObjectPool/2.2.0": {
  2356. "type": "package",
  2357. "serviceable": true,
  2358. "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  2359. "path": "microsoft.extensions.objectpool/2.2.0",
  2360. "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512"
  2361. },
  2362. "Microsoft.Extensions.Options/6.0.0": {
  2363. "type": "package",
  2364. "serviceable": true,
  2365. "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  2366. "path": "microsoft.extensions.options/6.0.0",
  2367. "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512"
  2368. },
  2369. "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": {
  2370. "type": "package",
  2371. "serviceable": true,
  2372. "sha512": "sha512-d4WS6yVXaw43ffiUnHj8oG1t2B6RbDDiQcgdA+Eq//NlPa3Wd+GTJFKj4OM4eDF3GjVumGr/CEVRS/jcYoF5LA==",
  2373. "path": "microsoft.extensions.options.configurationextensions/2.2.0",
  2374. "hashPath": "microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512"
  2375. },
  2376. "Microsoft.Extensions.Primitives/6.0.0": {
  2377. "type": "package",
  2378. "serviceable": true,
  2379. "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  2380. "path": "microsoft.extensions.primitives/6.0.0",
  2381. "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512"
  2382. },
  2383. "Microsoft.Extensions.WebEncoders/2.2.0": {
  2384. "type": "package",
  2385. "serviceable": true,
  2386. "sha512": "sha512-V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==",
  2387. "path": "microsoft.extensions.webencoders/2.2.0",
  2388. "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512"
  2389. },
  2390. "Microsoft.Identity.Client/4.21.1": {
  2391. "type": "package",
  2392. "serviceable": true,
  2393. "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  2394. "path": "microsoft.identity.client/4.21.1",
  2395. "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512"
  2396. },
  2397. "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
  2398. "type": "package",
  2399. "serviceable": true,
  2400. "sha512": "sha512-0qjS31rN1MQTc46tAYbzmMTSRfdV5ndZxSjYxIGqKSidd4wpNJfNII/pdhU5Fx8olarQoKL9lqqYw4yNOIwT0Q==",
  2401. "path": "microsoft.identitymodel.jsonwebtokens/6.10.0",
  2402. "hashPath": "microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512"
  2403. },
  2404. "Microsoft.IdentityModel.Logging/6.10.0": {
  2405. "type": "package",
  2406. "serviceable": true,
  2407. "sha512": "sha512-zbcwV6esnNzhZZ/VP87dji6VrUBLB5rxnZBkDMqNYpyG+nrBnBsbm4PUYLCBMUflHCM9EMLDG0rLnqqT+l0ldA==",
  2408. "path": "microsoft.identitymodel.logging/6.10.0",
  2409. "hashPath": "microsoft.identitymodel.logging.6.10.0.nupkg.sha512"
  2410. },
  2411. "Microsoft.IdentityModel.Protocols/6.10.0": {
  2412. "type": "package",
  2413. "serviceable": true,
  2414. "sha512": "sha512-DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==",
  2415. "path": "microsoft.identitymodel.protocols/6.10.0",
  2416. "hashPath": "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512"
  2417. },
  2418. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
  2419. "type": "package",
  2420. "serviceable": true,
  2421. "sha512": "sha512-LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==",
  2422. "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0",
  2423. "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512"
  2424. },
  2425. "Microsoft.IdentityModel.Tokens/6.10.0": {
  2426. "type": "package",
  2427. "serviceable": true,
  2428. "sha512": "sha512-qbf1NslutDB4oLrriYTJpy7oB1pbh2ej2lEHd2IPDQH9C74ysOdhU5wAC7KoXblldbo7YsNR2QYFOqQM/b0Rsg==",
  2429. "path": "microsoft.identitymodel.tokens/6.10.0",
  2430. "hashPath": "microsoft.identitymodel.tokens.6.10.0.nupkg.sha512"
  2431. },
  2432. "Microsoft.Net.Http.Headers/2.2.0": {
  2433. "type": "package",
  2434. "serviceable": true,
  2435. "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  2436. "path": "microsoft.net.http.headers/2.2.0",
  2437. "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512"
  2438. },
  2439. "Microsoft.NET.Test.Sdk/17.1.0": {
  2440. "type": "package",
  2441. "serviceable": true,
  2442. "sha512": "sha512-MVKvOsHIfrZrvg+8aqOF5dknO/qWrR1sWZjMPQ1N42MKMlL/zQL30FQFZxPeWfmVKWUWAOmAHYsqB5OerTKziw==",
  2443. "path": "microsoft.net.test.sdk/17.1.0",
  2444. "hashPath": "microsoft.net.test.sdk.17.1.0.nupkg.sha512"
  2445. },
  2446. "Microsoft.NETCore.Platforms/5.0.0": {
  2447. "type": "package",
  2448. "serviceable": true,
  2449. "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  2450. "path": "microsoft.netcore.platforms/5.0.0",
  2451. "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
  2452. },
  2453. "Microsoft.NETCore.Targets/1.0.1": {
  2454. "type": "package",
  2455. "serviceable": true,
  2456. "sha512": "sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
  2457. "path": "microsoft.netcore.targets/1.0.1",
  2458. "hashPath": "microsoft.netcore.targets.1.0.1.nupkg.sha512"
  2459. },
  2460. "Microsoft.OpenApi/1.2.3": {
  2461. "type": "package",
  2462. "serviceable": true,
  2463. "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  2464. "path": "microsoft.openapi/1.2.3",
  2465. "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512"
  2466. },
  2467. "Microsoft.TestPlatform.ObjectModel/17.1.0": {
  2468. "type": "package",
  2469. "serviceable": true,
  2470. "sha512": "sha512-OMo/FYnKGy3lZEK0gfitskRM3ga/YBt6MyCyFPq0xNLeybGOQ6HnYNAAvzyePo5WPuMiw3LX+HiuRWNjnas1fA==",
  2471. "path": "microsoft.testplatform.objectmodel/17.1.0",
  2472. "hashPath": "microsoft.testplatform.objectmodel.17.1.0.nupkg.sha512"
  2473. },
  2474. "Microsoft.TestPlatform.TestHost/17.1.0": {
  2475. "type": "package",
  2476. "serviceable": true,
  2477. "sha512": "sha512-JS0JDLniDhIzkSPLHz7N/x1CG8ywJOtwInFDYA3KQvbz+ojGoT5MT2YDVReL1b86zmNRV8339vsTSm/zh0RcMg==",
  2478. "path": "microsoft.testplatform.testhost/17.1.0",
  2479. "hashPath": "microsoft.testplatform.testhost.17.1.0.nupkg.sha512"
  2480. },
  2481. "Microsoft.Win32.Registry/5.0.0": {
  2482. "type": "package",
  2483. "serviceable": true,
  2484. "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  2485. "path": "microsoft.win32.registry/5.0.0",
  2486. "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
  2487. },
  2488. "Microsoft.Win32.SystemEvents/4.7.0": {
  2489. "type": "package",
  2490. "serviceable": true,
  2491. "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  2492. "path": "microsoft.win32.systemevents/4.7.0",
  2493. "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
  2494. },
  2495. "MongoDB.Bson/2.16.1": {
  2496. "type": "package",
  2497. "serviceable": true,
  2498. "sha512": "sha512-d647KTPQ7hWqJmvCg80iiVdm239llaUwMyIeRF/0zKpN+ddRWh9jT/g6R6WQrmi4qd7yodvv/Jn0rpEqh4QN8g==",
  2499. "path": "mongodb.bson/2.16.1",
  2500. "hashPath": "mongodb.bson.2.16.1.nupkg.sha512"
  2501. },
  2502. "MongoDB.Driver/2.16.1": {
  2503. "type": "package",
  2504. "serviceable": true,
  2505. "sha512": "sha512-LqDWfRG7gM1tZKcG9Q/vuQGYF5GsBuxUF5KcOgvWrE6P7pSkOSL9xGZ7ABZ6XRVECGEQs+N6GyU1E4ViI4lh+g==",
  2506. "path": "mongodb.driver/2.16.1",
  2507. "hashPath": "mongodb.driver.2.16.1.nupkg.sha512"
  2508. },
  2509. "MongoDB.Driver.Core/2.16.1": {
  2510. "type": "package",
  2511. "serviceable": true,
  2512. "sha512": "sha512-oJZnXHnAyTd/haHYdbfKMRmPEZ1fFrndv8xhorHeTkUDeGgsPA89vpGMHcjppUyHMYBpLgHbn6GoMkleHKsTHg==",
  2513. "path": "mongodb.driver.core/2.16.1",
  2514. "hashPath": "mongodb.driver.core.2.16.1.nupkg.sha512"
  2515. },
  2516. "MongoDB.Libmongocrypt/1.5.3": {
  2517. "type": "package",
  2518. "serviceable": true,
  2519. "sha512": "sha512-OWWxuyuxbjAmOLPoaoUEYnIW4F7qexS6XYOdu6absxyGAqLBWEY+M4WY2Y0km2UUG1+QOPdebpb/7cg5BIEbdw==",
  2520. "path": "mongodb.libmongocrypt/1.5.3",
  2521. "hashPath": "mongodb.libmongocrypt.1.5.3.nupkg.sha512"
  2522. },
  2523. "MongoDbGenericRepository/1.4.8": {
  2524. "type": "package",
  2525. "serviceable": true,
  2526. "sha512": "sha512-+cogUUMvXjnc8JUvDwnWitNAKRU7BrOleILH2AeLQnZ/WZNvocRw2PLNBIBlXyBdf3Nt2UtByL12d2lPGwP+VQ==",
  2527. "path": "mongodbgenericrepository/1.4.8",
  2528. "hashPath": "mongodbgenericrepository.1.4.8.nupkg.sha512"
  2529. },
  2530. "Moq/4.18.2": {
  2531. "type": "package",
  2532. "serviceable": true,
  2533. "sha512": "sha512-SjxKYS5nX6prcaT8ZjbkONh3vnh0Rxru09+gQ1a07v4TM530Oe/jq3Q4dOZPfo1wq0LYmTgLOZKrqRfEx4auPw==",
  2534. "path": "moq/4.18.2",
  2535. "hashPath": "moq.4.18.2.nupkg.sha512"
  2536. },
  2537. "NETStandard.Library/2.0.0": {
  2538. "type": "package",
  2539. "serviceable": true,
  2540. "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
  2541. "path": "netstandard.library/2.0.0",
  2542. "hashPath": "netstandard.library.2.0.0.nupkg.sha512"
  2543. },
  2544. "Newtonsoft.Json/11.0.2": {
  2545. "type": "package",
  2546. "serviceable": true,
  2547. "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  2548. "path": "newtonsoft.json/11.0.2",
  2549. "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
  2550. },
  2551. "Newtonsoft.Json.Bson/1.0.1": {
  2552. "type": "package",
  2553. "serviceable": true,
  2554. "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  2555. "path": "newtonsoft.json.bson/1.0.1",
  2556. "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
  2557. },
  2558. "NuGet.Frameworks/5.11.0": {
  2559. "type": "package",
  2560. "serviceable": true,
  2561. "sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
  2562. "path": "nuget.frameworks/5.11.0",
  2563. "hashPath": "nuget.frameworks.5.11.0.nupkg.sha512"
  2564. },
  2565. "NUnit/3.13.3": {
  2566. "type": "package",
  2567. "serviceable": true,
  2568. "sha512": "sha512-KNPDpls6EfHwC3+nnA67fh5wpxeLb3VLFAfLxrug6JMYDLHH6InaQIWR7Sc3y75d/9IKzMksH/gi08W7XWbmnQ==",
  2569. "path": "nunit/3.13.3",
  2570. "hashPath": "nunit.3.13.3.nupkg.sha512"
  2571. },
  2572. "NUnit.Analyzers/3.3.0": {
  2573. "type": "package",
  2574. "serviceable": true,
  2575. "sha512": "sha512-gyRc0qmXUIjHaTcHTWZDHK5ccOF6cLEOGQJ6Fj5JWKh8/W1XzPFC6zGXRu5sDNSxfKaNeQRmkdz3M73ArQkY1A==",
  2576. "path": "nunit.analyzers/3.3.0",
  2577. "hashPath": "nunit.analyzers.3.3.0.nupkg.sha512"
  2578. },
  2579. "NUnit3TestAdapter/4.2.1": {
  2580. "type": "package",
  2581. "serviceable": true,
  2582. "sha512": "sha512-kgH8VKsrcZZgNGQXRpVCrM7TnNz9li3b/snH+YmnXUNqsaWa1Xw9EQWHpbzq4Li2FbTjTE/E5N5HdLNXzZ8BpQ==",
  2583. "path": "nunit3testadapter/4.2.1",
  2584. "hashPath": "nunit3testadapter.4.2.1.nupkg.sha512"
  2585. },
  2586. "Serilog/2.11.0": {
  2587. "type": "package",
  2588. "serviceable": true,
  2589. "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
  2590. "path": "serilog/2.11.0",
  2591. "hashPath": "serilog.2.11.0.nupkg.sha512"
  2592. },
  2593. "Serilog.AspNetCore/5.0.0": {
  2594. "type": "package",
  2595. "serviceable": true,
  2596. "sha512": "sha512-/JO/txIxRR61x1UXQAgUzG2Sx05o1QHCkokVBWrKzmAoDu+p5EtCAj7L/TVVg7Ezhh3GPiZ0JI9OJCmRO9tSRw==",
  2597. "path": "serilog.aspnetcore/5.0.0",
  2598. "hashPath": "serilog.aspnetcore.5.0.0.nupkg.sha512"
  2599. },
  2600. "Serilog.Extensions.Hosting/4.2.0": {
  2601. "type": "package",
  2602. "serviceable": true,
  2603. "sha512": "sha512-gT2keceCmPQR9EX0VpXQZvUgELdfE7yqJ7MOxBhm3WLCblcvRgswEOOTgok/DHObbM15A3V/DtF3VdVDQPIZzQ==",
  2604. "path": "serilog.extensions.hosting/4.2.0",
  2605. "hashPath": "serilog.extensions.hosting.4.2.0.nupkg.sha512"
  2606. },
  2607. "Serilog.Extensions.Logging/3.1.0": {
  2608. "type": "package",
  2609. "serviceable": true,
  2610. "sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==",
  2611. "path": "serilog.extensions.logging/3.1.0",
  2612. "hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512"
  2613. },
  2614. "Serilog.Formatting.Compact/1.1.0": {
  2615. "type": "package",
  2616. "serviceable": true,
  2617. "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  2618. "path": "serilog.formatting.compact/1.1.0",
  2619. "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512"
  2620. },
  2621. "Serilog.Settings.Configuration/3.3.0": {
  2622. "type": "package",
  2623. "serviceable": true,
  2624. "sha512": "sha512-7GNudISZwqaT902hqEL2OFGTZeUFWfnrNLupJkOqeF41AR3GjcxX+Hwb30xb8gG2/CDXsCMVfF8o0+8KY0fJNg==",
  2625. "path": "serilog.settings.configuration/3.3.0",
  2626. "hashPath": "serilog.settings.configuration.3.3.0.nupkg.sha512"
  2627. },
  2628. "Serilog.Sinks.Console/4.0.1": {
  2629. "type": "package",
  2630. "serviceable": true,
  2631. "sha512": "sha512-apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  2632. "path": "serilog.sinks.console/4.0.1",
  2633. "hashPath": "serilog.sinks.console.4.0.1.nupkg.sha512"
  2634. },
  2635. "Serilog.Sinks.Debug/2.0.0": {
  2636. "type": "package",
  2637. "serviceable": true,
  2638. "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
  2639. "path": "serilog.sinks.debug/2.0.0",
  2640. "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512"
  2641. },
  2642. "Serilog.Sinks.File/5.0.0": {
  2643. "type": "package",
  2644. "serviceable": true,
  2645. "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  2646. "path": "serilog.sinks.file/5.0.0",
  2647. "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512"
  2648. },
  2649. "Serilog.Sinks.PeriodicBatching/2.3.0": {
  2650. "type": "package",
  2651. "serviceable": true,
  2652. "sha512": "sha512-UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==",
  2653. "path": "serilog.sinks.periodicbatching/2.3.0",
  2654. "hashPath": "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512"
  2655. },
  2656. "Serilog.Sinks.Seq/5.1.1": {
  2657. "type": "package",
  2658. "serviceable": true,
  2659. "sha512": "sha512-+BsIoanNyZPEcWY5sVtx2nL/88UcCw9gr/l0nCfe4bjuSoFS2clDIUmKaH1UXA/hx9undHCgw4epVltOulGuxw==",
  2660. "path": "serilog.sinks.seq/5.1.1",
  2661. "hashPath": "serilog.sinks.seq.5.1.1.nupkg.sha512"
  2662. },
  2663. "SharpCompress/0.30.1": {
  2664. "type": "package",
  2665. "serviceable": true,
  2666. "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
  2667. "path": "sharpcompress/0.30.1",
  2668. "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
  2669. },
  2670. "Swashbuckle.AspNetCore/6.4.0": {
  2671. "type": "package",
  2672. "serviceable": true,
  2673. "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==",
  2674. "path": "swashbuckle.aspnetcore/6.4.0",
  2675. "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512"
  2676. },
  2677. "Swashbuckle.AspNetCore.Swagger/6.4.0": {
  2678. "type": "package",
  2679. "serviceable": true,
  2680. "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==",
  2681. "path": "swashbuckle.aspnetcore.swagger/6.4.0",
  2682. "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512"
  2683. },
  2684. "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
  2685. "type": "package",
  2686. "serviceable": true,
  2687. "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==",
  2688. "path": "swashbuckle.aspnetcore.swaggergen/6.4.0",
  2689. "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512"
  2690. },
  2691. "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
  2692. "type": "package",
  2693. "serviceable": true,
  2694. "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==",
  2695. "path": "swashbuckle.aspnetcore.swaggerui/6.4.0",
  2696. "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512"
  2697. },
  2698. "System.Buffers/4.5.1": {
  2699. "type": "package",
  2700. "serviceable": true,
  2701. "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  2702. "path": "system.buffers/4.5.1",
  2703. "hashPath": "system.buffers.4.5.1.nupkg.sha512"
  2704. },
  2705. "System.Collections/4.0.11": {
  2706. "type": "package",
  2707. "serviceable": true,
  2708. "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  2709. "path": "system.collections/4.0.11",
  2710. "hashPath": "system.collections.4.0.11.nupkg.sha512"
  2711. },
  2712. "System.Collections.Concurrent/4.0.12": {
  2713. "type": "package",
  2714. "serviceable": true,
  2715. "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  2716. "path": "system.collections.concurrent/4.0.12",
  2717. "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512"
  2718. },
  2719. "System.Collections.Immutable/6.0.0": {
  2720. "type": "package",
  2721. "serviceable": true,
  2722. "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  2723. "path": "system.collections.immutable/6.0.0",
  2724. "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
  2725. },
  2726. "System.Configuration.ConfigurationManager/4.7.0": {
  2727. "type": "package",
  2728. "serviceable": true,
  2729. "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  2730. "path": "system.configuration.configurationmanager/4.7.0",
  2731. "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
  2732. },
  2733. "System.Diagnostics.Debug/4.0.11": {
  2734. "type": "package",
  2735. "serviceable": true,
  2736. "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  2737. "path": "system.diagnostics.debug/4.0.11",
  2738. "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512"
  2739. },
  2740. "System.Diagnostics.DiagnosticSource/6.0.0": {
  2741. "type": "package",
  2742. "serviceable": true,
  2743. "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  2744. "path": "system.diagnostics.diagnosticsource/6.0.0",
  2745. "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512"
  2746. },
  2747. "System.Diagnostics.EventLog/6.0.0": {
  2748. "type": "package",
  2749. "serviceable": true,
  2750. "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==",
  2751. "path": "system.diagnostics.eventlog/6.0.0",
  2752. "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512"
  2753. },
  2754. "System.Diagnostics.Tracing/4.1.0": {
  2755. "type": "package",
  2756. "serviceable": true,
  2757. "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  2758. "path": "system.diagnostics.tracing/4.1.0",
  2759. "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512"
  2760. },
  2761. "System.Drawing.Common/4.7.0": {
  2762. "type": "package",
  2763. "serviceable": true,
  2764. "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  2765. "path": "system.drawing.common/4.7.0",
  2766. "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
  2767. },
  2768. "System.Globalization/4.0.11": {
  2769. "type": "package",
  2770. "serviceable": true,
  2771. "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  2772. "path": "system.globalization/4.0.11",
  2773. "hashPath": "system.globalization.4.0.11.nupkg.sha512"
  2774. },
  2775. "System.IdentityModel.Tokens.Jwt/6.10.0": {
  2776. "type": "package",
  2777. "serviceable": true,
  2778. "sha512": "sha512-C+Q5ORsFycRkRuvy/Xd0Pv5xVpmWSAvQYZAGs7VQogmkqlLhvfZXTgBIlHqC3cxkstSoLJAYx6xZB7foQ2y5eg==",
  2779. "path": "system.identitymodel.tokens.jwt/6.10.0",
  2780. "hashPath": "system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512"
  2781. },
  2782. "System.IO/4.1.0": {
  2783. "type": "package",
  2784. "serviceable": true,
  2785. "sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
  2786. "path": "system.io/4.1.0",
  2787. "hashPath": "system.io.4.1.0.nupkg.sha512"
  2788. },
  2789. "System.IO.Pipelines/4.5.2": {
  2790. "type": "package",
  2791. "serviceable": true,
  2792. "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==",
  2793. "path": "system.io.pipelines/4.5.2",
  2794. "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512"
  2795. },
  2796. "System.Memory/4.5.1": {
  2797. "type": "package",
  2798. "serviceable": true,
  2799. "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
  2800. "path": "system.memory/4.5.1",
  2801. "hashPath": "system.memory.4.5.1.nupkg.sha512"
  2802. },
  2803. "System.Numerics.Vectors/4.5.0": {
  2804. "type": "package",
  2805. "serviceable": true,
  2806. "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
  2807. "path": "system.numerics.vectors/4.5.0",
  2808. "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
  2809. },
  2810. "System.Reflection/4.1.0": {
  2811. "type": "package",
  2812. "serviceable": true,
  2813. "sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
  2814. "path": "system.reflection/4.1.0",
  2815. "hashPath": "system.reflection.4.1.0.nupkg.sha512"
  2816. },
  2817. "System.Reflection.Metadata/1.6.0": {
  2818. "type": "package",
  2819. "serviceable": true,
  2820. "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  2821. "path": "system.reflection.metadata/1.6.0",
  2822. "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
  2823. },
  2824. "System.Reflection.Primitives/4.0.1": {
  2825. "type": "package",
  2826. "serviceable": true,
  2827. "sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
  2828. "path": "system.reflection.primitives/4.0.1",
  2829. "hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512"
  2830. },
  2831. "System.Resources.ResourceManager/4.0.1": {
  2832. "type": "package",
  2833. "serviceable": true,
  2834. "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  2835. "path": "system.resources.resourcemanager/4.0.1",
  2836. "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512"
  2837. },
  2838. "System.Runtime/4.1.0": {
  2839. "type": "package",
  2840. "serviceable": true,
  2841. "sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
  2842. "path": "system.runtime/4.1.0",
  2843. "hashPath": "system.runtime.4.1.0.nupkg.sha512"
  2844. },
  2845. "System.Runtime.Caching/4.7.0": {
  2846. "type": "package",
  2847. "serviceable": true,
  2848. "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  2849. "path": "system.runtime.caching/4.7.0",
  2850. "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512"
  2851. },
  2852. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2853. "type": "package",
  2854. "serviceable": true,
  2855. "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  2856. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  2857. "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
  2858. },
  2859. "System.Runtime.Extensions/4.1.0": {
  2860. "type": "package",
  2861. "serviceable": true,
  2862. "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  2863. "path": "system.runtime.extensions/4.1.0",
  2864. "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512"
  2865. },
  2866. "System.Security.AccessControl/5.0.0": {
  2867. "type": "package",
  2868. "serviceable": true,
  2869. "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
  2870. "path": "system.security.accesscontrol/5.0.0",
  2871. "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
  2872. },
  2873. "System.Security.Cryptography.Cng/4.5.0": {
  2874. "type": "package",
  2875. "serviceable": true,
  2876. "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  2877. "path": "system.security.cryptography.cng/4.5.0",
  2878. "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
  2879. },
  2880. "System.Security.Cryptography.Pkcs/4.5.0": {
  2881. "type": "package",
  2882. "serviceable": true,
  2883. "sha512": "sha512-TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==",
  2884. "path": "system.security.cryptography.pkcs/4.5.0",
  2885. "hashPath": "system.security.cryptography.pkcs.4.5.0.nupkg.sha512"
  2886. },
  2887. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2888. "type": "package",
  2889. "serviceable": true,
  2890. "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  2891. "path": "system.security.cryptography.protecteddata/4.7.0",
  2892. "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
  2893. },
  2894. "System.Security.Cryptography.Xml/4.5.0": {
  2895. "type": "package",
  2896. "serviceable": true,
  2897. "sha512": "sha512-i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==",
  2898. "path": "system.security.cryptography.xml/4.5.0",
  2899. "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512"
  2900. },
  2901. "System.Security.Permissions/4.7.0": {
  2902. "type": "package",
  2903. "serviceable": true,
  2904. "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  2905. "path": "system.security.permissions/4.7.0",
  2906. "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
  2907. },
  2908. "System.Security.Principal.Windows/5.0.0": {
  2909. "type": "package",
  2910. "serviceable": true,
  2911. "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  2912. "path": "system.security.principal.windows/5.0.0",
  2913. "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
  2914. },
  2915. "System.Text.Encoding/4.0.11": {
  2916. "type": "package",
  2917. "serviceable": true,
  2918. "sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
  2919. "path": "system.text.encoding/4.0.11",
  2920. "hashPath": "system.text.encoding.4.0.11.nupkg.sha512"
  2921. },
  2922. "System.Text.Encoding.CodePages/4.7.0": {
  2923. "type": "package",
  2924. "serviceable": true,
  2925. "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  2926. "path": "system.text.encoding.codepages/4.7.0",
  2927. "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512"
  2928. },
  2929. "System.Text.Encodings.Web/4.5.0": {
  2930. "type": "package",
  2931. "serviceable": true,
  2932. "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  2933. "path": "system.text.encodings.web/4.5.0",
  2934. "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
  2935. },
  2936. "System.Text.Json/4.6.0": {
  2937. "type": "package",
  2938. "serviceable": true,
  2939. "sha512": "sha512-4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",
  2940. "path": "system.text.json/4.6.0",
  2941. "hashPath": "system.text.json.4.6.0.nupkg.sha512"
  2942. },
  2943. "System.Threading/4.0.11": {
  2944. "type": "package",
  2945. "serviceable": true,
  2946. "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  2947. "path": "system.threading/4.0.11",
  2948. "hashPath": "system.threading.4.0.11.nupkg.sha512"
  2949. },
  2950. "System.Threading.Tasks/4.0.11": {
  2951. "type": "package",
  2952. "serviceable": true,
  2953. "sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
  2954. "path": "system.threading.tasks/4.0.11",
  2955. "hashPath": "system.threading.tasks.4.0.11.nupkg.sha512"
  2956. },
  2957. "System.Threading.Tasks.Extensions/4.5.1": {
  2958. "type": "package",
  2959. "serviceable": true,
  2960. "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
  2961. "path": "system.threading.tasks.extensions/4.5.1",
  2962. "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512"
  2963. },
  2964. "System.Threading.Timer/4.0.1": {
  2965. "type": "package",
  2966. "serviceable": true,
  2967. "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  2968. "path": "system.threading.timer/4.0.1",
  2969. "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
  2970. },
  2971. "System.Windows.Extensions/4.7.0": {
  2972. "type": "package",
  2973. "serviceable": true,
  2974. "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  2975. "path": "system.windows.extensions/4.7.0",
  2976. "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
  2977. },
  2978. "Diligent.WebAPI.Business/1.0.0": {
  2979. "type": "project",
  2980. "serviceable": false,
  2981. "sha512": ""
  2982. },
  2983. "Diligent.WebAPI.Data/1.0.0": {
  2984. "type": "project",
  2985. "serviceable": false,
  2986. "sha512": ""
  2987. },
  2988. "Diligent.WebAPI.Host/1.0.0": {
  2989. "type": "project",
  2990. "serviceable": false,
  2991. "sha512": ""
  2992. }
  2993. }
  2994. }