| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994 |
- {
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v6.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v6.0": {
- "Tests/1.0.0": {
- "dependencies": {
- "Diligent.WebAPI.Business": "1.0.0",
- "Diligent.WebAPI.Data": "1.0.0",
- "Diligent.WebAPI.Host": "1.0.0",
- "FluentAssertions": "6.7.0",
- "Microsoft.NET.Test.Sdk": "17.1.0",
- "Moq": "4.18.2",
- "NUnit": "3.13.3",
- "NUnit.Analyzers": "3.3.0",
- "NUnit3TestAdapter": "4.2.1",
- "coverlet.collector": "3.1.2",
- "coverlet.msbuild": "3.1.2"
- },
- "runtime": {
- "Tests.dll": {}
- }
- },
- "AspNetCore.Identity.MongoDbCore/3.1.2": {
- "dependencies": {
- "Microsoft.Extensions.Identity.Core": "3.1.12",
- "Microsoft.Extensions.Identity.Stores": "3.1.12",
- "MongoDB.Driver": "2.16.1",
- "MongoDbGenericRepository": "1.4.8"
- },
- "runtime": {
- "lib/netcoreapp3.1/AspNetCore.Identity.MongoDbCore.dll": {
- "assemblyVersion": "3.1.2.0",
- "fileVersion": "3.1.2.0"
- }
- }
- },
- "AutoMapper/11.0.1": {
- "dependencies": {
- "Microsoft.CSharp": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.1/AutoMapper.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.1.0"
- }
- }
- },
- "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": {
- "dependencies": {
- "AutoMapper": "11.0.1",
- "Microsoft.Extensions.Options": "6.0.0"
- },
- "runtime": {
- "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.0.0"
- }
- }
- },
- "Castle.Core/5.1.0": {
- "dependencies": {
- "System.Diagnostics.EventLog": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Castle.Core.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.1.0.0"
- }
- }
- },
- "coverlet.collector/3.1.2": {},
- "coverlet.msbuild/3.1.2": {},
- "DnsClient/1.6.1": {
- "dependencies": {
- "Microsoft.Win32.Registry": "5.0.0"
- },
- "runtime": {
- "lib/net5.0/DnsClient.dll": {
- "assemblyVersion": "1.6.1.0",
- "fileVersion": "1.6.1.0"
- }
- }
- },
- "FluentAssertions/6.7.0": {
- "dependencies": {
- "System.Configuration.ConfigurationManager": "4.7.0"
- },
- "runtime": {
- "lib/net6.0/FluentAssertions.dll": {
- "assemblyVersion": "6.7.0.0",
- "fileVersion": "6.7.0.0"
- }
- }
- },
- "MediatR/10.0.1": {
- "dependencies": {
- "MediatR.Contracts": "1.0.1"
- },
- "runtime": {
- "lib/netstandard2.1/MediatR.dll": {
- "assemblyVersion": "10.0.0.0",
- "fileVersion": "10.0.1.0"
- }
- }
- },
- "MediatR.Contracts/1.0.1": {
- "runtime": {
- "lib/netstandard2.0/MediatR.Contracts.dll": {
- "assemblyVersion": "1.0.1.0",
- "fileVersion": "1.0.1.0"
- }
- }
- },
- "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": {
- "dependencies": {
- "MediatR": "10.0.1",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
- },
- "runtime": {
- "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {
- "assemblyVersion": "10.0.0.0",
- "fileVersion": "10.0.1.0"
- }
- }
- },
- "Microsoft.AspNet.WebApi.Client/5.2.9": {
- "dependencies": {
- "Newtonsoft.Json": "11.0.2",
- "Newtonsoft.Json.Bson": "1.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/System.Net.Http.Formatting.dll": {
- "assemblyVersion": "5.2.9.0",
- "fileVersion": "5.2.61129.10"
- }
- }
- },
- "Microsoft.AspNet.WebApi.Core/5.2.9": {
- "dependencies": {
- "Microsoft.AspNet.WebApi.Client": "5.2.9"
- },
- "runtime": {
- "lib/net45/System.Web.Http.dll": {
- "assemblyVersion": "5.2.9.0",
- "fileVersion": "5.2.61129.10"
- }
- }
- },
- "Microsoft.AspNetCore/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Diagnostics": "2.2.0",
- "Microsoft.AspNetCore.HostFiltering": "2.2.0",
- "Microsoft.AspNetCore.Hosting": "2.2.0",
- "Microsoft.AspNetCore.Routing": "2.2.0",
- "Microsoft.AspNetCore.Server.IIS": "2.2.0",
- "Microsoft.AspNetCore.Server.IISIntegration": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
- "Microsoft.Extensions.Configuration.CommandLine": "2.2.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
- "Microsoft.Extensions.Configuration.Json": "2.2.0",
- "Microsoft.Extensions.Configuration.UserSecrets": "2.2.0",
- "Microsoft.Extensions.Logging": "6.0.0",
- "Microsoft.Extensions.Logging.Configuration": "2.2.0",
- "Microsoft.Extensions.Logging.Console": "2.2.0",
- "Microsoft.Extensions.Logging.Debug": "2.2.0",
- "Microsoft.Extensions.Logging.EventSource": "2.2.0"
- }
- },
- "Microsoft.AspNetCore.Authentication/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
- "Microsoft.AspNetCore.DataProtection": "2.2.0",
- "Microsoft.AspNetCore.Http": "2.2.0",
- "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "Microsoft.Extensions.WebEncoders": "2.2.0"
- }
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0"
- }
- },
- "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication": "2.2.0"
- }
- },
- "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http": "2.2.0",
- "Microsoft.AspNetCore.Http.Extensions": "2.2.0"
- }
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.6": {
- "dependencies": {
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
- "assemblyVersion": "6.0.6.0",
- "fileVersion": "6.0.622.26805"
- }
- }
- },
- "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.2.0",
- "System.IO.Pipelines": "4.5.2"
- }
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": {},
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": {
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "3.1.12"
- }
- },
- "Microsoft.AspNetCore.DataProtection/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.Internal": "3.1.12",
- "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "Microsoft.Win32.Registry": "5.0.0",
- "System.Security.Cryptography.Xml": "4.5.0",
- "System.Security.Principal.Windows": "5.0.0"
- }
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {},
- "Microsoft.AspNetCore.Diagnostics/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
- "Microsoft.AspNetCore.WebUtilities": "2.2.0",
- "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "System.Diagnostics.DiagnosticSource": "6.0.0",
- "System.Reflection.Metadata": "1.6.0"
- }
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {},
- "Microsoft.AspNetCore.HostFiltering/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http": "2.2.0",
- "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
- "Microsoft.Extensions.Options": "6.0.0"
- }
- },
- "Microsoft.AspNetCore.Hosting/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http": "2.2.0",
- "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
- "Microsoft.Extensions.Configuration": "2.2.0",
- "Microsoft.Extensions.Configuration.EnvironmentVariables": "2.2.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
- "Microsoft.Extensions.DependencyInjection": "6.0.0",
- "Microsoft.Extensions.FileProviders.Physical": "2.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
- "Microsoft.Extensions.Logging": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "System.Diagnostics.DiagnosticSource": "6.0.0",
- "System.Reflection.Metadata": "1.6.0"
- }
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
- "Microsoft.Extensions.Hosting.Abstractions": "3.1.8"
- }
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.2.0",
- "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
- }
- },
- "Microsoft.AspNetCore.Http/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.WebUtilities": "2.2.0",
- "Microsoft.Extensions.ObjectPool": "2.2.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "Microsoft.Net.Http.Headers": "2.2.0"
- }
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Features": "2.2.0",
- "System.Text.Encodings.Web": "4.5.0"
- }
- },
- "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
- "Microsoft.Net.Http.Headers": "2.2.0",
- "System.Buffers": "4.5.1"
- }
- },
- "Microsoft.AspNetCore.Http.Features/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "6.0.0"
- }
- },
- "Microsoft.AspNetCore.HttpOverrides/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0"
- }
- },
- "Microsoft.AspNetCore.Identity/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Cookies": "2.2.0",
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.12",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.Extensions.Identity.Core": "3.1.12"
- }
- },
- "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
- "runtime": {
- "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.7710.5690"
- }
- }
- },
- "Microsoft.AspNetCore.Routing/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
- "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.ObjectPool": "2.2.0",
- "Microsoft.Extensions.Options": "6.0.0"
- }
- },
- "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
- }
- },
- "Microsoft.AspNetCore.Server.IIS/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
- "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "System.IO.Pipelines": "4.5.2",
- "System.Security.Principal.Windows": "5.0.0"
- }
- },
- "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Authentication.Core": "2.2.0",
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http": "2.2.0",
- "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
- "Microsoft.AspNetCore.HttpOverrides": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "System.Buffers": "4.5.1",
- "System.IO.Pipelines": "4.5.2",
- "System.Memory": "4.5.1",
- "System.Numerics.Vectors": "4.5.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Https": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "2.2.0"
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Http": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.WebUtilities": "2.2.0",
- "Microsoft.Extensions.Configuration.Binder": "2.2.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "Microsoft.Net.Http.Headers": "2.2.0",
- "System.Memory": "4.5.1",
- "System.Numerics.Vectors": "4.5.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0",
- "System.Security.Cryptography.Cng": "4.5.0",
- "System.Threading.Tasks.Extensions": "4.5.1"
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Core": "2.2.0"
- },
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.AspNetCore.Server.Kestrel.Https.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions.dll": {
- "assemblyVersion": "2.2.0.0",
- "fileVersion": "2.2.0.18316"
- }
- }
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": {
- "dependencies": {
- "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions": "2.2.0",
- "Microsoft.Extensions.Options": "6.0.0"
- }
- },
- "Microsoft.AspNetCore.WebUtilities/2.2.0": {
- "dependencies": {
- "Microsoft.Net.Http.Headers": "2.2.0",
- "System.Text.Encodings.Web": "4.5.0"
- }
- },
- "Microsoft.CodeCoverage/17.1.0": {
- "runtime": {
- "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "17.100.221.61401"
- }
- }
- },
- "Microsoft.CSharp/4.7.0": {},
- "Microsoft.Data.SqlClient/2.1.4": {
- "dependencies": {
- "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
- "Microsoft.Identity.Client": "4.21.1",
- "Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
- "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.10.0",
- "Microsoft.Win32.Registry": "5.0.0",
- "System.Configuration.ConfigurationManager": "4.7.0",
- "System.Diagnostics.DiagnosticSource": "6.0.0",
- "System.Runtime.Caching": "4.7.0",
- "System.Security.Principal.Windows": "5.0.0",
- "System.Text.Encoding.CodePages": "4.7.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
- "assemblyVersion": "2.0.20168.4",
- "fileVersion": "2.0.20168.4"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "2.0.20168.4",
- "fileVersion": "2.0.20168.4"
- },
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "2.0.20168.4",
- "fileVersion": "2.0.20168.4"
- }
- }
- },
- "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
- "runtimeTargets": {
- "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-arm",
- "assetType": "native",
- "fileVersion": "2.1.1.0"
- },
- "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-arm64",
- "assetType": "native",
- "fileVersion": "2.1.1.0"
- },
- "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-x64",
- "assetType": "native",
- "fileVersion": "2.1.1.0"
- },
- "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
- "rid": "win-x86",
- "assetType": "native",
- "fileVersion": "2.1.1.0"
- }
- }
- },
- "Microsoft.EntityFrameworkCore/6.0.3": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore.Abstractions": "6.0.3",
- "Microsoft.EntityFrameworkCore.Analyzers": "6.0.3",
- "Microsoft.Extensions.Caching.Memory": "6.0.1",
- "Microsoft.Extensions.DependencyInjection": "6.0.0",
- "Microsoft.Extensions.Logging": "6.0.0",
- "System.Collections.Immutable": "6.0.0",
- "System.Diagnostics.DiagnosticSource": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.322.12306"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Abstractions/6.0.3": {
- "runtime": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.322.12306"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.Analyzers/6.0.3": {},
- "Microsoft.EntityFrameworkCore.Relational/6.0.3": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "6.0.3",
- "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.322.12306"
- }
- }
- },
- "Microsoft.EntityFrameworkCore.SqlServer/6.0.3": {
- "dependencies": {
- "Microsoft.Data.SqlClient": "2.1.4",
- "Microsoft.EntityFrameworkCore.Relational": "6.0.3"
- },
- "runtime": {
- "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
- "assemblyVersion": "6.0.3.0",
- "fileVersion": "6.0.322.12306"
- }
- }
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
- "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "6.0.0"
- }
- },
- "Microsoft.Extensions.Caching.Memory/6.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "Microsoft.Extensions.Primitives": "6.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.222.6406"
- }
- }
- },
- "Microsoft.Extensions.Configuration/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "6.0.0"
- }
- },
- "Microsoft.Extensions.Configuration.Binder/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.2.0"
- }
- },
- "Microsoft.Extensions.Configuration.CommandLine/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.2.0"
- }
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.2.0"
- }
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.2.0",
- "Microsoft.Extensions.FileProviders.Physical": "2.2.0"
- }
- },
- "Microsoft.Extensions.Configuration.Json/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration": "2.2.0",
- "Microsoft.Extensions.Configuration.FileExtensions": "2.2.0",
- "Newtonsoft.Json": "11.0.2"
- }
- },
- "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Json": "2.2.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection/6.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {},
- "Microsoft.Extensions.DependencyModel/3.0.0": {
- "dependencies": {
- "System.Text.Json": "4.6.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
- "assemblyVersion": "3.0.0.0",
- "fileVersion": "3.0.19.46305"
- }
- }
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "6.0.0"
- }
- },
- "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
- "Microsoft.Extensions.FileSystemGlobbing": "2.2.0"
- }
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {},
- "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0"
- }
- },
- "Microsoft.Extensions.Identity.Core/3.1.12": {
- "dependencies": {
- "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.12",
- "Microsoft.Extensions.Logging": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0"
- }
- },
- "Microsoft.Extensions.Identity.Stores/3.1.12": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
- "Microsoft.Extensions.Identity.Core": "3.1.12",
- "Microsoft.Extensions.Logging": "6.0.0"
- }
- },
- "Microsoft.Extensions.Logging/6.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "6.0.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "System.Diagnostics.DiagnosticSource": "6.0.0"
- }
- },
- "Microsoft.Extensions.Logging.Abstractions/6.0.0": {},
- "Microsoft.Extensions.Logging.Configuration/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "6.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0"
- }
- },
- "Microsoft.Extensions.Logging.Console/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
- "Microsoft.Extensions.Logging": "6.0.0",
- "Microsoft.Extensions.Logging.Configuration": "2.2.0"
- }
- },
- "Microsoft.Extensions.Logging.Debug/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "6.0.0"
- }
- },
- "Microsoft.Extensions.Logging.EventSource/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "6.0.0",
- "Newtonsoft.Json": "11.0.2"
- }
- },
- "Microsoft.Extensions.ObjectPool/2.2.0": {},
- "Microsoft.Extensions.Options/6.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "Microsoft.Extensions.Primitives": "6.0.0"
- }
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
- "Microsoft.Extensions.Configuration.Binder": "2.2.0",
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0"
- }
- },
- "Microsoft.Extensions.Primitives/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "Microsoft.Extensions.WebEncoders/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "Microsoft.Extensions.Options": "6.0.0",
- "System.Text.Encodings.Web": "4.5.0"
- }
- },
- "Microsoft.Identity.Client/4.21.1": {
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
- "assemblyVersion": "4.21.1.0",
- "fileVersion": "4.21.1.0"
- }
- }
- },
- "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "6.10.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "assemblyVersion": "6.10.0.0",
- "fileVersion": "6.10.0.20330"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/6.10.0": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
- "assemblyVersion": "6.10.0.0",
- "fileVersion": "6.10.0.20330"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols/6.10.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "6.10.0",
- "Microsoft.IdentityModel.Tokens": "6.10.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
- "assemblyVersion": "6.10.0.0",
- "fileVersion": "6.10.0.20330"
- }
- }
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
- "dependencies": {
- "Microsoft.IdentityModel.Protocols": "6.10.0",
- "System.IdentityModel.Tokens.Jwt": "6.10.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
- "assemblyVersion": "6.10.0.0",
- "fileVersion": "6.10.0.20330"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/6.10.0": {
- "dependencies": {
- "Microsoft.CSharp": "4.7.0",
- "Microsoft.IdentityModel.Logging": "6.10.0",
- "System.Security.Cryptography.Cng": "4.5.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
- "assemblyVersion": "6.10.0.0",
- "fileVersion": "6.10.0.20330"
- }
- }
- },
- "Microsoft.Net.Http.Headers/2.2.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "6.0.0",
- "System.Buffers": "4.5.1"
- }
- },
- "Microsoft.NET.Test.Sdk/17.1.0": {
- "dependencies": {
- "Microsoft.CodeCoverage": "17.1.0",
- "Microsoft.TestPlatform.TestHost": "17.1.0"
- }
- },
- "Microsoft.NETCore.Platforms/5.0.0": {},
- "Microsoft.NETCore.Targets/1.0.1": {},
- "Microsoft.OpenApi/1.2.3": {
- "runtime": {
- "lib/netstandard2.0/Microsoft.OpenApi.dll": {
- "assemblyVersion": "1.2.3.0",
- "fileVersion": "1.2.3.0"
- }
- }
- },
- "Microsoft.TestPlatform.ObjectModel/17.1.0": {
- "dependencies": {
- "NuGet.Frameworks": "5.11.0",
- "System.Reflection.Metadata": "1.6.0"
- },
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- }
- },
- "resources": {
- "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.TestPlatform.TestHost/17.1.0": {
- "dependencies": {
- "Microsoft.TestPlatform.ObjectModel": "17.1.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "runtime": {
- "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- },
- "lib/netcoreapp2.1/testhost.dll": {
- "assemblyVersion": "15.0.0.0",
- "fileVersion": "15.0.0.0"
- }
- },
- "resources": {
- "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
- "locale": "zh-Hant"
- },
- "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.Win32.Registry/5.0.0": {
- "dependencies": {
- "System.Security.AccessControl": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- }
- },
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "MongoDB.Bson/2.16.1": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- },
- "runtime": {
- "lib/netstandard2.1/MongoDB.Bson.dll": {
- "assemblyVersion": "2.16.1.0",
- "fileVersion": "2.16.1.0"
- }
- }
- },
- "MongoDB.Driver/2.16.1": {
- "dependencies": {
- "MongoDB.Bson": "2.16.1",
- "MongoDB.Driver.Core": "2.16.1",
- "MongoDB.Libmongocrypt": "1.5.3"
- },
- "runtime": {
- "lib/netstandard2.1/MongoDB.Driver.dll": {
- "assemblyVersion": "2.16.1.0",
- "fileVersion": "2.16.1.0"
- }
- }
- },
- "MongoDB.Driver.Core/2.16.1": {
- "dependencies": {
- "DnsClient": "1.6.1",
- "MongoDB.Bson": "2.16.1",
- "MongoDB.Libmongocrypt": "1.5.3",
- "SharpCompress": "0.30.1",
- "System.Buffers": "4.5.1"
- },
- "runtime": {
- "lib/netstandard2.1/MongoDB.Driver.Core.dll": {
- "assemblyVersion": "2.16.1.0",
- "fileVersion": "2.16.1.0"
- }
- },
- "runtimeTargets": {
- "runtimes/linux/native/libsnappy64.so": {
- "rid": "linux",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/linux/native/libzstd.so": {
- "rid": "linux",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx/native/libsnappy64.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx/native/libzstd.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win/native/libzstd.dll": {
- "rid": "win",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win/native/snappy32.dll": {
- "rid": "win",
- "assetType": "native",
- "fileVersion": "1.1.1.7"
- },
- "runtimes/win/native/snappy64.dll": {
- "rid": "win",
- "assetType": "native",
- "fileVersion": "1.1.1.7"
- }
- }
- },
- "MongoDB.Libmongocrypt/1.5.3": {
- "runtime": {
- "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {
- "assemblyVersion": "1.5.3.0",
- "fileVersion": "1.5.3.0"
- }
- },
- "runtimeTargets": {
- "runtimes/linux/native/libmongocrypt.so": {
- "rid": "linux",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/osx/native/libmongocrypt.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- },
- "runtimes/win/native/mongocrypt.dll": {
- "rid": "win",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "MongoDbGenericRepository/1.4.8": {
- "dependencies": {
- "MongoDB.Driver": "2.16.1"
- },
- "runtime": {
- "lib/netstandard2.0/MongoDbGenericRepository.dll": {
- "assemblyVersion": "1.4.8.0",
- "fileVersion": "1.4.8.0"
- }
- }
- },
- "Moq/4.18.2": {
- "dependencies": {
- "Castle.Core": "5.1.0"
- },
- "runtime": {
- "lib/net6.0/Moq.dll": {
- "assemblyVersion": "4.18.0.0",
- "fileVersion": "4.18.2.0"
- }
- }
- },
- "NETStandard.Library/2.0.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0"
- }
- },
- "Newtonsoft.Json/11.0.2": {
- "runtime": {
- "lib/netstandard2.0/Newtonsoft.Json.dll": {
- "assemblyVersion": "11.0.0.0",
- "fileVersion": "11.0.2.21924"
- }
- }
- },
- "Newtonsoft.Json.Bson/1.0.1": {
- "dependencies": {
- "NETStandard.Library": "2.0.0",
- "Newtonsoft.Json": "11.0.2"
- },
- "runtime": {
- "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.1.20722"
- }
- }
- },
- "NuGet.Frameworks/5.11.0": {
- "runtime": {
- "lib/netstandard2.0/NuGet.Frameworks.dll": {
- "assemblyVersion": "5.11.0.10",
- "fileVersion": "5.11.0.10"
- }
- }
- },
- "NUnit/3.13.3": {
- "dependencies": {
- "NETStandard.Library": "2.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/nunit.framework.dll": {
- "assemblyVersion": "3.13.3.0",
- "fileVersion": "3.13.3.0"
- }
- }
- },
- "NUnit.Analyzers/3.3.0": {},
- "NUnit3TestAdapter/4.2.1": {},
- "Serilog/2.11.0": {
- "runtime": {
- "lib/net5.0/Serilog.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.11.0.0"
- }
- }
- },
- "Serilog.AspNetCore/5.0.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection": "6.0.0",
- "Microsoft.Extensions.Logging": "6.0.0",
- "Serilog": "2.11.0",
- "Serilog.Extensions.Hosting": "4.2.0",
- "Serilog.Formatting.Compact": "1.1.0",
- "Serilog.Settings.Configuration": "3.3.0",
- "Serilog.Sinks.Console": "4.0.1",
- "Serilog.Sinks.Debug": "2.0.0",
- "Serilog.Sinks.File": "5.0.0"
- },
- "runtime": {
- "lib/net5.0/Serilog.AspNetCore.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "5.0.0.0"
- }
- }
- },
- "Serilog.Extensions.Hosting/4.2.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
- "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
- "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
- "Serilog": "2.11.0",
- "Serilog.Extensions.Logging": "3.1.0"
- },
- "runtime": {
- "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "4.2.0.0"
- }
- }
- },
- "Serilog.Extensions.Logging/3.1.0": {
- "dependencies": {
- "Microsoft.Extensions.Logging": "6.0.0",
- "Serilog": "2.11.0"
- },
- "runtime": {
- "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "3.1.0.0"
- }
- }
- },
- "Serilog.Formatting.Compact/1.1.0": {
- "dependencies": {
- "Serilog": "2.11.0"
- },
- "runtime": {
- "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
- "assemblyVersion": "1.1.0.0",
- "fileVersion": "1.1.0.0"
- }
- }
- },
- "Serilog.Settings.Configuration/3.3.0": {
- "dependencies": {
- "Microsoft.Extensions.DependencyModel": "3.0.0",
- "Microsoft.Extensions.Options.ConfigurationExtensions": "2.2.0",
- "Serilog": "2.11.0"
- },
- "runtime": {
- "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
- "assemblyVersion": "3.3.0.0",
- "fileVersion": "3.3.0.0"
- }
- }
- },
- "Serilog.Sinks.Console/4.0.1": {
- "dependencies": {
- "Serilog": "2.11.0"
- },
- "runtime": {
- "lib/net5.0/Serilog.Sinks.Console.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.0.1.0"
- }
- }
- },
- "Serilog.Sinks.Debug/2.0.0": {
- "dependencies": {
- "Serilog": "2.11.0"
- },
- "runtime": {
- "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.0.0.0"
- }
- }
- },
- "Serilog.Sinks.File/5.0.0": {
- "dependencies": {
- "Serilog": "2.11.0"
- },
- "runtime": {
- "lib/net5.0/Serilog.Sinks.File.dll": {
- "assemblyVersion": "5.0.0.0",
- "fileVersion": "5.0.0.0"
- }
- }
- },
- "Serilog.Sinks.PeriodicBatching/2.3.0": {
- "dependencies": {
- "Serilog": "2.11.0",
- "System.Collections.Concurrent": "4.0.12",
- "System.Threading.Timer": "4.0.1"
- },
- "runtime": {
- "lib/netstandard2.0/Serilog.Sinks.PeriodicBatching.dll": {
- "assemblyVersion": "2.0.0.0",
- "fileVersion": "2.3.0.0"
- }
- }
- },
- "Serilog.Sinks.Seq/5.1.1": {
- "dependencies": {
- "Serilog": "2.11.0",
- "Serilog.Formatting.Compact": "1.1.0",
- "Serilog.Sinks.File": "5.0.0",
- "Serilog.Sinks.PeriodicBatching": "2.3.0"
- },
- "runtime": {
- "lib/net5.0/Serilog.Sinks.Seq.dll": {
- "assemblyVersion": "5.1.1.0",
- "fileVersion": "5.1.1.0"
- }
- }
- },
- "SharpCompress/0.30.1": {
- "runtime": {
- "lib/net5.0/SharpCompress.dll": {
- "assemblyVersion": "0.30.1.0",
- "fileVersion": "0.30.1.0"
- }
- }
- },
- "Swashbuckle.AspNetCore/6.4.0": {
- "dependencies": {
- "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
- "Swashbuckle.AspNetCore.Swagger": "6.4.0",
- "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0",
- "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0"
- }
- },
- "Swashbuckle.AspNetCore.Swagger/6.4.0": {
- "dependencies": {
- "Microsoft.OpenApi": "1.2.3"
- },
- "runtime": {
- "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
- "assemblyVersion": "6.4.0.0",
- "fileVersion": "6.4.0.0"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
- "dependencies": {
- "Swashbuckle.AspNetCore.Swagger": "6.4.0"
- },
- "runtime": {
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
- "assemblyVersion": "6.4.0.0",
- "fileVersion": "6.4.0.0"
- }
- }
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
- "runtime": {
- "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
- "assemblyVersion": "6.4.0.0",
- "fileVersion": "6.4.0.0"
- }
- }
- },
- "System.Buffers/4.5.1": {},
- "System.Collections/4.0.11": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Collections.Concurrent/4.0.12": {
- "dependencies": {
- "System.Collections": "4.0.11",
- "System.Diagnostics.Debug": "4.0.11",
- "System.Diagnostics.Tracing": "4.1.0",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Resources.ResourceManager": "4.0.1",
- "System.Runtime": "4.1.0",
- "System.Runtime.Extensions": "4.1.0",
- "System.Threading": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
- }
- },
- "System.Collections.Immutable/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Configuration.ConfigurationManager/4.7.0": {
- "dependencies": {
- "System.Security.Cryptography.ProtectedData": "4.7.0",
- "System.Security.Permissions": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Diagnostics.Debug/4.0.11": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Diagnostics.DiagnosticSource/6.0.0": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "6.0.0"
- }
- },
- "System.Diagnostics.EventLog/6.0.0": {},
- "System.Diagnostics.Tracing/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Drawing.Common/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.Win32.SystemEvents": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Drawing.Common.dll": {
- "assemblyVersion": "4.0.0.1",
- "fileVersion": "4.6.26919.2"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- },
- "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.2.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Globalization/4.0.11": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.IdentityModel.Tokens.Jwt/6.10.0": {
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "6.10.0",
- "Microsoft.IdentityModel.Tokens": "6.10.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
- "assemblyVersion": "6.10.0.0",
- "fileVersion": "6.10.0.20330"
- }
- }
- },
- "System.IO/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0",
- "System.Text.Encoding": "4.0.11",
- "System.Threading.Tasks": "4.0.11"
- }
- },
- "System.IO.Pipelines/4.5.2": {},
- "System.Memory/4.5.1": {},
- "System.Numerics.Vectors/4.5.0": {},
- "System.Reflection/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.IO": "4.1.0",
- "System.Reflection.Primitives": "4.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Reflection.Metadata/1.6.0": {},
- "System.Reflection.Primitives/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Resources.ResourceManager/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Globalization": "4.0.11",
- "System.Reflection": "4.1.0",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Runtime/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1"
- }
- },
- "System.Runtime.Caching/4.7.0": {
- "dependencies": {
- "System.Configuration.ConfigurationManager": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Runtime.Caching.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
- "System.Runtime.Extensions/4.1.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Security.AccessControl/5.0.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "System.Security.Principal.Windows": "5.0.0"
- }
- },
- "System.Security.Cryptography.Cng/4.5.0": {},
- "System.Security.Cryptography.Pkcs/4.5.0": {
- "dependencies": {
- "System.Security.Cryptography.Cng": "4.5.0"
- }
- },
- "System.Security.Cryptography.ProtectedData/4.7.0": {
- "runtime": {
- "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.5.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Cryptography.Xml/4.5.0": {
- "dependencies": {
- "System.Security.Cryptography.Pkcs": "4.5.0",
- "System.Security.Permissions": "4.7.0"
- }
- },
- "System.Security.Permissions/4.7.0": {
- "dependencies": {
- "System.Security.AccessControl": "5.0.0",
- "System.Windows.Extensions": "4.7.0"
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Security.Permissions.dll": {
- "assemblyVersion": "4.0.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Security.Principal.Windows/5.0.0": {},
- "System.Text.Encoding/4.0.11": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Text.Encoding.CodePages/4.7.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0"
- }
- },
- "System.Text.Encodings.Web/4.5.0": {},
- "System.Text.Json/4.6.0": {},
- "System.Threading/4.0.11": {
- "dependencies": {
- "System.Runtime": "4.1.0",
- "System.Threading.Tasks": "4.0.11"
- }
- },
- "System.Threading.Tasks/4.0.11": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.5.1": {},
- "System.Threading.Timer/4.0.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "5.0.0",
- "Microsoft.NETCore.Targets": "1.0.1",
- "System.Runtime": "4.1.0"
- }
- },
- "System.Windows.Extensions/4.7.0": {
- "dependencies": {
- "System.Drawing.Common": "4.7.0"
- },
- "runtime": {
- "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "4.0.1.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "Diligent.WebAPI.Business/1.0.0": {
- "dependencies": {
- "AutoMapper": "11.0.1",
- "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0",
- "Diligent.WebAPI.Data": "1.0.0",
- "MongoDB.Driver": "2.16.1"
- },
- "runtime": {
- "Diligent.WebAPI.Business.dll": {}
- }
- },
- "Diligent.WebAPI.Data/1.0.0": {
- "dependencies": {
- "AspNetCore.Identity.MongoDbCore": "3.1.2",
- "AutoMapper": "11.0.1",
- "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0",
- "Microsoft.AspNetCore": "2.2.0",
- "Microsoft.EntityFrameworkCore.SqlServer": "6.0.3",
- "MongoDB.Driver": "2.16.1"
- },
- "runtime": {
- "Diligent.WebAPI.Data.dll": {}
- }
- },
- "Diligent.WebAPI.Host/1.0.0": {
- "dependencies": {
- "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0",
- "Diligent.WebAPI.Business": "1.0.0",
- "Diligent.WebAPI.Data": "1.0.0",
- "MediatR": "10.0.1",
- "MediatR.Extensions.Microsoft.DependencyInjection": "10.0.1",
- "Microsoft.AspNet.WebApi.Core": "5.2.9",
- "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.6",
- "Microsoft.AspNetCore.Identity": "2.2.0",
- "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0",
- "Serilog": "2.11.0",
- "Serilog.AspNetCore": "5.0.0",
- "Serilog.Sinks.Console": "4.0.1",
- "Serilog.Sinks.File": "5.0.0",
- "Serilog.Sinks.Seq": "5.1.1",
- "Swashbuckle.AspNetCore": "6.4.0"
- },
- "runtime": {
- "Diligent.WebAPI.Host.dll": {}
- }
- }
- }
- },
- "libraries": {
- "Tests/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "AspNetCore.Identity.MongoDbCore/3.1.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ichSW3Vs51f+Ol7Ska1jIOlKc+i2Am3UeNvGhhIb59MXOKyhZGpyulUnFdN62IpP779EkLrLf3ZMwSZ2bVgY+g==",
- "path": "aspnetcore.identity.mongodbcore/3.1.2",
- "hashPath": "aspnetcore.identity.mongodbcore.3.1.2.nupkg.sha512"
- },
- "AutoMapper/11.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==",
- "path": "automapper/11.0.1",
- "hashPath": "automapper.11.0.1.nupkg.sha512"
- },
- "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==",
- "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0",
- "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512"
- },
- "Castle.Core/5.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-31UJpTHOiWq95CDOHazE3Ub/hE/PydNWsJMwnEVTqFFP4WhAugwpaVGxzOxKgNeSUUeqS2W6lxV+q7u1pAOfXg==",
- "path": "castle.core/5.1.0",
- "hashPath": "castle.core.5.1.0.nupkg.sha512"
- },
- "coverlet.collector/3.1.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-wuLDIDKD5XMt0A7lE31JPenT7QQwZPFkP5rRpdJeblyXZ9MGLI8rYjvm5fvAKln+2/X+4IxxQDxBtwdrqKNLZw==",
- "path": "coverlet.collector/3.1.2",
- "hashPath": "coverlet.collector.3.1.2.nupkg.sha512"
- },
- "coverlet.msbuild/3.1.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==",
- "path": "coverlet.msbuild/3.1.2",
- "hashPath": "coverlet.msbuild.3.1.2.nupkg.sha512"
- },
- "DnsClient/1.6.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
- "path": "dnsclient/1.6.1",
- "hashPath": "dnsclient.1.6.1.nupkg.sha512"
- },
- "FluentAssertions/6.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PWbow/R3MnYDP8UW7zh/w80rGb+1NufGoNJeuzouTo2bqpvwNTFxbDwF6XWfFZ5IuquL2225Um+qSyZ8jVsT+w==",
- "path": "fluentassertions/6.7.0",
- "hashPath": "fluentassertions.6.7.0.nupkg.sha512"
- },
- "MediatR/10.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vnjbk4giDJzJelh34Ygt0eorApCKrRFB7j0pauFPY1oxfO3cEZ7FugBrIOjCM76SDGTOmPFfbfmVnz1t3iFrGA==",
- "path": "mediatr/10.0.1",
- "hashPath": "mediatr.10.0.1.nupkg.sha512"
- },
- "MediatR.Contracts/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NsRvOxthhkYml4DcBMyJsmym8C4MchioH7wxKVPEg7plFj9Euh/i4IcmZ3Gvgx6+K8obeuhPeJdoBl56wnuo3A==",
- "path": "mediatr.contracts/1.0.1",
- "hashPath": "mediatr.contracts.1.0.1.nupkg.sha512"
- },
- "MediatR.Extensions.Microsoft.DependencyInjection/10.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mYdfMvpkahCAj4tRfBoeMlUBZa2WthaONdQ4y5TtIyxcZYb5e7AE7c1eITTZVWcQhguxvD8AdExdaiAW6RhrVA==",
- "path": "mediatr.extensions.microsoft.dependencyinjection/10.0.1",
- "hashPath": "mediatr.extensions.microsoft.dependencyinjection.10.0.1.nupkg.sha512"
- },
- "Microsoft.AspNet.WebApi.Client/5.2.9": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cuVhPjjNMSEFpKXweMNBbsG4RUFuuZpFBm8tSyw309U9JEjcnbB6n3EPb4xwgcy9bJ38ctIbv5G8zXUBhlrPWw==",
- "path": "microsoft.aspnet.webapi.client/5.2.9",
- "hashPath": "microsoft.aspnet.webapi.client.5.2.9.nupkg.sha512"
- },
- "Microsoft.AspNet.WebApi.Core/5.2.9": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9C0/gBUeMBjorRFSmR5Z2j5wznf9BP5SddN+OZE7X0BpXgivBZTZ42d0h8tIjJzSLHYVCU4HZBf51+cidCY4fQ==",
- "path": "microsoft.aspnet.webapi.core/5.2.9",
- "hashPath": "microsoft.aspnet.webapi.core.5.2.9.nupkg.sha512"
- },
- "Microsoft.AspNetCore/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Bs75iht4lXS8uVWy/Cbsr9i0m2jRtnrfPEWU+6t0dQTZcJEfF9b7G2F7XvstLFWkAKSgYRzFkAwi/KypY0Qtew==",
- "path": "microsoft.aspnetcore/2.2.0",
- "hashPath": "microsoft.aspnetcore.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-b0R9X7L6zMqNsssKDvhYHuNi5x0s4DyHTeXybIAyGaitKiW1Q5aAGKdV2codHPiePv9yHfC9hAMyScXQ/xXhPw==",
- "path": "microsoft.aspnetcore.authentication/2.2.0",
- "hashPath": "microsoft.aspnetcore.authentication.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==",
- "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Cookies/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Iar9VFlBHkZGdSG9ZUTmn6Q8Qg+6CtW5G/TyJI2F8B432TOH+nZlkU7O0W0byow6xsxqOYeTviSHz4cCJ3amfQ==",
- "path": "microsoft.aspnetcore.authentication.cookies/2.2.0",
- "hashPath": "microsoft.aspnetcore.authentication.cookies.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.Core/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==",
- "path": "microsoft.aspnetcore.authentication.core/2.2.0",
- "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Authentication.JwtBearer/6.0.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lrfPEeisa0xCmZKKQIKxuks37aGE6jgGqDq1ikZDwNLWfIt2/ajOQpHMSE6a5uLjEVqkChKpXpvA7ZvfIKvdzA==",
- "path": "microsoft.aspnetcore.authentication.jwtbearer/6.0.6",
- "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.6.0.6.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==",
- "path": "microsoft.aspnetcore.connections.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Cryptography.Internal/3.1.12": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9V7Acx9lFw2KA23FOqH4TH5wQzZN/px/ovmRWBb8I3rf9arZ/cKniwRmRNrwgmShtQXhu1t124rrl1du2ueODA==",
- "path": "microsoft.aspnetcore.cryptography.internal/3.1.12",
- "hashPath": "microsoft.aspnetcore.cryptography.internal.3.1.12.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.12": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LNaiyMe0J8kkXglqtmE3wK1xu3ofvKh1WTVmJs0yl/uFfo9Vbr6lSyZ0k+5sTUxuIS1WU6dHe4nO0ikRlXq6CQ==",
- "path": "microsoft.aspnetcore.cryptography.keyderivation/3.1.12",
- "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.3.1.12.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==",
- "path": "microsoft.aspnetcore.dataprotection/2.2.0",
- "hashPath": "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==",
- "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Diagnostics/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RobNuZecn/eefWVApOE+OWAZXCdgfzm8pB7tBvJkahsjWfn1a+bLM9I2cuKlp/9aFBok1O/oDXlgYSvaQYu/yg==",
- "path": "microsoft.aspnetcore.diagnostics/2.2.0",
- "hashPath": "microsoft.aspnetcore.diagnostics.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==",
- "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.HostFiltering/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JSX6ZlVWDkokZ+xCKDhUVQNqbmFn1lHQNzJc8K4Y/uTUocZS83+b/8Q7y/yx3oJ362etGMVy0keAvmCdqbP8nA==",
- "path": "microsoft.aspnetcore.hostfiltering/2.2.0",
- "hashPath": "microsoft.aspnetcore.hostfiltering.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7t4RbUGugpHtQmzAkc9fpDdYJg6t/jcB2VVnjensVYbZFnLDU8pNrG0hrekk1DQG7P2UzpSqKLzDsFF0/lkkbw==",
- "path": "microsoft.aspnetcore.hosting/2.2.0",
- "hashPath": "microsoft.aspnetcore.hosting.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
- "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
- "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YogBSMotWPAS/X5967pZ+yyWPQkThxhmzAwyCHCSSldzYBkW5W5d6oPfBaPqQOnSHYTpSOSOkpZoAce0vwb6+A==",
- "path": "microsoft.aspnetcore.http/2.2.0",
- "hashPath": "microsoft.aspnetcore.http.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
- "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
- "path": "microsoft.aspnetcore.http.extensions/2.2.0",
- "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Http.Features/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==",
- "path": "microsoft.aspnetcore.http.features/2.2.0",
- "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.HttpOverrides/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pOlLQyNKQduGbtbgB55RyTHFeshSfKi3DmofrVjk+UBQjyp+Tm0RNNJFQf+sv34hlFsel+VnD79QyO9Zk/c3oA==",
- "path": "microsoft.aspnetcore.httpoverrides/2.2.0",
- "hashPath": "microsoft.aspnetcore.httpoverrides.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Identity/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-F16BKeS96wKhyIyhaFR7m8kRIwIvPUW9Dx7IlGWmu2IIwnUDCdo+2z7IrWKA8r77pZQ1UE9kYcBPg5456YdAIA==",
- "path": "microsoft.aspnetcore.identity/2.2.0",
- "hashPath": "microsoft.aspnetcore.identity.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mN9IARvNpHMBD2/oGmp5Bxp1Dg45Hfcp+LWaAyTtL2HisWLMOIcf0Ox1qW9IvCvdbHM+2A9dWEInhiqBsNxsJA==",
- "path": "microsoft.aspnetcore.mvc.versioning/5.0.0",
- "hashPath": "microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Routing/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
- "path": "microsoft.aspnetcore.routing/2.2.0",
- "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
- "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.IIS/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-6NEwFAJFrnZ0f5eJB1ReIpgPM1ZRDj3IE3Rda01nD3vJANCyJFjZ4SGW3Ckn1AmMi225fGflWzpCKLb7/l43jw==",
- "path": "microsoft.aspnetcore.server.iis/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.iis.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.IISIntegration/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iVjgAg+doTTrTFCOq6kZRpebXq94YGCx9efMIwO5QhwdY/sHAjfrVz2lXzji63G96YjJVK3ZRrlpgS2fd49ABw==",
- "path": "microsoft.aspnetcore.server.iisintegration/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.iisintegration.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-D0vGB8Tp0UNMiAhT+pwAVeqDDx2OFrfpu/plwm0WhA+1DZvTLc99eDwGISL6LAY8x7a12lhl9w7/m+VdoyDu8Q==",
- "path": "microsoft.aspnetcore.server.kestrel/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.kestrel.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Core/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-F6/Vesd3ODq/ISbHfcvfRf7IzRtTvrNX8VA36Knm5e7bteJhoRA2GKQUVQ+neoO1njLvaQKnjcA3rdCZ6AF6cg==",
- "path": "microsoft.aspnetcore.server.kestrel.core/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.kestrel.core.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Https/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nEH5mU6idUYS3/+9BKw2stMOM25ZdGwIH4P4kyj6PVkMPgQUTkBQ7l/ScPkepdhejcOlPa+g3+M4dYsSYPUJ8g==",
- "path": "microsoft.aspnetcore.server.kestrel.https/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.kestrel.https.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-j1ai2CG8BGp4mYf2TWSFjjy1pRgW9XbqhdR4EOVvrlFVbcpEPfXNIPEdjkcgK+txWCupGzkFnFF8oZsASMtmyw==",
- "path": "microsoft.aspnetcore.server.kestrel.transport.abstractions/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.kestrel.transport.abstractions.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qTACI0wePgAKCH+YKrMgChyfqJpjwgGZEtSuwBw6TjWLQ66THGasleia/7EZz2t2eAjwWxw8RA/D8ODrBqpj9A==",
- "path": "microsoft.aspnetcore.server.kestrel.transport.sockets/2.2.0",
- "hashPath": "microsoft.aspnetcore.server.kestrel.transport.sockets.2.2.0.nupkg.sha512"
- },
- "Microsoft.AspNetCore.WebUtilities/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==",
- "path": "microsoft.aspnetcore.webutilities/2.2.0",
- "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512"
- },
- "Microsoft.CodeCoverage/17.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0N/ZJ71ncCxQWhgtkEYKOgu2oMHa8h1tsOUbhmIKXF8UwtSUCe4vHAsJ3DVcNWRwNfQzSTy263ZE+QF6MdIhhQ==",
- "path": "microsoft.codecoverage/17.1.0",
- "hashPath": "microsoft.codecoverage.17.1.0.nupkg.sha512"
- },
- "Microsoft.CSharp/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
- "path": "microsoft.csharp/4.7.0",
- "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512"
- },
- "Microsoft.Data.SqlClient/2.1.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
- "path": "microsoft.data.sqlclient/2.1.4",
- "hashPath": "microsoft.data.sqlclient.2.1.4.nupkg.sha512"
- },
- "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
- "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
- "hashPath": "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-f7ZlNOI1wPg/r0zRgvmcLAM3kwuCVGe5cZc8rYoKPDGZs5dgRFe5a43H9FnCXsyFAF6FILB08Nr9RkuNMwd3TQ==",
- "path": "microsoft.entityframeworkcore/6.0.3",
- "hashPath": "microsoft.entityframeworkcore.6.0.3.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Abstractions/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7c6wJtTFj7FDe20IVPDKeCzxWIMu+XDpYi7aYuUo6knu4vDeB3N3F0pjAZgXJ96GwTZYBrjOEwnbpYmfapEz/w==",
- "path": "microsoft.entityframeworkcore.abstractions/6.0.3",
- "hashPath": "microsoft.entityframeworkcore.abstractions.6.0.3.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Analyzers/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ld9HyVABYor3Tq43/sG2JERL94UnDHJPg5PwpkCW4CWsf/CbxHetdecv+bCXA/Hg4q+44sov0GVl4Ywjk4PnyA==",
- "path": "microsoft.entityframeworkcore.analyzers/6.0.3",
- "hashPath": "microsoft.entityframeworkcore.analyzers.6.0.3.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.Relational/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Dga4OH8QxmPT9APr7ZL5R0TvNADOcjDNNvJa8pU3QbPJ6OvRPTlzqAehfEBow0/NXBTKbIO48b4aIJI4VCO7fg==",
- "path": "microsoft.entityframeworkcore.relational/6.0.3",
- "hashPath": "microsoft.entityframeworkcore.relational.6.0.3.nupkg.sha512"
- },
- "Microsoft.EntityFrameworkCore.SqlServer/6.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rd1lGh5au10tB6J0Jt3ZLLA78Bs/eQSWgkMSBE9n+cRAs/Db99OfdnxgkK3JqCCyFfp12LAsboWDUCnRhPOskw==",
- "path": "microsoft.entityframeworkcore.sqlserver/6.0.3",
- "hashPath": "microsoft.entityframeworkcore.sqlserver.6.0.3.nupkg.sha512"
- },
- "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
- "path": "microsoft.extensions.apidescription.server/6.0.5",
- "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
- "path": "microsoft.extensions.caching.abstractions/6.0.0",
- "hashPath": "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Caching.Memory/6.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
- "path": "microsoft.extensions.caching.memory/6.0.1",
- "hashPath": "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
- "path": "microsoft.extensions.configuration/2.2.0",
- "hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
- "path": "microsoft.extensions.configuration.abstractions/6.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
- "path": "microsoft.extensions.configuration.binder/2.2.0",
- "hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.CommandLine/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4kJIGOSRqD1Ccqerst4t/zsNs51plR7BIxbdKO1J/9rL+2DuNT+ieAuEv+HROelqTam3yOpKFR7TtHBt3oLpOA==",
- "path": "microsoft.extensions.configuration.commandline/2.2.0",
- "hashPath": "microsoft.extensions.configuration.commandline.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.EnvironmentVariables/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gIqt9PkKO01hZ0zmHnWrZ1E45MDreZTVoyDbL1kMWKtDgxxWTJpYtESTEcgpvR1uB1iex1zKGYzJpOMgmuP5TQ==",
- "path": "microsoft.extensions.configuration.environmentvariables/2.2.0",
- "hashPath": "microsoft.extensions.configuration.environmentvariables.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.FileExtensions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-H1qCpWBC8Ed4tguTR/qYkbb3F6DI5Su3t8xyFo3/5MzAd8PwPpHzgX8X04KbBxKmk173Pb64x7xMHarczVFQUA==",
- "path": "microsoft.extensions.configuration.fileextensions/2.2.0",
- "hashPath": "microsoft.extensions.configuration.fileextensions.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Json/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jUDdmLyFmLf9V3mqnMzSAzAv4QigJ67tZh5Q7HBXeBnESL2UyeesNG6jSBti+b63JpxZf+EDyn+anx3gyrNxug==",
- "path": "microsoft.extensions.configuration.json/2.2.0",
- "hashPath": "microsoft.extensions.configuration.json.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.UserSecrets/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2/N2xo6/sNbVshnKktmq5lwaQbsAR2SrzCVrJEeMP8OKZVI7SzT8P6/WXZF8/YC7dTYsMe3nrHzgl1cF9i5ZKQ==",
- "path": "microsoft.extensions.configuration.usersecrets/2.2.0",
- "hashPath": "microsoft.extensions.configuration.usersecrets.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
- "path": "microsoft.extensions.dependencyinjection/6.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
- "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
- "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.DependencyModel/3.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Iaectmzg9Dc4ZbKX/FurrRjgO/I8rTumL5UU+Uube6vZuGetcnXoIgTA94RthFWePhdMVm8MMhVFJZdbzMsdyQ==",
- "path": "microsoft.extensions.dependencymodel/3.0.0",
- "hashPath": "microsoft.extensions.dependencymodel.3.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-U7ffyzrPfRDH5K3h/mBpqJVoHbppw1kc1KyHZcZeDR7b1A0FRaqMSiizGpN9IGwWs9BuN7oXIKFyviuSGBjHtQ==",
- "path": "microsoft.extensions.fileproviders.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.FileProviders.Physical/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tbDHZnBJkjYd9NjlRZ9ondDiv1Te3KYCTW2RWpR1B0e1Z8+EnFRo7qNnHkkSCixLdlPZzhjlX24d/PixQ7w2dA==",
- "path": "microsoft.extensions.fileproviders.physical/2.2.0",
- "hashPath": "microsoft.extensions.fileproviders.physical.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.FileSystemGlobbing/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZSsHZp3PyW6vk37tDEdypjgGlNtpJ0EixBMOfUod2Thx7GtwfFSAQXUQx8a8BN8vfWKGGMbp7jPWdoHx/At4wQ==",
- "path": "microsoft.extensions.filesystemglobbing/2.2.0",
- "hashPath": "microsoft.extensions.filesystemglobbing.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7ZJUKwPipkDvuv2KJPZ3r01wp2AWNMiYH+61i0dL89F7QICknjKpWgLKLpTSUYFgl77S3b4264I6i4HzDdrb2A==",
- "path": "microsoft.extensions.hosting.abstractions/3.1.8",
- "hashPath": "microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512"
- },
- "Microsoft.Extensions.Identity.Core/3.1.12": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MRNaIsE3PdT24+6cWxJhiyfTY3Eoncr/m+5nW3NtBjPQXhJKECGNdquh5EH5KwNaYls2KI53znl7KD4pWMkKyw==",
- "path": "microsoft.extensions.identity.core/3.1.12",
- "hashPath": "microsoft.extensions.identity.core.3.1.12.nupkg.sha512"
- },
- "Microsoft.Extensions.Identity.Stores/3.1.12": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-xQOIvN3nFJ0ptl/qnozFJPzfY/TxrJFr9k/EPJkqHZx8jtzlGJ4mqvgknau0AunW25uXyT+O6co3AJ4B4OKcRQ==",
- "path": "microsoft.extensions.identity.stores/3.1.12",
- "hashPath": "microsoft.extensions.identity.stores.3.1.12.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
- "path": "microsoft.extensions.logging/6.0.0",
- "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==",
- "path": "microsoft.extensions.logging.abstractions/6.0.0",
- "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Configuration/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ukU1mQGX9+xBsEzpNd13yl4deFVYI+fxxnmKpOhvNZsF+/trCrAUQh+9QM5pPGHbfYkz3lLQ4BXfKCP0502dLw==",
- "path": "microsoft.extensions.logging.configuration/2.2.0",
- "hashPath": "microsoft.extensions.logging.configuration.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Console/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1eGgcOJ++PMxW6sn++j6U7wsWvhEBm/5ScqBUUBGLRE8M7AHahi9tsxivDMqEXVM3F0/pshHl3kEpMXtw4BeFg==",
- "path": "microsoft.extensions.logging.console/2.2.0",
- "hashPath": "microsoft.extensions.logging.console.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.Debug/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JjqWtshxUujSnxslFccCRAaH8uFOciqXkYdRw+h5MwpC4sUc+ju9yZzvVi6PA5vW09ckv26EkasEvXrofGiaJg==",
- "path": "microsoft.extensions.logging.debug/2.2.0",
- "hashPath": "microsoft.extensions.logging.debug.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Logging.EventSource/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oOa5H+vdNgpsxE6vgtX4U/godKtX2edVi+QjlWb2PBQfavGIQ3WxtjxN+B0DQAjwBNdV4mW8cgOiDEZ8KdR7Ig==",
- "path": "microsoft.extensions.logging.eventsource/2.2.0",
- "hashPath": "microsoft.extensions.logging.eventsource.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.ObjectPool/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
- "path": "microsoft.extensions.objectpool/2.2.0",
- "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Options/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
- "path": "microsoft.extensions.options/6.0.0",
- "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Options.ConfigurationExtensions/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d4WS6yVXaw43ffiUnHj8oG1t2B6RbDDiQcgdA+Eq//NlPa3Wd+GTJFKj4OM4eDF3GjVumGr/CEVRS/jcYoF5LA==",
- "path": "microsoft.extensions.options.configurationextensions/2.2.0",
- "hashPath": "microsoft.extensions.options.configurationextensions.2.2.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Primitives/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
- "path": "microsoft.extensions.primitives/6.0.0",
- "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.WebEncoders/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==",
- "path": "microsoft.extensions.webencoders/2.2.0",
- "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512"
- },
- "Microsoft.Identity.Client/4.21.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
- "path": "microsoft.identity.client/4.21.1",
- "hashPath": "microsoft.identity.client.4.21.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.JsonWebTokens/6.10.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-0qjS31rN1MQTc46tAYbzmMTSRfdV5ndZxSjYxIGqKSidd4wpNJfNII/pdhU5Fx8olarQoKL9lqqYw4yNOIwT0Q==",
- "path": "microsoft.identitymodel.jsonwebtokens/6.10.0",
- "hashPath": "microsoft.identitymodel.jsonwebtokens.6.10.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Logging/6.10.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zbcwV6esnNzhZZ/VP87dji6VrUBLB5rxnZBkDMqNYpyG+nrBnBsbm4PUYLCBMUflHCM9EMLDG0rLnqqT+l0ldA==",
- "path": "microsoft.identitymodel.logging/6.10.0",
- "hashPath": "microsoft.identitymodel.logging.6.10.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols/6.10.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-DFyXD0xylP+DknCT3hzJ7q/Q5qRNu0hO/gCU90O0ATdR0twZmlcuY9RNYaaDofXKVbzcShYNCFCGle2G/o8mkg==",
- "path": "microsoft.identitymodel.protocols/6.10.0",
- "hashPath": "microsoft.identitymodel.protocols.6.10.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.10.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LVvMXAWPbPeEWTylDrxunlHH2wFyE4Mv0L4gZrJHC4HTESbWHquKZb/y/S8jgiQEDycOP0PDQvbG4RR/tr2TVQ==",
- "path": "microsoft.identitymodel.protocols.openidconnect/6.10.0",
- "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.10.0.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Tokens/6.10.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-qbf1NslutDB4oLrriYTJpy7oB1pbh2ej2lEHd2IPDQH9C74ysOdhU5wAC7KoXblldbo7YsNR2QYFOqQM/b0Rsg==",
- "path": "microsoft.identitymodel.tokens/6.10.0",
- "hashPath": "microsoft.identitymodel.tokens.6.10.0.nupkg.sha512"
- },
- "Microsoft.Net.Http.Headers/2.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
- "path": "microsoft.net.http.headers/2.2.0",
- "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512"
- },
- "Microsoft.NET.Test.Sdk/17.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MVKvOsHIfrZrvg+8aqOF5dknO/qWrR1sWZjMPQ1N42MKMlL/zQL30FQFZxPeWfmVKWUWAOmAHYsqB5OerTKziw==",
- "path": "microsoft.net.test.sdk/17.1.0",
- "hashPath": "microsoft.net.test.sdk.17.1.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
- "path": "microsoft.netcore.platforms/5.0.0",
- "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==",
- "path": "microsoft.netcore.targets/1.0.1",
- "hashPath": "microsoft.netcore.targets.1.0.1.nupkg.sha512"
- },
- "Microsoft.OpenApi/1.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
- "path": "microsoft.openapi/1.2.3",
- "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512"
- },
- "Microsoft.TestPlatform.ObjectModel/17.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OMo/FYnKGy3lZEK0gfitskRM3ga/YBt6MyCyFPq0xNLeybGOQ6HnYNAAvzyePo5WPuMiw3LX+HiuRWNjnas1fA==",
- "path": "microsoft.testplatform.objectmodel/17.1.0",
- "hashPath": "microsoft.testplatform.objectmodel.17.1.0.nupkg.sha512"
- },
- "Microsoft.TestPlatform.TestHost/17.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JS0JDLniDhIzkSPLHz7N/x1CG8ywJOtwInFDYA3KQvbz+ojGoT5MT2YDVReL1b86zmNRV8339vsTSm/zh0RcMg==",
- "path": "microsoft.testplatform.testhost/17.1.0",
- "hashPath": "microsoft.testplatform.testhost.17.1.0.nupkg.sha512"
- },
- "Microsoft.Win32.Registry/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
- "path": "microsoft.win32.registry/5.0.0",
- "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
- },
- "Microsoft.Win32.SystemEvents/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
- "path": "microsoft.win32.systemevents/4.7.0",
- "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512"
- },
- "MongoDB.Bson/2.16.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-d647KTPQ7hWqJmvCg80iiVdm239llaUwMyIeRF/0zKpN+ddRWh9jT/g6R6WQrmi4qd7yodvv/Jn0rpEqh4QN8g==",
- "path": "mongodb.bson/2.16.1",
- "hashPath": "mongodb.bson.2.16.1.nupkg.sha512"
- },
- "MongoDB.Driver/2.16.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LqDWfRG7gM1tZKcG9Q/vuQGYF5GsBuxUF5KcOgvWrE6P7pSkOSL9xGZ7ABZ6XRVECGEQs+N6GyU1E4ViI4lh+g==",
- "path": "mongodb.driver/2.16.1",
- "hashPath": "mongodb.driver.2.16.1.nupkg.sha512"
- },
- "MongoDB.Driver.Core/2.16.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oJZnXHnAyTd/haHYdbfKMRmPEZ1fFrndv8xhorHeTkUDeGgsPA89vpGMHcjppUyHMYBpLgHbn6GoMkleHKsTHg==",
- "path": "mongodb.driver.core/2.16.1",
- "hashPath": "mongodb.driver.core.2.16.1.nupkg.sha512"
- },
- "MongoDB.Libmongocrypt/1.5.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OWWxuyuxbjAmOLPoaoUEYnIW4F7qexS6XYOdu6absxyGAqLBWEY+M4WY2Y0km2UUG1+QOPdebpb/7cg5BIEbdw==",
- "path": "mongodb.libmongocrypt/1.5.3",
- "hashPath": "mongodb.libmongocrypt.1.5.3.nupkg.sha512"
- },
- "MongoDbGenericRepository/1.4.8": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+cogUUMvXjnc8JUvDwnWitNAKRU7BrOleILH2AeLQnZ/WZNvocRw2PLNBIBlXyBdf3Nt2UtByL12d2lPGwP+VQ==",
- "path": "mongodbgenericrepository/1.4.8",
- "hashPath": "mongodbgenericrepository.1.4.8.nupkg.sha512"
- },
- "Moq/4.18.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SjxKYS5nX6prcaT8ZjbkONh3vnh0Rxru09+gQ1a07v4TM530Oe/jq3Q4dOZPfo1wq0LYmTgLOZKrqRfEx4auPw==",
- "path": "moq/4.18.2",
- "hashPath": "moq.4.18.2.nupkg.sha512"
- },
- "NETStandard.Library/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
- "path": "netstandard.library/2.0.0",
- "hashPath": "netstandard.library.2.0.0.nupkg.sha512"
- },
- "Newtonsoft.Json/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
- "path": "newtonsoft.json/11.0.2",
- "hashPath": "newtonsoft.json.11.0.2.nupkg.sha512"
- },
- "Newtonsoft.Json.Bson/1.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
- "path": "newtonsoft.json.bson/1.0.1",
- "hashPath": "newtonsoft.json.bson.1.0.1.nupkg.sha512"
- },
- "NuGet.Frameworks/5.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
- "path": "nuget.frameworks/5.11.0",
- "hashPath": "nuget.frameworks.5.11.0.nupkg.sha512"
- },
- "NUnit/3.13.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KNPDpls6EfHwC3+nnA67fh5wpxeLb3VLFAfLxrug6JMYDLHH6InaQIWR7Sc3y75d/9IKzMksH/gi08W7XWbmnQ==",
- "path": "nunit/3.13.3",
- "hashPath": "nunit.3.13.3.nupkg.sha512"
- },
- "NUnit.Analyzers/3.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gyRc0qmXUIjHaTcHTWZDHK5ccOF6cLEOGQJ6Fj5JWKh8/W1XzPFC6zGXRu5sDNSxfKaNeQRmkdz3M73ArQkY1A==",
- "path": "nunit.analyzers/3.3.0",
- "hashPath": "nunit.analyzers.3.3.0.nupkg.sha512"
- },
- "NUnit3TestAdapter/4.2.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kgH8VKsrcZZgNGQXRpVCrM7TnNz9li3b/snH+YmnXUNqsaWa1Xw9EQWHpbzq4Li2FbTjTE/E5N5HdLNXzZ8BpQ==",
- "path": "nunit3testadapter/4.2.1",
- "hashPath": "nunit3testadapter.4.2.1.nupkg.sha512"
- },
- "Serilog/2.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
- "path": "serilog/2.11.0",
- "hashPath": "serilog.2.11.0.nupkg.sha512"
- },
- "Serilog.AspNetCore/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/JO/txIxRR61x1UXQAgUzG2Sx05o1QHCkokVBWrKzmAoDu+p5EtCAj7L/TVVg7Ezhh3GPiZ0JI9OJCmRO9tSRw==",
- "path": "serilog.aspnetcore/5.0.0",
- "hashPath": "serilog.aspnetcore.5.0.0.nupkg.sha512"
- },
- "Serilog.Extensions.Hosting/4.2.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-gT2keceCmPQR9EX0VpXQZvUgELdfE7yqJ7MOxBhm3WLCblcvRgswEOOTgok/DHObbM15A3V/DtF3VdVDQPIZzQ==",
- "path": "serilog.extensions.hosting/4.2.0",
- "hashPath": "serilog.extensions.hosting.4.2.0.nupkg.sha512"
- },
- "Serilog.Extensions.Logging/3.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==",
- "path": "serilog.extensions.logging/3.1.0",
- "hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512"
- },
- "Serilog.Formatting.Compact/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
- "path": "serilog.formatting.compact/1.1.0",
- "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512"
- },
- "Serilog.Settings.Configuration/3.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7GNudISZwqaT902hqEL2OFGTZeUFWfnrNLupJkOqeF41AR3GjcxX+Hwb30xb8gG2/CDXsCMVfF8o0+8KY0fJNg==",
- "path": "serilog.settings.configuration/3.3.0",
- "hashPath": "serilog.settings.configuration.3.3.0.nupkg.sha512"
- },
- "Serilog.Sinks.Console/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
- "path": "serilog.sinks.console/4.0.1",
- "hashPath": "serilog.sinks.console.4.0.1.nupkg.sha512"
- },
- "Serilog.Sinks.Debug/2.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
- "path": "serilog.sinks.debug/2.0.0",
- "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512"
- },
- "Serilog.Sinks.File/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
- "path": "serilog.sinks.file/5.0.0",
- "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512"
- },
- "Serilog.Sinks.PeriodicBatching/2.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UYKSjTMTlUY9T3OgzMmLDLD+z0qPfgvq/RvG0rKfyz+O+Zrjw3X/Xpv14J4WMcGVsOjUaR+k8n2MdmqVpJtI6A==",
- "path": "serilog.sinks.periodicbatching/2.3.0",
- "hashPath": "serilog.sinks.periodicbatching.2.3.0.nupkg.sha512"
- },
- "Serilog.Sinks.Seq/5.1.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+BsIoanNyZPEcWY5sVtx2nL/88UcCw9gr/l0nCfe4bjuSoFS2clDIUmKaH1UXA/hx9undHCgw4epVltOulGuxw==",
- "path": "serilog.sinks.seq/5.1.1",
- "hashPath": "serilog.sinks.seq.5.1.1.nupkg.sha512"
- },
- "SharpCompress/0.30.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
- "path": "sharpcompress/0.30.1",
- "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore/6.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==",
- "path": "swashbuckle.aspnetcore/6.4.0",
- "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.Swagger/6.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==",
- "path": "swashbuckle.aspnetcore.swagger/6.4.0",
- "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==",
- "path": "swashbuckle.aspnetcore.swaggergen/6.4.0",
- "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512"
- },
- "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==",
- "path": "swashbuckle.aspnetcore.swaggerui/6.4.0",
- "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512"
- },
- "System.Buffers/4.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
- "path": "system.buffers/4.5.1",
- "hashPath": "system.buffers.4.5.1.nupkg.sha512"
- },
- "System.Collections/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
- "path": "system.collections/4.0.11",
- "hashPath": "system.collections.4.0.11.nupkg.sha512"
- },
- "System.Collections.Concurrent/4.0.12": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
- "path": "system.collections.concurrent/4.0.12",
- "hashPath": "system.collections.concurrent.4.0.12.nupkg.sha512"
- },
- "System.Collections.Immutable/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
- "path": "system.collections.immutable/6.0.0",
- "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
- },
- "System.Configuration.ConfigurationManager/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
- "path": "system.configuration.configurationmanager/4.7.0",
- "hashPath": "system.configuration.configurationmanager.4.7.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
- "path": "system.diagnostics.debug/4.0.11",
- "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512"
- },
- "System.Diagnostics.DiagnosticSource/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
- "path": "system.diagnostics.diagnosticsource/6.0.0",
- "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512"
- },
- "System.Diagnostics.EventLog/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==",
- "path": "system.diagnostics.eventlog/6.0.0",
- "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512"
- },
- "System.Diagnostics.Tracing/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
- "path": "system.diagnostics.tracing/4.1.0",
- "hashPath": "system.diagnostics.tracing.4.1.0.nupkg.sha512"
- },
- "System.Drawing.Common/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
- "path": "system.drawing.common/4.7.0",
- "hashPath": "system.drawing.common.4.7.0.nupkg.sha512"
- },
- "System.Globalization/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
- "path": "system.globalization/4.0.11",
- "hashPath": "system.globalization.4.0.11.nupkg.sha512"
- },
- "System.IdentityModel.Tokens.Jwt/6.10.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-C+Q5ORsFycRkRuvy/Xd0Pv5xVpmWSAvQYZAGs7VQogmkqlLhvfZXTgBIlHqC3cxkstSoLJAYx6xZB7foQ2y5eg==",
- "path": "system.identitymodel.tokens.jwt/6.10.0",
- "hashPath": "system.identitymodel.tokens.jwt.6.10.0.nupkg.sha512"
- },
- "System.IO/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
- "path": "system.io/4.1.0",
- "hashPath": "system.io.4.1.0.nupkg.sha512"
- },
- "System.IO.Pipelines/4.5.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==",
- "path": "system.io.pipelines/4.5.2",
- "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512"
- },
- "System.Memory/4.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
- "path": "system.memory/4.5.1",
- "hashPath": "system.memory.4.5.1.nupkg.sha512"
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
- "path": "system.numerics.vectors/4.5.0",
- "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
- },
- "System.Reflection/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
- "path": "system.reflection/4.1.0",
- "hashPath": "system.reflection.4.1.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/1.6.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
- "path": "system.reflection.metadata/1.6.0",
- "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
- "path": "system.reflection.primitives/4.0.1",
- "hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
- "path": "system.resources.resourcemanager/4.0.1",
- "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512"
- },
- "System.Runtime/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
- "path": "system.runtime/4.1.0",
- "hashPath": "system.runtime.4.1.0.nupkg.sha512"
- },
- "System.Runtime.Caching/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
- "path": "system.runtime.caching/4.7.0",
- "hashPath": "system.runtime.caching.4.7.0.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
- "path": "system.runtime.compilerservices.unsafe/6.0.0",
- "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
- "path": "system.runtime.extensions/4.1.0",
- "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512"
- },
- "System.Security.AccessControl/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
- "path": "system.security.accesscontrol/5.0.0",
- "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
- "path": "system.security.cryptography.cng/4.5.0",
- "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Pkcs/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-TGQX51gxpY3K3I6LJlE2LAftVlIMqJf0cBGhz68Y89jjk3LJCB6SrwiD+YN1fkqemBvWGs+GjyMJukl6d6goyQ==",
- "path": "system.security.cryptography.pkcs/4.5.0",
- "hashPath": "system.security.cryptography.pkcs.4.5.0.nupkg.sha512"
- },
- "System.Security.Cryptography.ProtectedData/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
- "path": "system.security.cryptography.protecteddata/4.7.0",
- "hashPath": "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512"
- },
- "System.Security.Cryptography.Xml/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==",
- "path": "system.security.cryptography.xml/4.5.0",
- "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512"
- },
- "System.Security.Permissions/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
- "path": "system.security.permissions/4.7.0",
- "hashPath": "system.security.permissions.4.7.0.nupkg.sha512"
- },
- "System.Security.Principal.Windows/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
- "path": "system.security.principal.windows/5.0.0",
- "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
- "path": "system.text.encoding/4.0.11",
- "hashPath": "system.text.encoding.4.0.11.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
- "path": "system.text.encoding.codepages/4.7.0",
- "hashPath": "system.text.encoding.codepages.4.7.0.nupkg.sha512"
- },
- "System.Text.Encodings.Web/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
- "path": "system.text.encodings.web/4.5.0",
- "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512"
- },
- "System.Text.Json/4.6.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==",
- "path": "system.text.json/4.6.0",
- "hashPath": "system.text.json.4.6.0.nupkg.sha512"
- },
- "System.Threading/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
- "path": "system.threading/4.0.11",
- "hashPath": "system.threading.4.0.11.nupkg.sha512"
- },
- "System.Threading.Tasks/4.0.11": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
- "path": "system.threading.tasks/4.0.11",
- "hashPath": "system.threading.tasks.4.0.11.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-WSKUTtLhPR8gllzIWO2x6l4lmAIfbyMAiTlyXAis4QBDonXK4b4S6F8zGARX4/P8wH3DH+sLdhamCiHn+fTU1A==",
- "path": "system.threading.tasks.extensions/4.5.1",
- "hashPath": "system.threading.tasks.extensions.4.5.1.nupkg.sha512"
- },
- "System.Threading.Timer/4.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
- "path": "system.threading.timer/4.0.1",
- "hashPath": "system.threading.timer.4.0.1.nupkg.sha512"
- },
- "System.Windows.Extensions/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
- "path": "system.windows.extensions/4.7.0",
- "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512"
- },
- "Diligent.WebAPI.Business/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Diligent.WebAPI.Data/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Diligent.WebAPI.Host/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- }
- }
- }
|