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

Diligent.WebAPI.Host.deps.json 143KB

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