project.assets.json 396 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "Autofac/6.4.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "System.Diagnostics.DiagnosticSource": "4.7.1"
  9. },
  10. "compile": {
  11. "lib/net6.0/Autofac.dll": {
  12. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/net6.0/Autofac.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "Autofac.Extensions.DependencyInjection/8.0.0": {
  22. "type": "package",
  23. "dependencies": {
  24. "Autofac": "6.4.0",
  25. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0"
  26. },
  27. "compile": {
  28. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  29. "related": ".xml"
  30. }
  31. },
  32. "runtime": {
  33. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll": {
  34. "related": ".xml"
  35. }
  36. }
  37. },
  38. "Autofac.Extras.DynamicProxy/6.0.1": {
  39. "type": "package",
  40. "dependencies": {
  41. "Autofac": "6.2.0",
  42. "Castle.Core": "4.4.0"
  43. },
  44. "compile": {
  45. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  46. "related": ".xml"
  47. }
  48. },
  49. "runtime": {
  50. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll": {
  51. "related": ".xml"
  52. }
  53. }
  54. },
  55. "AutoMapper/11.0.1": {
  56. "type": "package",
  57. "dependencies": {
  58. "Microsoft.CSharp": "4.7.0"
  59. },
  60. "compile": {
  61. "lib/netstandard2.1/AutoMapper.dll": {
  62. "related": ".xml"
  63. }
  64. },
  65. "runtime": {
  66. "lib/netstandard2.1/AutoMapper.dll": {
  67. "related": ".xml"
  68. }
  69. }
  70. },
  71. "Castle.Core/5.0.0": {
  72. "type": "package",
  73. "dependencies": {
  74. "System.Diagnostics.EventLog": "6.0.0"
  75. },
  76. "compile": {
  77. "lib/net6.0/Castle.Core.dll": {
  78. "related": ".xml"
  79. }
  80. },
  81. "runtime": {
  82. "lib/net6.0/Castle.Core.dll": {
  83. "related": ".xml"
  84. }
  85. }
  86. },
  87. "Castle.Core.AsyncInterceptor/2.1.0": {
  88. "type": "package",
  89. "dependencies": {
  90. "Castle.Core": "4.4.0"
  91. },
  92. "compile": {
  93. "lib/net6.0/Castle.Core.AsyncInterceptor.dll": {
  94. "related": ".xml"
  95. }
  96. },
  97. "runtime": {
  98. "lib/net6.0/Castle.Core.AsyncInterceptor.dll": {
  99. "related": ".xml"
  100. }
  101. }
  102. },
  103. "Google.Protobuf/3.21.9": {
  104. "type": "package",
  105. "compile": {
  106. "lib/net5.0/Google.Protobuf.dll": {
  107. "related": ".pdb;.xml"
  108. }
  109. },
  110. "runtime": {
  111. "lib/net5.0/Google.Protobuf.dll": {
  112. "related": ".pdb;.xml"
  113. }
  114. }
  115. },
  116. "Humanizer.Core/2.8.26": {
  117. "type": "package",
  118. "compile": {
  119. "lib/netstandard2.0/_._": {
  120. "related": ".xml"
  121. }
  122. },
  123. "runtime": {
  124. "lib/netstandard2.0/Humanizer.dll": {
  125. "related": ".xml"
  126. }
  127. }
  128. },
  129. "IdentityModel/4.0.0": {
  130. "type": "package",
  131. "dependencies": {
  132. "Newtonsoft.Json": "11.0.2",
  133. "System.Text.Encodings.Web": "4.5.0"
  134. },
  135. "compile": {
  136. "lib/netstandard2.0/IdentityModel.dll": {
  137. "related": ".pdb;.xml"
  138. }
  139. },
  140. "runtime": {
  141. "lib/netstandard2.0/IdentityModel.dll": {
  142. "related": ".pdb;.xml"
  143. }
  144. }
  145. },
  146. "IdentityModel.AspNetCore.OAuth2Introspection/4.0.1": {
  147. "type": "package",
  148. "dependencies": {
  149. "IdentityModel": "4.0.0"
  150. },
  151. "compile": {
  152. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.dll": {
  153. "related": ".pdb;.xml"
  154. }
  155. },
  156. "runtime": {
  157. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.dll": {
  158. "related": ".pdb;.xml"
  159. }
  160. },
  161. "frameworkReferences": [
  162. "Microsoft.AspNetCore.App"
  163. ]
  164. },
  165. "IdentityServer4.AccessTokenValidation/3.0.1": {
  166. "type": "package",
  167. "dependencies": {
  168. "IdentityModel.AspNetCore.OAuth2Introspection": "4.0.1",
  169. "Microsoft.AspNetCore.Authentication.JwtBearer": "3.0.0"
  170. },
  171. "compile": {
  172. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.dll": {
  173. "related": ".pdb;.xml"
  174. }
  175. },
  176. "runtime": {
  177. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.dll": {
  178. "related": ".pdb;.xml"
  179. }
  180. },
  181. "frameworkReferences": [
  182. "Microsoft.AspNetCore.App"
  183. ]
  184. },
  185. "JetBrains.Annotations/2022.1.0": {
  186. "type": "package",
  187. "compile": {
  188. "lib/netstandard2.0/JetBrains.Annotations.dll": {
  189. "related": ".deps.json;.xml"
  190. }
  191. },
  192. "runtime": {
  193. "lib/netstandard2.0/JetBrains.Annotations.dll": {
  194. "related": ".deps.json;.xml"
  195. }
  196. }
  197. },
  198. "K4os.Compression.LZ4/1.2.6": {
  199. "type": "package",
  200. "dependencies": {
  201. "System.Memory": "4.5.4"
  202. },
  203. "compile": {
  204. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  205. "related": ".xml"
  206. }
  207. },
  208. "runtime": {
  209. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  210. "related": ".xml"
  211. }
  212. }
  213. },
  214. "K4os.Compression.LZ4.Streams/1.2.6": {
  215. "type": "package",
  216. "dependencies": {
  217. "K4os.Compression.LZ4": "1.2.6",
  218. "K4os.Hash.xxHash": "1.0.6"
  219. },
  220. "compile": {
  221. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  222. "related": ".xml"
  223. }
  224. },
  225. "runtime": {
  226. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": {
  227. "related": ".xml"
  228. }
  229. }
  230. },
  231. "K4os.Hash.xxHash/1.0.6": {
  232. "type": "package",
  233. "dependencies": {
  234. "System.Memory": "4.5.3"
  235. },
  236. "compile": {
  237. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  238. "related": ".xml"
  239. }
  240. },
  241. "runtime": {
  242. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  243. "related": ".xml"
  244. }
  245. }
  246. },
  247. "Microsoft.AspNetCore.Authentication.JwtBearer/3.0.0": {
  248. "type": "package",
  249. "dependencies": {
  250. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.5.0"
  251. },
  252. "compile": {
  253. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  254. "related": ".xml"
  255. }
  256. },
  257. "runtime": {
  258. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
  259. "related": ".xml"
  260. }
  261. },
  262. "frameworkReferences": [
  263. "Microsoft.AspNetCore.App"
  264. ]
  265. },
  266. "Microsoft.AspNetCore.Authorization/6.0.5": {
  267. "type": "package",
  268. "dependencies": {
  269. "Microsoft.AspNetCore.Metadata": "6.0.5",
  270. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  271. "Microsoft.Extensions.Options": "6.0.0"
  272. },
  273. "compile": {
  274. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
  275. "related": ".xml"
  276. }
  277. },
  278. "runtime": {
  279. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll": {
  280. "related": ".xml"
  281. }
  282. }
  283. },
  284. "Microsoft.AspNetCore.Cryptography.Internal/6.0.3": {
  285. "type": "package",
  286. "compile": {
  287. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  288. "related": ".xml"
  289. }
  290. },
  291. "runtime": {
  292. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  293. "related": ".xml"
  294. }
  295. }
  296. },
  297. "Microsoft.AspNetCore.DataProtection/6.0.3": {
  298. "type": "package",
  299. "dependencies": {
  300. "Microsoft.AspNetCore.Cryptography.Internal": "6.0.3",
  301. "Microsoft.AspNetCore.DataProtection.Abstractions": "6.0.3",
  302. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  303. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  304. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  305. "Microsoft.Extensions.Options": "6.0.0",
  306. "System.Security.Cryptography.Xml": "6.0.0"
  307. },
  308. "compile": {
  309. "lib/net6.0/Microsoft.AspNetCore.DataProtection.dll": {
  310. "related": ".xml"
  311. }
  312. },
  313. "runtime": {
  314. "lib/net6.0/Microsoft.AspNetCore.DataProtection.dll": {
  315. "related": ".xml"
  316. }
  317. }
  318. },
  319. "Microsoft.AspNetCore.DataProtection.Abstractions/6.0.3": {
  320. "type": "package",
  321. "compile": {
  322. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  323. "related": ".xml"
  324. }
  325. },
  326. "runtime": {
  327. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  328. "related": ".xml"
  329. }
  330. }
  331. },
  332. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis/6.0.3": {
  333. "type": "package",
  334. "dependencies": {
  335. "Microsoft.AspNetCore.DataProtection": "6.0.3",
  336. "StackExchange.Redis": "2.2.4"
  337. },
  338. "compile": {
  339. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll": {
  340. "related": ".xml"
  341. }
  342. },
  343. "runtime": {
  344. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll": {
  345. "related": ".xml"
  346. }
  347. }
  348. },
  349. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  350. "type": "package",
  351. "dependencies": {
  352. "Microsoft.Extensions.Primitives": "5.0.1",
  353. "System.IO.Pipelines": "5.0.2"
  354. },
  355. "compile": {
  356. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  357. "related": ".xml"
  358. }
  359. },
  360. "runtime": {
  361. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  362. "related": ".xml"
  363. }
  364. }
  365. },
  366. "Microsoft.AspNetCore.JsonPatch/6.0.5": {
  367. "type": "package",
  368. "dependencies": {
  369. "Microsoft.CSharp": "4.7.0",
  370. "Newtonsoft.Json": "13.0.1"
  371. },
  372. "compile": {
  373. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": {
  374. "related": ".xml"
  375. }
  376. },
  377. "runtime": {
  378. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll": {
  379. "related": ".xml"
  380. }
  381. }
  382. },
  383. "Microsoft.AspNetCore.Metadata/6.0.5": {
  384. "type": "package",
  385. "compile": {
  386. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
  387. "related": ".xml"
  388. }
  389. },
  390. "runtime": {
  391. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll": {
  392. "related": ".xml"
  393. }
  394. }
  395. },
  396. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.5": {
  397. "type": "package",
  398. "dependencies": {
  399. "Microsoft.AspNetCore.JsonPatch": "6.0.5",
  400. "Newtonsoft.Json": "13.0.1",
  401. "Newtonsoft.Json.Bson": "1.0.2"
  402. },
  403. "compile": {
  404. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  405. "related": ".xml"
  406. }
  407. },
  408. "runtime": {
  409. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": {
  410. "related": ".xml"
  411. }
  412. },
  413. "frameworkReferences": [
  414. "Microsoft.AspNetCore.App"
  415. ]
  416. },
  417. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.5": {
  418. "type": "package",
  419. "dependencies": {
  420. "Microsoft.AspNetCore.Razor.Language": "6.0.5",
  421. "Microsoft.CodeAnalysis.Razor": "6.0.5"
  422. },
  423. "compile": {
  424. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  425. },
  426. "runtime": {
  427. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  428. }
  429. },
  430. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/6.0.5": {
  431. "type": "package",
  432. "dependencies": {
  433. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.5",
  434. "Microsoft.CodeAnalysis.Razor": "6.0.5",
  435. "Microsoft.Extensions.DependencyModel": "6.0.0"
  436. },
  437. "compile": {
  438. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {
  439. "related": ".xml"
  440. }
  441. },
  442. "runtime": {
  443. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {
  444. "related": ".xml"
  445. }
  446. },
  447. "frameworkReferences": [
  448. "Microsoft.AspNetCore.App"
  449. ],
  450. "build": {
  451. "buildTransitive/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {}
  452. }
  453. },
  454. "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
  455. "type": "package",
  456. "compile": {
  457. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll": {
  458. "related": ".pdb;.xml"
  459. }
  460. },
  461. "runtime": {
  462. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll": {
  463. "related": ".pdb;.xml"
  464. }
  465. },
  466. "frameworkReferences": [
  467. "Microsoft.AspNetCore.App"
  468. ]
  469. },
  470. "Microsoft.AspNetCore.Razor.Language/6.0.5": {
  471. "type": "package",
  472. "compile": {
  473. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  474. },
  475. "runtime": {
  476. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  477. }
  478. },
  479. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  480. "type": "package",
  481. "compile": {
  482. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  483. "related": ".xml"
  484. }
  485. },
  486. "runtime": {
  487. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  488. "related": ".xml"
  489. }
  490. }
  491. },
  492. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  493. "type": "package",
  494. "build": {
  495. "build/_._": {}
  496. }
  497. },
  498. "Microsoft.CodeAnalysis.Common/4.0.0": {
  499. "type": "package",
  500. "dependencies": {
  501. "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
  502. "System.Collections.Immutable": "5.0.0",
  503. "System.Memory": "4.5.4",
  504. "System.Reflection.Metadata": "5.0.0",
  505. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  506. "System.Text.Encoding.CodePages": "4.5.1",
  507. "System.Threading.Tasks.Extensions": "4.5.4"
  508. },
  509. "compile": {
  510. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  511. "related": ".pdb;.xml"
  512. }
  513. },
  514. "runtime": {
  515. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  516. "related": ".pdb;.xml"
  517. }
  518. },
  519. "resource": {
  520. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  521. "locale": "cs"
  522. },
  523. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  524. "locale": "de"
  525. },
  526. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  527. "locale": "es"
  528. },
  529. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  530. "locale": "fr"
  531. },
  532. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  533. "locale": "it"
  534. },
  535. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  536. "locale": "ja"
  537. },
  538. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  539. "locale": "ko"
  540. },
  541. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  542. "locale": "pl"
  543. },
  544. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  545. "locale": "pt-BR"
  546. },
  547. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  548. "locale": "ru"
  549. },
  550. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  551. "locale": "tr"
  552. },
  553. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  554. "locale": "zh-Hans"
  555. },
  556. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  557. "locale": "zh-Hant"
  558. }
  559. }
  560. },
  561. "Microsoft.CodeAnalysis.CSharp/4.0.0": {
  562. "type": "package",
  563. "dependencies": {
  564. "Microsoft.CodeAnalysis.Common": "[4.0.0]"
  565. },
  566. "compile": {
  567. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  568. "related": ".pdb;.xml"
  569. }
  570. },
  571. "runtime": {
  572. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  573. "related": ".pdb;.xml"
  574. }
  575. },
  576. "resource": {
  577. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  578. "locale": "cs"
  579. },
  580. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  581. "locale": "de"
  582. },
  583. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  584. "locale": "es"
  585. },
  586. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  587. "locale": "fr"
  588. },
  589. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  590. "locale": "it"
  591. },
  592. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  593. "locale": "ja"
  594. },
  595. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  596. "locale": "ko"
  597. },
  598. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  599. "locale": "pl"
  600. },
  601. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  602. "locale": "pt-BR"
  603. },
  604. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  605. "locale": "ru"
  606. },
  607. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  608. "locale": "tr"
  609. },
  610. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  611. "locale": "zh-Hans"
  612. },
  613. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  614. "locale": "zh-Hant"
  615. }
  616. }
  617. },
  618. "Microsoft.CodeAnalysis.Razor/6.0.5": {
  619. "type": "package",
  620. "dependencies": {
  621. "Microsoft.AspNetCore.Razor.Language": "6.0.5",
  622. "Microsoft.CodeAnalysis.CSharp": "4.0.0",
  623. "Microsoft.CodeAnalysis.Common": "4.0.0"
  624. },
  625. "compile": {
  626. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  627. },
  628. "runtime": {
  629. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  630. }
  631. },
  632. "Microsoft.CSharp/4.7.0": {
  633. "type": "package",
  634. "compile": {
  635. "ref/netcoreapp2.0/_._": {}
  636. },
  637. "runtime": {
  638. "lib/netcoreapp2.0/_._": {}
  639. }
  640. },
  641. "Microsoft.Data.SqlClient/2.1.4": {
  642. "type": "package",
  643. "dependencies": {
  644. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  645. "Microsoft.Identity.Client": "4.21.1",
  646. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  647. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  648. "Microsoft.Win32.Registry": "4.7.0",
  649. "System.Configuration.ConfigurationManager": "4.7.0",
  650. "System.Diagnostics.DiagnosticSource": "4.7.0",
  651. "System.Runtime.Caching": "4.7.0",
  652. "System.Security.Principal.Windows": "4.7.0",
  653. "System.Text.Encoding.CodePages": "4.7.0"
  654. },
  655. "compile": {
  656. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  657. "related": ".pdb;.xml"
  658. }
  659. },
  660. "runtime": {
  661. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  662. "related": ".pdb;.xml"
  663. }
  664. },
  665. "runtimeTargets": {
  666. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  667. "assetType": "runtime",
  668. "rid": "unix"
  669. },
  670. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  671. "assetType": "runtime",
  672. "rid": "win"
  673. }
  674. }
  675. },
  676. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  677. "type": "package",
  678. "runtimeTargets": {
  679. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  680. "assetType": "native",
  681. "rid": "win-arm"
  682. },
  683. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  684. "assetType": "native",
  685. "rid": "win-arm64"
  686. },
  687. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  688. "assetType": "native",
  689. "rid": "win-x64"
  690. },
  691. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  692. "assetType": "native",
  693. "rid": "win-x86"
  694. }
  695. }
  696. },
  697. "Microsoft.EntityFrameworkCore/6.0.5": {
  698. "type": "package",
  699. "dependencies": {
  700. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.5",
  701. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.5",
  702. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  703. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  704. "Microsoft.Extensions.Logging": "6.0.0",
  705. "System.Collections.Immutable": "6.0.0",
  706. "System.Diagnostics.DiagnosticSource": "6.0.0"
  707. },
  708. "compile": {
  709. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  710. "related": ".xml"
  711. }
  712. },
  713. "runtime": {
  714. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  715. "related": ".xml"
  716. }
  717. }
  718. },
  719. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  720. "type": "package",
  721. "compile": {
  722. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  723. "related": ".xml"
  724. }
  725. },
  726. "runtime": {
  727. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  728. "related": ".xml"
  729. }
  730. }
  731. },
  732. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  733. "type": "package",
  734. "compile": {
  735. "lib/netstandard2.0/_._": {}
  736. },
  737. "runtime": {
  738. "lib/netstandard2.0/_._": {}
  739. }
  740. },
  741. "Microsoft.EntityFrameworkCore.Design/6.0.5": {
  742. "type": "package",
  743. "dependencies": {
  744. "Humanizer.Core": "2.8.26",
  745. "Microsoft.EntityFrameworkCore.Relational": "6.0.5"
  746. },
  747. "compile": {
  748. "lib/net6.0/_._": {
  749. "related": ".xml"
  750. }
  751. },
  752. "runtime": {
  753. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
  754. "related": ".xml"
  755. }
  756. },
  757. "build": {
  758. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
  759. }
  760. },
  761. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  762. "type": "package",
  763. "dependencies": {
  764. "Microsoft.EntityFrameworkCore": "6.0.5",
  765. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  766. },
  767. "compile": {
  768. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  769. "related": ".xml"
  770. }
  771. },
  772. "runtime": {
  773. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  774. "related": ".xml"
  775. }
  776. }
  777. },
  778. "Microsoft.EntityFrameworkCore.SqlServer/6.0.5": {
  779. "type": "package",
  780. "dependencies": {
  781. "Microsoft.Data.SqlClient": "2.1.4",
  782. "Microsoft.EntityFrameworkCore.Relational": "6.0.5"
  783. },
  784. "compile": {
  785. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  786. "related": ".xml"
  787. }
  788. },
  789. "runtime": {
  790. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  791. "related": ".xml"
  792. }
  793. }
  794. },
  795. "Microsoft.EntityFrameworkCore.Tools/6.0.5": {
  796. "type": "package",
  797. "dependencies": {
  798. "Microsoft.EntityFrameworkCore.Design": "6.0.5"
  799. },
  800. "compile": {
  801. "lib/net6.0/_._": {}
  802. },
  803. "runtime": {
  804. "lib/net6.0/_._": {}
  805. }
  806. },
  807. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  808. "type": "package",
  809. "build": {
  810. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  811. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  812. },
  813. "buildMultiTargeting": {
  814. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  815. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  816. }
  817. },
  818. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  819. "type": "package",
  820. "dependencies": {
  821. "Microsoft.Extensions.Primitives": "6.0.0"
  822. },
  823. "compile": {
  824. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  825. "related": ".xml"
  826. }
  827. },
  828. "runtime": {
  829. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  830. "related": ".xml"
  831. }
  832. }
  833. },
  834. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  835. "type": "package",
  836. "dependencies": {
  837. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  838. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  839. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  840. "Microsoft.Extensions.Options": "6.0.0",
  841. "Microsoft.Extensions.Primitives": "6.0.0"
  842. },
  843. "compile": {
  844. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  845. "related": ".xml"
  846. }
  847. },
  848. "runtime": {
  849. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  850. "related": ".xml"
  851. }
  852. }
  853. },
  854. "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.3": {
  855. "type": "package",
  856. "dependencies": {
  857. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  858. "Microsoft.Extensions.Options": "6.0.0",
  859. "StackExchange.Redis": "2.2.4"
  860. },
  861. "compile": {
  862. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": {
  863. "related": ".xml"
  864. }
  865. },
  866. "runtime": {
  867. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": {
  868. "related": ".xml"
  869. }
  870. }
  871. },
  872. "Microsoft.Extensions.Configuration/6.0.0": {
  873. "type": "package",
  874. "dependencies": {
  875. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  876. "Microsoft.Extensions.Primitives": "6.0.0"
  877. },
  878. "compile": {
  879. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  880. "related": ".xml"
  881. }
  882. },
  883. "runtime": {
  884. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  885. "related": ".xml"
  886. }
  887. }
  888. },
  889. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  890. "type": "package",
  891. "dependencies": {
  892. "Microsoft.Extensions.Primitives": "6.0.0"
  893. },
  894. "compile": {
  895. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  896. "related": ".xml"
  897. }
  898. },
  899. "runtime": {
  900. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  901. "related": ".xml"
  902. }
  903. }
  904. },
  905. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  906. "type": "package",
  907. "dependencies": {
  908. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  909. },
  910. "compile": {
  911. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  912. "related": ".xml"
  913. }
  914. },
  915. "runtime": {
  916. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  917. "related": ".xml"
  918. }
  919. }
  920. },
  921. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  922. "type": "package",
  923. "dependencies": {
  924. "Microsoft.Extensions.Configuration": "6.0.0",
  925. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  926. },
  927. "compile": {
  928. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  929. "related": ".xml"
  930. }
  931. },
  932. "runtime": {
  933. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  934. "related": ".xml"
  935. }
  936. }
  937. },
  938. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  939. "type": "package",
  940. "dependencies": {
  941. "Microsoft.Extensions.Configuration": "6.0.0",
  942. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  943. },
  944. "compile": {
  945. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  946. "related": ".xml"
  947. }
  948. },
  949. "runtime": {
  950. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  951. "related": ".xml"
  952. }
  953. }
  954. },
  955. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  956. "type": "package",
  957. "dependencies": {
  958. "Microsoft.Extensions.Configuration": "6.0.0",
  959. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  960. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  961. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  962. "Microsoft.Extensions.Primitives": "6.0.0"
  963. },
  964. "compile": {
  965. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  966. "related": ".xml"
  967. }
  968. },
  969. "runtime": {
  970. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  971. "related": ".xml"
  972. }
  973. }
  974. },
  975. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  976. "type": "package",
  977. "dependencies": {
  978. "Microsoft.Extensions.Configuration": "6.0.0",
  979. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  980. "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0",
  981. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  982. "System.Text.Json": "6.0.0"
  983. },
  984. "compile": {
  985. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  986. "related": ".xml"
  987. }
  988. },
  989. "runtime": {
  990. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  991. "related": ".xml"
  992. }
  993. }
  994. },
  995. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  996. "type": "package",
  997. "dependencies": {
  998. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  999. "Microsoft.Extensions.Configuration.Json": "6.0.0",
  1000. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  1001. "Microsoft.Extensions.FileProviders.Physical": "6.0.0"
  1002. },
  1003. "compile": {
  1004. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  1005. "related": ".xml"
  1006. }
  1007. },
  1008. "runtime": {
  1009. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  1010. "related": ".xml"
  1011. }
  1012. },
  1013. "build": {
  1014. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  1015. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  1016. }
  1017. },
  1018. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  1019. "type": "package",
  1020. "dependencies": {
  1021. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1022. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1023. },
  1024. "compile": {
  1025. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  1026. "related": ".xml"
  1027. }
  1028. },
  1029. "runtime": {
  1030. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  1031. "related": ".xml"
  1032. }
  1033. },
  1034. "build": {
  1035. "buildTransitive/netcoreapp3.1/_._": {}
  1036. }
  1037. },
  1038. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  1039. "type": "package",
  1040. "compile": {
  1041. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1042. "related": ".xml"
  1043. }
  1044. },
  1045. "runtime": {
  1046. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1047. "related": ".xml"
  1048. }
  1049. },
  1050. "build": {
  1051. "buildTransitive/netcoreapp3.1/_._": {}
  1052. }
  1053. },
  1054. "Microsoft.Extensions.DependencyModel/6.0.0": {
  1055. "type": "package",
  1056. "dependencies": {
  1057. "System.Buffers": "4.5.1",
  1058. "System.Memory": "4.5.4",
  1059. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  1060. "System.Text.Encodings.Web": "6.0.0",
  1061. "System.Text.Json": "6.0.0"
  1062. },
  1063. "compile": {
  1064. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  1065. "related": ".xml"
  1066. }
  1067. },
  1068. "runtime": {
  1069. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  1070. "related": ".xml"
  1071. }
  1072. }
  1073. },
  1074. "Microsoft.Extensions.Diagnostics.HealthChecks/6.0.0": {
  1075. "type": "package",
  1076. "dependencies": {
  1077. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "6.0.0",
  1078. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  1079. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1080. "Microsoft.Extensions.Options": "6.0.0"
  1081. },
  1082. "compile": {
  1083. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": {
  1084. "related": ".xml"
  1085. }
  1086. },
  1087. "runtime": {
  1088. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": {
  1089. "related": ".xml"
  1090. }
  1091. }
  1092. },
  1093. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/6.0.0": {
  1094. "type": "package",
  1095. "compile": {
  1096. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {
  1097. "related": ".xml"
  1098. }
  1099. },
  1100. "runtime": {
  1101. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {
  1102. "related": ".xml"
  1103. }
  1104. }
  1105. },
  1106. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  1107. "type": "package",
  1108. "dependencies": {
  1109. "Microsoft.Extensions.Primitives": "6.0.0"
  1110. },
  1111. "compile": {
  1112. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1113. "related": ".xml"
  1114. }
  1115. },
  1116. "runtime": {
  1117. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1118. "related": ".xml"
  1119. }
  1120. },
  1121. "build": {
  1122. "buildTransitive/netcoreapp3.1/_._": {}
  1123. }
  1124. },
  1125. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  1126. "type": "package",
  1127. "dependencies": {
  1128. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  1129. "Microsoft.Extensions.Primitives": "6.0.0"
  1130. },
  1131. "compile": {
  1132. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1133. "related": ".xml"
  1134. }
  1135. },
  1136. "runtime": {
  1137. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1138. "related": ".xml"
  1139. }
  1140. }
  1141. },
  1142. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  1143. "type": "package",
  1144. "dependencies": {
  1145. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  1146. },
  1147. "compile": {
  1148. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1149. "related": ".xml"
  1150. }
  1151. },
  1152. "runtime": {
  1153. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1154. "related": ".xml"
  1155. }
  1156. },
  1157. "build": {
  1158. "build/netstandard2.0/_._": {}
  1159. },
  1160. "buildMultiTargeting": {
  1161. "buildMultiTargeting/_._": {}
  1162. }
  1163. },
  1164. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  1165. "type": "package",
  1166. "dependencies": {
  1167. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  1168. "Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
  1169. "Microsoft.Extensions.Primitives": "6.0.0"
  1170. },
  1171. "compile": {
  1172. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1173. "related": ".xml"
  1174. }
  1175. },
  1176. "runtime": {
  1177. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1178. "related": ".xml"
  1179. }
  1180. },
  1181. "build": {
  1182. "buildTransitive/netcoreapp3.1/_._": {}
  1183. }
  1184. },
  1185. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  1186. "type": "package",
  1187. "compile": {
  1188. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1189. "related": ".xml"
  1190. }
  1191. },
  1192. "runtime": {
  1193. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1194. "related": ".xml"
  1195. }
  1196. },
  1197. "build": {
  1198. "buildTransitive/netcoreapp3.1/_._": {}
  1199. }
  1200. },
  1201. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  1202. "type": "package",
  1203. "dependencies": {
  1204. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1205. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1206. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  1207. },
  1208. "compile": {
  1209. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1210. "related": ".xml"
  1211. }
  1212. },
  1213. "runtime": {
  1214. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1215. "related": ".xml"
  1216. }
  1217. }
  1218. },
  1219. "Microsoft.Extensions.Localization/6.0.5": {
  1220. "type": "package",
  1221. "dependencies": {
  1222. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1223. "Microsoft.Extensions.Localization.Abstractions": "6.0.5",
  1224. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  1225. "Microsoft.Extensions.Options": "6.0.0"
  1226. },
  1227. "compile": {
  1228. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  1229. "related": ".xml"
  1230. }
  1231. },
  1232. "runtime": {
  1233. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  1234. "related": ".xml"
  1235. }
  1236. }
  1237. },
  1238. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  1239. "type": "package",
  1240. "compile": {
  1241. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1242. "related": ".xml"
  1243. }
  1244. },
  1245. "runtime": {
  1246. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1247. "related": ".xml"
  1248. }
  1249. }
  1250. },
  1251. "Microsoft.Extensions.Logging/6.0.0": {
  1252. "type": "package",
  1253. "dependencies": {
  1254. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1255. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1256. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1257. "Microsoft.Extensions.Options": "6.0.0",
  1258. "System.Diagnostics.DiagnosticSource": "6.0.0"
  1259. },
  1260. "compile": {
  1261. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1262. "related": ".xml"
  1263. }
  1264. },
  1265. "runtime": {
  1266. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1267. "related": ".xml"
  1268. }
  1269. }
  1270. },
  1271. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  1272. "type": "package",
  1273. "compile": {
  1274. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1275. "related": ".xml"
  1276. }
  1277. },
  1278. "runtime": {
  1279. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1280. "related": ".xml"
  1281. }
  1282. },
  1283. "build": {
  1284. "buildTransitive/netcoreapp3.1/_._": {}
  1285. }
  1286. },
  1287. "Microsoft.Extensions.Options/6.0.0": {
  1288. "type": "package",
  1289. "dependencies": {
  1290. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1291. "Microsoft.Extensions.Primitives": "6.0.0"
  1292. },
  1293. "compile": {
  1294. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1295. "related": ".xml"
  1296. }
  1297. },
  1298. "runtime": {
  1299. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1300. "related": ".xml"
  1301. }
  1302. }
  1303. },
  1304. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  1305. "type": "package",
  1306. "dependencies": {
  1307. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1308. "Microsoft.Extensions.Configuration.Binder": "6.0.0",
  1309. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1310. "Microsoft.Extensions.Options": "6.0.0",
  1311. "Microsoft.Extensions.Primitives": "6.0.0"
  1312. },
  1313. "compile": {
  1314. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1315. "related": ".xml"
  1316. }
  1317. },
  1318. "runtime": {
  1319. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1320. "related": ".xml"
  1321. }
  1322. }
  1323. },
  1324. "Microsoft.Extensions.Primitives/6.0.0": {
  1325. "type": "package",
  1326. "dependencies": {
  1327. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1328. },
  1329. "compile": {
  1330. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  1331. "related": ".xml"
  1332. }
  1333. },
  1334. "runtime": {
  1335. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  1336. "related": ".xml"
  1337. }
  1338. },
  1339. "build": {
  1340. "buildTransitive/netcoreapp3.1/_._": {}
  1341. }
  1342. },
  1343. "Microsoft.Identity.Client/4.21.1": {
  1344. "type": "package",
  1345. "compile": {
  1346. "ref/netcoreapp2.1/_._": {
  1347. "related": ".xml"
  1348. }
  1349. },
  1350. "runtime": {
  1351. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  1352. "related": ".xml"
  1353. }
  1354. }
  1355. },
  1356. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  1357. "type": "package",
  1358. "dependencies": {
  1359. "Microsoft.IdentityModel.Tokens": "6.8.0"
  1360. },
  1361. "compile": {
  1362. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1363. "related": ".xml"
  1364. }
  1365. },
  1366. "runtime": {
  1367. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1368. "related": ".xml"
  1369. }
  1370. }
  1371. },
  1372. "Microsoft.IdentityModel.Logging/6.8.0": {
  1373. "type": "package",
  1374. "compile": {
  1375. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1376. "related": ".xml"
  1377. }
  1378. },
  1379. "runtime": {
  1380. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1381. "related": ".xml"
  1382. }
  1383. }
  1384. },
  1385. "Microsoft.IdentityModel.Protocols/6.8.0": {
  1386. "type": "package",
  1387. "dependencies": {
  1388. "Microsoft.IdentityModel.Logging": "6.8.0",
  1389. "Microsoft.IdentityModel.Tokens": "6.8.0"
  1390. },
  1391. "compile": {
  1392. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1393. "related": ".xml"
  1394. }
  1395. },
  1396. "runtime": {
  1397. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1398. "related": ".xml"
  1399. }
  1400. }
  1401. },
  1402. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  1403. "type": "package",
  1404. "dependencies": {
  1405. "Microsoft.IdentityModel.Protocols": "6.8.0",
  1406. "System.IdentityModel.Tokens.Jwt": "6.8.0"
  1407. },
  1408. "compile": {
  1409. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1410. "related": ".xml"
  1411. }
  1412. },
  1413. "runtime": {
  1414. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1415. "related": ".xml"
  1416. }
  1417. }
  1418. },
  1419. "Microsoft.IdentityModel.Tokens/6.8.0": {
  1420. "type": "package",
  1421. "dependencies": {
  1422. "Microsoft.CSharp": "4.5.0",
  1423. "Microsoft.IdentityModel.Logging": "6.8.0",
  1424. "System.Security.Cryptography.Cng": "4.5.0"
  1425. },
  1426. "compile": {
  1427. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1428. "related": ".xml"
  1429. }
  1430. },
  1431. "runtime": {
  1432. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1433. "related": ".xml"
  1434. }
  1435. }
  1436. },
  1437. "Microsoft.NETCore.Platforms/5.0.0": {
  1438. "type": "package",
  1439. "compile": {
  1440. "lib/netstandard1.0/_._": {}
  1441. },
  1442. "runtime": {
  1443. "lib/netstandard1.0/_._": {}
  1444. }
  1445. },
  1446. "Microsoft.NETCore.Targets/1.1.0": {
  1447. "type": "package",
  1448. "compile": {
  1449. "lib/netstandard1.0/_._": {}
  1450. },
  1451. "runtime": {
  1452. "lib/netstandard1.0/_._": {}
  1453. }
  1454. },
  1455. "Microsoft.OpenApi/1.2.3": {
  1456. "type": "package",
  1457. "compile": {
  1458. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1459. "related": ".pdb;.xml"
  1460. }
  1461. },
  1462. "runtime": {
  1463. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1464. "related": ".pdb;.xml"
  1465. }
  1466. }
  1467. },
  1468. "Microsoft.Win32.Registry/5.0.0": {
  1469. "type": "package",
  1470. "dependencies": {
  1471. "System.Security.AccessControl": "5.0.0",
  1472. "System.Security.Principal.Windows": "5.0.0"
  1473. },
  1474. "compile": {
  1475. "ref/netstandard2.0/_._": {
  1476. "related": ".xml"
  1477. }
  1478. },
  1479. "runtime": {
  1480. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1481. "related": ".xml"
  1482. }
  1483. },
  1484. "runtimeTargets": {
  1485. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1486. "assetType": "runtime",
  1487. "rid": "win"
  1488. }
  1489. }
  1490. },
  1491. "Microsoft.Win32.SystemEvents/6.0.0": {
  1492. "type": "package",
  1493. "compile": {
  1494. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1495. "related": ".xml"
  1496. }
  1497. },
  1498. "runtime": {
  1499. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1500. "related": ".xml"
  1501. }
  1502. },
  1503. "build": {
  1504. "buildTransitive/netcoreapp3.1/_._": {}
  1505. },
  1506. "runtimeTargets": {
  1507. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1508. "assetType": "runtime",
  1509. "rid": "win"
  1510. }
  1511. }
  1512. },
  1513. "MySql.Data/8.0.32.1": {
  1514. "type": "package",
  1515. "dependencies": {
  1516. "Google.Protobuf": "3.21.9",
  1517. "K4os.Compression.LZ4.Streams": "1.2.6",
  1518. "Portable.BouncyCastle": "1.9.0",
  1519. "System.Buffers": "4.5.1",
  1520. "System.Configuration.ConfigurationManager": "4.4.1",
  1521. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1522. "System.Runtime.Loader": "4.3.0",
  1523. "System.Security.Permissions": "4.7.0",
  1524. "System.Text.Encoding.CodePages": "4.4.0"
  1525. },
  1526. "compile": {
  1527. "lib/net6.0/MySql.Data.dll": {
  1528. "related": ".xml"
  1529. }
  1530. },
  1531. "runtime": {
  1532. "lib/net6.0/MySql.Data.dll": {
  1533. "related": ".xml"
  1534. }
  1535. },
  1536. "runtimeTargets": {
  1537. "runtimes/win-x64/native/comerr64.dll": {
  1538. "assetType": "native",
  1539. "rid": "win-x64"
  1540. },
  1541. "runtimes/win-x64/native/gssapi64.dll": {
  1542. "assetType": "native",
  1543. "rid": "win-x64"
  1544. },
  1545. "runtimes/win-x64/native/k5sprt64.dll": {
  1546. "assetType": "native",
  1547. "rid": "win-x64"
  1548. },
  1549. "runtimes/win-x64/native/krb5_64.dll": {
  1550. "assetType": "native",
  1551. "rid": "win-x64"
  1552. },
  1553. "runtimes/win-x64/native/krbcc64.dll": {
  1554. "assetType": "native",
  1555. "rid": "win-x64"
  1556. }
  1557. }
  1558. },
  1559. "MySqlConnector/2.0.0": {
  1560. "type": "package",
  1561. "compile": {
  1562. "lib/net6.0/MySqlConnector.dll": {
  1563. "related": ".xml"
  1564. }
  1565. },
  1566. "runtime": {
  1567. "lib/net6.0/MySqlConnector.dll": {
  1568. "related": ".xml"
  1569. }
  1570. }
  1571. },
  1572. "Newtonsoft.Json/13.0.1": {
  1573. "type": "package",
  1574. "compile": {
  1575. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1576. "related": ".xml"
  1577. }
  1578. },
  1579. "runtime": {
  1580. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1581. "related": ".xml"
  1582. }
  1583. }
  1584. },
  1585. "Newtonsoft.Json.Bson/1.0.2": {
  1586. "type": "package",
  1587. "dependencies": {
  1588. "Newtonsoft.Json": "12.0.1"
  1589. },
  1590. "compile": {
  1591. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1592. "related": ".pdb;.xml"
  1593. }
  1594. },
  1595. "runtime": {
  1596. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1597. "related": ".pdb;.xml"
  1598. }
  1599. }
  1600. },
  1601. "Nito.AsyncEx.Context/5.1.2": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "Nito.AsyncEx.Tasks": "5.1.2"
  1605. },
  1606. "compile": {
  1607. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  1608. "related": ".xml"
  1609. }
  1610. },
  1611. "runtime": {
  1612. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  1613. "related": ".xml"
  1614. }
  1615. }
  1616. },
  1617. "Nito.AsyncEx.Coordination/5.1.2": {
  1618. "type": "package",
  1619. "dependencies": {
  1620. "Nito.AsyncEx.Tasks": "5.1.2",
  1621. "Nito.Collections.Deque": "1.1.1"
  1622. },
  1623. "compile": {
  1624. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1625. "related": ".xml"
  1626. }
  1627. },
  1628. "runtime": {
  1629. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1630. "related": ".xml"
  1631. }
  1632. }
  1633. },
  1634. "Nito.AsyncEx.Tasks/5.1.2": {
  1635. "type": "package",
  1636. "dependencies": {
  1637. "Nito.Disposables": "2.2.1"
  1638. },
  1639. "compile": {
  1640. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1641. "related": ".xml"
  1642. }
  1643. },
  1644. "runtime": {
  1645. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1646. "related": ".xml"
  1647. }
  1648. }
  1649. },
  1650. "Nito.Collections.Deque/1.1.1": {
  1651. "type": "package",
  1652. "compile": {
  1653. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1654. "related": ".xml"
  1655. }
  1656. },
  1657. "runtime": {
  1658. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1659. "related": ".xml"
  1660. }
  1661. }
  1662. },
  1663. "Nito.Disposables/2.2.1": {
  1664. "type": "package",
  1665. "dependencies": {
  1666. "System.Collections.Immutable": "1.7.1"
  1667. },
  1668. "compile": {
  1669. "lib/netstandard2.1/Nito.Disposables.dll": {
  1670. "related": ".xml"
  1671. }
  1672. },
  1673. "runtime": {
  1674. "lib/netstandard2.1/Nito.Disposables.dll": {
  1675. "related": ".xml"
  1676. }
  1677. }
  1678. },
  1679. "NLog/5.1.2": {
  1680. "type": "package",
  1681. "compile": {
  1682. "lib/netstandard2.0/NLog.dll": {
  1683. "related": ".xml"
  1684. }
  1685. },
  1686. "runtime": {
  1687. "lib/netstandard2.0/NLog.dll": {
  1688. "related": ".xml"
  1689. }
  1690. }
  1691. },
  1692. "NLog.Database/5.1.2": {
  1693. "type": "package",
  1694. "dependencies": {
  1695. "NLog": "5.1.2"
  1696. },
  1697. "compile": {
  1698. "lib/netstandard2.0/NLog.Database.dll": {
  1699. "related": ".xml"
  1700. }
  1701. },
  1702. "runtime": {
  1703. "lib/netstandard2.0/NLog.Database.dll": {
  1704. "related": ".xml"
  1705. }
  1706. }
  1707. },
  1708. "NLog.Extensions.Logging/5.2.2": {
  1709. "type": "package",
  1710. "dependencies": {
  1711. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1712. "Microsoft.Extensions.Logging": "6.0.0",
  1713. "NLog": "5.1.2"
  1714. },
  1715. "compile": {
  1716. "lib/net6.0/NLog.Extensions.Logging.dll": {
  1717. "related": ".xml"
  1718. }
  1719. },
  1720. "runtime": {
  1721. "lib/net6.0/NLog.Extensions.Logging.dll": {
  1722. "related": ".xml"
  1723. }
  1724. }
  1725. },
  1726. "NLog.Web.AspNetCore/5.2.2": {
  1727. "type": "package",
  1728. "dependencies": {
  1729. "NLog.Extensions.Logging": "5.2.2"
  1730. },
  1731. "compile": {
  1732. "lib/net6.0/NLog.Web.AspNetCore.dll": {
  1733. "related": ".xml"
  1734. }
  1735. },
  1736. "runtime": {
  1737. "lib/net6.0/NLog.Web.AspNetCore.dll": {
  1738. "related": ".xml"
  1739. }
  1740. },
  1741. "frameworkReferences": [
  1742. "Microsoft.AspNetCore.App"
  1743. ]
  1744. },
  1745. "NUglify/1.20.0": {
  1746. "type": "package",
  1747. "compile": {
  1748. "lib/net5.0/NUglify.dll": {
  1749. "related": ".xml"
  1750. }
  1751. },
  1752. "runtime": {
  1753. "lib/net5.0/NUglify.dll": {
  1754. "related": ".xml"
  1755. }
  1756. }
  1757. },
  1758. "Pipelines.Sockets.Unofficial/2.2.0": {
  1759. "type": "package",
  1760. "dependencies": {
  1761. "System.IO.Pipelines": "5.0.0"
  1762. },
  1763. "compile": {
  1764. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  1765. "related": ".xml"
  1766. }
  1767. },
  1768. "runtime": {
  1769. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  1770. "related": ".xml"
  1771. }
  1772. }
  1773. },
  1774. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  1775. "type": "package",
  1776. "dependencies": {
  1777. "Microsoft.EntityFrameworkCore.Relational": "[6.0.0, 7.0.0)",
  1778. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1779. "MySqlConnector": "2.0.0"
  1780. },
  1781. "compile": {
  1782. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  1783. "related": ".xml"
  1784. }
  1785. },
  1786. "runtime": {
  1787. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  1788. "related": ".xml"
  1789. }
  1790. }
  1791. },
  1792. "Portable.BouncyCastle/1.9.0": {
  1793. "type": "package",
  1794. "compile": {
  1795. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1796. "related": ".xml"
  1797. }
  1798. },
  1799. "runtime": {
  1800. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1801. "related": ".xml"
  1802. }
  1803. }
  1804. },
  1805. "Quartz/3.6.2": {
  1806. "type": "package",
  1807. "dependencies": {
  1808. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1809. "System.Configuration.ConfigurationManager": "6.0.1",
  1810. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1811. },
  1812. "compile": {
  1813. "lib/netstandard2.0/Quartz.dll": {
  1814. "related": ".xml"
  1815. }
  1816. },
  1817. "runtime": {
  1818. "lib/netstandard2.0/Quartz.dll": {
  1819. "related": ".xml"
  1820. }
  1821. }
  1822. },
  1823. "Quartz.AspNetCore/3.6.2": {
  1824. "type": "package",
  1825. "dependencies": {
  1826. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1827. "Microsoft.Extensions.Diagnostics.HealthChecks": "6.0.0",
  1828. "Quartz.Extensions.Hosting": "3.6.2"
  1829. },
  1830. "compile": {
  1831. "lib/net6.0/Quartz.AspNetCore.dll": {
  1832. "related": ".xml"
  1833. }
  1834. },
  1835. "runtime": {
  1836. "lib/net6.0/Quartz.AspNetCore.dll": {
  1837. "related": ".xml"
  1838. }
  1839. }
  1840. },
  1841. "Quartz.Extensions.DependencyInjection/3.6.2": {
  1842. "type": "package",
  1843. "dependencies": {
  1844. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1845. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1846. "Microsoft.Extensions.Options": "6.0.0",
  1847. "Quartz": "3.6.2"
  1848. },
  1849. "compile": {
  1850. "lib/net6.0/Quartz.Extensions.DependencyInjection.dll": {
  1851. "related": ".xml"
  1852. }
  1853. },
  1854. "runtime": {
  1855. "lib/net6.0/Quartz.Extensions.DependencyInjection.dll": {
  1856. "related": ".xml"
  1857. }
  1858. }
  1859. },
  1860. "Quartz.Extensions.Hosting/3.6.2": {
  1861. "type": "package",
  1862. "dependencies": {
  1863. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  1864. "Quartz.Extensions.DependencyInjection": "3.6.2"
  1865. },
  1866. "compile": {
  1867. "lib/net6.0/Quartz.Extensions.Hosting.dll": {
  1868. "related": ".xml"
  1869. }
  1870. },
  1871. "runtime": {
  1872. "lib/net6.0/Quartz.Extensions.Hosting.dll": {
  1873. "related": ".xml"
  1874. }
  1875. }
  1876. },
  1877. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  1878. "type": "package",
  1879. "dependencies": {
  1880. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1881. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  1882. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  1883. }
  1884. },
  1885. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1886. "type": "package",
  1887. "runtimeTargets": {
  1888. "runtimes/win-arm64/native/sni.dll": {
  1889. "assetType": "native",
  1890. "rid": "win-arm64"
  1891. }
  1892. }
  1893. },
  1894. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1895. "type": "package",
  1896. "runtimeTargets": {
  1897. "runtimes/win-x64/native/sni.dll": {
  1898. "assetType": "native",
  1899. "rid": "win-x64"
  1900. }
  1901. }
  1902. },
  1903. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1904. "type": "package",
  1905. "runtimeTargets": {
  1906. "runtimes/win-x86/native/sni.dll": {
  1907. "assetType": "native",
  1908. "rid": "win-x86"
  1909. }
  1910. }
  1911. },
  1912. "Serilog/2.11.0": {
  1913. "type": "package",
  1914. "compile": {
  1915. "lib/net5.0/Serilog.dll": {
  1916. "related": ".xml"
  1917. }
  1918. },
  1919. "runtime": {
  1920. "lib/net5.0/Serilog.dll": {
  1921. "related": ".xml"
  1922. }
  1923. }
  1924. },
  1925. "Serilog.AspNetCore/5.0.0": {
  1926. "type": "package",
  1927. "dependencies": {
  1928. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1929. "Microsoft.Extensions.Logging": "5.0.0",
  1930. "Serilog": "2.10.0",
  1931. "Serilog.Extensions.Hosting": "4.2.0",
  1932. "Serilog.Formatting.Compact": "1.1.0",
  1933. "Serilog.Settings.Configuration": "3.3.0",
  1934. "Serilog.Sinks.Console": "4.0.1",
  1935. "Serilog.Sinks.Debug": "2.0.0",
  1936. "Serilog.Sinks.File": "5.0.0"
  1937. },
  1938. "compile": {
  1939. "lib/net5.0/Serilog.AspNetCore.dll": {
  1940. "related": ".xml"
  1941. }
  1942. },
  1943. "runtime": {
  1944. "lib/net5.0/Serilog.AspNetCore.dll": {
  1945. "related": ".xml"
  1946. }
  1947. },
  1948. "frameworkReferences": [
  1949. "Microsoft.AspNetCore.App"
  1950. ]
  1951. },
  1952. "Serilog.Extensions.Hosting/4.2.0": {
  1953. "type": "package",
  1954. "dependencies": {
  1955. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
  1956. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
  1957. "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
  1958. "Serilog": "2.10.0",
  1959. "Serilog.Extensions.Logging": "3.1.0"
  1960. },
  1961. "compile": {
  1962. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  1963. "related": ".xml"
  1964. }
  1965. },
  1966. "runtime": {
  1967. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  1968. "related": ".xml"
  1969. }
  1970. }
  1971. },
  1972. "Serilog.Extensions.Logging/3.1.0": {
  1973. "type": "package",
  1974. "dependencies": {
  1975. "Microsoft.Extensions.Logging": "2.0.0",
  1976. "Serilog": "2.9.0"
  1977. },
  1978. "compile": {
  1979. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1980. "related": ".xml"
  1981. }
  1982. },
  1983. "runtime": {
  1984. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1985. "related": ".xml"
  1986. }
  1987. }
  1988. },
  1989. "Serilog.Formatting.Compact/1.1.0": {
  1990. "type": "package",
  1991. "dependencies": {
  1992. "Serilog": "2.8.0"
  1993. },
  1994. "compile": {
  1995. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1996. "related": ".xml"
  1997. }
  1998. },
  1999. "runtime": {
  2000. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  2001. "related": ".xml"
  2002. }
  2003. }
  2004. },
  2005. "Serilog.Settings.Configuration/3.3.0": {
  2006. "type": "package",
  2007. "dependencies": {
  2008. "Microsoft.Extensions.DependencyModel": "3.0.0",
  2009. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0",
  2010. "Serilog": "2.10.0"
  2011. },
  2012. "compile": {
  2013. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  2014. "related": ".xml"
  2015. }
  2016. },
  2017. "runtime": {
  2018. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  2019. "related": ".xml"
  2020. }
  2021. }
  2022. },
  2023. "Serilog.Sinks.Async/1.5.0": {
  2024. "type": "package",
  2025. "dependencies": {
  2026. "Serilog": "2.9.0"
  2027. },
  2028. "compile": {
  2029. "lib/netstandard2.0/Serilog.Sinks.Async.dll": {
  2030. "related": ".xml"
  2031. }
  2032. },
  2033. "runtime": {
  2034. "lib/netstandard2.0/Serilog.Sinks.Async.dll": {
  2035. "related": ".xml"
  2036. }
  2037. }
  2038. },
  2039. "Serilog.Sinks.Console/4.0.1": {
  2040. "type": "package",
  2041. "dependencies": {
  2042. "Serilog": "2.10.0"
  2043. },
  2044. "compile": {
  2045. "lib/net5.0/Serilog.Sinks.Console.dll": {
  2046. "related": ".xml"
  2047. }
  2048. },
  2049. "runtime": {
  2050. "lib/net5.0/Serilog.Sinks.Console.dll": {
  2051. "related": ".xml"
  2052. }
  2053. }
  2054. },
  2055. "Serilog.Sinks.Debug/2.0.0": {
  2056. "type": "package",
  2057. "dependencies": {
  2058. "Serilog": "2.10.0"
  2059. },
  2060. "compile": {
  2061. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  2062. "related": ".xml"
  2063. }
  2064. },
  2065. "runtime": {
  2066. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  2067. "related": ".xml"
  2068. }
  2069. }
  2070. },
  2071. "Serilog.Sinks.File/5.0.0": {
  2072. "type": "package",
  2073. "dependencies": {
  2074. "Serilog": "2.10.0"
  2075. },
  2076. "compile": {
  2077. "lib/net5.0/Serilog.Sinks.File.dll": {
  2078. "related": ".pdb;.xml"
  2079. }
  2080. },
  2081. "runtime": {
  2082. "lib/net5.0/Serilog.Sinks.File.dll": {
  2083. "related": ".pdb;.xml"
  2084. }
  2085. }
  2086. },
  2087. "StackExchange.Redis/2.2.4": {
  2088. "type": "package",
  2089. "dependencies": {
  2090. "Pipelines.Sockets.Unofficial": "2.2.0",
  2091. "System.Diagnostics.PerformanceCounter": "5.0.0"
  2092. },
  2093. "compile": {
  2094. "lib/net5.0/StackExchange.Redis.dll": {
  2095. "related": ".xml"
  2096. }
  2097. },
  2098. "runtime": {
  2099. "lib/net5.0/StackExchange.Redis.dll": {
  2100. "related": ".xml"
  2101. }
  2102. }
  2103. },
  2104. "Swashbuckle.AspNetCore/6.3.0": {
  2105. "type": "package",
  2106. "dependencies": {
  2107. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  2108. "Swashbuckle.AspNetCore.Swagger": "6.3.0",
  2109. "Swashbuckle.AspNetCore.SwaggerGen": "6.3.0",
  2110. "Swashbuckle.AspNetCore.SwaggerUI": "6.3.0"
  2111. },
  2112. "build": {
  2113. "build/Swashbuckle.AspNetCore.props": {}
  2114. }
  2115. },
  2116. "Swashbuckle.AspNetCore.Swagger/6.3.0": {
  2117. "type": "package",
  2118. "dependencies": {
  2119. "Microsoft.OpenApi": "1.2.3"
  2120. },
  2121. "compile": {
  2122. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  2123. "related": ".pdb;.xml"
  2124. }
  2125. },
  2126. "runtime": {
  2127. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  2128. "related": ".pdb;.xml"
  2129. }
  2130. },
  2131. "frameworkReferences": [
  2132. "Microsoft.AspNetCore.App"
  2133. ]
  2134. },
  2135. "Swashbuckle.AspNetCore.SwaggerGen/6.3.0": {
  2136. "type": "package",
  2137. "dependencies": {
  2138. "Swashbuckle.AspNetCore.Swagger": "6.3.0"
  2139. },
  2140. "compile": {
  2141. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  2142. "related": ".pdb;.xml"
  2143. }
  2144. },
  2145. "runtime": {
  2146. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  2147. "related": ".pdb;.xml"
  2148. }
  2149. }
  2150. },
  2151. "Swashbuckle.AspNetCore.SwaggerUI/6.3.0": {
  2152. "type": "package",
  2153. "compile": {
  2154. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  2155. "related": ".pdb;.xml"
  2156. }
  2157. },
  2158. "runtime": {
  2159. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  2160. "related": ".pdb;.xml"
  2161. }
  2162. },
  2163. "frameworkReferences": [
  2164. "Microsoft.AspNetCore.App"
  2165. ]
  2166. },
  2167. "System.Buffers/4.5.1": {
  2168. "type": "package",
  2169. "compile": {
  2170. "ref/netcoreapp2.0/_._": {}
  2171. },
  2172. "runtime": {
  2173. "lib/netcoreapp2.0/_._": {}
  2174. }
  2175. },
  2176. "System.Collections/4.3.0": {
  2177. "type": "package",
  2178. "dependencies": {
  2179. "Microsoft.NETCore.Platforms": "1.1.0",
  2180. "Microsoft.NETCore.Targets": "1.1.0",
  2181. "System.Runtime": "4.3.0"
  2182. },
  2183. "compile": {
  2184. "ref/netstandard1.3/System.Collections.dll": {
  2185. "related": ".xml"
  2186. }
  2187. }
  2188. },
  2189. "System.Collections.Immutable/6.0.0": {
  2190. "type": "package",
  2191. "dependencies": {
  2192. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2193. },
  2194. "compile": {
  2195. "lib/net6.0/System.Collections.Immutable.dll": {
  2196. "related": ".xml"
  2197. }
  2198. },
  2199. "runtime": {
  2200. "lib/net6.0/System.Collections.Immutable.dll": {
  2201. "related": ".xml"
  2202. }
  2203. },
  2204. "build": {
  2205. "buildTransitive/netcoreapp3.1/_._": {}
  2206. }
  2207. },
  2208. "System.Configuration.ConfigurationManager/6.0.1": {
  2209. "type": "package",
  2210. "dependencies": {
  2211. "System.Security.Cryptography.ProtectedData": "6.0.0",
  2212. "System.Security.Permissions": "6.0.0"
  2213. },
  2214. "compile": {
  2215. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  2216. "related": ".xml"
  2217. }
  2218. },
  2219. "runtime": {
  2220. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  2221. "related": ".xml"
  2222. }
  2223. },
  2224. "build": {
  2225. "buildTransitive/netcoreapp3.1/_._": {}
  2226. }
  2227. },
  2228. "System.Data.SqlClient/4.8.5": {
  2229. "type": "package",
  2230. "dependencies": {
  2231. "Microsoft.Win32.Registry": "4.7.0",
  2232. "System.Security.Principal.Windows": "4.7.0",
  2233. "runtime.native.System.Data.SqlClient.sni": "4.7.0"
  2234. },
  2235. "compile": {
  2236. "ref/netcoreapp2.1/System.Data.SqlClient.dll": {
  2237. "related": ".xml"
  2238. }
  2239. },
  2240. "runtime": {
  2241. "lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  2242. "related": ".xml"
  2243. }
  2244. },
  2245. "runtimeTargets": {
  2246. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  2247. "assetType": "runtime",
  2248. "rid": "unix"
  2249. },
  2250. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
  2251. "assetType": "runtime",
  2252. "rid": "win"
  2253. }
  2254. }
  2255. },
  2256. "System.Diagnostics.Debug/4.3.0": {
  2257. "type": "package",
  2258. "dependencies": {
  2259. "Microsoft.NETCore.Platforms": "1.1.0",
  2260. "Microsoft.NETCore.Targets": "1.1.0",
  2261. "System.Runtime": "4.3.0"
  2262. },
  2263. "compile": {
  2264. "ref/netstandard1.3/_._": {
  2265. "related": ".xml"
  2266. }
  2267. }
  2268. },
  2269. "System.Diagnostics.DiagnosticSource/6.0.0": {
  2270. "type": "package",
  2271. "dependencies": {
  2272. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2273. },
  2274. "compile": {
  2275. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2276. "related": ".xml"
  2277. }
  2278. },
  2279. "runtime": {
  2280. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2281. "related": ".xml"
  2282. }
  2283. },
  2284. "build": {
  2285. "buildTransitive/netcoreapp3.1/_._": {}
  2286. }
  2287. },
  2288. "System.Diagnostics.EventLog/6.0.0": {
  2289. "type": "package",
  2290. "compile": {
  2291. "lib/net6.0/System.Diagnostics.EventLog.dll": {
  2292. "related": ".xml"
  2293. }
  2294. },
  2295. "runtime": {
  2296. "lib/net6.0/System.Diagnostics.EventLog.dll": {
  2297. "related": ".xml"
  2298. }
  2299. },
  2300. "build": {
  2301. "buildTransitive/netcoreapp3.1/_._": {}
  2302. },
  2303. "runtimeTargets": {
  2304. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": {
  2305. "assetType": "runtime",
  2306. "rid": "win"
  2307. },
  2308. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": {
  2309. "assetType": "runtime",
  2310. "rid": "win"
  2311. }
  2312. }
  2313. },
  2314. "System.Diagnostics.PerformanceCounter/5.0.0": {
  2315. "type": "package",
  2316. "dependencies": {
  2317. "Microsoft.NETCore.Platforms": "5.0.0",
  2318. "Microsoft.Win32.Registry": "5.0.0",
  2319. "System.Configuration.ConfigurationManager": "5.0.0",
  2320. "System.Security.Principal.Windows": "5.0.0"
  2321. },
  2322. "compile": {
  2323. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  2324. "related": ".xml"
  2325. }
  2326. },
  2327. "runtime": {
  2328. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  2329. "related": ".xml"
  2330. }
  2331. },
  2332. "runtimeTargets": {
  2333. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  2334. "assetType": "runtime",
  2335. "rid": "win"
  2336. }
  2337. }
  2338. },
  2339. "System.Drawing.Common/6.0.0": {
  2340. "type": "package",
  2341. "dependencies": {
  2342. "Microsoft.Win32.SystemEvents": "6.0.0"
  2343. },
  2344. "compile": {
  2345. "lib/net6.0/System.Drawing.Common.dll": {
  2346. "related": ".xml"
  2347. }
  2348. },
  2349. "runtime": {
  2350. "lib/net6.0/System.Drawing.Common.dll": {
  2351. "related": ".xml"
  2352. }
  2353. },
  2354. "build": {
  2355. "buildTransitive/netcoreapp3.1/_._": {}
  2356. },
  2357. "runtimeTargets": {
  2358. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  2359. "assetType": "runtime",
  2360. "rid": "unix"
  2361. },
  2362. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  2363. "assetType": "runtime",
  2364. "rid": "win"
  2365. }
  2366. }
  2367. },
  2368. "System.Formats.Asn1/6.0.0": {
  2369. "type": "package",
  2370. "compile": {
  2371. "lib/net6.0/System.Formats.Asn1.dll": {
  2372. "related": ".xml"
  2373. }
  2374. },
  2375. "runtime": {
  2376. "lib/net6.0/System.Formats.Asn1.dll": {
  2377. "related": ".xml"
  2378. }
  2379. },
  2380. "build": {
  2381. "buildTransitive/netcoreapp3.1/_._": {}
  2382. }
  2383. },
  2384. "System.Globalization/4.3.0": {
  2385. "type": "package",
  2386. "dependencies": {
  2387. "Microsoft.NETCore.Platforms": "1.1.0",
  2388. "Microsoft.NETCore.Targets": "1.1.0",
  2389. "System.Runtime": "4.3.0"
  2390. },
  2391. "compile": {
  2392. "ref/netstandard1.3/_._": {
  2393. "related": ".xml"
  2394. }
  2395. }
  2396. },
  2397. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  2398. "type": "package",
  2399. "dependencies": {
  2400. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  2401. "Microsoft.IdentityModel.Tokens": "6.8.0"
  2402. },
  2403. "compile": {
  2404. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2405. "related": ".xml"
  2406. }
  2407. },
  2408. "runtime": {
  2409. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2410. "related": ".xml"
  2411. }
  2412. }
  2413. },
  2414. "System.IO/4.3.0": {
  2415. "type": "package",
  2416. "dependencies": {
  2417. "Microsoft.NETCore.Platforms": "1.1.0",
  2418. "Microsoft.NETCore.Targets": "1.1.0",
  2419. "System.Runtime": "4.3.0",
  2420. "System.Text.Encoding": "4.3.0",
  2421. "System.Threading.Tasks": "4.3.0"
  2422. },
  2423. "compile": {
  2424. "ref/netstandard1.5/System.IO.dll": {
  2425. "related": ".xml"
  2426. }
  2427. }
  2428. },
  2429. "System.IO.Pipelines/5.0.2": {
  2430. "type": "package",
  2431. "compile": {
  2432. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2433. "related": ".xml"
  2434. }
  2435. },
  2436. "runtime": {
  2437. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2438. "related": ".xml"
  2439. }
  2440. }
  2441. },
  2442. "System.Linq/4.3.0": {
  2443. "type": "package",
  2444. "dependencies": {
  2445. "System.Collections": "4.3.0",
  2446. "System.Diagnostics.Debug": "4.3.0",
  2447. "System.Resources.ResourceManager": "4.3.0",
  2448. "System.Runtime": "4.3.0",
  2449. "System.Runtime.Extensions": "4.3.0"
  2450. },
  2451. "compile": {
  2452. "ref/netstandard1.6/System.Linq.dll": {
  2453. "related": ".xml"
  2454. }
  2455. },
  2456. "runtime": {
  2457. "lib/netstandard1.6/System.Linq.dll": {}
  2458. }
  2459. },
  2460. "System.Linq.Dynamic.Core/1.2.18": {
  2461. "type": "package",
  2462. "compile": {
  2463. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  2464. "related": ".pdb;.xml"
  2465. }
  2466. },
  2467. "runtime": {
  2468. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  2469. "related": ".pdb;.xml"
  2470. }
  2471. }
  2472. },
  2473. "System.Linq.Expressions/4.3.0": {
  2474. "type": "package",
  2475. "dependencies": {
  2476. "System.Collections": "4.3.0",
  2477. "System.Diagnostics.Debug": "4.3.0",
  2478. "System.Globalization": "4.3.0",
  2479. "System.IO": "4.3.0",
  2480. "System.Linq": "4.3.0",
  2481. "System.ObjectModel": "4.3.0",
  2482. "System.Reflection": "4.3.0",
  2483. "System.Reflection.Emit": "4.3.0",
  2484. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2485. "System.Reflection.Emit.Lightweight": "4.3.0",
  2486. "System.Reflection.Extensions": "4.3.0",
  2487. "System.Reflection.Primitives": "4.3.0",
  2488. "System.Reflection.TypeExtensions": "4.3.0",
  2489. "System.Resources.ResourceManager": "4.3.0",
  2490. "System.Runtime": "4.3.0",
  2491. "System.Runtime.Extensions": "4.3.0",
  2492. "System.Threading": "4.3.0"
  2493. },
  2494. "compile": {
  2495. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2496. "related": ".xml"
  2497. }
  2498. },
  2499. "runtime": {
  2500. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2501. }
  2502. },
  2503. "System.Linq.Queryable/4.3.0": {
  2504. "type": "package",
  2505. "dependencies": {
  2506. "System.Collections": "4.3.0",
  2507. "System.Diagnostics.Debug": "4.3.0",
  2508. "System.Linq": "4.3.0",
  2509. "System.Linq.Expressions": "4.3.0",
  2510. "System.Reflection": "4.3.0",
  2511. "System.Reflection.Extensions": "4.3.0",
  2512. "System.Resources.ResourceManager": "4.3.0",
  2513. "System.Runtime": "4.3.0"
  2514. },
  2515. "compile": {
  2516. "ref/netstandard1.0/System.Linq.Queryable.dll": {
  2517. "related": ".xml"
  2518. }
  2519. },
  2520. "runtime": {
  2521. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  2522. }
  2523. },
  2524. "System.Memory/4.5.4": {
  2525. "type": "package",
  2526. "compile": {
  2527. "ref/netcoreapp2.1/_._": {}
  2528. },
  2529. "runtime": {
  2530. "lib/netcoreapp2.1/_._": {}
  2531. }
  2532. },
  2533. "System.ObjectModel/4.3.0": {
  2534. "type": "package",
  2535. "dependencies": {
  2536. "System.Collections": "4.3.0",
  2537. "System.Diagnostics.Debug": "4.3.0",
  2538. "System.Resources.ResourceManager": "4.3.0",
  2539. "System.Runtime": "4.3.0",
  2540. "System.Threading": "4.3.0"
  2541. },
  2542. "compile": {
  2543. "ref/netstandard1.3/_._": {
  2544. "related": ".xml"
  2545. }
  2546. },
  2547. "runtime": {
  2548. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2549. }
  2550. },
  2551. "System.Reflection/4.3.0": {
  2552. "type": "package",
  2553. "dependencies": {
  2554. "Microsoft.NETCore.Platforms": "1.1.0",
  2555. "Microsoft.NETCore.Targets": "1.1.0",
  2556. "System.IO": "4.3.0",
  2557. "System.Reflection.Primitives": "4.3.0",
  2558. "System.Runtime": "4.3.0"
  2559. },
  2560. "compile": {
  2561. "ref/netstandard1.5/System.Reflection.dll": {
  2562. "related": ".xml"
  2563. }
  2564. }
  2565. },
  2566. "System.Reflection.Emit/4.3.0": {
  2567. "type": "package",
  2568. "dependencies": {
  2569. "System.IO": "4.3.0",
  2570. "System.Reflection": "4.3.0",
  2571. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2572. "System.Reflection.Primitives": "4.3.0",
  2573. "System.Runtime": "4.3.0"
  2574. },
  2575. "compile": {
  2576. "ref/netstandard1.1/_._": {
  2577. "related": ".xml"
  2578. }
  2579. },
  2580. "runtime": {
  2581. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2582. }
  2583. },
  2584. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2585. "type": "package",
  2586. "dependencies": {
  2587. "System.Reflection": "4.3.0",
  2588. "System.Reflection.Primitives": "4.3.0",
  2589. "System.Runtime": "4.3.0"
  2590. },
  2591. "compile": {
  2592. "ref/netstandard1.0/_._": {
  2593. "related": ".xml"
  2594. }
  2595. },
  2596. "runtime": {
  2597. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2598. }
  2599. },
  2600. "System.Reflection.Emit.Lightweight/4.3.0": {
  2601. "type": "package",
  2602. "dependencies": {
  2603. "System.Reflection": "4.3.0",
  2604. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2605. "System.Reflection.Primitives": "4.3.0",
  2606. "System.Runtime": "4.3.0"
  2607. },
  2608. "compile": {
  2609. "ref/netstandard1.0/_._": {
  2610. "related": ".xml"
  2611. }
  2612. },
  2613. "runtime": {
  2614. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2615. }
  2616. },
  2617. "System.Reflection.Extensions/4.3.0": {
  2618. "type": "package",
  2619. "dependencies": {
  2620. "Microsoft.NETCore.Platforms": "1.1.0",
  2621. "Microsoft.NETCore.Targets": "1.1.0",
  2622. "System.Reflection": "4.3.0",
  2623. "System.Runtime": "4.3.0"
  2624. },
  2625. "compile": {
  2626. "ref/netstandard1.0/_._": {
  2627. "related": ".xml"
  2628. }
  2629. }
  2630. },
  2631. "System.Reflection.Metadata/5.0.0": {
  2632. "type": "package",
  2633. "compile": {
  2634. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2635. "related": ".xml"
  2636. }
  2637. },
  2638. "runtime": {
  2639. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2640. "related": ".xml"
  2641. }
  2642. }
  2643. },
  2644. "System.Reflection.Primitives/4.3.0": {
  2645. "type": "package",
  2646. "dependencies": {
  2647. "Microsoft.NETCore.Platforms": "1.1.0",
  2648. "Microsoft.NETCore.Targets": "1.1.0",
  2649. "System.Runtime": "4.3.0"
  2650. },
  2651. "compile": {
  2652. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2653. "related": ".xml"
  2654. }
  2655. }
  2656. },
  2657. "System.Reflection.TypeExtensions/4.3.0": {
  2658. "type": "package",
  2659. "dependencies": {
  2660. "System.Reflection": "4.3.0",
  2661. "System.Runtime": "4.3.0"
  2662. },
  2663. "compile": {
  2664. "ref/netstandard1.5/_._": {
  2665. "related": ".xml"
  2666. }
  2667. },
  2668. "runtime": {
  2669. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2670. }
  2671. },
  2672. "System.Resources.ResourceManager/4.3.0": {
  2673. "type": "package",
  2674. "dependencies": {
  2675. "Microsoft.NETCore.Platforms": "1.1.0",
  2676. "Microsoft.NETCore.Targets": "1.1.0",
  2677. "System.Globalization": "4.3.0",
  2678. "System.Reflection": "4.3.0",
  2679. "System.Runtime": "4.3.0"
  2680. },
  2681. "compile": {
  2682. "ref/netstandard1.0/_._": {
  2683. "related": ".xml"
  2684. }
  2685. }
  2686. },
  2687. "System.Runtime/4.3.0": {
  2688. "type": "package",
  2689. "dependencies": {
  2690. "Microsoft.NETCore.Platforms": "1.1.0",
  2691. "Microsoft.NETCore.Targets": "1.1.0"
  2692. },
  2693. "compile": {
  2694. "ref/netstandard1.5/System.Runtime.dll": {
  2695. "related": ".xml"
  2696. }
  2697. }
  2698. },
  2699. "System.Runtime.Caching/4.7.0": {
  2700. "type": "package",
  2701. "dependencies": {
  2702. "System.Configuration.ConfigurationManager": "4.7.0"
  2703. },
  2704. "compile": {
  2705. "ref/netstandard2.0/_._": {
  2706. "related": ".xml"
  2707. }
  2708. },
  2709. "runtime": {
  2710. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  2711. "related": ".xml"
  2712. }
  2713. },
  2714. "runtimeTargets": {
  2715. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  2716. "assetType": "runtime",
  2717. "rid": "win"
  2718. }
  2719. }
  2720. },
  2721. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2722. "type": "package",
  2723. "compile": {
  2724. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2725. "related": ".xml"
  2726. }
  2727. },
  2728. "runtime": {
  2729. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2730. "related": ".xml"
  2731. }
  2732. },
  2733. "build": {
  2734. "buildTransitive/netcoreapp3.1/_._": {}
  2735. }
  2736. },
  2737. "System.Runtime.Extensions/4.3.0": {
  2738. "type": "package",
  2739. "dependencies": {
  2740. "Microsoft.NETCore.Platforms": "1.1.0",
  2741. "Microsoft.NETCore.Targets": "1.1.0",
  2742. "System.Runtime": "4.3.0"
  2743. },
  2744. "compile": {
  2745. "ref/netstandard1.5/_._": {
  2746. "related": ".xml"
  2747. }
  2748. }
  2749. },
  2750. "System.Runtime.Loader/4.3.0": {
  2751. "type": "package",
  2752. "dependencies": {
  2753. "System.IO": "4.3.0",
  2754. "System.Reflection": "4.3.0",
  2755. "System.Runtime": "4.3.0"
  2756. },
  2757. "compile": {
  2758. "ref/netstandard1.5/System.Runtime.Loader.dll": {
  2759. "related": ".xml"
  2760. }
  2761. },
  2762. "runtime": {
  2763. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2764. }
  2765. },
  2766. "System.Security.AccessControl/6.0.0": {
  2767. "type": "package",
  2768. "compile": {
  2769. "lib/net6.0/System.Security.AccessControl.dll": {
  2770. "related": ".xml"
  2771. }
  2772. },
  2773. "runtime": {
  2774. "lib/net6.0/System.Security.AccessControl.dll": {
  2775. "related": ".xml"
  2776. }
  2777. },
  2778. "build": {
  2779. "buildTransitive/netcoreapp3.1/_._": {}
  2780. },
  2781. "runtimeTargets": {
  2782. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": {
  2783. "assetType": "runtime",
  2784. "rid": "win"
  2785. }
  2786. }
  2787. },
  2788. "System.Security.Cryptography.Cng/4.5.0": {
  2789. "type": "package",
  2790. "compile": {
  2791. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2792. "related": ".xml"
  2793. }
  2794. },
  2795. "runtime": {
  2796. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2797. },
  2798. "runtimeTargets": {
  2799. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2800. "assetType": "runtime",
  2801. "rid": "win"
  2802. }
  2803. }
  2804. },
  2805. "System.Security.Cryptography.Pkcs/6.0.0": {
  2806. "type": "package",
  2807. "dependencies": {
  2808. "System.Formats.Asn1": "6.0.0"
  2809. },
  2810. "compile": {
  2811. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2812. "related": ".xml"
  2813. }
  2814. },
  2815. "runtime": {
  2816. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2817. "related": ".xml"
  2818. }
  2819. },
  2820. "build": {
  2821. "buildTransitive/netcoreapp3.1/_._": {}
  2822. },
  2823. "runtimeTargets": {
  2824. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2825. "assetType": "runtime",
  2826. "rid": "win"
  2827. }
  2828. }
  2829. },
  2830. "System.Security.Cryptography.ProtectedData/6.0.0": {
  2831. "type": "package",
  2832. "compile": {
  2833. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  2834. "related": ".xml"
  2835. }
  2836. },
  2837. "runtime": {
  2838. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  2839. "related": ".xml"
  2840. }
  2841. },
  2842. "build": {
  2843. "buildTransitive/netcoreapp3.1/_._": {}
  2844. },
  2845. "runtimeTargets": {
  2846. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  2847. "assetType": "runtime",
  2848. "rid": "win"
  2849. }
  2850. }
  2851. },
  2852. "System.Security.Cryptography.Xml/6.0.0": {
  2853. "type": "package",
  2854. "dependencies": {
  2855. "System.Security.AccessControl": "6.0.0",
  2856. "System.Security.Cryptography.Pkcs": "6.0.0"
  2857. },
  2858. "compile": {
  2859. "lib/net6.0/System.Security.Cryptography.Xml.dll": {
  2860. "related": ".xml"
  2861. }
  2862. },
  2863. "runtime": {
  2864. "lib/net6.0/System.Security.Cryptography.Xml.dll": {
  2865. "related": ".xml"
  2866. }
  2867. },
  2868. "build": {
  2869. "buildTransitive/netcoreapp3.1/_._": {}
  2870. }
  2871. },
  2872. "System.Security.Permissions/6.0.0": {
  2873. "type": "package",
  2874. "dependencies": {
  2875. "System.Security.AccessControl": "6.0.0",
  2876. "System.Windows.Extensions": "6.0.0"
  2877. },
  2878. "compile": {
  2879. "lib/net6.0/System.Security.Permissions.dll": {
  2880. "related": ".xml"
  2881. }
  2882. },
  2883. "runtime": {
  2884. "lib/net6.0/System.Security.Permissions.dll": {
  2885. "related": ".xml"
  2886. }
  2887. },
  2888. "build": {
  2889. "buildTransitive/netcoreapp3.1/_._": {}
  2890. }
  2891. },
  2892. "System.Security.Principal.Windows/5.0.0": {
  2893. "type": "package",
  2894. "compile": {
  2895. "ref/netcoreapp3.0/_._": {
  2896. "related": ".xml"
  2897. }
  2898. },
  2899. "runtime": {
  2900. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2901. "related": ".xml"
  2902. }
  2903. },
  2904. "runtimeTargets": {
  2905. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2906. "assetType": "runtime",
  2907. "rid": "unix"
  2908. },
  2909. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2910. "assetType": "runtime",
  2911. "rid": "win"
  2912. }
  2913. }
  2914. },
  2915. "System.Text.Encoding/4.3.0": {
  2916. "type": "package",
  2917. "dependencies": {
  2918. "Microsoft.NETCore.Platforms": "1.1.0",
  2919. "Microsoft.NETCore.Targets": "1.1.0",
  2920. "System.Runtime": "4.3.0"
  2921. },
  2922. "compile": {
  2923. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2924. "related": ".xml"
  2925. }
  2926. }
  2927. },
  2928. "System.Text.Encoding.CodePages/4.7.0": {
  2929. "type": "package",
  2930. "dependencies": {
  2931. "Microsoft.NETCore.Platforms": "3.1.0"
  2932. },
  2933. "compile": {
  2934. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2935. "related": ".xml"
  2936. }
  2937. },
  2938. "runtime": {
  2939. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  2940. "related": ".xml"
  2941. }
  2942. },
  2943. "runtimeTargets": {
  2944. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2945. "assetType": "runtime",
  2946. "rid": "win"
  2947. }
  2948. }
  2949. },
  2950. "System.Text.Encodings.Web/6.0.0": {
  2951. "type": "package",
  2952. "dependencies": {
  2953. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2954. },
  2955. "compile": {
  2956. "lib/net6.0/System.Text.Encodings.Web.dll": {
  2957. "related": ".xml"
  2958. }
  2959. },
  2960. "runtime": {
  2961. "lib/net6.0/System.Text.Encodings.Web.dll": {
  2962. "related": ".xml"
  2963. }
  2964. },
  2965. "build": {
  2966. "buildTransitive/netcoreapp3.1/_._": {}
  2967. },
  2968. "runtimeTargets": {
  2969. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
  2970. "assetType": "runtime",
  2971. "rid": "browser"
  2972. }
  2973. }
  2974. },
  2975. "System.Text.Json/6.0.0": {
  2976. "type": "package",
  2977. "dependencies": {
  2978. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  2979. "System.Text.Encodings.Web": "6.0.0"
  2980. },
  2981. "compile": {
  2982. "lib/net6.0/System.Text.Json.dll": {
  2983. "related": ".xml"
  2984. }
  2985. },
  2986. "runtime": {
  2987. "lib/net6.0/System.Text.Json.dll": {
  2988. "related": ".xml"
  2989. }
  2990. },
  2991. "build": {
  2992. "buildTransitive/netcoreapp3.1/_._": {}
  2993. }
  2994. },
  2995. "System.Threading/4.3.0": {
  2996. "type": "package",
  2997. "dependencies": {
  2998. "System.Runtime": "4.3.0",
  2999. "System.Threading.Tasks": "4.3.0"
  3000. },
  3001. "compile": {
  3002. "ref/netstandard1.3/_._": {
  3003. "related": ".xml"
  3004. }
  3005. },
  3006. "runtime": {
  3007. "lib/netstandard1.3/System.Threading.dll": {}
  3008. }
  3009. },
  3010. "System.Threading.Tasks/4.3.0": {
  3011. "type": "package",
  3012. "dependencies": {
  3013. "Microsoft.NETCore.Platforms": "1.1.0",
  3014. "Microsoft.NETCore.Targets": "1.1.0",
  3015. "System.Runtime": "4.3.0"
  3016. },
  3017. "compile": {
  3018. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3019. "related": ".xml"
  3020. }
  3021. }
  3022. },
  3023. "System.Threading.Tasks.Extensions/4.5.4": {
  3024. "type": "package",
  3025. "compile": {
  3026. "ref/netcoreapp2.1/_._": {}
  3027. },
  3028. "runtime": {
  3029. "lib/netcoreapp2.1/_._": {}
  3030. }
  3031. },
  3032. "System.Windows.Extensions/6.0.0": {
  3033. "type": "package",
  3034. "dependencies": {
  3035. "System.Drawing.Common": "6.0.0"
  3036. },
  3037. "compile": {
  3038. "lib/net6.0/System.Windows.Extensions.dll": {
  3039. "related": ".xml"
  3040. }
  3041. },
  3042. "runtime": {
  3043. "lib/net6.0/System.Windows.Extensions.dll": {
  3044. "related": ".xml"
  3045. }
  3046. },
  3047. "runtimeTargets": {
  3048. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
  3049. "assetType": "runtime",
  3050. "rid": "win"
  3051. }
  3052. }
  3053. },
  3054. "TimeZoneConverter/5.0.0": {
  3055. "type": "package",
  3056. "compile": {
  3057. "lib/netstandard2.0/TimeZoneConverter.dll": {
  3058. "related": ".xml"
  3059. }
  3060. },
  3061. "runtime": {
  3062. "lib/netstandard2.0/TimeZoneConverter.dll": {
  3063. "related": ".xml"
  3064. }
  3065. }
  3066. },
  3067. "Volo.Abp.ApiVersioning.Abstractions/6.0.0": {
  3068. "type": "package",
  3069. "dependencies": {
  3070. "Volo.Abp.Core": "6.0.0"
  3071. },
  3072. "compile": {
  3073. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {
  3074. "related": ".pdb;.xml"
  3075. }
  3076. },
  3077. "runtime": {
  3078. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {
  3079. "related": ".pdb;.xml"
  3080. }
  3081. }
  3082. },
  3083. "Volo.Abp.AspNetCore/6.0.0": {
  3084. "type": "package",
  3085. "dependencies": {
  3086. "Volo.Abp.Auditing": "6.0.0",
  3087. "Volo.Abp.Authorization": "6.0.0",
  3088. "Volo.Abp.ExceptionHandling": "6.0.0",
  3089. "Volo.Abp.Http": "6.0.0",
  3090. "Volo.Abp.Security": "6.0.0",
  3091. "Volo.Abp.Uow": "6.0.0",
  3092. "Volo.Abp.Validation": "6.0.0",
  3093. "Volo.Abp.VirtualFileSystem": "6.0.0"
  3094. },
  3095. "compile": {
  3096. "lib/net6.0/Volo.Abp.AspNetCore.dll": {
  3097. "related": ".pdb;.xml"
  3098. }
  3099. },
  3100. "runtime": {
  3101. "lib/net6.0/Volo.Abp.AspNetCore.dll": {
  3102. "related": ".pdb;.xml"
  3103. }
  3104. },
  3105. "frameworkReferences": [
  3106. "Microsoft.AspNetCore.App"
  3107. ]
  3108. },
  3109. "Volo.Abp.AspNetCore.MultiTenancy/6.0.0": {
  3110. "type": "package",
  3111. "dependencies": {
  3112. "Volo.Abp.AspNetCore": "6.0.0",
  3113. "Volo.Abp.MultiTenancy": "6.0.0"
  3114. },
  3115. "compile": {
  3116. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.dll": {
  3117. "related": ".pdb;.xml"
  3118. }
  3119. },
  3120. "runtime": {
  3121. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.dll": {
  3122. "related": ".pdb;.xml"
  3123. }
  3124. },
  3125. "frameworkReferences": [
  3126. "Microsoft.AspNetCore.App"
  3127. ]
  3128. },
  3129. "Volo.Abp.AspNetCore.Mvc/6.0.0": {
  3130. "type": "package",
  3131. "dependencies": {
  3132. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.5",
  3133. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "6.0.5",
  3134. "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0",
  3135. "Volo.Abp.ApiVersioning.Abstractions": "6.0.0",
  3136. "Volo.Abp.AspNetCore": "6.0.0",
  3137. "Volo.Abp.AspNetCore.Mvc.Contracts": "6.0.0",
  3138. "Volo.Abp.Ddd.Application": "6.0.0",
  3139. "Volo.Abp.GlobalFeatures": "6.0.0",
  3140. "Volo.Abp.Localization": "6.0.0",
  3141. "Volo.Abp.UI.Navigation": "6.0.0"
  3142. },
  3143. "compile": {
  3144. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.dll": {
  3145. "related": ".pdb;.xml"
  3146. }
  3147. },
  3148. "runtime": {
  3149. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.dll": {
  3150. "related": ".pdb;.xml"
  3151. }
  3152. }
  3153. },
  3154. "Volo.Abp.AspNetCore.Mvc.Contracts/6.0.0": {
  3155. "type": "package",
  3156. "dependencies": {
  3157. "Volo.Abp.Ddd.Application.Contracts": "6.0.0"
  3158. },
  3159. "compile": {
  3160. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {
  3161. "related": ".pdb;.xml"
  3162. }
  3163. },
  3164. "runtime": {
  3165. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {
  3166. "related": ".pdb;.xml"
  3167. }
  3168. }
  3169. },
  3170. "Volo.Abp.AspNetCore.Serilog/6.0.0": {
  3171. "type": "package",
  3172. "dependencies": {
  3173. "Serilog": "2.11.0",
  3174. "Volo.Abp.AspNetCore": "6.0.0",
  3175. "Volo.Abp.MultiTenancy": "6.0.0"
  3176. },
  3177. "compile": {
  3178. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.dll": {
  3179. "related": ".pdb;.xml"
  3180. }
  3181. },
  3182. "runtime": {
  3183. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.dll": {
  3184. "related": ".pdb;.xml"
  3185. }
  3186. },
  3187. "frameworkReferences": [
  3188. "Microsoft.AspNetCore.App"
  3189. ]
  3190. },
  3191. "Volo.Abp.Auditing/6.0.2": {
  3192. "type": "package",
  3193. "dependencies": {
  3194. "Volo.Abp.Auditing.Contracts": "6.0.2",
  3195. "Volo.Abp.Data": "6.0.2",
  3196. "Volo.Abp.Json": "6.0.2",
  3197. "Volo.Abp.MultiTenancy": "6.0.2",
  3198. "Volo.Abp.Security": "6.0.2",
  3199. "Volo.Abp.Threading": "6.0.2",
  3200. "Volo.Abp.Timing": "6.0.2"
  3201. },
  3202. "compile": {
  3203. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  3204. "related": ".pdb;.xml"
  3205. }
  3206. },
  3207. "runtime": {
  3208. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  3209. "related": ".pdb;.xml"
  3210. }
  3211. }
  3212. },
  3213. "Volo.Abp.Auditing.Contracts/6.0.2": {
  3214. "type": "package",
  3215. "dependencies": {
  3216. "Volo.Abp.Core": "6.0.2"
  3217. },
  3218. "compile": {
  3219. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  3220. "related": ".pdb;.xml"
  3221. }
  3222. },
  3223. "runtime": {
  3224. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  3225. "related": ".pdb;.xml"
  3226. }
  3227. }
  3228. },
  3229. "Volo.Abp.Authorization/6.0.0": {
  3230. "type": "package",
  3231. "dependencies": {
  3232. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3233. "Volo.Abp.Localization": "6.0.0",
  3234. "Volo.Abp.Security": "6.0.0"
  3235. },
  3236. "compile": {
  3237. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  3238. "related": ".pdb;.xml"
  3239. }
  3240. },
  3241. "runtime": {
  3242. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  3243. "related": ".pdb;.xml"
  3244. }
  3245. }
  3246. },
  3247. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  3248. "type": "package",
  3249. "dependencies": {
  3250. "Microsoft.AspNetCore.Authorization": "6.0.5",
  3251. "Volo.Abp.MultiTenancy": "6.0.0"
  3252. },
  3253. "compile": {
  3254. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  3255. "related": ".pdb;.xml"
  3256. }
  3257. },
  3258. "runtime": {
  3259. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  3260. "related": ".pdb;.xml"
  3261. }
  3262. }
  3263. },
  3264. "Volo.Abp.Autofac/6.0.0": {
  3265. "type": "package",
  3266. "dependencies": {
  3267. "Autofac": "6.4.0",
  3268. "Autofac.Extensions.DependencyInjection": "8.0.0",
  3269. "Autofac.Extras.DynamicProxy": "6.0.1",
  3270. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  3271. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  3272. "Volo.Abp.Castle.Core": "6.0.0"
  3273. },
  3274. "compile": {
  3275. "lib/netstandard2.0/Volo.Abp.Autofac.dll": {
  3276. "related": ".pdb;.xml"
  3277. }
  3278. },
  3279. "runtime": {
  3280. "lib/netstandard2.0/Volo.Abp.Autofac.dll": {
  3281. "related": ".pdb;.xml"
  3282. }
  3283. }
  3284. },
  3285. "Volo.Abp.AutoMapper/6.0.0": {
  3286. "type": "package",
  3287. "dependencies": {
  3288. "AutoMapper": "11.0.1",
  3289. "Volo.Abp.Auditing": "6.0.0",
  3290. "Volo.Abp.ObjectExtending": "6.0.0",
  3291. "Volo.Abp.ObjectMapping": "6.0.0"
  3292. },
  3293. "compile": {
  3294. "lib/netstandard2.1/Volo.Abp.AutoMapper.dll": {
  3295. "related": ".pdb;.xml"
  3296. }
  3297. },
  3298. "runtime": {
  3299. "lib/netstandard2.1/Volo.Abp.AutoMapper.dll": {
  3300. "related": ".pdb;.xml"
  3301. }
  3302. }
  3303. },
  3304. "Volo.Abp.BackgroundWorkers/6.0.2": {
  3305. "type": "package",
  3306. "dependencies": {
  3307. "Volo.Abp.Threading": "6.0.2"
  3308. },
  3309. "compile": {
  3310. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  3311. "related": ".pdb;.xml"
  3312. }
  3313. },
  3314. "runtime": {
  3315. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  3316. "related": ".pdb;.xml"
  3317. }
  3318. }
  3319. },
  3320. "Volo.Abp.Caching/6.0.0": {
  3321. "type": "package",
  3322. "dependencies": {
  3323. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  3324. "Volo.Abp.Json": "6.0.0",
  3325. "Volo.Abp.MultiTenancy": "6.0.0",
  3326. "Volo.Abp.Serialization": "6.0.0",
  3327. "Volo.Abp.Threading": "6.0.0"
  3328. },
  3329. "compile": {
  3330. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  3331. "related": ".pdb;.xml"
  3332. }
  3333. },
  3334. "runtime": {
  3335. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  3336. "related": ".pdb;.xml"
  3337. }
  3338. }
  3339. },
  3340. "Volo.Abp.Castle.Core/6.0.0": {
  3341. "type": "package",
  3342. "dependencies": {
  3343. "Castle.Core": "5.0.0",
  3344. "Castle.Core.AsyncInterceptor": "2.1.0",
  3345. "Volo.Abp.Core": "6.0.0"
  3346. },
  3347. "compile": {
  3348. "lib/netstandard2.0/Volo.Abp.Castle.Core.dll": {
  3349. "related": ".pdb;.xml"
  3350. }
  3351. },
  3352. "runtime": {
  3353. "lib/netstandard2.0/Volo.Abp.Castle.Core.dll": {
  3354. "related": ".pdb;.xml"
  3355. }
  3356. }
  3357. },
  3358. "Volo.Abp.Core/6.0.2": {
  3359. "type": "package",
  3360. "dependencies": {
  3361. "JetBrains.Annotations": "2022.1.0",
  3362. "Microsoft.Extensions.Configuration.CommandLine": "6.0.0",
  3363. "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.1",
  3364. "Microsoft.Extensions.Configuration.UserSecrets": "6.0.1",
  3365. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  3366. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  3367. "Microsoft.Extensions.Localization": "6.0.5",
  3368. "Microsoft.Extensions.Logging": "6.0.0",
  3369. "Microsoft.Extensions.Options": "6.0.0",
  3370. "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0",
  3371. "Nito.AsyncEx.Context": "5.1.2",
  3372. "Nito.AsyncEx.Coordination": "5.1.2",
  3373. "System.Collections.Immutable": "6.0.0",
  3374. "System.Linq.Dynamic.Core": "1.2.18",
  3375. "System.Linq.Queryable": "4.3.0",
  3376. "System.Runtime.Loader": "4.3.0",
  3377. "System.Text.Encodings.Web": "6.0.0"
  3378. },
  3379. "compile": {
  3380. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  3381. "related": ".pdb;.xml"
  3382. }
  3383. },
  3384. "runtime": {
  3385. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  3386. "related": ".pdb;.xml"
  3387. }
  3388. }
  3389. },
  3390. "Volo.Abp.Data/6.0.2": {
  3391. "type": "package",
  3392. "dependencies": {
  3393. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  3394. "Volo.Abp.ObjectExtending": "6.0.2",
  3395. "Volo.Abp.Uow": "6.0.2"
  3396. },
  3397. "compile": {
  3398. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  3399. "related": ".pdb;.xml"
  3400. }
  3401. },
  3402. "runtime": {
  3403. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  3404. "related": ".pdb;.xml"
  3405. }
  3406. }
  3407. },
  3408. "Volo.Abp.Ddd.Application/6.0.0": {
  3409. "type": "package",
  3410. "dependencies": {
  3411. "Volo.Abp.Authorization": "6.0.0",
  3412. "Volo.Abp.Ddd.Application.Contracts": "6.0.0",
  3413. "Volo.Abp.Ddd.Domain": "6.0.0",
  3414. "Volo.Abp.Features": "6.0.0",
  3415. "Volo.Abp.GlobalFeatures": "6.0.0",
  3416. "Volo.Abp.Http.Abstractions": "6.0.0",
  3417. "Volo.Abp.Localization": "6.0.0",
  3418. "Volo.Abp.ObjectMapping": "6.0.0",
  3419. "Volo.Abp.Security": "6.0.0",
  3420. "Volo.Abp.Settings": "6.0.0",
  3421. "Volo.Abp.Validation": "6.0.0"
  3422. },
  3423. "compile": {
  3424. "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {
  3425. "related": ".pdb;.xml"
  3426. }
  3427. },
  3428. "runtime": {
  3429. "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {
  3430. "related": ".pdb;.xml"
  3431. }
  3432. }
  3433. },
  3434. "Volo.Abp.Ddd.Application.Contracts/6.0.0": {
  3435. "type": "package",
  3436. "dependencies": {
  3437. "Volo.Abp.Auditing.Contracts": "6.0.0",
  3438. "Volo.Abp.Localization": "6.0.0"
  3439. },
  3440. "compile": {
  3441. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {
  3442. "related": ".pdb;.xml"
  3443. }
  3444. },
  3445. "runtime": {
  3446. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {
  3447. "related": ".pdb;.xml"
  3448. }
  3449. }
  3450. },
  3451. "Volo.Abp.Ddd.Domain/6.0.2": {
  3452. "type": "package",
  3453. "dependencies": {
  3454. "Volo.Abp.Auditing": "6.0.2",
  3455. "Volo.Abp.Data": "6.0.2",
  3456. "Volo.Abp.EventBus": "6.0.2",
  3457. "Volo.Abp.ExceptionHandling": "6.0.2",
  3458. "Volo.Abp.Guids": "6.0.2",
  3459. "Volo.Abp.MultiTenancy": "6.0.2",
  3460. "Volo.Abp.ObjectMapping": "6.0.2",
  3461. "Volo.Abp.Specifications": "6.0.2",
  3462. "Volo.Abp.Threading": "6.0.2",
  3463. "Volo.Abp.Timing": "6.0.2",
  3464. "Volo.Abp.Uow": "6.0.2"
  3465. },
  3466. "compile": {
  3467. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  3468. "related": ".pdb;.xml"
  3469. }
  3470. },
  3471. "runtime": {
  3472. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  3473. "related": ".pdb;.xml"
  3474. }
  3475. }
  3476. },
  3477. "Volo.Abp.DistributedLocking.Abstractions/6.0.2": {
  3478. "type": "package",
  3479. "dependencies": {
  3480. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  3481. "Volo.Abp.Core": "6.0.2"
  3482. },
  3483. "compile": {
  3484. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  3485. "related": ".pdb;.xml"
  3486. }
  3487. },
  3488. "runtime": {
  3489. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  3490. "related": ".pdb;.xml"
  3491. }
  3492. }
  3493. },
  3494. "Volo.Abp.EntityFrameworkCore/6.0.2": {
  3495. "type": "package",
  3496. "dependencies": {
  3497. "Microsoft.EntityFrameworkCore": "6.0.5",
  3498. "Microsoft.EntityFrameworkCore.Relational": "6.0.5",
  3499. "Volo.Abp.Ddd.Domain": "6.0.2",
  3500. "Volo.Abp.Json": "6.0.2"
  3501. },
  3502. "compile": {
  3503. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  3504. "related": ".pdb;.xml"
  3505. }
  3506. },
  3507. "runtime": {
  3508. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  3509. "related": ".pdb;.xml"
  3510. }
  3511. }
  3512. },
  3513. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.2": {
  3514. "type": "package",
  3515. "dependencies": {
  3516. "Pomelo.EntityFrameworkCore.MySql": "6.0.0",
  3517. "Volo.Abp.EntityFrameworkCore": "6.0.2"
  3518. },
  3519. "compile": {
  3520. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  3521. "related": ".pdb;.xml"
  3522. }
  3523. },
  3524. "runtime": {
  3525. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  3526. "related": ".pdb;.xml"
  3527. }
  3528. }
  3529. },
  3530. "Volo.Abp.EntityFrameworkCore.SqlServer/6.0.2": {
  3531. "type": "package",
  3532. "dependencies": {
  3533. "Microsoft.EntityFrameworkCore.SqlServer": "6.0.5",
  3534. "Volo.Abp.EntityFrameworkCore": "6.0.2"
  3535. },
  3536. "compile": {
  3537. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.dll": {
  3538. "related": ".pdb;.xml"
  3539. }
  3540. },
  3541. "runtime": {
  3542. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.dll": {
  3543. "related": ".pdb;.xml"
  3544. }
  3545. }
  3546. },
  3547. "Volo.Abp.EventBus/6.0.2": {
  3548. "type": "package",
  3549. "dependencies": {
  3550. "Volo.Abp.BackgroundWorkers": "6.0.2",
  3551. "Volo.Abp.DistributedLocking.Abstractions": "6.0.2",
  3552. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  3553. "Volo.Abp.Guids": "6.0.2",
  3554. "Volo.Abp.Json": "6.0.2",
  3555. "Volo.Abp.MultiTenancy": "6.0.2"
  3556. },
  3557. "compile": {
  3558. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  3559. "related": ".pdb;.xml"
  3560. }
  3561. },
  3562. "runtime": {
  3563. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  3564. "related": ".pdb;.xml"
  3565. }
  3566. }
  3567. },
  3568. "Volo.Abp.EventBus.Abstractions/6.0.2": {
  3569. "type": "package",
  3570. "dependencies": {
  3571. "Volo.Abp.Core": "6.0.2"
  3572. },
  3573. "compile": {
  3574. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  3575. "related": ".pdb;.xml"
  3576. }
  3577. },
  3578. "runtime": {
  3579. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  3580. "related": ".pdb;.xml"
  3581. }
  3582. }
  3583. },
  3584. "Volo.Abp.ExceptionHandling/6.0.2": {
  3585. "type": "package",
  3586. "dependencies": {
  3587. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  3588. "Volo.Abp.Localization": "6.0.2"
  3589. },
  3590. "compile": {
  3591. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  3592. "related": ".pdb;.xml"
  3593. }
  3594. },
  3595. "runtime": {
  3596. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  3597. "related": ".pdb;.xml"
  3598. }
  3599. }
  3600. },
  3601. "Volo.Abp.Features/6.0.0": {
  3602. "type": "package",
  3603. "dependencies": {
  3604. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3605. "Volo.Abp.Localization": "6.0.0",
  3606. "Volo.Abp.MultiTenancy": "6.0.0",
  3607. "Volo.Abp.Validation": "6.0.0"
  3608. },
  3609. "compile": {
  3610. "lib/netstandard2.0/Volo.Abp.Features.dll": {
  3611. "related": ".pdb;.xml"
  3612. }
  3613. },
  3614. "runtime": {
  3615. "lib/netstandard2.0/Volo.Abp.Features.dll": {
  3616. "related": ".pdb;.xml"
  3617. }
  3618. }
  3619. },
  3620. "Volo.Abp.GlobalFeatures/6.0.0": {
  3621. "type": "package",
  3622. "dependencies": {
  3623. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3624. "Volo.Abp.Localization": "6.0.0",
  3625. "Volo.Abp.VirtualFileSystem": "6.0.0"
  3626. },
  3627. "compile": {
  3628. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.dll": {
  3629. "related": ".pdb;.xml"
  3630. }
  3631. },
  3632. "runtime": {
  3633. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.dll": {
  3634. "related": ".pdb;.xml"
  3635. }
  3636. }
  3637. },
  3638. "Volo.Abp.Guids/6.0.2": {
  3639. "type": "package",
  3640. "dependencies": {
  3641. "Volo.Abp.Core": "6.0.2"
  3642. },
  3643. "compile": {
  3644. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  3645. "related": ".pdb;.xml"
  3646. }
  3647. },
  3648. "runtime": {
  3649. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  3650. "related": ".pdb;.xml"
  3651. }
  3652. }
  3653. },
  3654. "Volo.Abp.Http/6.0.0": {
  3655. "type": "package",
  3656. "dependencies": {
  3657. "Volo.Abp.Http.Abstractions": "6.0.0",
  3658. "Volo.Abp.Json": "6.0.0",
  3659. "Volo.Abp.Minify": "6.0.0"
  3660. },
  3661. "compile": {
  3662. "lib/netstandard2.0/Volo.Abp.Http.dll": {
  3663. "related": ".pdb;.xml"
  3664. }
  3665. },
  3666. "runtime": {
  3667. "lib/netstandard2.0/Volo.Abp.Http.dll": {
  3668. "related": ".pdb;.xml"
  3669. }
  3670. }
  3671. },
  3672. "Volo.Abp.Http.Abstractions/6.0.0": {
  3673. "type": "package",
  3674. "dependencies": {
  3675. "Volo.Abp.Core": "6.0.0"
  3676. },
  3677. "compile": {
  3678. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {
  3679. "related": ".pdb;.xml"
  3680. }
  3681. },
  3682. "runtime": {
  3683. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {
  3684. "related": ".pdb;.xml"
  3685. }
  3686. }
  3687. },
  3688. "Volo.Abp.Json/6.0.2": {
  3689. "type": "package",
  3690. "dependencies": {
  3691. "Newtonsoft.Json": "13.0.1",
  3692. "Volo.Abp.ObjectExtending": "6.0.2",
  3693. "Volo.Abp.Timing": "6.0.2"
  3694. },
  3695. "compile": {
  3696. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  3697. "related": ".pdb;.xml"
  3698. }
  3699. },
  3700. "runtime": {
  3701. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  3702. "related": ".pdb;.xml"
  3703. }
  3704. }
  3705. },
  3706. "Volo.Abp.Localization/6.0.2": {
  3707. "type": "package",
  3708. "dependencies": {
  3709. "Volo.Abp.Localization.Abstractions": "6.0.2",
  3710. "Volo.Abp.Settings": "6.0.2",
  3711. "Volo.Abp.VirtualFileSystem": "6.0.2"
  3712. },
  3713. "compile": {
  3714. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  3715. "related": ".pdb;.xml"
  3716. }
  3717. },
  3718. "runtime": {
  3719. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  3720. "related": ".pdb;.xml"
  3721. }
  3722. }
  3723. },
  3724. "Volo.Abp.Localization.Abstractions/6.0.2": {
  3725. "type": "package",
  3726. "dependencies": {
  3727. "Volo.Abp.Core": "6.0.2"
  3728. },
  3729. "compile": {
  3730. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  3731. "related": ".pdb;.xml"
  3732. }
  3733. },
  3734. "runtime": {
  3735. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  3736. "related": ".pdb;.xml"
  3737. }
  3738. }
  3739. },
  3740. "Volo.Abp.Minify/6.0.0": {
  3741. "type": "package",
  3742. "dependencies": {
  3743. "NUglify": "1.20.0",
  3744. "Volo.Abp.Core": "6.0.0"
  3745. },
  3746. "compile": {
  3747. "lib/netstandard2.0/Volo.Abp.Minify.dll": {
  3748. "related": ".pdb;.xml"
  3749. }
  3750. },
  3751. "runtime": {
  3752. "lib/netstandard2.0/Volo.Abp.Minify.dll": {
  3753. "related": ".pdb;.xml"
  3754. }
  3755. }
  3756. },
  3757. "Volo.Abp.MultiTenancy/6.0.2": {
  3758. "type": "package",
  3759. "dependencies": {
  3760. "Volo.Abp.Data": "6.0.2",
  3761. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  3762. "Volo.Abp.Security": "6.0.2"
  3763. },
  3764. "compile": {
  3765. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  3766. "related": ".pdb;.xml"
  3767. }
  3768. },
  3769. "runtime": {
  3770. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  3771. "related": ".pdb;.xml"
  3772. }
  3773. }
  3774. },
  3775. "Volo.Abp.ObjectExtending/6.0.2": {
  3776. "type": "package",
  3777. "dependencies": {
  3778. "Volo.Abp.Localization.Abstractions": "6.0.2",
  3779. "Volo.Abp.Validation.Abstractions": "6.0.2"
  3780. },
  3781. "compile": {
  3782. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  3783. "related": ".pdb;.xml"
  3784. }
  3785. },
  3786. "runtime": {
  3787. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  3788. "related": ".pdb;.xml"
  3789. }
  3790. }
  3791. },
  3792. "Volo.Abp.ObjectMapping/6.0.2": {
  3793. "type": "package",
  3794. "dependencies": {
  3795. "Volo.Abp.Core": "6.0.2"
  3796. },
  3797. "compile": {
  3798. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  3799. "related": ".pdb;.xml"
  3800. }
  3801. },
  3802. "runtime": {
  3803. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  3804. "related": ".pdb;.xml"
  3805. }
  3806. }
  3807. },
  3808. "Volo.Abp.PermissionManagement.Application.Contracts/6.0.0": {
  3809. "type": "package",
  3810. "dependencies": {
  3811. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3812. "Volo.Abp.Ddd.Application.Contracts": "6.0.0",
  3813. "Volo.Abp.PermissionManagement.Domain.Shared": "6.0.0"
  3814. },
  3815. "compile": {
  3816. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll": {
  3817. "related": ".pdb;.xml"
  3818. }
  3819. },
  3820. "runtime": {
  3821. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll": {
  3822. "related": ".pdb;.xml"
  3823. }
  3824. }
  3825. },
  3826. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  3827. "type": "package",
  3828. "dependencies": {
  3829. "Volo.Abp.Authorization": "6.0.0",
  3830. "Volo.Abp.Caching": "6.0.0",
  3831. "Volo.Abp.Ddd.Domain": "6.0.0",
  3832. "Volo.Abp.Json": "6.0.0",
  3833. "Volo.Abp.PermissionManagement.Domain.Shared": "6.0.0"
  3834. },
  3835. "compile": {
  3836. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  3837. "related": ".pdb;.xml"
  3838. }
  3839. },
  3840. "runtime": {
  3841. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  3842. "related": ".pdb;.xml"
  3843. }
  3844. }
  3845. },
  3846. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  3847. "type": "package",
  3848. "dependencies": {
  3849. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  3850. "Volo.Abp.Validation": "6.0.0"
  3851. },
  3852. "compile": {
  3853. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  3854. "related": ".pdb;.xml"
  3855. }
  3856. },
  3857. "runtime": {
  3858. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  3859. "related": ".pdb;.xml"
  3860. }
  3861. }
  3862. },
  3863. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  3864. "type": "package",
  3865. "dependencies": {
  3866. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  3867. "Volo.Abp.PermissionManagement.Domain": "6.0.0"
  3868. },
  3869. "compile": {
  3870. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  3871. "related": ".pdb;.xml"
  3872. }
  3873. },
  3874. "runtime": {
  3875. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  3876. "related": ".pdb;.xml"
  3877. }
  3878. }
  3879. },
  3880. "Volo.Abp.Security/6.0.2": {
  3881. "type": "package",
  3882. "dependencies": {
  3883. "Volo.Abp.Core": "6.0.2"
  3884. },
  3885. "compile": {
  3886. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  3887. "related": ".pdb;.xml"
  3888. }
  3889. },
  3890. "runtime": {
  3891. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  3892. "related": ".pdb;.xml"
  3893. }
  3894. }
  3895. },
  3896. "Volo.Abp.Serialization/6.0.0": {
  3897. "type": "package",
  3898. "dependencies": {
  3899. "Volo.Abp.Core": "6.0.0"
  3900. },
  3901. "compile": {
  3902. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  3903. "related": ".pdb;.xml"
  3904. }
  3905. },
  3906. "runtime": {
  3907. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  3908. "related": ".pdb;.xml"
  3909. }
  3910. }
  3911. },
  3912. "Volo.Abp.Settings/6.0.2": {
  3913. "type": "package",
  3914. "dependencies": {
  3915. "Volo.Abp.Localization.Abstractions": "6.0.2",
  3916. "Volo.Abp.MultiTenancy": "6.0.2",
  3917. "Volo.Abp.Security": "6.0.2"
  3918. },
  3919. "compile": {
  3920. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  3921. "related": ".pdb;.xml"
  3922. }
  3923. },
  3924. "runtime": {
  3925. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  3926. "related": ".pdb;.xml"
  3927. }
  3928. }
  3929. },
  3930. "Volo.Abp.Specifications/6.0.2": {
  3931. "type": "package",
  3932. "dependencies": {
  3933. "Volo.Abp.Core": "6.0.2"
  3934. },
  3935. "compile": {
  3936. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  3937. "related": ".pdb;.xml"
  3938. }
  3939. },
  3940. "runtime": {
  3941. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  3942. "related": ".pdb;.xml"
  3943. }
  3944. }
  3945. },
  3946. "Volo.Abp.Threading/6.0.2": {
  3947. "type": "package",
  3948. "dependencies": {
  3949. "Volo.Abp.Core": "6.0.2"
  3950. },
  3951. "compile": {
  3952. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  3953. "related": ".pdb;.xml"
  3954. }
  3955. },
  3956. "runtime": {
  3957. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  3958. "related": ".pdb;.xml"
  3959. }
  3960. }
  3961. },
  3962. "Volo.Abp.Timing/6.0.2": {
  3963. "type": "package",
  3964. "dependencies": {
  3965. "TimeZoneConverter": "5.0.0",
  3966. "Volo.Abp.Localization": "6.0.2",
  3967. "Volo.Abp.Settings": "6.0.2"
  3968. },
  3969. "compile": {
  3970. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  3971. "related": ".pdb;.xml"
  3972. }
  3973. },
  3974. "runtime": {
  3975. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  3976. "related": ".pdb;.xml"
  3977. }
  3978. }
  3979. },
  3980. "Volo.Abp.UI/6.0.0": {
  3981. "type": "package",
  3982. "dependencies": {
  3983. "Volo.Abp.ExceptionHandling": "6.0.0"
  3984. },
  3985. "compile": {
  3986. "lib/netstandard2.0/Volo.Abp.UI.dll": {
  3987. "related": ".pdb;.xml"
  3988. }
  3989. },
  3990. "runtime": {
  3991. "lib/netstandard2.0/Volo.Abp.UI.dll": {
  3992. "related": ".pdb;.xml"
  3993. }
  3994. }
  3995. },
  3996. "Volo.Abp.UI.Navigation/6.0.0": {
  3997. "type": "package",
  3998. "dependencies": {
  3999. "Volo.Abp.Authorization": "6.0.0",
  4000. "Volo.Abp.UI": "6.0.0"
  4001. },
  4002. "compile": {
  4003. "lib/netstandard2.0/Volo.Abp.UI.Navigation.dll": {
  4004. "related": ".pdb;.xml"
  4005. }
  4006. },
  4007. "runtime": {
  4008. "lib/netstandard2.0/Volo.Abp.UI.Navigation.dll": {
  4009. "related": ".pdb;.xml"
  4010. }
  4011. }
  4012. },
  4013. "Volo.Abp.Uow/6.0.2": {
  4014. "type": "package",
  4015. "dependencies": {
  4016. "Volo.Abp.Core": "6.0.2"
  4017. },
  4018. "compile": {
  4019. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  4020. "related": ".pdb;.xml"
  4021. }
  4022. },
  4023. "runtime": {
  4024. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  4025. "related": ".pdb;.xml"
  4026. }
  4027. }
  4028. },
  4029. "Volo.Abp.Validation/6.0.0": {
  4030. "type": "package",
  4031. "dependencies": {
  4032. "Volo.Abp.Localization": "6.0.0",
  4033. "Volo.Abp.Validation.Abstractions": "6.0.0"
  4034. },
  4035. "compile": {
  4036. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  4037. "related": ".pdb;.xml"
  4038. }
  4039. },
  4040. "runtime": {
  4041. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  4042. "related": ".pdb;.xml"
  4043. }
  4044. }
  4045. },
  4046. "Volo.Abp.Validation.Abstractions/6.0.2": {
  4047. "type": "package",
  4048. "dependencies": {
  4049. "Volo.Abp.Core": "6.0.2"
  4050. },
  4051. "compile": {
  4052. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  4053. "related": ".pdb;.xml"
  4054. }
  4055. },
  4056. "runtime": {
  4057. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  4058. "related": ".pdb;.xml"
  4059. }
  4060. }
  4061. },
  4062. "Volo.Abp.VirtualFileSystem/6.0.2": {
  4063. "type": "package",
  4064. "dependencies": {
  4065. "Microsoft.Extensions.FileProviders.Composite": "6.0.0",
  4066. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  4067. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  4068. "Volo.Abp.Core": "6.0.2"
  4069. },
  4070. "compile": {
  4071. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  4072. "related": ".pdb;.xml"
  4073. }
  4074. },
  4075. "runtime": {
  4076. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  4077. "related": ".pdb;.xml"
  4078. }
  4079. }
  4080. },
  4081. "Procurement.Application/1.0.0": {
  4082. "type": "project",
  4083. "framework": ".NETCoreApp,Version=v6.0",
  4084. "dependencies": {
  4085. "NLog": "5.1.2",
  4086. "Procurement.Core": "1.0.0",
  4087. "Procurement.Domain": "1.0.0",
  4088. "Quartz.AspNetCore": "3.6.2",
  4089. "Volo.Abp.AspNetCore.Mvc": "6.0.0",
  4090. "Volo.Abp.AutoMapper": "6.0.0",
  4091. "XCZ.Procurement.Application.Contracts": "0.1.1"
  4092. },
  4093. "compile": {
  4094. "bin/placeholder/Procurement.Application.dll": {}
  4095. },
  4096. "runtime": {
  4097. "bin/placeholder/Procurement.Application.dll": {}
  4098. }
  4099. },
  4100. "Procurement.Core/1.0.0": {
  4101. "type": "project",
  4102. "framework": ".NETCoreApp,Version=v6.0",
  4103. "dependencies": {
  4104. "NLog": "5.1.2",
  4105. "NLog.Extensions.Logging": "5.2.2",
  4106. "NLog.Web.AspNetCore": "5.2.2"
  4107. },
  4108. "compile": {
  4109. "bin/placeholder/Procurement.Core.dll": {}
  4110. },
  4111. "runtime": {
  4112. "bin/placeholder/Procurement.Core.dll": {}
  4113. }
  4114. },
  4115. "Procurement.Domain/1.0.0": {
  4116. "type": "project",
  4117. "framework": ".NETCoreApp,Version=v6.0",
  4118. "dependencies": {
  4119. "Volo.Abp.Ddd.Domain": "6.0.0",
  4120. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  4121. "Volo.Abp.Localization": "6.0.0",
  4122. "Volo.Abp.Validation": "6.0.0"
  4123. },
  4124. "compile": {
  4125. "bin/placeholder/Procurement.Domain.dll": {}
  4126. },
  4127. "runtime": {
  4128. "bin/placeholder/Procurement.Domain.dll": {}
  4129. }
  4130. },
  4131. "Procurement.EntityFrameworkCore/1.0.0": {
  4132. "type": "project",
  4133. "framework": ".NETCoreApp,Version=v6.0",
  4134. "dependencies": {
  4135. "MySql.Data": "8.0.32.1",
  4136. "Procurement.Domain": "1.0.0",
  4137. "System.Data.SqlClient": "4.8.5",
  4138. "Volo.Abp.EntityFrameworkCore.MySQL": "6.0.0",
  4139. "Volo.Abp.EntityFrameworkCore.SqlServer": "6.0.2",
  4140. "Volo.Abp.PermissionManagement.EntityFrameworkCore": "6.0.0"
  4141. },
  4142. "compile": {
  4143. "bin/placeholder/Procurement.EntityFrameworkCore.dll": {}
  4144. },
  4145. "runtime": {
  4146. "bin/placeholder/Procurement.EntityFrameworkCore.dll": {}
  4147. }
  4148. },
  4149. "XCZ.Procurement.Application.Contracts/0.1.1": {
  4150. "type": "project",
  4151. "framework": ".NETCoreApp,Version=v6.0",
  4152. "dependencies": {
  4153. "Microsoft.AspNetCore.Http.Features": "5.0.17",
  4154. "Volo.Abp.Ddd.Application": "6.0.0",
  4155. "Volo.Abp.PermissionManagement.Application.Contracts": "6.0.0"
  4156. },
  4157. "compile": {
  4158. "bin/placeholder/XCZ.Procurement.Application.Contracts.dll": {}
  4159. },
  4160. "runtime": {
  4161. "bin/placeholder/XCZ.Procurement.Application.Contracts.dll": {}
  4162. }
  4163. }
  4164. }
  4165. },
  4166. "libraries": {
  4167. "Autofac/6.4.0": {
  4168. "sha512": "tkFxl6wAPuwVhrlN8wuNADnd+k2tv4ReP7ZZSL0vjfcN0RcfC9v25ogxK6b03HC7D4NwWjSLf1G/zTG8Bw43wQ==",
  4169. "type": "package",
  4170. "path": "autofac/6.4.0",
  4171. "files": [
  4172. ".nupkg.metadata",
  4173. ".signature.p7s",
  4174. "README.md",
  4175. "autofac.6.4.0.nupkg.sha512",
  4176. "autofac.nuspec",
  4177. "icon.png",
  4178. "lib/net5.0/Autofac.dll",
  4179. "lib/net5.0/Autofac.xml",
  4180. "lib/net6.0/Autofac.dll",
  4181. "lib/net6.0/Autofac.xml",
  4182. "lib/netstandard2.0/Autofac.dll",
  4183. "lib/netstandard2.0/Autofac.xml",
  4184. "lib/netstandard2.1/Autofac.dll",
  4185. "lib/netstandard2.1/Autofac.xml"
  4186. ]
  4187. },
  4188. "Autofac.Extensions.DependencyInjection/8.0.0": {
  4189. "sha512": "nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==",
  4190. "type": "package",
  4191. "path": "autofac.extensions.dependencyinjection/8.0.0",
  4192. "files": [
  4193. ".nupkg.metadata",
  4194. ".signature.p7s",
  4195. "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  4196. "autofac.extensions.dependencyinjection.nuspec",
  4197. "icon.png",
  4198. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  4199. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  4200. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  4201. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  4202. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  4203. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  4204. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  4205. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  4206. ]
  4207. },
  4208. "Autofac.Extras.DynamicProxy/6.0.1": {
  4209. "sha512": "+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==",
  4210. "type": "package",
  4211. "path": "autofac.extras.dynamicproxy/6.0.1",
  4212. "files": [
  4213. ".nupkg.metadata",
  4214. ".signature.p7s",
  4215. "README.md",
  4216. "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512",
  4217. "autofac.extras.dynamicproxy.nuspec",
  4218. "icon.png",
  4219. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  4220. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  4221. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  4222. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  4223. ]
  4224. },
  4225. "AutoMapper/11.0.1": {
  4226. "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==",
  4227. "type": "package",
  4228. "path": "automapper/11.0.1",
  4229. "files": [
  4230. ".nupkg.metadata",
  4231. ".signature.p7s",
  4232. "README.md",
  4233. "automapper.11.0.1.nupkg.sha512",
  4234. "automapper.nuspec",
  4235. "icon.png",
  4236. "lib/netstandard2.1/AutoMapper.dll",
  4237. "lib/netstandard2.1/AutoMapper.xml"
  4238. ]
  4239. },
  4240. "Castle.Core/5.0.0": {
  4241. "sha512": "edc8jjyXqzzy8jFdhs36FZdwmlDDTgqPb2Zy1Q5F/f2uAc88bu/VS/0Tpvgupmpl9zJOvOo5ZizVANb0ltN1NQ==",
  4242. "type": "package",
  4243. "path": "castle.core/5.0.0",
  4244. "files": [
  4245. ".nupkg.metadata",
  4246. ".signature.p7s",
  4247. "ASL - Apache Software Foundation License.txt",
  4248. "CHANGELOG.md",
  4249. "LICENSE",
  4250. "castle-logo.png",
  4251. "castle.core.5.0.0.nupkg.sha512",
  4252. "castle.core.nuspec",
  4253. "lib/net462/Castle.Core.dll",
  4254. "lib/net462/Castle.Core.xml",
  4255. "lib/net6.0/Castle.Core.dll",
  4256. "lib/net6.0/Castle.Core.xml",
  4257. "lib/netstandard2.0/Castle.Core.dll",
  4258. "lib/netstandard2.0/Castle.Core.xml",
  4259. "lib/netstandard2.1/Castle.Core.dll",
  4260. "lib/netstandard2.1/Castle.Core.xml",
  4261. "readme.txt"
  4262. ]
  4263. },
  4264. "Castle.Core.AsyncInterceptor/2.1.0": {
  4265. "sha512": "1vOovJnbjjoCFbPPNLvLTeiqJwoA+aRXkhXcgCQY0pi1eejGqCegJwl58pIIPH/uKDfUXnPIo7aqSrcXEyEH1Q==",
  4266. "type": "package",
  4267. "path": "castle.core.asyncinterceptor/2.1.0",
  4268. "files": [
  4269. ".nupkg.metadata",
  4270. ".signature.p7s",
  4271. "castle-logo.png",
  4272. "castle.core.asyncinterceptor.2.1.0.nupkg.sha512",
  4273. "castle.core.asyncinterceptor.nuspec",
  4274. "lib/net45/Castle.Core.AsyncInterceptor.dll",
  4275. "lib/net45/Castle.Core.AsyncInterceptor.xml",
  4276. "lib/net5.0/Castle.Core.AsyncInterceptor.dll",
  4277. "lib/net5.0/Castle.Core.AsyncInterceptor.xml",
  4278. "lib/net6.0/Castle.Core.AsyncInterceptor.dll",
  4279. "lib/net6.0/Castle.Core.AsyncInterceptor.xml",
  4280. "lib/netstandard2.0/Castle.Core.AsyncInterceptor.dll",
  4281. "lib/netstandard2.0/Castle.Core.AsyncInterceptor.xml"
  4282. ]
  4283. },
  4284. "Google.Protobuf/3.21.9": {
  4285. "sha512": "OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==",
  4286. "type": "package",
  4287. "path": "google.protobuf/3.21.9",
  4288. "files": [
  4289. ".nupkg.metadata",
  4290. ".signature.p7s",
  4291. "google.protobuf.3.21.9.nupkg.sha512",
  4292. "google.protobuf.nuspec",
  4293. "lib/net45/Google.Protobuf.dll",
  4294. "lib/net45/Google.Protobuf.pdb",
  4295. "lib/net45/Google.Protobuf.xml",
  4296. "lib/net5.0/Google.Protobuf.dll",
  4297. "lib/net5.0/Google.Protobuf.pdb",
  4298. "lib/net5.0/Google.Protobuf.xml",
  4299. "lib/netstandard1.1/Google.Protobuf.dll",
  4300. "lib/netstandard1.1/Google.Protobuf.pdb",
  4301. "lib/netstandard1.1/Google.Protobuf.xml",
  4302. "lib/netstandard2.0/Google.Protobuf.dll",
  4303. "lib/netstandard2.0/Google.Protobuf.pdb",
  4304. "lib/netstandard2.0/Google.Protobuf.xml"
  4305. ]
  4306. },
  4307. "Humanizer.Core/2.8.26": {
  4308. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  4309. "type": "package",
  4310. "path": "humanizer.core/2.8.26",
  4311. "files": [
  4312. ".nupkg.metadata",
  4313. ".signature.p7s",
  4314. "humanizer.core.2.8.26.nupkg.sha512",
  4315. "humanizer.core.nuspec",
  4316. "lib/netstandard1.0/Humanizer.dll",
  4317. "lib/netstandard1.0/Humanizer.xml",
  4318. "lib/netstandard2.0/Humanizer.dll",
  4319. "lib/netstandard2.0/Humanizer.xml",
  4320. "logo.png"
  4321. ]
  4322. },
  4323. "IdentityModel/4.0.0": {
  4324. "sha512": "Y7i2fezKKKnmxdENfEOpby4Es84e76D16SYcxWKggYraFOvvfKfQAn5KGuuR1X2h1aTrlKZy0lct0NxHg4aVVw==",
  4325. "type": "package",
  4326. "path": "identitymodel/4.0.0",
  4327. "files": [
  4328. ".nupkg.metadata",
  4329. ".signature.p7s",
  4330. "identitymodel.4.0.0.nupkg.sha512",
  4331. "identitymodel.nuspec",
  4332. "lib/net461/IdentityModel.dll",
  4333. "lib/net461/IdentityModel.pdb",
  4334. "lib/net461/IdentityModel.xml",
  4335. "lib/netstandard2.0/IdentityModel.dll",
  4336. "lib/netstandard2.0/IdentityModel.pdb",
  4337. "lib/netstandard2.0/IdentityModel.xml"
  4338. ]
  4339. },
  4340. "IdentityModel.AspNetCore.OAuth2Introspection/4.0.1": {
  4341. "sha512": "ZNdMZMaj9fqR3j50vYsu+1U3QGd6n8+fqwf+a8mCTcmXGor+HgFDfdq0mM34bsmD6uEgAQup7sv2ZW5kR36dbA==",
  4342. "type": "package",
  4343. "path": "identitymodel.aspnetcore.oauth2introspection/4.0.1",
  4344. "files": [
  4345. ".nupkg.metadata",
  4346. ".signature.p7s",
  4347. "icon.jpg",
  4348. "identitymodel.aspnetcore.oauth2introspection.4.0.1.nupkg.sha512",
  4349. "identitymodel.aspnetcore.oauth2introspection.nuspec",
  4350. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.dll",
  4351. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.pdb",
  4352. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.xml"
  4353. ]
  4354. },
  4355. "IdentityServer4.AccessTokenValidation/3.0.1": {
  4356. "sha512": "qu/M6UyN4o9NVep7q545Ms7hYAnsQqSdLbN1Fjjrn4m35lyBfeQPSSNzDryAKHbodyWOQfHaOqKEyMEJQ5Rpgw==",
  4357. "type": "package",
  4358. "path": "identityserver4.accesstokenvalidation/3.0.1",
  4359. "files": [
  4360. ".nupkg.metadata",
  4361. ".signature.p7s",
  4362. "icon.jpg",
  4363. "identityserver4.accesstokenvalidation.3.0.1.nupkg.sha512",
  4364. "identityserver4.accesstokenvalidation.nuspec",
  4365. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.dll",
  4366. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.pdb",
  4367. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.xml"
  4368. ]
  4369. },
  4370. "JetBrains.Annotations/2022.1.0": {
  4371. "sha512": "ASfpoFJxiRsC9Xc4TWuPM41Zb/gl64xwfMOhnOZ3RnVWGYIZchjpWQV5zshJgoc/ZxVtgjaF7b577lURj7E6ig==",
  4372. "type": "package",
  4373. "path": "jetbrains.annotations/2022.1.0",
  4374. "files": [
  4375. ".nupkg.metadata",
  4376. ".signature.p7s",
  4377. "icon.png",
  4378. "jetbrains.annotations.2022.1.0.nupkg.sha512",
  4379. "jetbrains.annotations.nuspec",
  4380. "lib/net20/JetBrains.Annotations.dll",
  4381. "lib/net20/JetBrains.Annotations.xml",
  4382. "lib/netstandard1.0/JetBrains.Annotations.deps.json",
  4383. "lib/netstandard1.0/JetBrains.Annotations.dll",
  4384. "lib/netstandard1.0/JetBrains.Annotations.xml",
  4385. "lib/netstandard2.0/JetBrains.Annotations.deps.json",
  4386. "lib/netstandard2.0/JetBrains.Annotations.dll",
  4387. "lib/netstandard2.0/JetBrains.Annotations.xml",
  4388. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
  4389. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
  4390. ]
  4391. },
  4392. "K4os.Compression.LZ4/1.2.6": {
  4393. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  4394. "type": "package",
  4395. "path": "k4os.compression.lz4/1.2.6",
  4396. "files": [
  4397. ".nupkg.metadata",
  4398. ".signature.p7s",
  4399. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  4400. "k4os.compression.lz4.nuspec",
  4401. "lib/net45/K4os.Compression.LZ4.dll",
  4402. "lib/net45/K4os.Compression.LZ4.xml",
  4403. "lib/net46/K4os.Compression.LZ4.dll",
  4404. "lib/net46/K4os.Compression.LZ4.xml",
  4405. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  4406. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  4407. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4408. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4409. ]
  4410. },
  4411. "K4os.Compression.LZ4.Streams/1.2.6": {
  4412. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  4413. "type": "package",
  4414. "path": "k4os.compression.lz4.streams/1.2.6",
  4415. "files": [
  4416. ".nupkg.metadata",
  4417. ".signature.p7s",
  4418. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  4419. "k4os.compression.lz4.streams.nuspec",
  4420. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4421. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4422. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4423. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4424. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4425. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4426. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4427. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  4428. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  4429. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  4430. ]
  4431. },
  4432. "K4os.Hash.xxHash/1.0.6": {
  4433. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4434. "type": "package",
  4435. "path": "k4os.hash.xxhash/1.0.6",
  4436. "files": [
  4437. ".nupkg.metadata",
  4438. ".signature.p7s",
  4439. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4440. "k4os.hash.xxhash.nuspec",
  4441. "lib/net45/K4os.Hash.xxHash.dll",
  4442. "lib/net45/K4os.Hash.xxHash.xml",
  4443. "lib/net46/K4os.Hash.xxHash.dll",
  4444. "lib/net46/K4os.Hash.xxHash.xml",
  4445. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4446. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4447. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4448. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4449. ]
  4450. },
  4451. "Microsoft.AspNetCore.Authentication.JwtBearer/3.0.0": {
  4452. "sha512": "FrlxgBG6+FKlYr1IVxXNXSK7jpxiIYf036VNR1UgopKSIUNjaK2zvkhfVgFZVavagitQ/+UZ8Snnm6axyAVRNg==",
  4453. "type": "package",
  4454. "path": "microsoft.aspnetcore.authentication.jwtbearer/3.0.0",
  4455. "files": [
  4456. ".nupkg.metadata",
  4457. ".signature.p7s",
  4458. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  4459. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  4460. "microsoft.aspnetcore.authentication.jwtbearer.3.0.0.nupkg.sha512",
  4461. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  4462. ]
  4463. },
  4464. "Microsoft.AspNetCore.Authorization/6.0.5": {
  4465. "sha512": "T3J4Z4xK/mmJlMv/j7Cs1PZjRLh1fGsvHay3RNBNooP0qhHCk3UnU+WgBvcGApZFnEfeyOEGZBHZv5gb1RrDLA==",
  4466. "type": "package",
  4467. "path": "microsoft.aspnetcore.authorization/6.0.5",
  4468. "files": [
  4469. ".nupkg.metadata",
  4470. ".signature.p7s",
  4471. "Icon.png",
  4472. "THIRD-PARTY-NOTICES.TXT",
  4473. "lib/net461/Microsoft.AspNetCore.Authorization.dll",
  4474. "lib/net461/Microsoft.AspNetCore.Authorization.xml",
  4475. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll",
  4476. "lib/net6.0/Microsoft.AspNetCore.Authorization.xml",
  4477. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  4478. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  4479. "microsoft.aspnetcore.authorization.6.0.5.nupkg.sha512",
  4480. "microsoft.aspnetcore.authorization.nuspec"
  4481. ]
  4482. },
  4483. "Microsoft.AspNetCore.Cryptography.Internal/6.0.3": {
  4484. "sha512": "x90uNiEssA16NRSJ0nYIBJRC2GVVs2pmvHR88MySsolexasmc449PmWkSVHok+FyA1gLfF0oVA4LjkngkWdlGw==",
  4485. "type": "package",
  4486. "path": "microsoft.aspnetcore.cryptography.internal/6.0.3",
  4487. "files": [
  4488. ".nupkg.metadata",
  4489. ".signature.p7s",
  4490. "Icon.png",
  4491. "THIRD-PARTY-NOTICES.TXT",
  4492. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4493. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4494. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4495. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4496. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4497. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4498. "microsoft.aspnetcore.cryptography.internal.6.0.3.nupkg.sha512",
  4499. "microsoft.aspnetcore.cryptography.internal.nuspec"
  4500. ]
  4501. },
  4502. "Microsoft.AspNetCore.DataProtection/6.0.3": {
  4503. "sha512": "bPWpqSMFbhI7fGJ5DuBYdaMrulKxXdfGZYoZCgI3QxCoIn/nYKEQhX40KRXC/ZNucGJAxUGXzBSzz9TV1QTsXg==",
  4504. "type": "package",
  4505. "path": "microsoft.aspnetcore.dataprotection/6.0.3",
  4506. "files": [
  4507. ".nupkg.metadata",
  4508. ".signature.p7s",
  4509. "Icon.png",
  4510. "THIRD-PARTY-NOTICES.TXT",
  4511. "lib/net461/Microsoft.AspNetCore.DataProtection.dll",
  4512. "lib/net461/Microsoft.AspNetCore.DataProtection.xml",
  4513. "lib/net6.0/Microsoft.AspNetCore.DataProtection.dll",
  4514. "lib/net6.0/Microsoft.AspNetCore.DataProtection.xml",
  4515. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll",
  4516. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml",
  4517. "microsoft.aspnetcore.dataprotection.6.0.3.nupkg.sha512",
  4518. "microsoft.aspnetcore.dataprotection.nuspec"
  4519. ]
  4520. },
  4521. "Microsoft.AspNetCore.DataProtection.Abstractions/6.0.3": {
  4522. "sha512": "xCMiU/vTn4GH6IMJEcWiwC2HZTdmTGVZ7BlllAfkVUmKX5yI3EE+CcUgo3SCNMJo3jznYuaq5n82Kt0YsZKymg==",
  4523. "type": "package",
  4524. "path": "microsoft.aspnetcore.dataprotection.abstractions/6.0.3",
  4525. "files": [
  4526. ".nupkg.metadata",
  4527. ".signature.p7s",
  4528. "Icon.png",
  4529. "THIRD-PARTY-NOTICES.TXT",
  4530. "lib/net461/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4531. "lib/net461/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4532. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4533. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4534. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4535. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4536. "microsoft.aspnetcore.dataprotection.abstractions.6.0.3.nupkg.sha512",
  4537. "microsoft.aspnetcore.dataprotection.abstractions.nuspec"
  4538. ]
  4539. },
  4540. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis/6.0.3": {
  4541. "sha512": "eeG+W7SEtiv+NJs8PqOAKsmXorq/RfiJadTg53WNnND4mc3le/7sTpR/+mazOLjNGNgWfGSkOkh0zCq4y03FUA==",
  4542. "type": "package",
  4543. "path": "microsoft.aspnetcore.dataprotection.stackexchangeredis/6.0.3",
  4544. "files": [
  4545. ".nupkg.metadata",
  4546. ".signature.p7s",
  4547. "Icon.png",
  4548. "THIRD-PARTY-NOTICES.TXT",
  4549. "lib/net461/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll",
  4550. "lib/net461/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.xml",
  4551. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll",
  4552. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.xml",
  4553. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll",
  4554. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.xml",
  4555. "microsoft.aspnetcore.dataprotection.stackexchangeredis.6.0.3.nupkg.sha512",
  4556. "microsoft.aspnetcore.dataprotection.stackexchangeredis.nuspec"
  4557. ]
  4558. },
  4559. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  4560. "sha512": "3jG2xS+dx8DDCGV/F+STdPTg89lX3ao3dF/VEPvJaz3wzBIjuadipTtYNEXDIVuOPZwb6jdmhrX9jkzOIBm5cw==",
  4561. "type": "package",
  4562. "path": "microsoft.aspnetcore.http.features/5.0.17",
  4563. "files": [
  4564. ".nupkg.metadata",
  4565. ".signature.p7s",
  4566. "Icon.png",
  4567. "THIRD-PARTY-NOTICES.TXT",
  4568. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4569. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4570. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4571. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4572. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4573. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4574. "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512",
  4575. "microsoft.aspnetcore.http.features.nuspec"
  4576. ]
  4577. },
  4578. "Microsoft.AspNetCore.JsonPatch/6.0.5": {
  4579. "sha512": "kxQR7xCm9pQxnM3UZBp45Z470LFa1VA0qG/hFKhpE5hOJKgLOu4zmxakoVqswptAnHuD6ghd7XGb7hm1s1D0lw==",
  4580. "type": "package",
  4581. "path": "microsoft.aspnetcore.jsonpatch/6.0.5",
  4582. "files": [
  4583. ".nupkg.metadata",
  4584. ".signature.p7s",
  4585. "Icon.png",
  4586. "THIRD-PARTY-NOTICES.TXT",
  4587. "lib/net461/Microsoft.AspNetCore.JsonPatch.dll",
  4588. "lib/net461/Microsoft.AspNetCore.JsonPatch.xml",
  4589. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll",
  4590. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.xml",
  4591. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  4592. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  4593. "microsoft.aspnetcore.jsonpatch.6.0.5.nupkg.sha512",
  4594. "microsoft.aspnetcore.jsonpatch.nuspec"
  4595. ]
  4596. },
  4597. "Microsoft.AspNetCore.Metadata/6.0.5": {
  4598. "sha512": "4VRJoJa/EbncxQTAzM6abqQUUbNrohg5MC1glZ1R1lzzXJM2CdXiRKvcpAfn3luAwPzkwJtHejuLgI6Osn0aDA==",
  4599. "type": "package",
  4600. "path": "microsoft.aspnetcore.metadata/6.0.5",
  4601. "files": [
  4602. ".nupkg.metadata",
  4603. ".signature.p7s",
  4604. "Icon.png",
  4605. "THIRD-PARTY-NOTICES.TXT",
  4606. "lib/net461/Microsoft.AspNetCore.Metadata.dll",
  4607. "lib/net461/Microsoft.AspNetCore.Metadata.xml",
  4608. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll",
  4609. "lib/net6.0/Microsoft.AspNetCore.Metadata.xml",
  4610. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
  4611. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
  4612. "microsoft.aspnetcore.metadata.6.0.5.nupkg.sha512",
  4613. "microsoft.aspnetcore.metadata.nuspec"
  4614. ]
  4615. },
  4616. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.5": {
  4617. "sha512": "ord2AixR+h2xmv7LPAtifz5k4MHV0BVtzyp2UyB1+gILT+xw4usAvTWo0SX1ruBk3GK4kyhHa9cgQt0yafR2dQ==",
  4618. "type": "package",
  4619. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.5",
  4620. "files": [
  4621. ".nupkg.metadata",
  4622. ".signature.p7s",
  4623. "Icon.png",
  4624. "THIRD-PARTY-NOTICES.TXT",
  4625. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  4626. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  4627. "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.5.nupkg.sha512",
  4628. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  4629. ]
  4630. },
  4631. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.5": {
  4632. "sha512": "d+eStMVaYtT43O0B7WxO24RSixQQipiEddOHP6juS7yiDT5mPcvGwXdZ09yvfyqbBbD0+h9dRwsHQOm3jfVgCg==",
  4633. "type": "package",
  4634. "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.5",
  4635. "files": [
  4636. ".nupkg.metadata",
  4637. ".signature.p7s",
  4638. "Icon.png",
  4639. "THIRD-PARTY-NOTICES.TXT",
  4640. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  4641. "microsoft.aspnetcore.mvc.razor.extensions.6.0.5.nupkg.sha512",
  4642. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  4643. ]
  4644. },
  4645. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/6.0.5": {
  4646. "sha512": "ZojV4R0naJqftc3d9Fjb6kNqrPZxhCVa4yps0ZIRhfRgz+1fy8uIROrixNezduKDGo1hMQErRMDGKOrzB18XQA==",
  4647. "type": "package",
  4648. "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/6.0.5",
  4649. "files": [
  4650. ".nupkg.metadata",
  4651. ".signature.p7s",
  4652. "Icon.png",
  4653. "THIRD-PARTY-NOTICES.TXT",
  4654. "build/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  4655. "buildTransitive/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  4656. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll",
  4657. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml",
  4658. "microsoft.aspnetcore.mvc.razor.runtimecompilation.6.0.5.nupkg.sha512",
  4659. "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec"
  4660. ]
  4661. },
  4662. "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
  4663. "sha512": "mN9IARvNpHMBD2/oGmp5Bxp1Dg45Hfcp+LWaAyTtL2HisWLMOIcf0Ox1qW9IvCvdbHM+2A9dWEInhiqBsNxsJA==",
  4664. "type": "package",
  4665. "path": "microsoft.aspnetcore.mvc.versioning/5.0.0",
  4666. "files": [
  4667. ".nupkg.metadata",
  4668. ".signature.p7s",
  4669. "LICENSE.txt",
  4670. "icon.png",
  4671. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll",
  4672. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.pdb",
  4673. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.xml",
  4674. "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll",
  4675. "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.pdb",
  4676. "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.xml",
  4677. "microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512",
  4678. "microsoft.aspnetcore.mvc.versioning.nuspec"
  4679. ]
  4680. },
  4681. "Microsoft.AspNetCore.Razor.Language/6.0.5": {
  4682. "sha512": "0U+jIqo4hSUFOf/GiYtQ62aCM2SK2E3LJH+hpmLsSD8hl++0LOSKH5AIQO6KmANfmF04jEdvGPD0B0hBTM3zxA==",
  4683. "type": "package",
  4684. "path": "microsoft.aspnetcore.razor.language/6.0.5",
  4685. "files": [
  4686. ".nupkg.metadata",
  4687. ".signature.p7s",
  4688. "Icon.png",
  4689. "THIRD-PARTY-NOTICES.TXT",
  4690. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  4691. "microsoft.aspnetcore.razor.language.6.0.5.nupkg.sha512",
  4692. "microsoft.aspnetcore.razor.language.nuspec"
  4693. ]
  4694. },
  4695. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  4696. "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
  4697. "type": "package",
  4698. "path": "microsoft.bcl.asyncinterfaces/6.0.0",
  4699. "files": [
  4700. ".nupkg.metadata",
  4701. ".signature.p7s",
  4702. "Icon.png",
  4703. "LICENSE.TXT",
  4704. "THIRD-PARTY-NOTICES.TXT",
  4705. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  4706. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  4707. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4708. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  4709. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4710. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  4711. "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
  4712. "microsoft.bcl.asyncinterfaces.nuspec",
  4713. "useSharedDesignerContext.txt"
  4714. ]
  4715. },
  4716. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  4717. "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==",
  4718. "type": "package",
  4719. "path": "microsoft.codeanalysis.analyzers/3.3.2",
  4720. "hasTools": true,
  4721. "files": [
  4722. ".nupkg.metadata",
  4723. ".signature.p7s",
  4724. "EULA.rtf",
  4725. "ThirdPartyNotices.rtf",
  4726. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4727. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4728. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4729. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4730. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4731. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4732. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4733. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4734. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4735. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4736. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4737. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4738. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4739. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4740. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4741. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4742. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4743. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4744. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4745. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4746. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4747. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4748. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4749. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4750. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4751. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4752. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4753. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4754. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4755. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4756. "build/Microsoft.CodeAnalysis.Analyzers.props",
  4757. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  4758. "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig",
  4759. "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig",
  4760. "build/config/AnalysisLevel_2_9_8_Default.editorconfig",
  4761. "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig",
  4762. "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig",
  4763. "build/config/AnalysisLevel_3_3_Default.editorconfig",
  4764. "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig",
  4765. "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig",
  4766. "build/config/AnalysisLevel_3_Default.editorconfig",
  4767. "documentation/Analyzer Configuration.md",
  4768. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  4769. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  4770. "editorconfig/AllRulesDefault/.editorconfig",
  4771. "editorconfig/AllRulesDisabled/.editorconfig",
  4772. "editorconfig/AllRulesEnabled/.editorconfig",
  4773. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  4774. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  4775. "editorconfig/DataflowRulesDefault/.editorconfig",
  4776. "editorconfig/DataflowRulesEnabled/.editorconfig",
  4777. "editorconfig/LibraryRulesDefault/.editorconfig",
  4778. "editorconfig/LibraryRulesEnabled/.editorconfig",
  4779. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  4780. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  4781. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  4782. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  4783. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  4784. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  4785. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  4786. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  4787. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  4788. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  4789. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  4790. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  4791. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  4792. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  4793. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  4794. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  4795. "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512",
  4796. "microsoft.codeanalysis.analyzers.nuspec",
  4797. "rulesets/AllRulesDefault.ruleset",
  4798. "rulesets/AllRulesDisabled.ruleset",
  4799. "rulesets/AllRulesEnabled.ruleset",
  4800. "rulesets/CorrectnessRulesDefault.ruleset",
  4801. "rulesets/CorrectnessRulesEnabled.ruleset",
  4802. "rulesets/DataflowRulesDefault.ruleset",
  4803. "rulesets/DataflowRulesEnabled.ruleset",
  4804. "rulesets/LibraryRulesDefault.ruleset",
  4805. "rulesets/LibraryRulesEnabled.ruleset",
  4806. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  4807. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  4808. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  4809. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  4810. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  4811. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  4812. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  4813. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  4814. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  4815. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  4816. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  4817. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  4818. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  4819. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  4820. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  4821. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  4822. "tools/install.ps1",
  4823. "tools/uninstall.ps1"
  4824. ]
  4825. },
  4826. "Microsoft.CodeAnalysis.Common/4.0.0": {
  4827. "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==",
  4828. "type": "package",
  4829. "path": "microsoft.codeanalysis.common/4.0.0",
  4830. "files": [
  4831. ".nupkg.metadata",
  4832. ".signature.p7s",
  4833. "Icon.png",
  4834. "ThirdPartyNotices.rtf",
  4835. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  4836. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  4837. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  4838. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  4839. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  4840. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  4841. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  4842. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  4843. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  4844. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  4845. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  4846. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4847. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  4848. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  4849. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4850. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4851. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  4852. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  4853. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  4854. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4855. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  4856. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  4857. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4858. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  4859. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4860. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4861. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4862. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4863. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4864. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4865. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4866. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4867. "microsoft.codeanalysis.common.4.0.0.nupkg.sha512",
  4868. "microsoft.codeanalysis.common.nuspec"
  4869. ]
  4870. },
  4871. "Microsoft.CodeAnalysis.CSharp/4.0.0": {
  4872. "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==",
  4873. "type": "package",
  4874. "path": "microsoft.codeanalysis.csharp/4.0.0",
  4875. "files": [
  4876. ".nupkg.metadata",
  4877. ".signature.p7s",
  4878. "Icon.png",
  4879. "ThirdPartyNotices.rtf",
  4880. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  4881. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  4882. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  4883. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4884. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4885. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4886. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4887. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4888. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4889. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4890. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4891. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4892. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4893. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4894. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4895. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4896. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  4897. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4898. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  4899. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4900. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4901. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4902. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4903. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4904. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4905. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4906. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4907. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4908. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4909. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4910. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4911. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4912. "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512",
  4913. "microsoft.codeanalysis.csharp.nuspec"
  4914. ]
  4915. },
  4916. "Microsoft.CodeAnalysis.Razor/6.0.5": {
  4917. "sha512": "hASP/Ift9GVUKWqaC71XqCTYxXGSTuj8Lt+0mI6JBZbyDyNwHLxbNgpcWgddusgwqc6RJnrEkeZXTwFVN1CwOQ==",
  4918. "type": "package",
  4919. "path": "microsoft.codeanalysis.razor/6.0.5",
  4920. "files": [
  4921. ".nupkg.metadata",
  4922. ".signature.p7s",
  4923. "Icon.png",
  4924. "THIRD-PARTY-NOTICES.TXT",
  4925. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  4926. "microsoft.codeanalysis.razor.6.0.5.nupkg.sha512",
  4927. "microsoft.codeanalysis.razor.nuspec"
  4928. ]
  4929. },
  4930. "Microsoft.CSharp/4.7.0": {
  4931. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4932. "type": "package",
  4933. "path": "microsoft.csharp/4.7.0",
  4934. "files": [
  4935. ".nupkg.metadata",
  4936. ".signature.p7s",
  4937. "LICENSE.TXT",
  4938. "THIRD-PARTY-NOTICES.TXT",
  4939. "lib/MonoAndroid10/_._",
  4940. "lib/MonoTouch10/_._",
  4941. "lib/net45/_._",
  4942. "lib/netcore50/Microsoft.CSharp.dll",
  4943. "lib/netcoreapp2.0/_._",
  4944. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4945. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4946. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4947. "lib/portable-net45+win8+wp8+wpa81/_._",
  4948. "lib/uap10.0.16299/_._",
  4949. "lib/win8/_._",
  4950. "lib/wp80/_._",
  4951. "lib/wpa81/_._",
  4952. "lib/xamarinios10/_._",
  4953. "lib/xamarinmac20/_._",
  4954. "lib/xamarintvos10/_._",
  4955. "lib/xamarinwatchos10/_._",
  4956. "microsoft.csharp.4.7.0.nupkg.sha512",
  4957. "microsoft.csharp.nuspec",
  4958. "ref/MonoAndroid10/_._",
  4959. "ref/MonoTouch10/_._",
  4960. "ref/net45/_._",
  4961. "ref/netcore50/Microsoft.CSharp.dll",
  4962. "ref/netcore50/Microsoft.CSharp.xml",
  4963. "ref/netcore50/de/Microsoft.CSharp.xml",
  4964. "ref/netcore50/es/Microsoft.CSharp.xml",
  4965. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4966. "ref/netcore50/it/Microsoft.CSharp.xml",
  4967. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4968. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4969. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4970. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4971. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4972. "ref/netcoreapp2.0/_._",
  4973. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4974. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4975. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4976. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4977. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4978. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4979. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4980. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4981. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4982. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4983. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4984. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4985. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4986. "ref/portable-net45+win8+wp8+wpa81/_._",
  4987. "ref/uap10.0.16299/_._",
  4988. "ref/win8/_._",
  4989. "ref/wp80/_._",
  4990. "ref/wpa81/_._",
  4991. "ref/xamarinios10/_._",
  4992. "ref/xamarinmac20/_._",
  4993. "ref/xamarintvos10/_._",
  4994. "ref/xamarinwatchos10/_._",
  4995. "useSharedDesignerContext.txt",
  4996. "version.txt"
  4997. ]
  4998. },
  4999. "Microsoft.Data.SqlClient/2.1.4": {
  5000. "sha512": "cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
  5001. "type": "package",
  5002. "path": "microsoft.data.sqlclient/2.1.4",
  5003. "files": [
  5004. ".nupkg.metadata",
  5005. ".signature.p7s",
  5006. "dotnet.png",
  5007. "lib/net46/Microsoft.Data.SqlClient.dll",
  5008. "lib/net46/Microsoft.Data.SqlClient.pdb",
  5009. "lib/net46/Microsoft.Data.SqlClient.xml",
  5010. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  5011. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  5012. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  5013. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  5014. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  5015. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  5016. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  5017. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  5018. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  5019. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  5020. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  5021. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  5022. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  5023. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  5024. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  5025. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  5026. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5027. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5028. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  5029. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5030. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5031. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  5032. "microsoft.data.sqlclient.2.1.4.nupkg.sha512",
  5033. "microsoft.data.sqlclient.nuspec",
  5034. "ref/net46/Microsoft.Data.SqlClient.dll",
  5035. "ref/net46/Microsoft.Data.SqlClient.pdb",
  5036. "ref/net46/Microsoft.Data.SqlClient.xml",
  5037. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  5038. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  5039. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  5040. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  5041. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  5042. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  5043. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5044. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5045. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  5046. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5047. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5048. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  5049. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  5050. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  5051. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  5052. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  5053. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5054. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5055. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5056. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5057. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  5058. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  5059. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  5060. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  5061. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  5062. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  5063. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5064. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5065. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5066. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  5067. ]
  5068. },
  5069. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  5070. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  5071. "type": "package",
  5072. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  5073. "files": [
  5074. ".nupkg.metadata",
  5075. ".signature.p7s",
  5076. "LICENSE.txt",
  5077. "dotnet.png",
  5078. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  5079. "microsoft.data.sqlclient.sni.runtime.nuspec",
  5080. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  5081. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  5082. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  5083. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  5084. ]
  5085. },
  5086. "Microsoft.EntityFrameworkCore/6.0.5": {
  5087. "sha512": "hP5J3EvpVdZmCn1D3ovedphvZrIn3OXZaBZfEnCkSCqqbqAu6xzwbNqwRkik0y4R6zOOf4eLh1riwjy4eAUlZA==",
  5088. "type": "package",
  5089. "path": "microsoft.entityframeworkcore/6.0.5",
  5090. "files": [
  5091. ".nupkg.metadata",
  5092. ".signature.p7s",
  5093. "Icon.png",
  5094. "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
  5095. "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
  5096. "microsoft.entityframeworkcore.6.0.5.nupkg.sha512",
  5097. "microsoft.entityframeworkcore.nuspec"
  5098. ]
  5099. },
  5100. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  5101. "sha512": "Q3/fKW6XCTfnDk4fYP2BJZi84cD2SuCPkP3A3QqxvCQcXbX90bfSLzVIsoMXzigHGJgZUJ+Un7QodT5Nvk0+Eg==",
  5102. "type": "package",
  5103. "path": "microsoft.entityframeworkcore.abstractions/6.0.5",
  5104. "files": [
  5105. ".nupkg.metadata",
  5106. ".signature.p7s",
  5107. "Icon.png",
  5108. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  5109. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  5110. "microsoft.entityframeworkcore.abstractions.6.0.5.nupkg.sha512",
  5111. "microsoft.entityframeworkcore.abstractions.nuspec"
  5112. ]
  5113. },
  5114. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  5115. "sha512": "QUeDIhs+O+MoDEc3k60mNyVDbwyDURCqZQlZoKShuZUcSfXSrDMbHKuFSxBIDNQBt092qSjfnwf7w0Ua/IB3Zw==",
  5116. "type": "package",
  5117. "path": "microsoft.entityframeworkcore.analyzers/6.0.5",
  5118. "files": [
  5119. ".nupkg.metadata",
  5120. ".signature.p7s",
  5121. "Icon.png",
  5122. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  5123. "lib/netstandard2.0/_._",
  5124. "microsoft.entityframeworkcore.analyzers.6.0.5.nupkg.sha512",
  5125. "microsoft.entityframeworkcore.analyzers.nuspec"
  5126. ]
  5127. },
  5128. "Microsoft.EntityFrameworkCore.Design/6.0.5": {
  5129. "sha512": "zNjMWJ6MJ/Qm7S6wFBqVgn7DEpilbDMy0xgA7c4Y1yY9/LoaC2pWwWO4ePaYoPCZpLx/eTViWEr5ZXta/vK//Q==",
  5130. "type": "package",
  5131. "path": "microsoft.entityframeworkcore.design/6.0.5",
  5132. "files": [
  5133. ".nupkg.metadata",
  5134. ".signature.p7s",
  5135. "Icon.png",
  5136. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
  5137. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
  5138. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
  5139. "microsoft.entityframeworkcore.design.6.0.5.nupkg.sha512",
  5140. "microsoft.entityframeworkcore.design.nuspec"
  5141. ]
  5142. },
  5143. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  5144. "sha512": "vhAQizlAgvPfurkh9XysNaFc/g3WPXtSka3Y1rXuQdnT//p16CDKt9lO9h+rYmooD+cA7TijSxwqck4GApDT/Q==",
  5145. "type": "package",
  5146. "path": "microsoft.entityframeworkcore.relational/6.0.5",
  5147. "files": [
  5148. ".nupkg.metadata",
  5149. ".signature.p7s",
  5150. "Icon.png",
  5151. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
  5152. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
  5153. "microsoft.entityframeworkcore.relational.6.0.5.nupkg.sha512",
  5154. "microsoft.entityframeworkcore.relational.nuspec"
  5155. ]
  5156. },
  5157. "Microsoft.EntityFrameworkCore.SqlServer/6.0.5": {
  5158. "sha512": "fBBG1AvrqPSvTEWyg9W18F/obiV7Soi/RItwBt48kjte1heRaogCsKj8KBnJQACM/8L+NAhyKp3BH12nN7+yDA==",
  5159. "type": "package",
  5160. "path": "microsoft.entityframeworkcore.sqlserver/6.0.5",
  5161. "files": [
  5162. ".nupkg.metadata",
  5163. ".signature.p7s",
  5164. "Icon.png",
  5165. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  5166. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  5167. "microsoft.entityframeworkcore.sqlserver.6.0.5.nupkg.sha512",
  5168. "microsoft.entityframeworkcore.sqlserver.nuspec"
  5169. ]
  5170. },
  5171. "Microsoft.EntityFrameworkCore.Tools/6.0.5": {
  5172. "sha512": "aeCzVNLmDl9IfB19WAjrlKcG61Cl4/ZV/9ubifmifKEps+kvMkKIcams5j+8q6dtx9/UL2x3tbOz2BS3eU0sXQ==",
  5173. "type": "package",
  5174. "path": "microsoft.entityframeworkcore.tools/6.0.5",
  5175. "hasTools": true,
  5176. "files": [
  5177. ".nupkg.metadata",
  5178. ".signature.p7s",
  5179. "Icon.png",
  5180. "lib/net6.0/_._",
  5181. "microsoft.entityframeworkcore.tools.6.0.5.nupkg.sha512",
  5182. "microsoft.entityframeworkcore.tools.nuspec",
  5183. "tools/EntityFrameworkCore.PS2.psd1",
  5184. "tools/EntityFrameworkCore.PS2.psm1",
  5185. "tools/EntityFrameworkCore.psd1",
  5186. "tools/EntityFrameworkCore.psm1",
  5187. "tools/about_EntityFrameworkCore.help.txt",
  5188. "tools/init.ps1",
  5189. "tools/net461/any/ef.exe",
  5190. "tools/net461/win-x86/ef.exe",
  5191. "tools/netcoreapp2.0/any/ef.dll",
  5192. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  5193. ]
  5194. },
  5195. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  5196. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  5197. "type": "package",
  5198. "path": "microsoft.extensions.apidescription.server/3.0.0",
  5199. "hasTools": true,
  5200. "files": [
  5201. ".nupkg.metadata",
  5202. ".signature.p7s",
  5203. "build/Microsoft.Extensions.ApiDescription.Server.props",
  5204. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  5205. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  5206. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  5207. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  5208. "microsoft.extensions.apidescription.server.nuspec",
  5209. "tools/Newtonsoft.Json.dll",
  5210. "tools/dotnet-getdocument.deps.json",
  5211. "tools/dotnet-getdocument.dll",
  5212. "tools/dotnet-getdocument.runtimeconfig.json",
  5213. "tools/net461-x86/GetDocument.Insider.exe",
  5214. "tools/net461-x86/GetDocument.Insider.exe.config",
  5215. "tools/net461/GetDocument.Insider.exe",
  5216. "tools/net461/GetDocument.Insider.exe.config",
  5217. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  5218. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  5219. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  5220. ]
  5221. },
  5222. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  5223. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  5224. "type": "package",
  5225. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  5226. "files": [
  5227. ".nupkg.metadata",
  5228. ".signature.p7s",
  5229. "Icon.png",
  5230. "LICENSE.TXT",
  5231. "THIRD-PARTY-NOTICES.TXT",
  5232. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  5233. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  5234. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5235. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5236. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  5237. "microsoft.extensions.caching.abstractions.nuspec",
  5238. "useSharedDesignerContext.txt"
  5239. ]
  5240. },
  5241. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  5242. "sha512": "B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
  5243. "type": "package",
  5244. "path": "microsoft.extensions.caching.memory/6.0.1",
  5245. "files": [
  5246. ".nupkg.metadata",
  5247. ".signature.p7s",
  5248. "Icon.png",
  5249. "LICENSE.TXT",
  5250. "THIRD-PARTY-NOTICES.TXT",
  5251. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  5252. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  5253. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  5254. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  5255. "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
  5256. "microsoft.extensions.caching.memory.nuspec",
  5257. "useSharedDesignerContext.txt"
  5258. ]
  5259. },
  5260. "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.3": {
  5261. "sha512": "kqMJ+kLoSMk2EJe5u+4QQSv7m9cCllcJ+4bjvwfR4cjro3rfAXHIsah/87pedAvdUFk9iMYLl8RYf/uSUEkH2g==",
  5262. "type": "package",
  5263. "path": "microsoft.extensions.caching.stackexchangeredis/6.0.3",
  5264. "files": [
  5265. ".nupkg.metadata",
  5266. ".signature.p7s",
  5267. "Icon.png",
  5268. "THIRD-PARTY-NOTICES.TXT",
  5269. "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.dll",
  5270. "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.xml",
  5271. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll",
  5272. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml",
  5273. "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll",
  5274. "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml",
  5275. "microsoft.extensions.caching.stackexchangeredis.6.0.3.nupkg.sha512",
  5276. "microsoft.extensions.caching.stackexchangeredis.nuspec"
  5277. ]
  5278. },
  5279. "Microsoft.Extensions.Configuration/6.0.0": {
  5280. "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==",
  5281. "type": "package",
  5282. "path": "microsoft.extensions.configuration/6.0.0",
  5283. "files": [
  5284. ".nupkg.metadata",
  5285. ".signature.p7s",
  5286. "Icon.png",
  5287. "LICENSE.TXT",
  5288. "THIRD-PARTY-NOTICES.TXT",
  5289. "lib/net461/Microsoft.Extensions.Configuration.dll",
  5290. "lib/net461/Microsoft.Extensions.Configuration.xml",
  5291. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  5292. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  5293. "microsoft.extensions.configuration.6.0.0.nupkg.sha512",
  5294. "microsoft.extensions.configuration.nuspec",
  5295. "useSharedDesignerContext.txt"
  5296. ]
  5297. },
  5298. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  5299. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  5300. "type": "package",
  5301. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  5302. "files": [
  5303. ".nupkg.metadata",
  5304. ".signature.p7s",
  5305. "Icon.png",
  5306. "LICENSE.TXT",
  5307. "THIRD-PARTY-NOTICES.TXT",
  5308. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  5309. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  5310. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5311. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5312. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  5313. "microsoft.extensions.configuration.abstractions.nuspec",
  5314. "useSharedDesignerContext.txt"
  5315. ]
  5316. },
  5317. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  5318. "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==",
  5319. "type": "package",
  5320. "path": "microsoft.extensions.configuration.binder/6.0.0",
  5321. "files": [
  5322. ".nupkg.metadata",
  5323. ".signature.p7s",
  5324. "Icon.png",
  5325. "LICENSE.TXT",
  5326. "THIRD-PARTY-NOTICES.TXT",
  5327. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  5328. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  5329. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  5330. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  5331. "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
  5332. "microsoft.extensions.configuration.binder.nuspec",
  5333. "useSharedDesignerContext.txt"
  5334. ]
  5335. },
  5336. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  5337. "sha512": "3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==",
  5338. "type": "package",
  5339. "path": "microsoft.extensions.configuration.commandline/6.0.0",
  5340. "files": [
  5341. ".nupkg.metadata",
  5342. ".signature.p7s",
  5343. "Icon.png",
  5344. "LICENSE.TXT",
  5345. "THIRD-PARTY-NOTICES.TXT",
  5346. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  5347. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  5348. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  5349. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  5350. "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512",
  5351. "microsoft.extensions.configuration.commandline.nuspec",
  5352. "useSharedDesignerContext.txt"
  5353. ]
  5354. },
  5355. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  5356. "sha512": "pnyXV1LFOsYjGveuC07xp0YHIyGq7jRq5Ncb5zrrIieMLWVwgMyYxcOH0jTnBedDT4Gh1QinSqsjqzcieHk1og==",
  5357. "type": "package",
  5358. "path": "microsoft.extensions.configuration.environmentvariables/6.0.1",
  5359. "files": [
  5360. ".nupkg.metadata",
  5361. ".signature.p7s",
  5362. "Icon.png",
  5363. "LICENSE.TXT",
  5364. "THIRD-PARTY-NOTICES.TXT",
  5365. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  5366. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  5367. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  5368. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  5369. "microsoft.extensions.configuration.environmentvariables.6.0.1.nupkg.sha512",
  5370. "microsoft.extensions.configuration.environmentvariables.nuspec",
  5371. "useSharedDesignerContext.txt"
  5372. ]
  5373. },
  5374. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  5375. "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==",
  5376. "type": "package",
  5377. "path": "microsoft.extensions.configuration.fileextensions/6.0.0",
  5378. "files": [
  5379. ".nupkg.metadata",
  5380. ".signature.p7s",
  5381. "Icon.png",
  5382. "LICENSE.TXT",
  5383. "THIRD-PARTY-NOTICES.TXT",
  5384. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  5385. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  5386. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  5387. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  5388. "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512",
  5389. "microsoft.extensions.configuration.fileextensions.nuspec",
  5390. "useSharedDesignerContext.txt"
  5391. ]
  5392. },
  5393. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  5394. "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==",
  5395. "type": "package",
  5396. "path": "microsoft.extensions.configuration.json/6.0.0",
  5397. "files": [
  5398. ".nupkg.metadata",
  5399. ".signature.p7s",
  5400. "Icon.png",
  5401. "LICENSE.TXT",
  5402. "THIRD-PARTY-NOTICES.TXT",
  5403. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  5404. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  5405. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  5406. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  5407. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  5408. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  5409. "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512",
  5410. "microsoft.extensions.configuration.json.nuspec",
  5411. "useSharedDesignerContext.txt"
  5412. ]
  5413. },
  5414. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  5415. "sha512": "Fy8yr4V6obi7ZxvKYI1i85jqtwMq8tqyxQVZpRSkgeA8enqy/KvBIMdcuNdznlxQMZa72mvbHqb7vbg4Pyx95w==",
  5416. "type": "package",
  5417. "path": "microsoft.extensions.configuration.usersecrets/6.0.1",
  5418. "files": [
  5419. ".nupkg.metadata",
  5420. ".signature.p7s",
  5421. "Icon.png",
  5422. "LICENSE.TXT",
  5423. "THIRD-PARTY-NOTICES.TXT",
  5424. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  5425. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  5426. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  5427. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  5428. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  5429. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  5430. "microsoft.extensions.configuration.usersecrets.6.0.1.nupkg.sha512",
  5431. "microsoft.extensions.configuration.usersecrets.nuspec",
  5432. "useSharedDesignerContext.txt"
  5433. ]
  5434. },
  5435. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  5436. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  5437. "type": "package",
  5438. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  5439. "files": [
  5440. ".nupkg.metadata",
  5441. ".signature.p7s",
  5442. "Icon.png",
  5443. "LICENSE.TXT",
  5444. "THIRD-PARTY-NOTICES.TXT",
  5445. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  5446. "buildTransitive/netcoreapp3.1/_._",
  5447. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  5448. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  5449. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  5450. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  5451. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  5452. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  5453. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  5454. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  5455. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  5456. "microsoft.extensions.dependencyinjection.nuspec",
  5457. "useSharedDesignerContext.txt"
  5458. ]
  5459. },
  5460. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  5461. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  5462. "type": "package",
  5463. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  5464. "files": [
  5465. ".nupkg.metadata",
  5466. ".signature.p7s",
  5467. "Icon.png",
  5468. "LICENSE.TXT",
  5469. "THIRD-PARTY-NOTICES.TXT",
  5470. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  5471. "buildTransitive/netcoreapp3.1/_._",
  5472. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5473. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5474. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5475. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5476. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5477. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5478. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5479. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5480. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  5481. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  5482. "useSharedDesignerContext.txt"
  5483. ]
  5484. },
  5485. "Microsoft.Extensions.DependencyModel/6.0.0": {
  5486. "sha512": "TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==",
  5487. "type": "package",
  5488. "path": "microsoft.extensions.dependencymodel/6.0.0",
  5489. "files": [
  5490. ".nupkg.metadata",
  5491. ".signature.p7s",
  5492. "Icon.png",
  5493. "LICENSE.TXT",
  5494. "THIRD-PARTY-NOTICES.TXT",
  5495. "lib/net461/Microsoft.Extensions.DependencyModel.dll",
  5496. "lib/net461/Microsoft.Extensions.DependencyModel.xml",
  5497. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  5498. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  5499. "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512",
  5500. "microsoft.extensions.dependencymodel.nuspec",
  5501. "useSharedDesignerContext.txt"
  5502. ]
  5503. },
  5504. "Microsoft.Extensions.Diagnostics.HealthChecks/6.0.0": {
  5505. "sha512": "ktOGFY2uJ6QqZbLgLZgYg6qWuOnwKEIYbpgGDR/1QY8E+8NhnL75dJZ+WDl88h7Q4JkIFeTkFBUGF5QmNcfUEg==",
  5506. "type": "package",
  5507. "path": "microsoft.extensions.diagnostics.healthchecks/6.0.0",
  5508. "files": [
  5509. ".nupkg.metadata",
  5510. ".signature.p7s",
  5511. "Icon.png",
  5512. "THIRD-PARTY-NOTICES.TXT",
  5513. "lib/net461/Microsoft.Extensions.Diagnostics.HealthChecks.dll",
  5514. "lib/net461/Microsoft.Extensions.Diagnostics.HealthChecks.xml",
  5515. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll",
  5516. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.xml",
  5517. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll",
  5518. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.xml",
  5519. "microsoft.extensions.diagnostics.healthchecks.6.0.0.nupkg.sha512",
  5520. "microsoft.extensions.diagnostics.healthchecks.nuspec"
  5521. ]
  5522. },
  5523. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/6.0.0": {
  5524. "sha512": "6C9uhsA7GwT1qlXF+1JgOktilrWBSMLNVcwIjg63UvFaDVizg8fYTv826MC58dznvvT9yG31gGwsN1cFfg+yZQ==",
  5525. "type": "package",
  5526. "path": "microsoft.extensions.diagnostics.healthchecks.abstractions/6.0.0",
  5527. "files": [
  5528. ".nupkg.metadata",
  5529. ".signature.p7s",
  5530. "Icon.png",
  5531. "THIRD-PARTY-NOTICES.TXT",
  5532. "lib/net461/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll",
  5533. "lib/net461/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml",
  5534. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll",
  5535. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml",
  5536. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll",
  5537. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml",
  5538. "microsoft.extensions.diagnostics.healthchecks.abstractions.6.0.0.nupkg.sha512",
  5539. "microsoft.extensions.diagnostics.healthchecks.abstractions.nuspec"
  5540. ]
  5541. },
  5542. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  5543. "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
  5544. "type": "package",
  5545. "path": "microsoft.extensions.fileproviders.abstractions/6.0.0",
  5546. "files": [
  5547. ".nupkg.metadata",
  5548. ".signature.p7s",
  5549. "Icon.png",
  5550. "LICENSE.TXT",
  5551. "THIRD-PARTY-NOTICES.TXT",
  5552. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  5553. "buildTransitive/netcoreapp3.1/_._",
  5554. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5555. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5556. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5557. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5558. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5559. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5560. "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512",
  5561. "microsoft.extensions.fileproviders.abstractions.nuspec",
  5562. "useSharedDesignerContext.txt"
  5563. ]
  5564. },
  5565. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  5566. "sha512": "Cx8K9xnN95wbvKa/KTyDBVBaNUsS9L8IkKt2dKMkcyj0wOBe+xVMwyNR4ySmpxBK3b0PuP7tW6UtroXIlRC3uQ==",
  5567. "type": "package",
  5568. "path": "microsoft.extensions.fileproviders.composite/6.0.0",
  5569. "files": [
  5570. ".nupkg.metadata",
  5571. ".signature.p7s",
  5572. "Icon.png",
  5573. "LICENSE.TXT",
  5574. "THIRD-PARTY-NOTICES.TXT",
  5575. "lib/net461/Microsoft.Extensions.FileProviders.Composite.dll",
  5576. "lib/net461/Microsoft.Extensions.FileProviders.Composite.xml",
  5577. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  5578. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  5579. "microsoft.extensions.fileproviders.composite.6.0.0.nupkg.sha512",
  5580. "microsoft.extensions.fileproviders.composite.nuspec",
  5581. "useSharedDesignerContext.txt"
  5582. ]
  5583. },
  5584. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  5585. "sha512": "z7M3GpcYfKw1FYUGcurTbv/v0ZZ95LSMOZOjOtYLUztzUIUZZ61H5NFjLXjeQ8G72zxrVrt+jubb4MZGvm0EQw==",
  5586. "type": "package",
  5587. "path": "microsoft.extensions.fileproviders.embedded/6.0.5",
  5588. "files": [
  5589. ".nupkg.metadata",
  5590. ".signature.p7s",
  5591. "Icon.png",
  5592. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props",
  5593. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets",
  5594. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props",
  5595. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets",
  5596. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.dll",
  5597. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.xml",
  5598. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5599. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5600. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5601. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5602. "microsoft.extensions.fileproviders.embedded.6.0.5.nupkg.sha512",
  5603. "microsoft.extensions.fileproviders.embedded.nuspec",
  5604. "tasks/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll"
  5605. ]
  5606. },
  5607. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  5608. "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==",
  5609. "type": "package",
  5610. "path": "microsoft.extensions.fileproviders.physical/6.0.0",
  5611. "files": [
  5612. ".nupkg.metadata",
  5613. ".signature.p7s",
  5614. "Icon.png",
  5615. "LICENSE.TXT",
  5616. "THIRD-PARTY-NOTICES.TXT",
  5617. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  5618. "buildTransitive/netcoreapp3.1/_._",
  5619. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  5620. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  5621. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5622. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5623. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5624. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5625. "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512",
  5626. "microsoft.extensions.fileproviders.physical.nuspec",
  5627. "useSharedDesignerContext.txt"
  5628. ]
  5629. },
  5630. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  5631. "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==",
  5632. "type": "package",
  5633. "path": "microsoft.extensions.filesystemglobbing/6.0.0",
  5634. "files": [
  5635. ".nupkg.metadata",
  5636. ".signature.p7s",
  5637. "Icon.png",
  5638. "LICENSE.TXT",
  5639. "THIRD-PARTY-NOTICES.TXT",
  5640. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  5641. "buildTransitive/netcoreapp3.1/_._",
  5642. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  5643. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  5644. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5645. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5646. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5647. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5648. "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512",
  5649. "microsoft.extensions.filesystemglobbing.nuspec",
  5650. "useSharedDesignerContext.txt"
  5651. ]
  5652. },
  5653. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  5654. "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==",
  5655. "type": "package",
  5656. "path": "microsoft.extensions.hosting.abstractions/6.0.0",
  5657. "files": [
  5658. ".nupkg.metadata",
  5659. ".signature.p7s",
  5660. "Icon.png",
  5661. "LICENSE.TXT",
  5662. "THIRD-PARTY-NOTICES.TXT",
  5663. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  5664. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  5665. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  5666. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  5667. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  5668. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  5669. "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512",
  5670. "microsoft.extensions.hosting.abstractions.nuspec",
  5671. "useSharedDesignerContext.txt"
  5672. ]
  5673. },
  5674. "Microsoft.Extensions.Localization/6.0.5": {
  5675. "sha512": "mbNGvpCgCYD6o+2IFNT3EZ+AQE8W0yI9GXmXDYWtCXclhvjKn3RJ37QrMRXqzNqOBkWzdiJ/HINVuccrJEenNA==",
  5676. "type": "package",
  5677. "path": "microsoft.extensions.localization/6.0.5",
  5678. "files": [
  5679. ".nupkg.metadata",
  5680. ".signature.p7s",
  5681. "Icon.png",
  5682. "THIRD-PARTY-NOTICES.TXT",
  5683. "lib/net461/Microsoft.Extensions.Localization.dll",
  5684. "lib/net461/Microsoft.Extensions.Localization.xml",
  5685. "lib/net6.0/Microsoft.Extensions.Localization.dll",
  5686. "lib/net6.0/Microsoft.Extensions.Localization.xml",
  5687. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  5688. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  5689. "microsoft.extensions.localization.6.0.5.nupkg.sha512",
  5690. "microsoft.extensions.localization.nuspec"
  5691. ]
  5692. },
  5693. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  5694. "sha512": "PzYBMoQk4i1dOC2szAy90hPLBIe6YWdiaGxqoRdWesiJbZwiGCd2syC7kkePp2/ef3f8o202YRMt0tzbLP50rw==",
  5695. "type": "package",
  5696. "path": "microsoft.extensions.localization.abstractions/6.0.5",
  5697. "files": [
  5698. ".nupkg.metadata",
  5699. ".signature.p7s",
  5700. "Icon.png",
  5701. "THIRD-PARTY-NOTICES.TXT",
  5702. "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll",
  5703. "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml",
  5704. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll",
  5705. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.xml",
  5706. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  5707. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  5708. "microsoft.extensions.localization.abstractions.6.0.5.nupkg.sha512",
  5709. "microsoft.extensions.localization.abstractions.nuspec"
  5710. ]
  5711. },
  5712. "Microsoft.Extensions.Logging/6.0.0": {
  5713. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  5714. "type": "package",
  5715. "path": "microsoft.extensions.logging/6.0.0",
  5716. "files": [
  5717. ".nupkg.metadata",
  5718. ".signature.p7s",
  5719. "Icon.png",
  5720. "LICENSE.TXT",
  5721. "THIRD-PARTY-NOTICES.TXT",
  5722. "lib/net461/Microsoft.Extensions.Logging.dll",
  5723. "lib/net461/Microsoft.Extensions.Logging.xml",
  5724. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5725. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5726. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5727. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5728. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  5729. "microsoft.extensions.logging.nuspec",
  5730. "useSharedDesignerContext.txt"
  5731. ]
  5732. },
  5733. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  5734. "sha512": "dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
  5735. "type": "package",
  5736. "path": "microsoft.extensions.logging.abstractions/6.0.1",
  5737. "files": [
  5738. ".nupkg.metadata",
  5739. ".signature.p7s",
  5740. "Icon.png",
  5741. "LICENSE.TXT",
  5742. "THIRD-PARTY-NOTICES.TXT",
  5743. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  5744. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5745. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5746. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5747. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5748. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5749. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5750. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5751. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5752. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5753. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5754. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5755. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5756. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5757. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  5758. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5759. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5760. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5761. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5762. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5763. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5764. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5765. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5766. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5767. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5768. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5769. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5770. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5771. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  5772. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5773. "buildTransitive/netcoreapp3.1/_._",
  5774. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  5775. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  5776. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5777. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5778. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5779. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5780. "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512",
  5781. "microsoft.extensions.logging.abstractions.nuspec",
  5782. "useSharedDesignerContext.txt"
  5783. ]
  5784. },
  5785. "Microsoft.Extensions.Options/6.0.0": {
  5786. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  5787. "type": "package",
  5788. "path": "microsoft.extensions.options/6.0.0",
  5789. "files": [
  5790. ".nupkg.metadata",
  5791. ".signature.p7s",
  5792. "Icon.png",
  5793. "LICENSE.TXT",
  5794. "THIRD-PARTY-NOTICES.TXT",
  5795. "lib/net461/Microsoft.Extensions.Options.dll",
  5796. "lib/net461/Microsoft.Extensions.Options.xml",
  5797. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5798. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5799. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  5800. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  5801. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  5802. "microsoft.extensions.options.nuspec",
  5803. "useSharedDesignerContext.txt"
  5804. ]
  5805. },
  5806. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  5807. "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==",
  5808. "type": "package",
  5809. "path": "microsoft.extensions.options.configurationextensions/6.0.0",
  5810. "files": [
  5811. ".nupkg.metadata",
  5812. ".signature.p7s",
  5813. "Icon.png",
  5814. "LICENSE.TXT",
  5815. "THIRD-PARTY-NOTICES.TXT",
  5816. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5817. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5818. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5819. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5820. "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
  5821. "microsoft.extensions.options.configurationextensions.nuspec",
  5822. "useSharedDesignerContext.txt"
  5823. ]
  5824. },
  5825. "Microsoft.Extensions.Primitives/6.0.0": {
  5826. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  5827. "type": "package",
  5828. "path": "microsoft.extensions.primitives/6.0.0",
  5829. "files": [
  5830. ".nupkg.metadata",
  5831. ".signature.p7s",
  5832. "Icon.png",
  5833. "LICENSE.TXT",
  5834. "THIRD-PARTY-NOTICES.TXT",
  5835. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  5836. "buildTransitive/netcoreapp3.1/_._",
  5837. "lib/net461/Microsoft.Extensions.Primitives.dll",
  5838. "lib/net461/Microsoft.Extensions.Primitives.xml",
  5839. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  5840. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  5841. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  5842. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  5843. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5844. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5845. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  5846. "microsoft.extensions.primitives.nuspec",
  5847. "useSharedDesignerContext.txt"
  5848. ]
  5849. },
  5850. "Microsoft.Identity.Client/4.21.1": {
  5851. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  5852. "type": "package",
  5853. "path": "microsoft.identity.client/4.21.1",
  5854. "files": [
  5855. ".nupkg.metadata",
  5856. ".signature.p7s",
  5857. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  5858. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  5859. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  5860. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  5861. "lib/net45/Microsoft.Identity.Client.dll",
  5862. "lib/net45/Microsoft.Identity.Client.xml",
  5863. "lib/net461/Microsoft.Identity.Client.dll",
  5864. "lib/net461/Microsoft.Identity.Client.xml",
  5865. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  5866. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  5867. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  5868. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  5869. "lib/uap10.0/Microsoft.Identity.Client.dll",
  5870. "lib/uap10.0/Microsoft.Identity.Client.pri",
  5871. "lib/uap10.0/Microsoft.Identity.Client.xml",
  5872. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  5873. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  5874. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  5875. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  5876. "microsoft.identity.client.4.21.1.nupkg.sha512",
  5877. "microsoft.identity.client.nuspec",
  5878. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  5879. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  5880. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  5881. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  5882. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  5883. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  5884. "ref/net45/Microsoft.Identity.Client.dll",
  5885. "ref/net45/Microsoft.Identity.Client.xml",
  5886. "ref/net461/Microsoft.Identity.Client.dll",
  5887. "ref/net461/Microsoft.Identity.Client.xml",
  5888. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  5889. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  5890. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  5891. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  5892. "ref/uap10.0/Microsoft.Identity.Client.dll",
  5893. "ref/uap10.0/Microsoft.Identity.Client.xml",
  5894. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  5895. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  5896. ]
  5897. },
  5898. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  5899. "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
  5900. "type": "package",
  5901. "path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
  5902. "files": [
  5903. ".nupkg.metadata",
  5904. ".signature.p7s",
  5905. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  5906. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  5907. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  5908. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  5909. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  5910. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  5911. "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
  5912. "microsoft.identitymodel.jsonwebtokens.nuspec"
  5913. ]
  5914. },
  5915. "Microsoft.IdentityModel.Logging/6.8.0": {
  5916. "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
  5917. "type": "package",
  5918. "path": "microsoft.identitymodel.logging/6.8.0",
  5919. "files": [
  5920. ".nupkg.metadata",
  5921. ".signature.p7s",
  5922. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  5923. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  5924. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  5925. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  5926. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  5927. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  5928. "microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
  5929. "microsoft.identitymodel.logging.nuspec"
  5930. ]
  5931. },
  5932. "Microsoft.IdentityModel.Protocols/6.8.0": {
  5933. "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
  5934. "type": "package",
  5935. "path": "microsoft.identitymodel.protocols/6.8.0",
  5936. "files": [
  5937. ".nupkg.metadata",
  5938. ".signature.p7s",
  5939. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  5940. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  5941. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  5942. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  5943. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  5944. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  5945. "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
  5946. "microsoft.identitymodel.protocols.nuspec"
  5947. ]
  5948. },
  5949. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  5950. "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
  5951. "type": "package",
  5952. "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
  5953. "files": [
  5954. ".nupkg.metadata",
  5955. ".signature.p7s",
  5956. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5957. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5958. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5959. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5960. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5961. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5962. "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
  5963. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  5964. ]
  5965. },
  5966. "Microsoft.IdentityModel.Tokens/6.8.0": {
  5967. "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
  5968. "type": "package",
  5969. "path": "microsoft.identitymodel.tokens/6.8.0",
  5970. "files": [
  5971. ".nupkg.metadata",
  5972. ".signature.p7s",
  5973. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  5974. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  5975. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  5976. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  5977. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  5978. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  5979. "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
  5980. "microsoft.identitymodel.tokens.nuspec"
  5981. ]
  5982. },
  5983. "Microsoft.NETCore.Platforms/5.0.0": {
  5984. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5985. "type": "package",
  5986. "path": "microsoft.netcore.platforms/5.0.0",
  5987. "files": [
  5988. ".nupkg.metadata",
  5989. ".signature.p7s",
  5990. "Icon.png",
  5991. "LICENSE.TXT",
  5992. "THIRD-PARTY-NOTICES.TXT",
  5993. "lib/netstandard1.0/_._",
  5994. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5995. "microsoft.netcore.platforms.nuspec",
  5996. "runtime.json",
  5997. "useSharedDesignerContext.txt",
  5998. "version.txt"
  5999. ]
  6000. },
  6001. "Microsoft.NETCore.Targets/1.1.0": {
  6002. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  6003. "type": "package",
  6004. "path": "microsoft.netcore.targets/1.1.0",
  6005. "files": [
  6006. ".nupkg.metadata",
  6007. "ThirdPartyNotices.txt",
  6008. "dotnet_library_license.txt",
  6009. "lib/netstandard1.0/_._",
  6010. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  6011. "microsoft.netcore.targets.nuspec",
  6012. "runtime.json"
  6013. ]
  6014. },
  6015. "Microsoft.OpenApi/1.2.3": {
  6016. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  6017. "type": "package",
  6018. "path": "microsoft.openapi/1.2.3",
  6019. "files": [
  6020. ".nupkg.metadata",
  6021. ".signature.p7s",
  6022. "lib/net46/Microsoft.OpenApi.dll",
  6023. "lib/net46/Microsoft.OpenApi.pdb",
  6024. "lib/net46/Microsoft.OpenApi.xml",
  6025. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  6026. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  6027. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  6028. "microsoft.openapi.1.2.3.nupkg.sha512",
  6029. "microsoft.openapi.nuspec"
  6030. ]
  6031. },
  6032. "Microsoft.Win32.Registry/5.0.0": {
  6033. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  6034. "type": "package",
  6035. "path": "microsoft.win32.registry/5.0.0",
  6036. "files": [
  6037. ".nupkg.metadata",
  6038. ".signature.p7s",
  6039. "Icon.png",
  6040. "LICENSE.TXT",
  6041. "THIRD-PARTY-NOTICES.TXT",
  6042. "lib/net46/Microsoft.Win32.Registry.dll",
  6043. "lib/net461/Microsoft.Win32.Registry.dll",
  6044. "lib/net461/Microsoft.Win32.Registry.xml",
  6045. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  6046. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6047. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  6048. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  6049. "microsoft.win32.registry.nuspec",
  6050. "ref/net46/Microsoft.Win32.Registry.dll",
  6051. "ref/net461/Microsoft.Win32.Registry.dll",
  6052. "ref/net461/Microsoft.Win32.Registry.xml",
  6053. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  6054. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  6055. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  6056. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  6057. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  6058. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  6059. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  6060. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  6061. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  6062. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  6063. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  6064. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  6065. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  6066. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  6067. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  6068. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  6069. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  6070. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6071. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  6072. "useSharedDesignerContext.txt",
  6073. "version.txt"
  6074. ]
  6075. },
  6076. "Microsoft.Win32.SystemEvents/6.0.0": {
  6077. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  6078. "type": "package",
  6079. "path": "microsoft.win32.systemevents/6.0.0",
  6080. "files": [
  6081. ".nupkg.metadata",
  6082. ".signature.p7s",
  6083. "Icon.png",
  6084. "LICENSE.TXT",
  6085. "THIRD-PARTY-NOTICES.TXT",
  6086. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  6087. "buildTransitive/netcoreapp3.1/_._",
  6088. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  6089. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  6090. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  6091. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  6092. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  6093. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  6094. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  6095. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  6096. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  6097. "microsoft.win32.systemevents.nuspec",
  6098. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  6099. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  6100. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  6101. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  6102. "useSharedDesignerContext.txt"
  6103. ]
  6104. },
  6105. "MySql.Data/8.0.32.1": {
  6106. "sha512": "K5WkZz8hkiHyKSnEON5AER+oMxmwhRrSAy6/a7XnfWpytn8EyYLCFWe0lDNZqZJ/w79P1Qtw0TZvf3kP0a1fbg==",
  6107. "type": "package",
  6108. "path": "mysql.data/8.0.32.1",
  6109. "files": [
  6110. ".nupkg.metadata",
  6111. ".signature.p7s",
  6112. "lib/net452/MySql.Data.dll",
  6113. "lib/net452/MySql.Data.xml",
  6114. "lib/net48/MySql.Data.dll",
  6115. "lib/net48/MySql.Data.xml",
  6116. "lib/net6.0/MySql.Data.dll",
  6117. "lib/net6.0/MySql.Data.xml",
  6118. "lib/net7.0/MySql.Data.dll",
  6119. "lib/net7.0/MySql.Data.xml",
  6120. "lib/netstandard2.0/MySql.Data.dll",
  6121. "lib/netstandard2.0/MySql.Data.xml",
  6122. "lib/netstandard2.1/MySql.Data.dll",
  6123. "lib/netstandard2.1/MySql.Data.xml",
  6124. "mysql.data.8.0.32.1.nupkg.sha512",
  6125. "mysql.data.nuspec",
  6126. "runtimes/win-x64/native/comerr64.dll",
  6127. "runtimes/win-x64/native/gssapi64.dll",
  6128. "runtimes/win-x64/native/k5sprt64.dll",
  6129. "runtimes/win-x64/native/krb5_64.dll",
  6130. "runtimes/win-x64/native/krbcc64.dll"
  6131. ]
  6132. },
  6133. "MySqlConnector/2.0.0": {
  6134. "sha512": "EY0KXqQas+QvdZQU0NPkqBSfJitWAl8IUCg0v/Qn0P7f/KApJTFJFm8czYWoDPyewUjPHrAnE/cSYzzSFGc8Ng==",
  6135. "type": "package",
  6136. "path": "mysqlconnector/2.0.0",
  6137. "files": [
  6138. ".nupkg.metadata",
  6139. ".signature.p7s",
  6140. "README.md",
  6141. "lib/net45/MySqlConnector.dll",
  6142. "lib/net45/MySqlConnector.xml",
  6143. "lib/net461/MySqlConnector.dll",
  6144. "lib/net461/MySqlConnector.xml",
  6145. "lib/net471/MySqlConnector.dll",
  6146. "lib/net471/MySqlConnector.xml",
  6147. "lib/net5.0/MySqlConnector.dll",
  6148. "lib/net5.0/MySqlConnector.xml",
  6149. "lib/net6.0/MySqlConnector.dll",
  6150. "lib/net6.0/MySqlConnector.xml",
  6151. "lib/netcoreapp3.1/MySqlConnector.dll",
  6152. "lib/netcoreapp3.1/MySqlConnector.xml",
  6153. "lib/netstandard2.0/MySqlConnector.dll",
  6154. "lib/netstandard2.0/MySqlConnector.xml",
  6155. "lib/netstandard2.1/MySqlConnector.dll",
  6156. "lib/netstandard2.1/MySqlConnector.xml",
  6157. "logo.png",
  6158. "mysqlconnector.2.0.0.nupkg.sha512",
  6159. "mysqlconnector.nuspec"
  6160. ]
  6161. },
  6162. "Newtonsoft.Json/13.0.1": {
  6163. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  6164. "type": "package",
  6165. "path": "newtonsoft.json/13.0.1",
  6166. "files": [
  6167. ".nupkg.metadata",
  6168. ".signature.p7s",
  6169. "LICENSE.md",
  6170. "lib/net20/Newtonsoft.Json.dll",
  6171. "lib/net20/Newtonsoft.Json.xml",
  6172. "lib/net35/Newtonsoft.Json.dll",
  6173. "lib/net35/Newtonsoft.Json.xml",
  6174. "lib/net40/Newtonsoft.Json.dll",
  6175. "lib/net40/Newtonsoft.Json.xml",
  6176. "lib/net45/Newtonsoft.Json.dll",
  6177. "lib/net45/Newtonsoft.Json.xml",
  6178. "lib/netstandard1.0/Newtonsoft.Json.dll",
  6179. "lib/netstandard1.0/Newtonsoft.Json.xml",
  6180. "lib/netstandard1.3/Newtonsoft.Json.dll",
  6181. "lib/netstandard1.3/Newtonsoft.Json.xml",
  6182. "lib/netstandard2.0/Newtonsoft.Json.dll",
  6183. "lib/netstandard2.0/Newtonsoft.Json.xml",
  6184. "newtonsoft.json.13.0.1.nupkg.sha512",
  6185. "newtonsoft.json.nuspec",
  6186. "packageIcon.png"
  6187. ]
  6188. },
  6189. "Newtonsoft.Json.Bson/1.0.2": {
  6190. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  6191. "type": "package",
  6192. "path": "newtonsoft.json.bson/1.0.2",
  6193. "files": [
  6194. ".nupkg.metadata",
  6195. ".signature.p7s",
  6196. "LICENSE.md",
  6197. "lib/net45/Newtonsoft.Json.Bson.dll",
  6198. "lib/net45/Newtonsoft.Json.Bson.pdb",
  6199. "lib/net45/Newtonsoft.Json.Bson.xml",
  6200. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  6201. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  6202. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  6203. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  6204. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  6205. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  6206. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  6207. "newtonsoft.json.bson.nuspec"
  6208. ]
  6209. },
  6210. "Nito.AsyncEx.Context/5.1.2": {
  6211. "sha512": "rMwL7Nj3oNyvFu/jxUzQ/YBobEkM2RQHe+5mpCDRyq6mfD7vCj7Z3rjB6XgpM6Mqcx1CA2xGv0ascU/2Xk8IIg==",
  6212. "type": "package",
  6213. "path": "nito.asyncex.context/5.1.2",
  6214. "files": [
  6215. ".nupkg.metadata",
  6216. ".signature.p7s",
  6217. "icon.png",
  6218. "lib/net461/Nito.AsyncEx.Context.dll",
  6219. "lib/net461/Nito.AsyncEx.Context.xml",
  6220. "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
  6221. "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
  6222. "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
  6223. "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
  6224. "nito.asyncex.context.5.1.2.nupkg.sha512",
  6225. "nito.asyncex.context.nuspec"
  6226. ]
  6227. },
  6228. "Nito.AsyncEx.Coordination/5.1.2": {
  6229. "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==",
  6230. "type": "package",
  6231. "path": "nito.asyncex.coordination/5.1.2",
  6232. "files": [
  6233. ".nupkg.metadata",
  6234. ".signature.p7s",
  6235. "icon.png",
  6236. "lib/net461/Nito.AsyncEx.Coordination.dll",
  6237. "lib/net461/Nito.AsyncEx.Coordination.xml",
  6238. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  6239. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  6240. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  6241. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  6242. "nito.asyncex.coordination.5.1.2.nupkg.sha512",
  6243. "nito.asyncex.coordination.nuspec"
  6244. ]
  6245. },
  6246. "Nito.AsyncEx.Tasks/5.1.2": {
  6247. "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==",
  6248. "type": "package",
  6249. "path": "nito.asyncex.tasks/5.1.2",
  6250. "files": [
  6251. ".nupkg.metadata",
  6252. ".signature.p7s",
  6253. "icon.png",
  6254. "lib/net461/Nito.AsyncEx.Tasks.dll",
  6255. "lib/net461/Nito.AsyncEx.Tasks.xml",
  6256. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  6257. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  6258. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  6259. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  6260. "nito.asyncex.tasks.5.1.2.nupkg.sha512",
  6261. "nito.asyncex.tasks.nuspec"
  6262. ]
  6263. },
  6264. "Nito.Collections.Deque/1.1.1": {
  6265. "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==",
  6266. "type": "package",
  6267. "path": "nito.collections.deque/1.1.1",
  6268. "files": [
  6269. ".nupkg.metadata",
  6270. ".signature.p7s",
  6271. "icon.png",
  6272. "lib/net461/Nito.Collections.Deque.dll",
  6273. "lib/net461/Nito.Collections.Deque.xml",
  6274. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  6275. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  6276. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  6277. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  6278. "nito.collections.deque.1.1.1.nupkg.sha512",
  6279. "nito.collections.deque.nuspec"
  6280. ]
  6281. },
  6282. "Nito.Disposables/2.2.1": {
  6283. "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==",
  6284. "type": "package",
  6285. "path": "nito.disposables/2.2.1",
  6286. "files": [
  6287. ".nupkg.metadata",
  6288. ".signature.p7s",
  6289. "icon.png",
  6290. "lib/net461/Nito.Disposables.dll",
  6291. "lib/net461/Nito.Disposables.xml",
  6292. "lib/netstandard1.0/Nito.Disposables.dll",
  6293. "lib/netstandard1.0/Nito.Disposables.xml",
  6294. "lib/netstandard2.0/Nito.Disposables.dll",
  6295. "lib/netstandard2.0/Nito.Disposables.xml",
  6296. "lib/netstandard2.1/Nito.Disposables.dll",
  6297. "lib/netstandard2.1/Nito.Disposables.xml",
  6298. "nito.disposables.2.2.1.nupkg.sha512",
  6299. "nito.disposables.nuspec"
  6300. ]
  6301. },
  6302. "NLog/5.1.2": {
  6303. "sha512": "JfQY93ure3IPVTN3eabBewBGvrcXcWIlaesFEXdy5UzIymfIT9yCgLISYtM0cOhjWziIaUr/6Z9NC2RwtjwrsQ==",
  6304. "type": "package",
  6305. "path": "nlog/5.1.2",
  6306. "files": [
  6307. ".nupkg.metadata",
  6308. ".signature.p7s",
  6309. "N.png",
  6310. "lib/net35/NLog.dll",
  6311. "lib/net35/NLog.xml",
  6312. "lib/net45/NLog.dll",
  6313. "lib/net45/NLog.xml",
  6314. "lib/net46/NLog.dll",
  6315. "lib/net46/NLog.xml",
  6316. "lib/netstandard1.3/NLog.dll",
  6317. "lib/netstandard1.3/NLog.xml",
  6318. "lib/netstandard1.5/NLog.dll",
  6319. "lib/netstandard1.5/NLog.xml",
  6320. "lib/netstandard2.0/NLog.dll",
  6321. "lib/netstandard2.0/NLog.xml",
  6322. "nlog.5.1.2.nupkg.sha512",
  6323. "nlog.nuspec"
  6324. ]
  6325. },
  6326. "NLog.Database/5.1.2": {
  6327. "sha512": "fpsYObX1OheGErXTHFUOhpgD/HZ6T3XwcPUOnaS/bMCI/3u4ntZXgwFhQMkNwRxRZDQK6nocdQJi4nhe/bPs5A==",
  6328. "type": "package",
  6329. "path": "nlog.database/5.1.2",
  6330. "files": [
  6331. ".nupkg.metadata",
  6332. ".signature.p7s",
  6333. "N.png",
  6334. "lib/net35/NLog.Database.dll",
  6335. "lib/net35/NLog.Database.xml",
  6336. "lib/net45/NLog.Database.dll",
  6337. "lib/net45/NLog.Database.xml",
  6338. "lib/net46/NLog.Database.dll",
  6339. "lib/net46/NLog.Database.xml",
  6340. "lib/netstandard1.3/NLog.Database.dll",
  6341. "lib/netstandard1.3/NLog.Database.xml",
  6342. "lib/netstandard1.5/NLog.Database.dll",
  6343. "lib/netstandard1.5/NLog.Database.xml",
  6344. "lib/netstandard2.0/NLog.Database.dll",
  6345. "lib/netstandard2.0/NLog.Database.xml",
  6346. "nlog.database.5.1.2.nupkg.sha512",
  6347. "nlog.database.nuspec"
  6348. ]
  6349. },
  6350. "NLog.Extensions.Logging/5.2.2": {
  6351. "sha512": "V6sd+0Hrk2XlU//XbUizFYTE8Hf8+xFkhi81shIhsKl4tvWFUYmjBY/zBy/wlQCt0K6mfseaEKnayRJVhIz5Iw==",
  6352. "type": "package",
  6353. "path": "nlog.extensions.logging/5.2.2",
  6354. "files": [
  6355. ".nupkg.metadata",
  6356. ".signature.p7s",
  6357. "N.png",
  6358. "lib/net461/NLog.Extensions.Logging.dll",
  6359. "lib/net461/NLog.Extensions.Logging.xml",
  6360. "lib/net6.0/NLog.Extensions.Logging.dll",
  6361. "lib/net6.0/NLog.Extensions.Logging.xml",
  6362. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  6363. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  6364. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  6365. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  6366. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  6367. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  6368. "lib/netstandard2.1/NLog.Extensions.Logging.dll",
  6369. "lib/netstandard2.1/NLog.Extensions.Logging.xml",
  6370. "nlog.extensions.logging.5.2.2.nupkg.sha512",
  6371. "nlog.extensions.logging.nuspec"
  6372. ]
  6373. },
  6374. "NLog.Web.AspNetCore/5.2.2": {
  6375. "sha512": "0Qa6V7LXgbWNxYdZDLcQz/TjGrSfx32XThxAL+xoAtjplC2uCIhy27WiMIjznuMAJR3zjElIiYzMmPSsQ4LZSQ==",
  6376. "type": "package",
  6377. "path": "nlog.web.aspnetcore/5.2.2",
  6378. "files": [
  6379. ".nupkg.metadata",
  6380. ".signature.p7s",
  6381. "N.png",
  6382. "README.md",
  6383. "lib/net461/NLog.Web.AspNetCore.dll",
  6384. "lib/net461/NLog.Web.AspNetCore.xml",
  6385. "lib/net5.0/NLog.Web.AspNetCore.dll",
  6386. "lib/net5.0/NLog.Web.AspNetCore.xml",
  6387. "lib/net6.0/NLog.Web.AspNetCore.dll",
  6388. "lib/net6.0/NLog.Web.AspNetCore.xml",
  6389. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll",
  6390. "lib/netcoreapp3.1/NLog.Web.AspNetCore.xml",
  6391. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  6392. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  6393. "nlog.web.aspnetcore.5.2.2.nupkg.sha512",
  6394. "nlog.web.aspnetcore.nuspec"
  6395. ]
  6396. },
  6397. "NUglify/1.20.0": {
  6398. "sha512": "EK1OImD1Xub/tdvFmhLl939KO0bSAkNDqAGwKAaFV4FASelpyOr9iDvgWElSvbniCmS1HMeKgQWJFDF7/QVp/g==",
  6399. "type": "package",
  6400. "path": "nuglify/1.20.0",
  6401. "files": [
  6402. ".nupkg.metadata",
  6403. ".signature.p7s",
  6404. "lib/net35/NUglify.dll",
  6405. "lib/net35/NUglify.xml",
  6406. "lib/net40/NUglify.dll",
  6407. "lib/net40/NUglify.xml",
  6408. "lib/net5.0/NUglify.dll",
  6409. "lib/net5.0/NUglify.xml",
  6410. "lib/netstandard1.3/NUglify.dll",
  6411. "lib/netstandard1.3/NUglify.xml",
  6412. "lib/netstandard2.0/NUglify.dll",
  6413. "lib/netstandard2.0/NUglify.xml",
  6414. "nuglify.1.20.0.nupkg.sha512",
  6415. "nuglify.nuspec",
  6416. "nuglify.png"
  6417. ]
  6418. },
  6419. "Pipelines.Sockets.Unofficial/2.2.0": {
  6420. "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==",
  6421. "type": "package",
  6422. "path": "pipelines.sockets.unofficial/2.2.0",
  6423. "files": [
  6424. ".nupkg.metadata",
  6425. ".signature.p7s",
  6426. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  6427. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  6428. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  6429. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  6430. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  6431. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  6432. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  6433. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  6434. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  6435. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  6436. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  6437. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  6438. "pipelines.sockets.unofficial.2.2.0.nupkg.sha512",
  6439. "pipelines.sockets.unofficial.nuspec"
  6440. ]
  6441. },
  6442. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  6443. "sha512": "iWloXFjpN6BllZA9oPqZTW9mNtFV5Q6DFv0WwFyh1IuOJ71btS3ifTwpLmaFXSlXzuEU9o7Rul0dU0WiwkOq0Q==",
  6444. "type": "package",
  6445. "path": "pomelo.entityframeworkcore.mysql/6.0.0",
  6446. "files": [
  6447. ".nupkg.metadata",
  6448. ".signature.p7s",
  6449. "icon.png",
  6450. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll",
  6451. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.xml",
  6452. "pomelo.entityframeworkcore.mysql.6.0.0.nupkg.sha512",
  6453. "pomelo.entityframeworkcore.mysql.nuspec"
  6454. ]
  6455. },
  6456. "Portable.BouncyCastle/1.9.0": {
  6457. "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==",
  6458. "type": "package",
  6459. "path": "portable.bouncycastle/1.9.0",
  6460. "files": [
  6461. ".nupkg.metadata",
  6462. ".signature.p7s",
  6463. "lib/net40/BouncyCastle.Crypto.dll",
  6464. "lib/net40/BouncyCastle.Crypto.xml",
  6465. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  6466. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  6467. "portable.bouncycastle.1.9.0.nupkg.sha512",
  6468. "portable.bouncycastle.nuspec"
  6469. ]
  6470. },
  6471. "Quartz/3.6.2": {
  6472. "sha512": "wCNiVQKdwSz85fOFvEixOuxiIqsenixf34b8w21oGF0qw9oylFPDrV/ri02cX531WelFsN8K5w6E5/qop5mRYw==",
  6473. "type": "package",
  6474. "path": "quartz/3.6.2",
  6475. "files": [
  6476. ".nupkg.metadata",
  6477. ".signature.p7s",
  6478. "lib/net462/Quartz.dll",
  6479. "lib/net462/Quartz.xml",
  6480. "lib/net472/Quartz.dll",
  6481. "lib/net472/Quartz.xml",
  6482. "lib/netstandard2.0/Quartz.dll",
  6483. "lib/netstandard2.0/Quartz.xml",
  6484. "quartz-logo-small.png",
  6485. "quartz.3.6.2.nupkg.sha512",
  6486. "quartz.nuspec"
  6487. ]
  6488. },
  6489. "Quartz.AspNetCore/3.6.2": {
  6490. "sha512": "dcKmsicZjMs2TeSYGnboRFphtckT0/cQGoJK9DCVKIGgwa7b8e/bbCjcaCyHIUDwAAKCgDp3AdtPTExalnS7XA==",
  6491. "type": "package",
  6492. "path": "quartz.aspnetcore/3.6.2",
  6493. "files": [
  6494. ".nupkg.metadata",
  6495. ".signature.p7s",
  6496. "lib/net6.0/Quartz.AspNetCore.dll",
  6497. "lib/net6.0/Quartz.AspNetCore.xml",
  6498. "lib/netcoreapp3.1/Quartz.AspNetCore.dll",
  6499. "lib/netcoreapp3.1/Quartz.AspNetCore.xml",
  6500. "lib/netstandard2.0/Quartz.AspNetCore.dll",
  6501. "lib/netstandard2.0/Quartz.AspNetCore.xml",
  6502. "quartz-logo-small.png",
  6503. "quartz.aspnetcore.3.6.2.nupkg.sha512",
  6504. "quartz.aspnetcore.nuspec"
  6505. ]
  6506. },
  6507. "Quartz.Extensions.DependencyInjection/3.6.2": {
  6508. "sha512": "EkJCyTVhfaE2SX2hVSQbKSVQs+fw1gWnGaQv+RzfsWASvk7CzDddPE31WA00I0t9gfXpcnV9jDgSOP8K+tO1uA==",
  6509. "type": "package",
  6510. "path": "quartz.extensions.dependencyinjection/3.6.2",
  6511. "files": [
  6512. ".nupkg.metadata",
  6513. ".signature.p7s",
  6514. "lib/net6.0/Quartz.Extensions.DependencyInjection.dll",
  6515. "lib/net6.0/Quartz.Extensions.DependencyInjection.xml",
  6516. "lib/netcoreapp3.1/Quartz.Extensions.DependencyInjection.dll",
  6517. "lib/netcoreapp3.1/Quartz.Extensions.DependencyInjection.xml",
  6518. "lib/netstandard2.0/Quartz.Extensions.DependencyInjection.dll",
  6519. "lib/netstandard2.0/Quartz.Extensions.DependencyInjection.xml",
  6520. "quartz-logo-small.png",
  6521. "quartz.extensions.dependencyinjection.3.6.2.nupkg.sha512",
  6522. "quartz.extensions.dependencyinjection.nuspec"
  6523. ]
  6524. },
  6525. "Quartz.Extensions.Hosting/3.6.2": {
  6526. "sha512": "P9PIWcFmK/x5GbxTZcgfOFkagb+OBviNvmsrdksLKe1Dv0LfdjuWvWyUxjbttjmAEm+5IibxGVF5hf42Ws2Qkw==",
  6527. "type": "package",
  6528. "path": "quartz.extensions.hosting/3.6.2",
  6529. "files": [
  6530. ".nupkg.metadata",
  6531. ".signature.p7s",
  6532. "lib/net6.0/Quartz.Extensions.Hosting.dll",
  6533. "lib/net6.0/Quartz.Extensions.Hosting.xml",
  6534. "lib/netcoreapp3.1/Quartz.Extensions.Hosting.dll",
  6535. "lib/netcoreapp3.1/Quartz.Extensions.Hosting.xml",
  6536. "lib/netstandard2.0/Quartz.Extensions.Hosting.dll",
  6537. "lib/netstandard2.0/Quartz.Extensions.Hosting.xml",
  6538. "quartz-logo-small.png",
  6539. "quartz.extensions.hosting.3.6.2.nupkg.sha512",
  6540. "quartz.extensions.hosting.nuspec"
  6541. ]
  6542. },
  6543. "runtime.native.System.Data.SqlClient.sni/4.7.0": {
  6544. "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==",
  6545. "type": "package",
  6546. "path": "runtime.native.system.data.sqlclient.sni/4.7.0",
  6547. "files": [
  6548. ".nupkg.metadata",
  6549. ".signature.p7s",
  6550. "LICENSE.TXT",
  6551. "THIRD-PARTY-NOTICES.TXT",
  6552. "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
  6553. "runtime.native.system.data.sqlclient.sni.nuspec",
  6554. "useSharedDesignerContext.txt",
  6555. "version.txt"
  6556. ]
  6557. },
  6558. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  6559. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  6560. "type": "package",
  6561. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  6562. "files": [
  6563. ".nupkg.metadata",
  6564. "ThirdPartyNotices.txt",
  6565. "dotnet_library_license.txt",
  6566. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  6567. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  6568. "runtimes/win-arm64/native/sni.dll",
  6569. "useSharedDesignerContext.txt",
  6570. "version.txt"
  6571. ]
  6572. },
  6573. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  6574. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  6575. "type": "package",
  6576. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  6577. "files": [
  6578. ".nupkg.metadata",
  6579. "ThirdPartyNotices.txt",
  6580. "dotnet_library_license.txt",
  6581. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  6582. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  6583. "runtimes/win-x64/native/sni.dll",
  6584. "useSharedDesignerContext.txt",
  6585. "version.txt"
  6586. ]
  6587. },
  6588. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  6589. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  6590. "type": "package",
  6591. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  6592. "files": [
  6593. ".nupkg.metadata",
  6594. "ThirdPartyNotices.txt",
  6595. "dotnet_library_license.txt",
  6596. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  6597. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  6598. "runtimes/win-x86/native/sni.dll",
  6599. "useSharedDesignerContext.txt",
  6600. "version.txt"
  6601. ]
  6602. },
  6603. "Serilog/2.11.0": {
  6604. "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
  6605. "type": "package",
  6606. "path": "serilog/2.11.0",
  6607. "files": [
  6608. ".nupkg.metadata",
  6609. ".signature.p7s",
  6610. "icon.png",
  6611. "lib/net45/Serilog.dll",
  6612. "lib/net45/Serilog.xml",
  6613. "lib/net46/Serilog.dll",
  6614. "lib/net46/Serilog.xml",
  6615. "lib/net5.0/Serilog.dll",
  6616. "lib/net5.0/Serilog.xml",
  6617. "lib/netstandard1.0/Serilog.dll",
  6618. "lib/netstandard1.0/Serilog.xml",
  6619. "lib/netstandard1.3/Serilog.dll",
  6620. "lib/netstandard1.3/Serilog.xml",
  6621. "lib/netstandard2.0/Serilog.dll",
  6622. "lib/netstandard2.0/Serilog.xml",
  6623. "lib/netstandard2.1/Serilog.dll",
  6624. "lib/netstandard2.1/Serilog.xml",
  6625. "serilog.2.11.0.nupkg.sha512",
  6626. "serilog.nuspec"
  6627. ]
  6628. },
  6629. "Serilog.AspNetCore/5.0.0": {
  6630. "sha512": "/JO/txIxRR61x1UXQAgUzG2Sx05o1QHCkokVBWrKzmAoDu+p5EtCAj7L/TVVg7Ezhh3GPiZ0JI9OJCmRO9tSRw==",
  6631. "type": "package",
  6632. "path": "serilog.aspnetcore/5.0.0",
  6633. "files": [
  6634. ".nupkg.metadata",
  6635. ".signature.p7s",
  6636. "icon.png",
  6637. "lib/net5.0/Serilog.AspNetCore.dll",
  6638. "lib/net5.0/Serilog.AspNetCore.xml",
  6639. "lib/netcoreapp3.1/Serilog.AspNetCore.dll",
  6640. "lib/netcoreapp3.1/Serilog.AspNetCore.xml",
  6641. "lib/netstandard2.0/Serilog.AspNetCore.dll",
  6642. "lib/netstandard2.0/Serilog.AspNetCore.xml",
  6643. "lib/netstandard2.1/Serilog.AspNetCore.dll",
  6644. "lib/netstandard2.1/Serilog.AspNetCore.xml",
  6645. "serilog.aspnetcore.5.0.0.nupkg.sha512",
  6646. "serilog.aspnetcore.nuspec"
  6647. ]
  6648. },
  6649. "Serilog.Extensions.Hosting/4.2.0": {
  6650. "sha512": "gT2keceCmPQR9EX0VpXQZvUgELdfE7yqJ7MOxBhm3WLCblcvRgswEOOTgok/DHObbM15A3V/DtF3VdVDQPIZzQ==",
  6651. "type": "package",
  6652. "path": "serilog.extensions.hosting/4.2.0",
  6653. "files": [
  6654. ".nupkg.metadata",
  6655. ".signature.p7s",
  6656. "icon.png",
  6657. "lib/netstandard2.0/Serilog.Extensions.Hosting.dll",
  6658. "lib/netstandard2.0/Serilog.Extensions.Hosting.xml",
  6659. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll",
  6660. "lib/netstandard2.1/Serilog.Extensions.Hosting.xml",
  6661. "serilog.extensions.hosting.4.2.0.nupkg.sha512",
  6662. "serilog.extensions.hosting.nuspec"
  6663. ]
  6664. },
  6665. "Serilog.Extensions.Logging/3.1.0": {
  6666. "sha512": "IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==",
  6667. "type": "package",
  6668. "path": "serilog.extensions.logging/3.1.0",
  6669. "files": [
  6670. ".nupkg.metadata",
  6671. ".signature.p7s",
  6672. "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
  6673. "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
  6674. "serilog-extension-nuget.png",
  6675. "serilog.extensions.logging.3.1.0.nupkg.sha512",
  6676. "serilog.extensions.logging.nuspec"
  6677. ]
  6678. },
  6679. "Serilog.Formatting.Compact/1.1.0": {
  6680. "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  6681. "type": "package",
  6682. "path": "serilog.formatting.compact/1.1.0",
  6683. "files": [
  6684. ".nupkg.metadata",
  6685. ".signature.p7s",
  6686. "lib/net452/Serilog.Formatting.Compact.dll",
  6687. "lib/net452/Serilog.Formatting.Compact.xml",
  6688. "lib/netstandard1.1/Serilog.Formatting.Compact.dll",
  6689. "lib/netstandard1.1/Serilog.Formatting.Compact.xml",
  6690. "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
  6691. "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
  6692. "serilog.formatting.compact.1.1.0.nupkg.sha512",
  6693. "serilog.formatting.compact.nuspec"
  6694. ]
  6695. },
  6696. "Serilog.Settings.Configuration/3.3.0": {
  6697. "sha512": "7GNudISZwqaT902hqEL2OFGTZeUFWfnrNLupJkOqeF41AR3GjcxX+Hwb30xb8gG2/CDXsCMVfF8o0+8KY0fJNg==",
  6698. "type": "package",
  6699. "path": "serilog.settings.configuration/3.3.0",
  6700. "files": [
  6701. ".nupkg.metadata",
  6702. ".signature.p7s",
  6703. "icon.png",
  6704. "lib/net451/Serilog.Settings.Configuration.dll",
  6705. "lib/net451/Serilog.Settings.Configuration.xml",
  6706. "lib/net461/Serilog.Settings.Configuration.dll",
  6707. "lib/net461/Serilog.Settings.Configuration.xml",
  6708. "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
  6709. "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
  6710. "serilog.settings.configuration.3.3.0.nupkg.sha512",
  6711. "serilog.settings.configuration.nuspec"
  6712. ]
  6713. },
  6714. "Serilog.Sinks.Async/1.5.0": {
  6715. "sha512": "csHYIqAwI4Gy9oAhXYRwxGrQEAtBg3Ep7WaCzsnA1cZuBZjVAU0n7hWaJhItjO7hbLHh/9gRVxALCUB4Dv+gZw==",
  6716. "type": "package",
  6717. "path": "serilog.sinks.async/1.5.0",
  6718. "files": [
  6719. ".nupkg.metadata",
  6720. ".signature.p7s",
  6721. "lib/net45/Serilog.Sinks.Async.dll",
  6722. "lib/net45/Serilog.Sinks.Async.xml",
  6723. "lib/net461/Serilog.Sinks.Async.dll",
  6724. "lib/net461/Serilog.Sinks.Async.xml",
  6725. "lib/netstandard1.1/Serilog.Sinks.Async.dll",
  6726. "lib/netstandard1.1/Serilog.Sinks.Async.xml",
  6727. "lib/netstandard2.0/Serilog.Sinks.Async.dll",
  6728. "lib/netstandard2.0/Serilog.Sinks.Async.xml",
  6729. "serilog-sink-nuget.png",
  6730. "serilog.sinks.async.1.5.0.nupkg.sha512",
  6731. "serilog.sinks.async.nuspec"
  6732. ]
  6733. },
  6734. "Serilog.Sinks.Console/4.0.1": {
  6735. "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  6736. "type": "package",
  6737. "path": "serilog.sinks.console/4.0.1",
  6738. "files": [
  6739. ".nupkg.metadata",
  6740. ".signature.p7s",
  6741. "icon.png",
  6742. "lib/net45/Serilog.Sinks.Console.dll",
  6743. "lib/net45/Serilog.Sinks.Console.xml",
  6744. "lib/net5.0/Serilog.Sinks.Console.dll",
  6745. "lib/net5.0/Serilog.Sinks.Console.xml",
  6746. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  6747. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  6748. "lib/netstandard2.0/Serilog.Sinks.Console.dll",
  6749. "lib/netstandard2.0/Serilog.Sinks.Console.xml",
  6750. "serilog.sinks.console.4.0.1.nupkg.sha512",
  6751. "serilog.sinks.console.nuspec"
  6752. ]
  6753. },
  6754. "Serilog.Sinks.Debug/2.0.0": {
  6755. "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
  6756. "type": "package",
  6757. "path": "serilog.sinks.debug/2.0.0",
  6758. "files": [
  6759. ".nupkg.metadata",
  6760. ".signature.p7s",
  6761. "icon.png",
  6762. "lib/net45/Serilog.Sinks.Debug.dll",
  6763. "lib/net45/Serilog.Sinks.Debug.xml",
  6764. "lib/net46/Serilog.Sinks.Debug.dll",
  6765. "lib/net46/Serilog.Sinks.Debug.xml",
  6766. "lib/netstandard1.0/Serilog.Sinks.Debug.dll",
  6767. "lib/netstandard1.0/Serilog.Sinks.Debug.xml",
  6768. "lib/netstandard2.0/Serilog.Sinks.Debug.dll",
  6769. "lib/netstandard2.0/Serilog.Sinks.Debug.xml",
  6770. "lib/netstandard2.1/Serilog.Sinks.Debug.dll",
  6771. "lib/netstandard2.1/Serilog.Sinks.Debug.xml",
  6772. "serilog.sinks.debug.2.0.0.nupkg.sha512",
  6773. "serilog.sinks.debug.nuspec"
  6774. ]
  6775. },
  6776. "Serilog.Sinks.File/5.0.0": {
  6777. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  6778. "type": "package",
  6779. "path": "serilog.sinks.file/5.0.0",
  6780. "files": [
  6781. ".nupkg.metadata",
  6782. ".signature.p7s",
  6783. "images/icon.png",
  6784. "lib/net45/Serilog.Sinks.File.dll",
  6785. "lib/net45/Serilog.Sinks.File.pdb",
  6786. "lib/net45/Serilog.Sinks.File.xml",
  6787. "lib/net5.0/Serilog.Sinks.File.dll",
  6788. "lib/net5.0/Serilog.Sinks.File.pdb",
  6789. "lib/net5.0/Serilog.Sinks.File.xml",
  6790. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  6791. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  6792. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  6793. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  6794. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  6795. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  6796. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  6797. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  6798. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  6799. "serilog.sinks.file.5.0.0.nupkg.sha512",
  6800. "serilog.sinks.file.nuspec"
  6801. ]
  6802. },
  6803. "StackExchange.Redis/2.2.4": {
  6804. "sha512": "wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==",
  6805. "type": "package",
  6806. "path": "stackexchange.redis/2.2.4",
  6807. "files": [
  6808. ".nupkg.metadata",
  6809. ".signature.p7s",
  6810. "lib/net461/StackExchange.Redis.dll",
  6811. "lib/net461/StackExchange.Redis.xml",
  6812. "lib/net472/StackExchange.Redis.dll",
  6813. "lib/net472/StackExchange.Redis.xml",
  6814. "lib/net5.0/StackExchange.Redis.dll",
  6815. "lib/net5.0/StackExchange.Redis.xml",
  6816. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  6817. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  6818. "lib/netstandard2.0/StackExchange.Redis.dll",
  6819. "lib/netstandard2.0/StackExchange.Redis.xml",
  6820. "stackexchange.redis.2.2.4.nupkg.sha512",
  6821. "stackexchange.redis.nuspec"
  6822. ]
  6823. },
  6824. "Swashbuckle.AspNetCore/6.3.0": {
  6825. "sha512": "3TAV6JqsJF2F5e5d/tiQuW/TlzKXB/n2IcL5QR1FP8ArmLhmPkpeHiLZ3+1YnJ5840/X5ApvpRRJpM9809IjTg==",
  6826. "type": "package",
  6827. "path": "swashbuckle.aspnetcore/6.3.0",
  6828. "files": [
  6829. ".nupkg.metadata",
  6830. ".signature.p7s",
  6831. "build/Swashbuckle.AspNetCore.props",
  6832. "swashbuckle.aspnetcore.6.3.0.nupkg.sha512",
  6833. "swashbuckle.aspnetcore.nuspec"
  6834. ]
  6835. },
  6836. "Swashbuckle.AspNetCore.Swagger/6.3.0": {
  6837. "sha512": "+taHh7kowNF+tQo9a82avwDtfqhAC82jTZTqZwypDpauPvwavyVtJ7+ERxE+yDb6U/nOcMicMmDAGbqbJ2Pc+Q==",
  6838. "type": "package",
  6839. "path": "swashbuckle.aspnetcore.swagger/6.3.0",
  6840. "files": [
  6841. ".nupkg.metadata",
  6842. ".signature.p7s",
  6843. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  6844. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6845. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  6846. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  6847. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6848. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  6849. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  6850. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6851. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  6852. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  6853. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6854. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  6855. "swashbuckle.aspnetcore.swagger.6.3.0.nupkg.sha512",
  6856. "swashbuckle.aspnetcore.swagger.nuspec"
  6857. ]
  6858. },
  6859. "Swashbuckle.AspNetCore.SwaggerGen/6.3.0": {
  6860. "sha512": "8PRLtqCXTIfc+W/pcyab8GqHzHuFRZ3L+9/fix/ssVknwy/pbgkOqgzq9DGWfKz+MZReIp5ajZLR7bXioDdacQ==",
  6861. "type": "package",
  6862. "path": "swashbuckle.aspnetcore.swaggergen/6.3.0",
  6863. "files": [
  6864. ".nupkg.metadata",
  6865. ".signature.p7s",
  6866. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6867. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6868. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6869. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6870. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6871. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6872. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6873. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6874. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6875. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6876. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6877. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6878. "swashbuckle.aspnetcore.swaggergen.6.3.0.nupkg.sha512",
  6879. "swashbuckle.aspnetcore.swaggergen.nuspec"
  6880. ]
  6881. },
  6882. "Swashbuckle.AspNetCore.SwaggerUI/6.3.0": {
  6883. "sha512": "OmVLGzyeNBFUAx6E/bqrZW4uxfv9q2MtegYzeHv5Dj8N34ry8104d6OcyRIV4BhwHBSFD1rMvDlPciguFMtQ5w==",
  6884. "type": "package",
  6885. "path": "swashbuckle.aspnetcore.swaggerui/6.3.0",
  6886. "files": [
  6887. ".nupkg.metadata",
  6888. ".signature.p7s",
  6889. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6890. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6891. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6892. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6893. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6894. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6895. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6896. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6897. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6898. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6899. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6900. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6901. "swashbuckle.aspnetcore.swaggerui.6.3.0.nupkg.sha512",
  6902. "swashbuckle.aspnetcore.swaggerui.nuspec"
  6903. ]
  6904. },
  6905. "System.Buffers/4.5.1": {
  6906. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  6907. "type": "package",
  6908. "path": "system.buffers/4.5.1",
  6909. "files": [
  6910. ".nupkg.metadata",
  6911. ".signature.p7s",
  6912. "LICENSE.TXT",
  6913. "THIRD-PARTY-NOTICES.TXT",
  6914. "lib/net461/System.Buffers.dll",
  6915. "lib/net461/System.Buffers.xml",
  6916. "lib/netcoreapp2.0/_._",
  6917. "lib/netstandard1.1/System.Buffers.dll",
  6918. "lib/netstandard1.1/System.Buffers.xml",
  6919. "lib/netstandard2.0/System.Buffers.dll",
  6920. "lib/netstandard2.0/System.Buffers.xml",
  6921. "lib/uap10.0.16299/_._",
  6922. "ref/net45/System.Buffers.dll",
  6923. "ref/net45/System.Buffers.xml",
  6924. "ref/netcoreapp2.0/_._",
  6925. "ref/netstandard1.1/System.Buffers.dll",
  6926. "ref/netstandard1.1/System.Buffers.xml",
  6927. "ref/netstandard2.0/System.Buffers.dll",
  6928. "ref/netstandard2.0/System.Buffers.xml",
  6929. "ref/uap10.0.16299/_._",
  6930. "system.buffers.4.5.1.nupkg.sha512",
  6931. "system.buffers.nuspec",
  6932. "useSharedDesignerContext.txt",
  6933. "version.txt"
  6934. ]
  6935. },
  6936. "System.Collections/4.3.0": {
  6937. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6938. "type": "package",
  6939. "path": "system.collections/4.3.0",
  6940. "files": [
  6941. ".nupkg.metadata",
  6942. ".signature.p7s",
  6943. "ThirdPartyNotices.txt",
  6944. "dotnet_library_license.txt",
  6945. "lib/MonoAndroid10/_._",
  6946. "lib/MonoTouch10/_._",
  6947. "lib/net45/_._",
  6948. "lib/portable-net45+win8+wp8+wpa81/_._",
  6949. "lib/win8/_._",
  6950. "lib/wp80/_._",
  6951. "lib/wpa81/_._",
  6952. "lib/xamarinios10/_._",
  6953. "lib/xamarinmac20/_._",
  6954. "lib/xamarintvos10/_._",
  6955. "lib/xamarinwatchos10/_._",
  6956. "ref/MonoAndroid10/_._",
  6957. "ref/MonoTouch10/_._",
  6958. "ref/net45/_._",
  6959. "ref/netcore50/System.Collections.dll",
  6960. "ref/netcore50/System.Collections.xml",
  6961. "ref/netcore50/de/System.Collections.xml",
  6962. "ref/netcore50/es/System.Collections.xml",
  6963. "ref/netcore50/fr/System.Collections.xml",
  6964. "ref/netcore50/it/System.Collections.xml",
  6965. "ref/netcore50/ja/System.Collections.xml",
  6966. "ref/netcore50/ko/System.Collections.xml",
  6967. "ref/netcore50/ru/System.Collections.xml",
  6968. "ref/netcore50/zh-hans/System.Collections.xml",
  6969. "ref/netcore50/zh-hant/System.Collections.xml",
  6970. "ref/netstandard1.0/System.Collections.dll",
  6971. "ref/netstandard1.0/System.Collections.xml",
  6972. "ref/netstandard1.0/de/System.Collections.xml",
  6973. "ref/netstandard1.0/es/System.Collections.xml",
  6974. "ref/netstandard1.0/fr/System.Collections.xml",
  6975. "ref/netstandard1.0/it/System.Collections.xml",
  6976. "ref/netstandard1.0/ja/System.Collections.xml",
  6977. "ref/netstandard1.0/ko/System.Collections.xml",
  6978. "ref/netstandard1.0/ru/System.Collections.xml",
  6979. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6980. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6981. "ref/netstandard1.3/System.Collections.dll",
  6982. "ref/netstandard1.3/System.Collections.xml",
  6983. "ref/netstandard1.3/de/System.Collections.xml",
  6984. "ref/netstandard1.3/es/System.Collections.xml",
  6985. "ref/netstandard1.3/fr/System.Collections.xml",
  6986. "ref/netstandard1.3/it/System.Collections.xml",
  6987. "ref/netstandard1.3/ja/System.Collections.xml",
  6988. "ref/netstandard1.3/ko/System.Collections.xml",
  6989. "ref/netstandard1.3/ru/System.Collections.xml",
  6990. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6991. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6992. "ref/portable-net45+win8+wp8+wpa81/_._",
  6993. "ref/win8/_._",
  6994. "ref/wp80/_._",
  6995. "ref/wpa81/_._",
  6996. "ref/xamarinios10/_._",
  6997. "ref/xamarinmac20/_._",
  6998. "ref/xamarintvos10/_._",
  6999. "ref/xamarinwatchos10/_._",
  7000. "system.collections.4.3.0.nupkg.sha512",
  7001. "system.collections.nuspec"
  7002. ]
  7003. },
  7004. "System.Collections.Immutable/6.0.0": {
  7005. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  7006. "type": "package",
  7007. "path": "system.collections.immutable/6.0.0",
  7008. "files": [
  7009. ".nupkg.metadata",
  7010. ".signature.p7s",
  7011. "Icon.png",
  7012. "LICENSE.TXT",
  7013. "THIRD-PARTY-NOTICES.TXT",
  7014. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  7015. "buildTransitive/netcoreapp3.1/_._",
  7016. "lib/net461/System.Collections.Immutable.dll",
  7017. "lib/net461/System.Collections.Immutable.xml",
  7018. "lib/net6.0/System.Collections.Immutable.dll",
  7019. "lib/net6.0/System.Collections.Immutable.xml",
  7020. "lib/netstandard2.0/System.Collections.Immutable.dll",
  7021. "lib/netstandard2.0/System.Collections.Immutable.xml",
  7022. "system.collections.immutable.6.0.0.nupkg.sha512",
  7023. "system.collections.immutable.nuspec",
  7024. "useSharedDesignerContext.txt"
  7025. ]
  7026. },
  7027. "System.Configuration.ConfigurationManager/6.0.1": {
  7028. "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  7029. "type": "package",
  7030. "path": "system.configuration.configurationmanager/6.0.1",
  7031. "files": [
  7032. ".nupkg.metadata",
  7033. ".signature.p7s",
  7034. "Icon.png",
  7035. "LICENSE.TXT",
  7036. "THIRD-PARTY-NOTICES.TXT",
  7037. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  7038. "buildTransitive/netcoreapp3.1/_._",
  7039. "lib/net461/System.Configuration.ConfigurationManager.dll",
  7040. "lib/net461/System.Configuration.ConfigurationManager.xml",
  7041. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  7042. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  7043. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  7044. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  7045. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  7046. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  7047. "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
  7048. "system.configuration.configurationmanager.nuspec",
  7049. "useSharedDesignerContext.txt"
  7050. ]
  7051. },
  7052. "System.Data.SqlClient/4.8.5": {
  7053. "sha512": "fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==",
  7054. "type": "package",
  7055. "path": "system.data.sqlclient/4.8.5",
  7056. "files": [
  7057. ".nupkg.metadata",
  7058. ".signature.p7s",
  7059. "Icon.png",
  7060. "LICENSE.TXT",
  7061. "THIRD-PARTY-NOTICES.TXT",
  7062. "lib/MonoAndroid10/_._",
  7063. "lib/MonoTouch10/_._",
  7064. "lib/net451/System.Data.SqlClient.dll",
  7065. "lib/net46/System.Data.SqlClient.dll",
  7066. "lib/net461/System.Data.SqlClient.dll",
  7067. "lib/net461/System.Data.SqlClient.xml",
  7068. "lib/netcoreapp2.1/System.Data.SqlClient.dll",
  7069. "lib/netcoreapp2.1/System.Data.SqlClient.xml",
  7070. "lib/netstandard1.2/System.Data.SqlClient.dll",
  7071. "lib/netstandard1.2/System.Data.SqlClient.xml",
  7072. "lib/netstandard1.3/System.Data.SqlClient.dll",
  7073. "lib/netstandard1.3/System.Data.SqlClient.xml",
  7074. "lib/netstandard2.0/System.Data.SqlClient.dll",
  7075. "lib/netstandard2.0/System.Data.SqlClient.xml",
  7076. "lib/xamarinios10/_._",
  7077. "lib/xamarinmac20/_._",
  7078. "lib/xamarintvos10/_._",
  7079. "lib/xamarinwatchos10/_._",
  7080. "ref/MonoAndroid10/_._",
  7081. "ref/MonoTouch10/_._",
  7082. "ref/net451/System.Data.SqlClient.dll",
  7083. "ref/net46/System.Data.SqlClient.dll",
  7084. "ref/net461/System.Data.SqlClient.dll",
  7085. "ref/net461/System.Data.SqlClient.xml",
  7086. "ref/netcoreapp2.1/System.Data.SqlClient.dll",
  7087. "ref/netcoreapp2.1/System.Data.SqlClient.xml",
  7088. "ref/netstandard1.2/System.Data.SqlClient.dll",
  7089. "ref/netstandard1.2/System.Data.SqlClient.xml",
  7090. "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  7091. "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  7092. "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  7093. "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  7094. "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  7095. "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  7096. "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  7097. "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  7098. "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  7099. "ref/netstandard1.3/System.Data.SqlClient.dll",
  7100. "ref/netstandard1.3/System.Data.SqlClient.xml",
  7101. "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  7102. "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  7103. "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  7104. "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  7105. "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  7106. "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  7107. "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  7108. "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  7109. "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  7110. "ref/netstandard2.0/System.Data.SqlClient.dll",
  7111. "ref/netstandard2.0/System.Data.SqlClient.xml",
  7112. "ref/xamarinios10/_._",
  7113. "ref/xamarinmac20/_._",
  7114. "ref/xamarintvos10/_._",
  7115. "ref/xamarinwatchos10/_._",
  7116. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  7117. "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  7118. "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  7119. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll",
  7120. "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml",
  7121. "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  7122. "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  7123. "runtimes/win/lib/net461/System.Data.SqlClient.dll",
  7124. "runtimes/win/lib/net461/System.Data.SqlClient.xml",
  7125. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll",
  7126. "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml",
  7127. "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll",
  7128. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll",
  7129. "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml",
  7130. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll",
  7131. "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml",
  7132. "system.data.sqlclient.4.8.5.nupkg.sha512",
  7133. "system.data.sqlclient.nuspec",
  7134. "useSharedDesignerContext.txt",
  7135. "version.txt"
  7136. ]
  7137. },
  7138. "System.Diagnostics.Debug/4.3.0": {
  7139. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  7140. "type": "package",
  7141. "path": "system.diagnostics.debug/4.3.0",
  7142. "files": [
  7143. ".nupkg.metadata",
  7144. ".signature.p7s",
  7145. "ThirdPartyNotices.txt",
  7146. "dotnet_library_license.txt",
  7147. "lib/MonoAndroid10/_._",
  7148. "lib/MonoTouch10/_._",
  7149. "lib/net45/_._",
  7150. "lib/portable-net45+win8+wp8+wpa81/_._",
  7151. "lib/win8/_._",
  7152. "lib/wp80/_._",
  7153. "lib/wpa81/_._",
  7154. "lib/xamarinios10/_._",
  7155. "lib/xamarinmac20/_._",
  7156. "lib/xamarintvos10/_._",
  7157. "lib/xamarinwatchos10/_._",
  7158. "ref/MonoAndroid10/_._",
  7159. "ref/MonoTouch10/_._",
  7160. "ref/net45/_._",
  7161. "ref/netcore50/System.Diagnostics.Debug.dll",
  7162. "ref/netcore50/System.Diagnostics.Debug.xml",
  7163. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  7164. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  7165. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  7166. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  7167. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  7168. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  7169. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  7170. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  7171. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  7172. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  7173. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  7174. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  7175. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  7176. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  7177. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  7178. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  7179. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  7180. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  7181. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  7182. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  7183. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  7184. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  7185. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  7186. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  7187. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  7188. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  7189. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  7190. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  7191. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  7192. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  7193. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  7194. "ref/portable-net45+win8+wp8+wpa81/_._",
  7195. "ref/win8/_._",
  7196. "ref/wp80/_._",
  7197. "ref/wpa81/_._",
  7198. "ref/xamarinios10/_._",
  7199. "ref/xamarinmac20/_._",
  7200. "ref/xamarintvos10/_._",
  7201. "ref/xamarinwatchos10/_._",
  7202. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  7203. "system.diagnostics.debug.nuspec"
  7204. ]
  7205. },
  7206. "System.Diagnostics.DiagnosticSource/6.0.0": {
  7207. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  7208. "type": "package",
  7209. "path": "system.diagnostics.diagnosticsource/6.0.0",
  7210. "files": [
  7211. ".nupkg.metadata",
  7212. ".signature.p7s",
  7213. "Icon.png",
  7214. "LICENSE.TXT",
  7215. "THIRD-PARTY-NOTICES.TXT",
  7216. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  7217. "buildTransitive/netcoreapp3.1/_._",
  7218. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  7219. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  7220. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  7221. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  7222. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  7223. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  7224. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  7225. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  7226. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  7227. "system.diagnostics.diagnosticsource.nuspec",
  7228. "useSharedDesignerContext.txt"
  7229. ]
  7230. },
  7231. "System.Diagnostics.EventLog/6.0.0": {
  7232. "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==",
  7233. "type": "package",
  7234. "path": "system.diagnostics.eventlog/6.0.0",
  7235. "files": [
  7236. ".nupkg.metadata",
  7237. ".signature.p7s",
  7238. "Icon.png",
  7239. "LICENSE.TXT",
  7240. "THIRD-PARTY-NOTICES.TXT",
  7241. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  7242. "buildTransitive/netcoreapp3.1/_._",
  7243. "lib/net461/System.Diagnostics.EventLog.dll",
  7244. "lib/net461/System.Diagnostics.EventLog.xml",
  7245. "lib/net6.0/System.Diagnostics.EventLog.dll",
  7246. "lib/net6.0/System.Diagnostics.EventLog.xml",
  7247. "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll",
  7248. "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml",
  7249. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  7250. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  7251. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  7252. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  7253. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  7254. "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll",
  7255. "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll",
  7256. "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml",
  7257. "system.diagnostics.eventlog.6.0.0.nupkg.sha512",
  7258. "system.diagnostics.eventlog.nuspec",
  7259. "useSharedDesignerContext.txt"
  7260. ]
  7261. },
  7262. "System.Diagnostics.PerformanceCounter/5.0.0": {
  7263. "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==",
  7264. "type": "package",
  7265. "path": "system.diagnostics.performancecounter/5.0.0",
  7266. "files": [
  7267. ".nupkg.metadata",
  7268. ".signature.p7s",
  7269. "Icon.png",
  7270. "LICENSE.TXT",
  7271. "THIRD-PARTY-NOTICES.TXT",
  7272. "lib/MonoAndroid10/_._",
  7273. "lib/MonoTouch10/_._",
  7274. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  7275. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  7276. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  7277. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  7278. "lib/xamarinios10/_._",
  7279. "lib/xamarinmac20/_._",
  7280. "lib/xamarintvos10/_._",
  7281. "lib/xamarinwatchos10/_._",
  7282. "ref/MonoAndroid10/_._",
  7283. "ref/MonoTouch10/_._",
  7284. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  7285. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  7286. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  7287. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  7288. "ref/xamarinios10/_._",
  7289. "ref/xamarinmac20/_._",
  7290. "ref/xamarintvos10/_._",
  7291. "ref/xamarinwatchos10/_._",
  7292. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  7293. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  7294. "system.diagnostics.performancecounter.5.0.0.nupkg.sha512",
  7295. "system.diagnostics.performancecounter.nuspec",
  7296. "useSharedDesignerContext.txt",
  7297. "version.txt"
  7298. ]
  7299. },
  7300. "System.Drawing.Common/6.0.0": {
  7301. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  7302. "type": "package",
  7303. "path": "system.drawing.common/6.0.0",
  7304. "files": [
  7305. ".nupkg.metadata",
  7306. ".signature.p7s",
  7307. "Icon.png",
  7308. "LICENSE.TXT",
  7309. "THIRD-PARTY-NOTICES.TXT",
  7310. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  7311. "buildTransitive/netcoreapp3.1/_._",
  7312. "lib/MonoAndroid10/_._",
  7313. "lib/MonoTouch10/_._",
  7314. "lib/net461/System.Drawing.Common.dll",
  7315. "lib/net461/System.Drawing.Common.xml",
  7316. "lib/net6.0/System.Drawing.Common.dll",
  7317. "lib/net6.0/System.Drawing.Common.xml",
  7318. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  7319. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  7320. "lib/netstandard2.0/System.Drawing.Common.dll",
  7321. "lib/netstandard2.0/System.Drawing.Common.xml",
  7322. "lib/xamarinios10/_._",
  7323. "lib/xamarinmac20/_._",
  7324. "lib/xamarintvos10/_._",
  7325. "lib/xamarinwatchos10/_._",
  7326. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  7327. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  7328. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  7329. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  7330. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  7331. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  7332. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  7333. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  7334. "system.drawing.common.6.0.0.nupkg.sha512",
  7335. "system.drawing.common.nuspec",
  7336. "useSharedDesignerContext.txt"
  7337. ]
  7338. },
  7339. "System.Formats.Asn1/6.0.0": {
  7340. "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
  7341. "type": "package",
  7342. "path": "system.formats.asn1/6.0.0",
  7343. "files": [
  7344. ".nupkg.metadata",
  7345. ".signature.p7s",
  7346. "Icon.png",
  7347. "LICENSE.TXT",
  7348. "THIRD-PARTY-NOTICES.TXT",
  7349. "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
  7350. "buildTransitive/netcoreapp3.1/_._",
  7351. "lib/net461/System.Formats.Asn1.dll",
  7352. "lib/net461/System.Formats.Asn1.xml",
  7353. "lib/net6.0/System.Formats.Asn1.dll",
  7354. "lib/net6.0/System.Formats.Asn1.xml",
  7355. "lib/netstandard2.0/System.Formats.Asn1.dll",
  7356. "lib/netstandard2.0/System.Formats.Asn1.xml",
  7357. "system.formats.asn1.6.0.0.nupkg.sha512",
  7358. "system.formats.asn1.nuspec",
  7359. "useSharedDesignerContext.txt"
  7360. ]
  7361. },
  7362. "System.Globalization/4.3.0": {
  7363. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  7364. "type": "package",
  7365. "path": "system.globalization/4.3.0",
  7366. "files": [
  7367. ".nupkg.metadata",
  7368. ".signature.p7s",
  7369. "ThirdPartyNotices.txt",
  7370. "dotnet_library_license.txt",
  7371. "lib/MonoAndroid10/_._",
  7372. "lib/MonoTouch10/_._",
  7373. "lib/net45/_._",
  7374. "lib/portable-net45+win8+wp8+wpa81/_._",
  7375. "lib/win8/_._",
  7376. "lib/wp80/_._",
  7377. "lib/wpa81/_._",
  7378. "lib/xamarinios10/_._",
  7379. "lib/xamarinmac20/_._",
  7380. "lib/xamarintvos10/_._",
  7381. "lib/xamarinwatchos10/_._",
  7382. "ref/MonoAndroid10/_._",
  7383. "ref/MonoTouch10/_._",
  7384. "ref/net45/_._",
  7385. "ref/netcore50/System.Globalization.dll",
  7386. "ref/netcore50/System.Globalization.xml",
  7387. "ref/netcore50/de/System.Globalization.xml",
  7388. "ref/netcore50/es/System.Globalization.xml",
  7389. "ref/netcore50/fr/System.Globalization.xml",
  7390. "ref/netcore50/it/System.Globalization.xml",
  7391. "ref/netcore50/ja/System.Globalization.xml",
  7392. "ref/netcore50/ko/System.Globalization.xml",
  7393. "ref/netcore50/ru/System.Globalization.xml",
  7394. "ref/netcore50/zh-hans/System.Globalization.xml",
  7395. "ref/netcore50/zh-hant/System.Globalization.xml",
  7396. "ref/netstandard1.0/System.Globalization.dll",
  7397. "ref/netstandard1.0/System.Globalization.xml",
  7398. "ref/netstandard1.0/de/System.Globalization.xml",
  7399. "ref/netstandard1.0/es/System.Globalization.xml",
  7400. "ref/netstandard1.0/fr/System.Globalization.xml",
  7401. "ref/netstandard1.0/it/System.Globalization.xml",
  7402. "ref/netstandard1.0/ja/System.Globalization.xml",
  7403. "ref/netstandard1.0/ko/System.Globalization.xml",
  7404. "ref/netstandard1.0/ru/System.Globalization.xml",
  7405. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7406. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7407. "ref/netstandard1.3/System.Globalization.dll",
  7408. "ref/netstandard1.3/System.Globalization.xml",
  7409. "ref/netstandard1.3/de/System.Globalization.xml",
  7410. "ref/netstandard1.3/es/System.Globalization.xml",
  7411. "ref/netstandard1.3/fr/System.Globalization.xml",
  7412. "ref/netstandard1.3/it/System.Globalization.xml",
  7413. "ref/netstandard1.3/ja/System.Globalization.xml",
  7414. "ref/netstandard1.3/ko/System.Globalization.xml",
  7415. "ref/netstandard1.3/ru/System.Globalization.xml",
  7416. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7417. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7418. "ref/portable-net45+win8+wp8+wpa81/_._",
  7419. "ref/win8/_._",
  7420. "ref/wp80/_._",
  7421. "ref/wpa81/_._",
  7422. "ref/xamarinios10/_._",
  7423. "ref/xamarinmac20/_._",
  7424. "ref/xamarintvos10/_._",
  7425. "ref/xamarinwatchos10/_._",
  7426. "system.globalization.4.3.0.nupkg.sha512",
  7427. "system.globalization.nuspec"
  7428. ]
  7429. },
  7430. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  7431. "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
  7432. "type": "package",
  7433. "path": "system.identitymodel.tokens.jwt/6.8.0",
  7434. "files": [
  7435. ".nupkg.metadata",
  7436. ".signature.p7s",
  7437. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  7438. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  7439. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  7440. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  7441. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  7442. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  7443. "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
  7444. "system.identitymodel.tokens.jwt.nuspec"
  7445. ]
  7446. },
  7447. "System.IO/4.3.0": {
  7448. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7449. "type": "package",
  7450. "path": "system.io/4.3.0",
  7451. "files": [
  7452. ".nupkg.metadata",
  7453. ".signature.p7s",
  7454. "ThirdPartyNotices.txt",
  7455. "dotnet_library_license.txt",
  7456. "lib/MonoAndroid10/_._",
  7457. "lib/MonoTouch10/_._",
  7458. "lib/net45/_._",
  7459. "lib/net462/System.IO.dll",
  7460. "lib/portable-net45+win8+wp8+wpa81/_._",
  7461. "lib/win8/_._",
  7462. "lib/wp80/_._",
  7463. "lib/wpa81/_._",
  7464. "lib/xamarinios10/_._",
  7465. "lib/xamarinmac20/_._",
  7466. "lib/xamarintvos10/_._",
  7467. "lib/xamarinwatchos10/_._",
  7468. "ref/MonoAndroid10/_._",
  7469. "ref/MonoTouch10/_._",
  7470. "ref/net45/_._",
  7471. "ref/net462/System.IO.dll",
  7472. "ref/netcore50/System.IO.dll",
  7473. "ref/netcore50/System.IO.xml",
  7474. "ref/netcore50/de/System.IO.xml",
  7475. "ref/netcore50/es/System.IO.xml",
  7476. "ref/netcore50/fr/System.IO.xml",
  7477. "ref/netcore50/it/System.IO.xml",
  7478. "ref/netcore50/ja/System.IO.xml",
  7479. "ref/netcore50/ko/System.IO.xml",
  7480. "ref/netcore50/ru/System.IO.xml",
  7481. "ref/netcore50/zh-hans/System.IO.xml",
  7482. "ref/netcore50/zh-hant/System.IO.xml",
  7483. "ref/netstandard1.0/System.IO.dll",
  7484. "ref/netstandard1.0/System.IO.xml",
  7485. "ref/netstandard1.0/de/System.IO.xml",
  7486. "ref/netstandard1.0/es/System.IO.xml",
  7487. "ref/netstandard1.0/fr/System.IO.xml",
  7488. "ref/netstandard1.0/it/System.IO.xml",
  7489. "ref/netstandard1.0/ja/System.IO.xml",
  7490. "ref/netstandard1.0/ko/System.IO.xml",
  7491. "ref/netstandard1.0/ru/System.IO.xml",
  7492. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7493. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7494. "ref/netstandard1.3/System.IO.dll",
  7495. "ref/netstandard1.3/System.IO.xml",
  7496. "ref/netstandard1.3/de/System.IO.xml",
  7497. "ref/netstandard1.3/es/System.IO.xml",
  7498. "ref/netstandard1.3/fr/System.IO.xml",
  7499. "ref/netstandard1.3/it/System.IO.xml",
  7500. "ref/netstandard1.3/ja/System.IO.xml",
  7501. "ref/netstandard1.3/ko/System.IO.xml",
  7502. "ref/netstandard1.3/ru/System.IO.xml",
  7503. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7504. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7505. "ref/netstandard1.5/System.IO.dll",
  7506. "ref/netstandard1.5/System.IO.xml",
  7507. "ref/netstandard1.5/de/System.IO.xml",
  7508. "ref/netstandard1.5/es/System.IO.xml",
  7509. "ref/netstandard1.5/fr/System.IO.xml",
  7510. "ref/netstandard1.5/it/System.IO.xml",
  7511. "ref/netstandard1.5/ja/System.IO.xml",
  7512. "ref/netstandard1.5/ko/System.IO.xml",
  7513. "ref/netstandard1.5/ru/System.IO.xml",
  7514. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7515. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7516. "ref/portable-net45+win8+wp8+wpa81/_._",
  7517. "ref/win8/_._",
  7518. "ref/wp80/_._",
  7519. "ref/wpa81/_._",
  7520. "ref/xamarinios10/_._",
  7521. "ref/xamarinmac20/_._",
  7522. "ref/xamarintvos10/_._",
  7523. "ref/xamarinwatchos10/_._",
  7524. "system.io.4.3.0.nupkg.sha512",
  7525. "system.io.nuspec"
  7526. ]
  7527. },
  7528. "System.IO.Pipelines/5.0.2": {
  7529. "sha512": "Iew+dfa6FFiyvWBdRmXApixRY1db+beyutpIck4SOSe0NLM8FD/7AD54MscqVLhvfSMLHO7KadjTRT7fqxOGTA==",
  7530. "type": "package",
  7531. "path": "system.io.pipelines/5.0.2",
  7532. "files": [
  7533. ".nupkg.metadata",
  7534. ".signature.p7s",
  7535. "Icon.png",
  7536. "LICENSE.TXT",
  7537. "THIRD-PARTY-NOTICES.TXT",
  7538. "lib/net461/System.IO.Pipelines.dll",
  7539. "lib/net461/System.IO.Pipelines.xml",
  7540. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7541. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7542. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7543. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7544. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7545. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7546. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7547. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7548. "system.io.pipelines.5.0.2.nupkg.sha512",
  7549. "system.io.pipelines.nuspec",
  7550. "useSharedDesignerContext.txt",
  7551. "version.txt"
  7552. ]
  7553. },
  7554. "System.Linq/4.3.0": {
  7555. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7556. "type": "package",
  7557. "path": "system.linq/4.3.0",
  7558. "files": [
  7559. ".nupkg.metadata",
  7560. ".signature.p7s",
  7561. "ThirdPartyNotices.txt",
  7562. "dotnet_library_license.txt",
  7563. "lib/MonoAndroid10/_._",
  7564. "lib/MonoTouch10/_._",
  7565. "lib/net45/_._",
  7566. "lib/net463/System.Linq.dll",
  7567. "lib/netcore50/System.Linq.dll",
  7568. "lib/netstandard1.6/System.Linq.dll",
  7569. "lib/portable-net45+win8+wp8+wpa81/_._",
  7570. "lib/win8/_._",
  7571. "lib/wp80/_._",
  7572. "lib/wpa81/_._",
  7573. "lib/xamarinios10/_._",
  7574. "lib/xamarinmac20/_._",
  7575. "lib/xamarintvos10/_._",
  7576. "lib/xamarinwatchos10/_._",
  7577. "ref/MonoAndroid10/_._",
  7578. "ref/MonoTouch10/_._",
  7579. "ref/net45/_._",
  7580. "ref/net463/System.Linq.dll",
  7581. "ref/netcore50/System.Linq.dll",
  7582. "ref/netcore50/System.Linq.xml",
  7583. "ref/netcore50/de/System.Linq.xml",
  7584. "ref/netcore50/es/System.Linq.xml",
  7585. "ref/netcore50/fr/System.Linq.xml",
  7586. "ref/netcore50/it/System.Linq.xml",
  7587. "ref/netcore50/ja/System.Linq.xml",
  7588. "ref/netcore50/ko/System.Linq.xml",
  7589. "ref/netcore50/ru/System.Linq.xml",
  7590. "ref/netcore50/zh-hans/System.Linq.xml",
  7591. "ref/netcore50/zh-hant/System.Linq.xml",
  7592. "ref/netstandard1.0/System.Linq.dll",
  7593. "ref/netstandard1.0/System.Linq.xml",
  7594. "ref/netstandard1.0/de/System.Linq.xml",
  7595. "ref/netstandard1.0/es/System.Linq.xml",
  7596. "ref/netstandard1.0/fr/System.Linq.xml",
  7597. "ref/netstandard1.0/it/System.Linq.xml",
  7598. "ref/netstandard1.0/ja/System.Linq.xml",
  7599. "ref/netstandard1.0/ko/System.Linq.xml",
  7600. "ref/netstandard1.0/ru/System.Linq.xml",
  7601. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7602. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7603. "ref/netstandard1.6/System.Linq.dll",
  7604. "ref/netstandard1.6/System.Linq.xml",
  7605. "ref/netstandard1.6/de/System.Linq.xml",
  7606. "ref/netstandard1.6/es/System.Linq.xml",
  7607. "ref/netstandard1.6/fr/System.Linq.xml",
  7608. "ref/netstandard1.6/it/System.Linq.xml",
  7609. "ref/netstandard1.6/ja/System.Linq.xml",
  7610. "ref/netstandard1.6/ko/System.Linq.xml",
  7611. "ref/netstandard1.6/ru/System.Linq.xml",
  7612. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7613. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7614. "ref/portable-net45+win8+wp8+wpa81/_._",
  7615. "ref/win8/_._",
  7616. "ref/wp80/_._",
  7617. "ref/wpa81/_._",
  7618. "ref/xamarinios10/_._",
  7619. "ref/xamarinmac20/_._",
  7620. "ref/xamarintvos10/_._",
  7621. "ref/xamarinwatchos10/_._",
  7622. "system.linq.4.3.0.nupkg.sha512",
  7623. "system.linq.nuspec"
  7624. ]
  7625. },
  7626. "System.Linq.Dynamic.Core/1.2.18": {
  7627. "sha512": "+RH90sKD6SK2c9MD2Xo2jz1hkAJYfgPVyW1VgAwiPURR+JzOJCdvsDBg2Iq97FmTymxlQBY76G1cMxsF6j+6tA==",
  7628. "type": "package",
  7629. "path": "system.linq.dynamic.core/1.2.18",
  7630. "files": [
  7631. ".nupkg.metadata",
  7632. ".signature.p7s",
  7633. "lib/net35/System.Linq.Dynamic.Core.dll",
  7634. "lib/net35/System.Linq.Dynamic.Core.pdb",
  7635. "lib/net35/System.Linq.Dynamic.Core.xml",
  7636. "lib/net40/System.Linq.Dynamic.Core.dll",
  7637. "lib/net40/System.Linq.Dynamic.Core.pdb",
  7638. "lib/net40/System.Linq.Dynamic.Core.xml",
  7639. "lib/net45/System.Linq.Dynamic.Core.dll",
  7640. "lib/net45/System.Linq.Dynamic.Core.pdb",
  7641. "lib/net45/System.Linq.Dynamic.Core.xml",
  7642. "lib/net452/System.Linq.Dynamic.Core.dll",
  7643. "lib/net452/System.Linq.Dynamic.Core.pdb",
  7644. "lib/net452/System.Linq.Dynamic.Core.xml",
  7645. "lib/net46/System.Linq.Dynamic.Core.dll",
  7646. "lib/net46/System.Linq.Dynamic.Core.pdb",
  7647. "lib/net46/System.Linq.Dynamic.Core.xml",
  7648. "lib/net5.0/System.Linq.Dynamic.Core.dll",
  7649. "lib/net5.0/System.Linq.Dynamic.Core.pdb",
  7650. "lib/net5.0/System.Linq.Dynamic.Core.xml",
  7651. "lib/net6.0/System.Linq.Dynamic.Core.dll",
  7652. "lib/net6.0/System.Linq.Dynamic.Core.pdb",
  7653. "lib/net6.0/System.Linq.Dynamic.Core.xml",
  7654. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
  7655. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
  7656. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
  7657. "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
  7658. "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
  7659. "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
  7660. "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
  7661. "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
  7662. "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
  7663. "lib/netstandard2.1/System.Linq.Dynamic.Core.dll",
  7664. "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb",
  7665. "lib/netstandard2.1/System.Linq.Dynamic.Core.xml",
  7666. "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll",
  7667. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb",
  7668. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri",
  7669. "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml",
  7670. "system.linq.dynamic.core.1.2.18.nupkg.sha512",
  7671. "system.linq.dynamic.core.nuspec"
  7672. ]
  7673. },
  7674. "System.Linq.Expressions/4.3.0": {
  7675. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7676. "type": "package",
  7677. "path": "system.linq.expressions/4.3.0",
  7678. "files": [
  7679. ".nupkg.metadata",
  7680. ".signature.p7s",
  7681. "ThirdPartyNotices.txt",
  7682. "dotnet_library_license.txt",
  7683. "lib/MonoAndroid10/_._",
  7684. "lib/MonoTouch10/_._",
  7685. "lib/net45/_._",
  7686. "lib/net463/System.Linq.Expressions.dll",
  7687. "lib/netcore50/System.Linq.Expressions.dll",
  7688. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7689. "lib/portable-net45+win8+wp8+wpa81/_._",
  7690. "lib/win8/_._",
  7691. "lib/wp80/_._",
  7692. "lib/wpa81/_._",
  7693. "lib/xamarinios10/_._",
  7694. "lib/xamarinmac20/_._",
  7695. "lib/xamarintvos10/_._",
  7696. "lib/xamarinwatchos10/_._",
  7697. "ref/MonoAndroid10/_._",
  7698. "ref/MonoTouch10/_._",
  7699. "ref/net45/_._",
  7700. "ref/net463/System.Linq.Expressions.dll",
  7701. "ref/netcore50/System.Linq.Expressions.dll",
  7702. "ref/netcore50/System.Linq.Expressions.xml",
  7703. "ref/netcore50/de/System.Linq.Expressions.xml",
  7704. "ref/netcore50/es/System.Linq.Expressions.xml",
  7705. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7706. "ref/netcore50/it/System.Linq.Expressions.xml",
  7707. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7708. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7709. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7710. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7711. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7712. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7713. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7714. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7715. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7716. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7717. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7718. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7719. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7720. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7721. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7722. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7723. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7724. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7725. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7726. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7727. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7728. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7729. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7730. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7731. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7732. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7733. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7734. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7735. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7736. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7737. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7738. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7739. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7740. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7741. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7742. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7743. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7744. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7745. "ref/portable-net45+win8+wp8+wpa81/_._",
  7746. "ref/win8/_._",
  7747. "ref/wp80/_._",
  7748. "ref/wpa81/_._",
  7749. "ref/xamarinios10/_._",
  7750. "ref/xamarinmac20/_._",
  7751. "ref/xamarintvos10/_._",
  7752. "ref/xamarinwatchos10/_._",
  7753. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7754. "system.linq.expressions.4.3.0.nupkg.sha512",
  7755. "system.linq.expressions.nuspec"
  7756. ]
  7757. },
  7758. "System.Linq.Queryable/4.3.0": {
  7759. "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
  7760. "type": "package",
  7761. "path": "system.linq.queryable/4.3.0",
  7762. "files": [
  7763. ".nupkg.metadata",
  7764. ".signature.p7s",
  7765. "ThirdPartyNotices.txt",
  7766. "dotnet_library_license.txt",
  7767. "lib/monoandroid10/_._",
  7768. "lib/monotouch10/_._",
  7769. "lib/net45/_._",
  7770. "lib/netcore50/System.Linq.Queryable.dll",
  7771. "lib/netstandard1.3/System.Linq.Queryable.dll",
  7772. "lib/portable-net45+win8+wp8+wpa81/_._",
  7773. "lib/win8/_._",
  7774. "lib/wp80/_._",
  7775. "lib/wpa81/_._",
  7776. "lib/xamarinios10/_._",
  7777. "lib/xamarinmac20/_._",
  7778. "lib/xamarintvos10/_._",
  7779. "lib/xamarinwatchos10/_._",
  7780. "ref/monoandroid10/_._",
  7781. "ref/monotouch10/_._",
  7782. "ref/net45/_._",
  7783. "ref/netcore50/System.Linq.Queryable.dll",
  7784. "ref/netcore50/System.Linq.Queryable.xml",
  7785. "ref/netcore50/de/System.Linq.Queryable.xml",
  7786. "ref/netcore50/es/System.Linq.Queryable.xml",
  7787. "ref/netcore50/fr/System.Linq.Queryable.xml",
  7788. "ref/netcore50/it/System.Linq.Queryable.xml",
  7789. "ref/netcore50/ja/System.Linq.Queryable.xml",
  7790. "ref/netcore50/ko/System.Linq.Queryable.xml",
  7791. "ref/netcore50/ru/System.Linq.Queryable.xml",
  7792. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  7793. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  7794. "ref/netstandard1.0/System.Linq.Queryable.dll",
  7795. "ref/netstandard1.0/System.Linq.Queryable.xml",
  7796. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  7797. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  7798. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  7799. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  7800. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  7801. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  7802. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  7803. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  7804. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  7805. "ref/portable-net45+win8+wp8+wpa81/_._",
  7806. "ref/win8/_._",
  7807. "ref/wp80/_._",
  7808. "ref/wpa81/_._",
  7809. "ref/xamarinios10/_._",
  7810. "ref/xamarinmac20/_._",
  7811. "ref/xamarintvos10/_._",
  7812. "ref/xamarinwatchos10/_._",
  7813. "system.linq.queryable.4.3.0.nupkg.sha512",
  7814. "system.linq.queryable.nuspec"
  7815. ]
  7816. },
  7817. "System.Memory/4.5.4": {
  7818. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  7819. "type": "package",
  7820. "path": "system.memory/4.5.4",
  7821. "files": [
  7822. ".nupkg.metadata",
  7823. ".signature.p7s",
  7824. "LICENSE.TXT",
  7825. "THIRD-PARTY-NOTICES.TXT",
  7826. "lib/net461/System.Memory.dll",
  7827. "lib/net461/System.Memory.xml",
  7828. "lib/netcoreapp2.1/_._",
  7829. "lib/netstandard1.1/System.Memory.dll",
  7830. "lib/netstandard1.1/System.Memory.xml",
  7831. "lib/netstandard2.0/System.Memory.dll",
  7832. "lib/netstandard2.0/System.Memory.xml",
  7833. "ref/netcoreapp2.1/_._",
  7834. "system.memory.4.5.4.nupkg.sha512",
  7835. "system.memory.nuspec",
  7836. "useSharedDesignerContext.txt",
  7837. "version.txt"
  7838. ]
  7839. },
  7840. "System.ObjectModel/4.3.0": {
  7841. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7842. "type": "package",
  7843. "path": "system.objectmodel/4.3.0",
  7844. "files": [
  7845. ".nupkg.metadata",
  7846. ".signature.p7s",
  7847. "ThirdPartyNotices.txt",
  7848. "dotnet_library_license.txt",
  7849. "lib/MonoAndroid10/_._",
  7850. "lib/MonoTouch10/_._",
  7851. "lib/net45/_._",
  7852. "lib/netcore50/System.ObjectModel.dll",
  7853. "lib/netstandard1.3/System.ObjectModel.dll",
  7854. "lib/portable-net45+win8+wp8+wpa81/_._",
  7855. "lib/win8/_._",
  7856. "lib/wp80/_._",
  7857. "lib/wpa81/_._",
  7858. "lib/xamarinios10/_._",
  7859. "lib/xamarinmac20/_._",
  7860. "lib/xamarintvos10/_._",
  7861. "lib/xamarinwatchos10/_._",
  7862. "ref/MonoAndroid10/_._",
  7863. "ref/MonoTouch10/_._",
  7864. "ref/net45/_._",
  7865. "ref/netcore50/System.ObjectModel.dll",
  7866. "ref/netcore50/System.ObjectModel.xml",
  7867. "ref/netcore50/de/System.ObjectModel.xml",
  7868. "ref/netcore50/es/System.ObjectModel.xml",
  7869. "ref/netcore50/fr/System.ObjectModel.xml",
  7870. "ref/netcore50/it/System.ObjectModel.xml",
  7871. "ref/netcore50/ja/System.ObjectModel.xml",
  7872. "ref/netcore50/ko/System.ObjectModel.xml",
  7873. "ref/netcore50/ru/System.ObjectModel.xml",
  7874. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7875. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7876. "ref/netstandard1.0/System.ObjectModel.dll",
  7877. "ref/netstandard1.0/System.ObjectModel.xml",
  7878. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7879. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7880. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7881. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7882. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7883. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7884. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7885. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7886. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7887. "ref/netstandard1.3/System.ObjectModel.dll",
  7888. "ref/netstandard1.3/System.ObjectModel.xml",
  7889. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7890. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7891. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7892. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7893. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7894. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7895. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7896. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7897. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7898. "ref/portable-net45+win8+wp8+wpa81/_._",
  7899. "ref/win8/_._",
  7900. "ref/wp80/_._",
  7901. "ref/wpa81/_._",
  7902. "ref/xamarinios10/_._",
  7903. "ref/xamarinmac20/_._",
  7904. "ref/xamarintvos10/_._",
  7905. "ref/xamarinwatchos10/_._",
  7906. "system.objectmodel.4.3.0.nupkg.sha512",
  7907. "system.objectmodel.nuspec"
  7908. ]
  7909. },
  7910. "System.Reflection/4.3.0": {
  7911. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7912. "type": "package",
  7913. "path": "system.reflection/4.3.0",
  7914. "files": [
  7915. ".nupkg.metadata",
  7916. ".signature.p7s",
  7917. "ThirdPartyNotices.txt",
  7918. "dotnet_library_license.txt",
  7919. "lib/MonoAndroid10/_._",
  7920. "lib/MonoTouch10/_._",
  7921. "lib/net45/_._",
  7922. "lib/net462/System.Reflection.dll",
  7923. "lib/portable-net45+win8+wp8+wpa81/_._",
  7924. "lib/win8/_._",
  7925. "lib/wp80/_._",
  7926. "lib/wpa81/_._",
  7927. "lib/xamarinios10/_._",
  7928. "lib/xamarinmac20/_._",
  7929. "lib/xamarintvos10/_._",
  7930. "lib/xamarinwatchos10/_._",
  7931. "ref/MonoAndroid10/_._",
  7932. "ref/MonoTouch10/_._",
  7933. "ref/net45/_._",
  7934. "ref/net462/System.Reflection.dll",
  7935. "ref/netcore50/System.Reflection.dll",
  7936. "ref/netcore50/System.Reflection.xml",
  7937. "ref/netcore50/de/System.Reflection.xml",
  7938. "ref/netcore50/es/System.Reflection.xml",
  7939. "ref/netcore50/fr/System.Reflection.xml",
  7940. "ref/netcore50/it/System.Reflection.xml",
  7941. "ref/netcore50/ja/System.Reflection.xml",
  7942. "ref/netcore50/ko/System.Reflection.xml",
  7943. "ref/netcore50/ru/System.Reflection.xml",
  7944. "ref/netcore50/zh-hans/System.Reflection.xml",
  7945. "ref/netcore50/zh-hant/System.Reflection.xml",
  7946. "ref/netstandard1.0/System.Reflection.dll",
  7947. "ref/netstandard1.0/System.Reflection.xml",
  7948. "ref/netstandard1.0/de/System.Reflection.xml",
  7949. "ref/netstandard1.0/es/System.Reflection.xml",
  7950. "ref/netstandard1.0/fr/System.Reflection.xml",
  7951. "ref/netstandard1.0/it/System.Reflection.xml",
  7952. "ref/netstandard1.0/ja/System.Reflection.xml",
  7953. "ref/netstandard1.0/ko/System.Reflection.xml",
  7954. "ref/netstandard1.0/ru/System.Reflection.xml",
  7955. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7956. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7957. "ref/netstandard1.3/System.Reflection.dll",
  7958. "ref/netstandard1.3/System.Reflection.xml",
  7959. "ref/netstandard1.3/de/System.Reflection.xml",
  7960. "ref/netstandard1.3/es/System.Reflection.xml",
  7961. "ref/netstandard1.3/fr/System.Reflection.xml",
  7962. "ref/netstandard1.3/it/System.Reflection.xml",
  7963. "ref/netstandard1.3/ja/System.Reflection.xml",
  7964. "ref/netstandard1.3/ko/System.Reflection.xml",
  7965. "ref/netstandard1.3/ru/System.Reflection.xml",
  7966. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7967. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7968. "ref/netstandard1.5/System.Reflection.dll",
  7969. "ref/netstandard1.5/System.Reflection.xml",
  7970. "ref/netstandard1.5/de/System.Reflection.xml",
  7971. "ref/netstandard1.5/es/System.Reflection.xml",
  7972. "ref/netstandard1.5/fr/System.Reflection.xml",
  7973. "ref/netstandard1.5/it/System.Reflection.xml",
  7974. "ref/netstandard1.5/ja/System.Reflection.xml",
  7975. "ref/netstandard1.5/ko/System.Reflection.xml",
  7976. "ref/netstandard1.5/ru/System.Reflection.xml",
  7977. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7978. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7979. "ref/portable-net45+win8+wp8+wpa81/_._",
  7980. "ref/win8/_._",
  7981. "ref/wp80/_._",
  7982. "ref/wpa81/_._",
  7983. "ref/xamarinios10/_._",
  7984. "ref/xamarinmac20/_._",
  7985. "ref/xamarintvos10/_._",
  7986. "ref/xamarinwatchos10/_._",
  7987. "system.reflection.4.3.0.nupkg.sha512",
  7988. "system.reflection.nuspec"
  7989. ]
  7990. },
  7991. "System.Reflection.Emit/4.3.0": {
  7992. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7993. "type": "package",
  7994. "path": "system.reflection.emit/4.3.0",
  7995. "files": [
  7996. ".nupkg.metadata",
  7997. "ThirdPartyNotices.txt",
  7998. "dotnet_library_license.txt",
  7999. "lib/MonoAndroid10/_._",
  8000. "lib/monotouch10/_._",
  8001. "lib/net45/_._",
  8002. "lib/netcore50/System.Reflection.Emit.dll",
  8003. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8004. "lib/xamarinios10/_._",
  8005. "lib/xamarinmac20/_._",
  8006. "lib/xamarintvos10/_._",
  8007. "lib/xamarinwatchos10/_._",
  8008. "ref/MonoAndroid10/_._",
  8009. "ref/net45/_._",
  8010. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8011. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8012. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8013. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8014. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8015. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8016. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8017. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8018. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8019. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8020. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8021. "ref/xamarinmac20/_._",
  8022. "system.reflection.emit.4.3.0.nupkg.sha512",
  8023. "system.reflection.emit.nuspec"
  8024. ]
  8025. },
  8026. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8027. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  8028. "type": "package",
  8029. "path": "system.reflection.emit.ilgeneration/4.3.0",
  8030. "files": [
  8031. ".nupkg.metadata",
  8032. "ThirdPartyNotices.txt",
  8033. "dotnet_library_license.txt",
  8034. "lib/MonoAndroid10/_._",
  8035. "lib/MonoTouch10/_._",
  8036. "lib/net45/_._",
  8037. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8038. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8039. "lib/portable-net45+wp8/_._",
  8040. "lib/wp80/_._",
  8041. "lib/xamarinios10/_._",
  8042. "lib/xamarinmac20/_._",
  8043. "lib/xamarintvos10/_._",
  8044. "lib/xamarinwatchos10/_._",
  8045. "ref/MonoAndroid10/_._",
  8046. "ref/MonoTouch10/_._",
  8047. "ref/net45/_._",
  8048. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8049. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8050. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8051. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8052. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8053. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8054. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8055. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8056. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8057. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8058. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8059. "ref/portable-net45+wp8/_._",
  8060. "ref/wp80/_._",
  8061. "ref/xamarinios10/_._",
  8062. "ref/xamarinmac20/_._",
  8063. "ref/xamarintvos10/_._",
  8064. "ref/xamarinwatchos10/_._",
  8065. "runtimes/aot/lib/netcore50/_._",
  8066. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8067. "system.reflection.emit.ilgeneration.nuspec"
  8068. ]
  8069. },
  8070. "System.Reflection.Emit.Lightweight/4.3.0": {
  8071. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8072. "type": "package",
  8073. "path": "system.reflection.emit.lightweight/4.3.0",
  8074. "files": [
  8075. ".nupkg.metadata",
  8076. "ThirdPartyNotices.txt",
  8077. "dotnet_library_license.txt",
  8078. "lib/MonoAndroid10/_._",
  8079. "lib/MonoTouch10/_._",
  8080. "lib/net45/_._",
  8081. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8082. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8083. "lib/portable-net45+wp8/_._",
  8084. "lib/wp80/_._",
  8085. "lib/xamarinios10/_._",
  8086. "lib/xamarinmac20/_._",
  8087. "lib/xamarintvos10/_._",
  8088. "lib/xamarinwatchos10/_._",
  8089. "ref/MonoAndroid10/_._",
  8090. "ref/MonoTouch10/_._",
  8091. "ref/net45/_._",
  8092. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8093. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8094. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8095. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8096. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8097. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8098. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8099. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8100. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8101. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8102. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8103. "ref/portable-net45+wp8/_._",
  8104. "ref/wp80/_._",
  8105. "ref/xamarinios10/_._",
  8106. "ref/xamarinmac20/_._",
  8107. "ref/xamarintvos10/_._",
  8108. "ref/xamarinwatchos10/_._",
  8109. "runtimes/aot/lib/netcore50/_._",
  8110. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8111. "system.reflection.emit.lightweight.nuspec"
  8112. ]
  8113. },
  8114. "System.Reflection.Extensions/4.3.0": {
  8115. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8116. "type": "package",
  8117. "path": "system.reflection.extensions/4.3.0",
  8118. "files": [
  8119. ".nupkg.metadata",
  8120. ".signature.p7s",
  8121. "ThirdPartyNotices.txt",
  8122. "dotnet_library_license.txt",
  8123. "lib/MonoAndroid10/_._",
  8124. "lib/MonoTouch10/_._",
  8125. "lib/net45/_._",
  8126. "lib/portable-net45+win8+wp8+wpa81/_._",
  8127. "lib/win8/_._",
  8128. "lib/wp80/_._",
  8129. "lib/wpa81/_._",
  8130. "lib/xamarinios10/_._",
  8131. "lib/xamarinmac20/_._",
  8132. "lib/xamarintvos10/_._",
  8133. "lib/xamarinwatchos10/_._",
  8134. "ref/MonoAndroid10/_._",
  8135. "ref/MonoTouch10/_._",
  8136. "ref/net45/_._",
  8137. "ref/netcore50/System.Reflection.Extensions.dll",
  8138. "ref/netcore50/System.Reflection.Extensions.xml",
  8139. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8140. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8141. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8142. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8143. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8144. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8145. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8146. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8147. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8148. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8149. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8150. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8151. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8152. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8153. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8154. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8155. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8156. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8157. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8158. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8159. "ref/portable-net45+win8+wp8+wpa81/_._",
  8160. "ref/win8/_._",
  8161. "ref/wp80/_._",
  8162. "ref/wpa81/_._",
  8163. "ref/xamarinios10/_._",
  8164. "ref/xamarinmac20/_._",
  8165. "ref/xamarintvos10/_._",
  8166. "ref/xamarinwatchos10/_._",
  8167. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8168. "system.reflection.extensions.nuspec"
  8169. ]
  8170. },
  8171. "System.Reflection.Metadata/5.0.0": {
  8172. "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  8173. "type": "package",
  8174. "path": "system.reflection.metadata/5.0.0",
  8175. "files": [
  8176. ".nupkg.metadata",
  8177. ".signature.p7s",
  8178. "Icon.png",
  8179. "LICENSE.TXT",
  8180. "THIRD-PARTY-NOTICES.TXT",
  8181. "lib/net461/System.Reflection.Metadata.dll",
  8182. "lib/net461/System.Reflection.Metadata.xml",
  8183. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  8184. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  8185. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  8186. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  8187. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  8188. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  8189. "system.reflection.metadata.5.0.0.nupkg.sha512",
  8190. "system.reflection.metadata.nuspec",
  8191. "useSharedDesignerContext.txt",
  8192. "version.txt"
  8193. ]
  8194. },
  8195. "System.Reflection.Primitives/4.3.0": {
  8196. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8197. "type": "package",
  8198. "path": "system.reflection.primitives/4.3.0",
  8199. "files": [
  8200. ".nupkg.metadata",
  8201. ".signature.p7s",
  8202. "ThirdPartyNotices.txt",
  8203. "dotnet_library_license.txt",
  8204. "lib/MonoAndroid10/_._",
  8205. "lib/MonoTouch10/_._",
  8206. "lib/net45/_._",
  8207. "lib/portable-net45+win8+wp8+wpa81/_._",
  8208. "lib/win8/_._",
  8209. "lib/wp80/_._",
  8210. "lib/wpa81/_._",
  8211. "lib/xamarinios10/_._",
  8212. "lib/xamarinmac20/_._",
  8213. "lib/xamarintvos10/_._",
  8214. "lib/xamarinwatchos10/_._",
  8215. "ref/MonoAndroid10/_._",
  8216. "ref/MonoTouch10/_._",
  8217. "ref/net45/_._",
  8218. "ref/netcore50/System.Reflection.Primitives.dll",
  8219. "ref/netcore50/System.Reflection.Primitives.xml",
  8220. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8221. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8222. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8223. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8224. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8225. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8226. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8227. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8228. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8229. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8230. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8231. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8232. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8233. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8234. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8235. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8236. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8237. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8238. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8239. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8240. "ref/portable-net45+win8+wp8+wpa81/_._",
  8241. "ref/win8/_._",
  8242. "ref/wp80/_._",
  8243. "ref/wpa81/_._",
  8244. "ref/xamarinios10/_._",
  8245. "ref/xamarinmac20/_._",
  8246. "ref/xamarintvos10/_._",
  8247. "ref/xamarinwatchos10/_._",
  8248. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8249. "system.reflection.primitives.nuspec"
  8250. ]
  8251. },
  8252. "System.Reflection.TypeExtensions/4.3.0": {
  8253. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8254. "type": "package",
  8255. "path": "system.reflection.typeextensions/4.3.0",
  8256. "files": [
  8257. ".nupkg.metadata",
  8258. "ThirdPartyNotices.txt",
  8259. "dotnet_library_license.txt",
  8260. "lib/MonoAndroid10/_._",
  8261. "lib/MonoTouch10/_._",
  8262. "lib/net46/System.Reflection.TypeExtensions.dll",
  8263. "lib/net462/System.Reflection.TypeExtensions.dll",
  8264. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8265. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8266. "lib/xamarinios10/_._",
  8267. "lib/xamarinmac20/_._",
  8268. "lib/xamarintvos10/_._",
  8269. "lib/xamarinwatchos10/_._",
  8270. "ref/MonoAndroid10/_._",
  8271. "ref/MonoTouch10/_._",
  8272. "ref/net46/System.Reflection.TypeExtensions.dll",
  8273. "ref/net462/System.Reflection.TypeExtensions.dll",
  8274. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8275. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8276. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8277. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8278. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8279. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8280. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8281. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8282. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8283. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8284. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8285. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8286. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8287. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8288. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8289. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8290. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8291. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8292. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8293. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8294. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8295. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8296. "ref/xamarinios10/_._",
  8297. "ref/xamarinmac20/_._",
  8298. "ref/xamarintvos10/_._",
  8299. "ref/xamarinwatchos10/_._",
  8300. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8301. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8302. "system.reflection.typeextensions.nuspec"
  8303. ]
  8304. },
  8305. "System.Resources.ResourceManager/4.3.0": {
  8306. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8307. "type": "package",
  8308. "path": "system.resources.resourcemanager/4.3.0",
  8309. "files": [
  8310. ".nupkg.metadata",
  8311. ".signature.p7s",
  8312. "ThirdPartyNotices.txt",
  8313. "dotnet_library_license.txt",
  8314. "lib/MonoAndroid10/_._",
  8315. "lib/MonoTouch10/_._",
  8316. "lib/net45/_._",
  8317. "lib/portable-net45+win8+wp8+wpa81/_._",
  8318. "lib/win8/_._",
  8319. "lib/wp80/_._",
  8320. "lib/wpa81/_._",
  8321. "lib/xamarinios10/_._",
  8322. "lib/xamarinmac20/_._",
  8323. "lib/xamarintvos10/_._",
  8324. "lib/xamarinwatchos10/_._",
  8325. "ref/MonoAndroid10/_._",
  8326. "ref/MonoTouch10/_._",
  8327. "ref/net45/_._",
  8328. "ref/netcore50/System.Resources.ResourceManager.dll",
  8329. "ref/netcore50/System.Resources.ResourceManager.xml",
  8330. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8331. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8332. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8333. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8334. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8335. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8336. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8337. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8338. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8339. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8340. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8341. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8342. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8343. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8344. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8345. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8346. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8347. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8348. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8349. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8350. "ref/portable-net45+win8+wp8+wpa81/_._",
  8351. "ref/win8/_._",
  8352. "ref/wp80/_._",
  8353. "ref/wpa81/_._",
  8354. "ref/xamarinios10/_._",
  8355. "ref/xamarinmac20/_._",
  8356. "ref/xamarintvos10/_._",
  8357. "ref/xamarinwatchos10/_._",
  8358. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8359. "system.resources.resourcemanager.nuspec"
  8360. ]
  8361. },
  8362. "System.Runtime/4.3.0": {
  8363. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8364. "type": "package",
  8365. "path": "system.runtime/4.3.0",
  8366. "files": [
  8367. ".nupkg.metadata",
  8368. ".signature.p7s",
  8369. "ThirdPartyNotices.txt",
  8370. "dotnet_library_license.txt",
  8371. "lib/MonoAndroid10/_._",
  8372. "lib/MonoTouch10/_._",
  8373. "lib/net45/_._",
  8374. "lib/net462/System.Runtime.dll",
  8375. "lib/portable-net45+win8+wp80+wpa81/_._",
  8376. "lib/win8/_._",
  8377. "lib/wp80/_._",
  8378. "lib/wpa81/_._",
  8379. "lib/xamarinios10/_._",
  8380. "lib/xamarinmac20/_._",
  8381. "lib/xamarintvos10/_._",
  8382. "lib/xamarinwatchos10/_._",
  8383. "ref/MonoAndroid10/_._",
  8384. "ref/MonoTouch10/_._",
  8385. "ref/net45/_._",
  8386. "ref/net462/System.Runtime.dll",
  8387. "ref/netcore50/System.Runtime.dll",
  8388. "ref/netcore50/System.Runtime.xml",
  8389. "ref/netcore50/de/System.Runtime.xml",
  8390. "ref/netcore50/es/System.Runtime.xml",
  8391. "ref/netcore50/fr/System.Runtime.xml",
  8392. "ref/netcore50/it/System.Runtime.xml",
  8393. "ref/netcore50/ja/System.Runtime.xml",
  8394. "ref/netcore50/ko/System.Runtime.xml",
  8395. "ref/netcore50/ru/System.Runtime.xml",
  8396. "ref/netcore50/zh-hans/System.Runtime.xml",
  8397. "ref/netcore50/zh-hant/System.Runtime.xml",
  8398. "ref/netstandard1.0/System.Runtime.dll",
  8399. "ref/netstandard1.0/System.Runtime.xml",
  8400. "ref/netstandard1.0/de/System.Runtime.xml",
  8401. "ref/netstandard1.0/es/System.Runtime.xml",
  8402. "ref/netstandard1.0/fr/System.Runtime.xml",
  8403. "ref/netstandard1.0/it/System.Runtime.xml",
  8404. "ref/netstandard1.0/ja/System.Runtime.xml",
  8405. "ref/netstandard1.0/ko/System.Runtime.xml",
  8406. "ref/netstandard1.0/ru/System.Runtime.xml",
  8407. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8408. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8409. "ref/netstandard1.2/System.Runtime.dll",
  8410. "ref/netstandard1.2/System.Runtime.xml",
  8411. "ref/netstandard1.2/de/System.Runtime.xml",
  8412. "ref/netstandard1.2/es/System.Runtime.xml",
  8413. "ref/netstandard1.2/fr/System.Runtime.xml",
  8414. "ref/netstandard1.2/it/System.Runtime.xml",
  8415. "ref/netstandard1.2/ja/System.Runtime.xml",
  8416. "ref/netstandard1.2/ko/System.Runtime.xml",
  8417. "ref/netstandard1.2/ru/System.Runtime.xml",
  8418. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8419. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8420. "ref/netstandard1.3/System.Runtime.dll",
  8421. "ref/netstandard1.3/System.Runtime.xml",
  8422. "ref/netstandard1.3/de/System.Runtime.xml",
  8423. "ref/netstandard1.3/es/System.Runtime.xml",
  8424. "ref/netstandard1.3/fr/System.Runtime.xml",
  8425. "ref/netstandard1.3/it/System.Runtime.xml",
  8426. "ref/netstandard1.3/ja/System.Runtime.xml",
  8427. "ref/netstandard1.3/ko/System.Runtime.xml",
  8428. "ref/netstandard1.3/ru/System.Runtime.xml",
  8429. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8430. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8431. "ref/netstandard1.5/System.Runtime.dll",
  8432. "ref/netstandard1.5/System.Runtime.xml",
  8433. "ref/netstandard1.5/de/System.Runtime.xml",
  8434. "ref/netstandard1.5/es/System.Runtime.xml",
  8435. "ref/netstandard1.5/fr/System.Runtime.xml",
  8436. "ref/netstandard1.5/it/System.Runtime.xml",
  8437. "ref/netstandard1.5/ja/System.Runtime.xml",
  8438. "ref/netstandard1.5/ko/System.Runtime.xml",
  8439. "ref/netstandard1.5/ru/System.Runtime.xml",
  8440. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8441. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8442. "ref/portable-net45+win8+wp80+wpa81/_._",
  8443. "ref/win8/_._",
  8444. "ref/wp80/_._",
  8445. "ref/wpa81/_._",
  8446. "ref/xamarinios10/_._",
  8447. "ref/xamarinmac20/_._",
  8448. "ref/xamarintvos10/_._",
  8449. "ref/xamarinwatchos10/_._",
  8450. "system.runtime.4.3.0.nupkg.sha512",
  8451. "system.runtime.nuspec"
  8452. ]
  8453. },
  8454. "System.Runtime.Caching/4.7.0": {
  8455. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  8456. "type": "package",
  8457. "path": "system.runtime.caching/4.7.0",
  8458. "files": [
  8459. ".nupkg.metadata",
  8460. ".signature.p7s",
  8461. "LICENSE.TXT",
  8462. "THIRD-PARTY-NOTICES.TXT",
  8463. "lib/MonoAndroid10/_._",
  8464. "lib/MonoTouch10/_._",
  8465. "lib/net45/_._",
  8466. "lib/netstandard2.0/System.Runtime.Caching.dll",
  8467. "lib/netstandard2.0/System.Runtime.Caching.xml",
  8468. "lib/xamarinios10/_._",
  8469. "lib/xamarinmac20/_._",
  8470. "lib/xamarintvos10/_._",
  8471. "lib/xamarinwatchos10/_._",
  8472. "ref/MonoAndroid10/_._",
  8473. "ref/MonoTouch10/_._",
  8474. "ref/net45/_._",
  8475. "ref/netstandard2.0/System.Runtime.Caching.dll",
  8476. "ref/netstandard2.0/System.Runtime.Caching.xml",
  8477. "ref/xamarinios10/_._",
  8478. "ref/xamarinmac20/_._",
  8479. "ref/xamarintvos10/_._",
  8480. "ref/xamarinwatchos10/_._",
  8481. "runtimes/win/lib/net45/_._",
  8482. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  8483. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  8484. "system.runtime.caching.4.7.0.nupkg.sha512",
  8485. "system.runtime.caching.nuspec",
  8486. "useSharedDesignerContext.txt",
  8487. "version.txt"
  8488. ]
  8489. },
  8490. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  8491. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  8492. "type": "package",
  8493. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  8494. "files": [
  8495. ".nupkg.metadata",
  8496. ".signature.p7s",
  8497. "Icon.png",
  8498. "LICENSE.TXT",
  8499. "THIRD-PARTY-NOTICES.TXT",
  8500. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  8501. "buildTransitive/netcoreapp3.1/_._",
  8502. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8503. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8504. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  8505. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  8506. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  8507. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  8508. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8509. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8510. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  8511. "system.runtime.compilerservices.unsafe.nuspec",
  8512. "useSharedDesignerContext.txt"
  8513. ]
  8514. },
  8515. "System.Runtime.Extensions/4.3.0": {
  8516. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8517. "type": "package",
  8518. "path": "system.runtime.extensions/4.3.0",
  8519. "files": [
  8520. ".nupkg.metadata",
  8521. ".signature.p7s",
  8522. "ThirdPartyNotices.txt",
  8523. "dotnet_library_license.txt",
  8524. "lib/MonoAndroid10/_._",
  8525. "lib/MonoTouch10/_._",
  8526. "lib/net45/_._",
  8527. "lib/net462/System.Runtime.Extensions.dll",
  8528. "lib/portable-net45+win8+wp8+wpa81/_._",
  8529. "lib/win8/_._",
  8530. "lib/wp80/_._",
  8531. "lib/wpa81/_._",
  8532. "lib/xamarinios10/_._",
  8533. "lib/xamarinmac20/_._",
  8534. "lib/xamarintvos10/_._",
  8535. "lib/xamarinwatchos10/_._",
  8536. "ref/MonoAndroid10/_._",
  8537. "ref/MonoTouch10/_._",
  8538. "ref/net45/_._",
  8539. "ref/net462/System.Runtime.Extensions.dll",
  8540. "ref/netcore50/System.Runtime.Extensions.dll",
  8541. "ref/netcore50/System.Runtime.Extensions.xml",
  8542. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8543. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8544. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8545. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8546. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8547. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8548. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8549. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8550. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8551. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8552. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8553. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8554. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8555. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8556. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8557. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8558. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8559. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8560. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8561. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8562. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8563. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8564. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8565. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8566. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8567. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8568. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8569. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8570. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8571. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8572. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8573. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8574. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8575. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8576. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8577. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8578. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8579. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8580. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8581. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8582. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8583. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8584. "ref/portable-net45+win8+wp8+wpa81/_._",
  8585. "ref/win8/_._",
  8586. "ref/wp80/_._",
  8587. "ref/wpa81/_._",
  8588. "ref/xamarinios10/_._",
  8589. "ref/xamarinmac20/_._",
  8590. "ref/xamarintvos10/_._",
  8591. "ref/xamarinwatchos10/_._",
  8592. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8593. "system.runtime.extensions.nuspec"
  8594. ]
  8595. },
  8596. "System.Runtime.Loader/4.3.0": {
  8597. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  8598. "type": "package",
  8599. "path": "system.runtime.loader/4.3.0",
  8600. "files": [
  8601. ".nupkg.metadata",
  8602. ".signature.p7s",
  8603. "ThirdPartyNotices.txt",
  8604. "dotnet_library_license.txt",
  8605. "lib/MonoAndroid10/_._",
  8606. "lib/MonoTouch10/_._",
  8607. "lib/net462/_._",
  8608. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8609. "lib/xamarinios10/_._",
  8610. "lib/xamarinmac20/_._",
  8611. "lib/xamarintvos10/_._",
  8612. "lib/xamarinwatchos10/_._",
  8613. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8614. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8615. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8616. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8617. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8618. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8619. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8620. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8621. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8622. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8623. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  8624. "system.runtime.loader.4.3.0.nupkg.sha512",
  8625. "system.runtime.loader.nuspec"
  8626. ]
  8627. },
  8628. "System.Security.AccessControl/6.0.0": {
  8629. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  8630. "type": "package",
  8631. "path": "system.security.accesscontrol/6.0.0",
  8632. "files": [
  8633. ".nupkg.metadata",
  8634. ".signature.p7s",
  8635. "Icon.png",
  8636. "LICENSE.TXT",
  8637. "THIRD-PARTY-NOTICES.TXT",
  8638. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  8639. "buildTransitive/netcoreapp3.1/_._",
  8640. "lib/net461/System.Security.AccessControl.dll",
  8641. "lib/net461/System.Security.AccessControl.xml",
  8642. "lib/net6.0/System.Security.AccessControl.dll",
  8643. "lib/net6.0/System.Security.AccessControl.xml",
  8644. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8645. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8646. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8647. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8648. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  8649. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  8650. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  8651. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  8652. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  8653. "system.security.accesscontrol.nuspec",
  8654. "useSharedDesignerContext.txt"
  8655. ]
  8656. },
  8657. "System.Security.Cryptography.Cng/4.5.0": {
  8658. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8659. "type": "package",
  8660. "path": "system.security.cryptography.cng/4.5.0",
  8661. "files": [
  8662. ".nupkg.metadata",
  8663. ".signature.p7s",
  8664. "LICENSE.TXT",
  8665. "THIRD-PARTY-NOTICES.TXT",
  8666. "lib/MonoAndroid10/_._",
  8667. "lib/MonoTouch10/_._",
  8668. "lib/net46/System.Security.Cryptography.Cng.dll",
  8669. "lib/net461/System.Security.Cryptography.Cng.dll",
  8670. "lib/net462/System.Security.Cryptography.Cng.dll",
  8671. "lib/net47/System.Security.Cryptography.Cng.dll",
  8672. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8673. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8674. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8675. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8676. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8677. "lib/uap10.0.16299/_._",
  8678. "lib/xamarinios10/_._",
  8679. "lib/xamarinmac20/_._",
  8680. "lib/xamarintvos10/_._",
  8681. "lib/xamarinwatchos10/_._",
  8682. "ref/MonoAndroid10/_._",
  8683. "ref/MonoTouch10/_._",
  8684. "ref/net46/System.Security.Cryptography.Cng.dll",
  8685. "ref/net461/System.Security.Cryptography.Cng.dll",
  8686. "ref/net461/System.Security.Cryptography.Cng.xml",
  8687. "ref/net462/System.Security.Cryptography.Cng.dll",
  8688. "ref/net462/System.Security.Cryptography.Cng.xml",
  8689. "ref/net47/System.Security.Cryptography.Cng.dll",
  8690. "ref/net47/System.Security.Cryptography.Cng.xml",
  8691. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8692. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8693. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8694. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8695. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8696. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8697. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8698. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8699. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8700. "ref/uap10.0.16299/_._",
  8701. "ref/xamarinios10/_._",
  8702. "ref/xamarinmac20/_._",
  8703. "ref/xamarintvos10/_._",
  8704. "ref/xamarinwatchos10/_._",
  8705. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8706. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8707. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8708. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8709. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8710. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8711. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8712. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8713. "runtimes/win/lib/uap10.0.16299/_._",
  8714. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8715. "system.security.cryptography.cng.nuspec",
  8716. "useSharedDesignerContext.txt",
  8717. "version.txt"
  8718. ]
  8719. },
  8720. "System.Security.Cryptography.Pkcs/6.0.0": {
  8721. "sha512": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==",
  8722. "type": "package",
  8723. "path": "system.security.cryptography.pkcs/6.0.0",
  8724. "files": [
  8725. ".nupkg.metadata",
  8726. ".signature.p7s",
  8727. "Icon.png",
  8728. "LICENSE.TXT",
  8729. "THIRD-PARTY-NOTICES.TXT",
  8730. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
  8731. "buildTransitive/netcoreapp3.1/_._",
  8732. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  8733. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  8734. "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  8735. "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  8736. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  8737. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  8738. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8739. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  8740. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  8741. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  8742. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  8743. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  8744. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  8745. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  8746. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  8747. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  8748. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8749. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  8750. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  8751. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  8752. "system.security.cryptography.pkcs.6.0.0.nupkg.sha512",
  8753. "system.security.cryptography.pkcs.nuspec",
  8754. "useSharedDesignerContext.txt"
  8755. ]
  8756. },
  8757. "System.Security.Cryptography.ProtectedData/6.0.0": {
  8758. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  8759. "type": "package",
  8760. "path": "system.security.cryptography.protecteddata/6.0.0",
  8761. "files": [
  8762. ".nupkg.metadata",
  8763. ".signature.p7s",
  8764. "Icon.png",
  8765. "LICENSE.TXT",
  8766. "THIRD-PARTY-NOTICES.TXT",
  8767. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  8768. "buildTransitive/netcoreapp3.1/_._",
  8769. "lib/MonoAndroid10/_._",
  8770. "lib/MonoTouch10/_._",
  8771. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8772. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8773. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  8774. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  8775. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8776. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8777. "lib/xamarinios10/_._",
  8778. "lib/xamarinmac20/_._",
  8779. "lib/xamarintvos10/_._",
  8780. "lib/xamarinwatchos10/_._",
  8781. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8782. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8783. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  8784. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  8785. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8786. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8787. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  8788. "system.security.cryptography.protecteddata.nuspec",
  8789. "useSharedDesignerContext.txt"
  8790. ]
  8791. },
  8792. "System.Security.Cryptography.Xml/6.0.0": {
  8793. "sha512": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==",
  8794. "type": "package",
  8795. "path": "system.security.cryptography.xml/6.0.0",
  8796. "files": [
  8797. ".nupkg.metadata",
  8798. ".signature.p7s",
  8799. "Icon.png",
  8800. "LICENSE.TXT",
  8801. "THIRD-PARTY-NOTICES.TXT",
  8802. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets",
  8803. "buildTransitive/netcoreapp3.1/_._",
  8804. "lib/net461/System.Security.Cryptography.Xml.dll",
  8805. "lib/net461/System.Security.Cryptography.Xml.xml",
  8806. "lib/net6.0/System.Security.Cryptography.Xml.dll",
  8807. "lib/net6.0/System.Security.Cryptography.Xml.xml",
  8808. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  8809. "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
  8810. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll",
  8811. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml",
  8812. "system.security.cryptography.xml.6.0.0.nupkg.sha512",
  8813. "system.security.cryptography.xml.nuspec",
  8814. "useSharedDesignerContext.txt"
  8815. ]
  8816. },
  8817. "System.Security.Permissions/6.0.0": {
  8818. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  8819. "type": "package",
  8820. "path": "system.security.permissions/6.0.0",
  8821. "files": [
  8822. ".nupkg.metadata",
  8823. ".signature.p7s",
  8824. "Icon.png",
  8825. "LICENSE.TXT",
  8826. "THIRD-PARTY-NOTICES.TXT",
  8827. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  8828. "buildTransitive/netcoreapp3.1/_._",
  8829. "lib/net461/System.Security.Permissions.dll",
  8830. "lib/net461/System.Security.Permissions.xml",
  8831. "lib/net5.0/System.Security.Permissions.dll",
  8832. "lib/net5.0/System.Security.Permissions.xml",
  8833. "lib/net6.0/System.Security.Permissions.dll",
  8834. "lib/net6.0/System.Security.Permissions.xml",
  8835. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  8836. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  8837. "lib/netstandard2.0/System.Security.Permissions.dll",
  8838. "lib/netstandard2.0/System.Security.Permissions.xml",
  8839. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  8840. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  8841. "system.security.permissions.6.0.0.nupkg.sha512",
  8842. "system.security.permissions.nuspec",
  8843. "useSharedDesignerContext.txt"
  8844. ]
  8845. },
  8846. "System.Security.Principal.Windows/5.0.0": {
  8847. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  8848. "type": "package",
  8849. "path": "system.security.principal.windows/5.0.0",
  8850. "files": [
  8851. ".nupkg.metadata",
  8852. ".signature.p7s",
  8853. "Icon.png",
  8854. "LICENSE.TXT",
  8855. "THIRD-PARTY-NOTICES.TXT",
  8856. "lib/net46/System.Security.Principal.Windows.dll",
  8857. "lib/net461/System.Security.Principal.Windows.dll",
  8858. "lib/net461/System.Security.Principal.Windows.xml",
  8859. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8860. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8861. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8862. "lib/uap10.0.16299/_._",
  8863. "ref/net46/System.Security.Principal.Windows.dll",
  8864. "ref/net461/System.Security.Principal.Windows.dll",
  8865. "ref/net461/System.Security.Principal.Windows.xml",
  8866. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8867. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8868. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8869. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8870. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8871. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8872. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8873. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8874. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8875. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8876. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8877. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8878. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8879. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8880. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8881. "ref/uap10.0.16299/_._",
  8882. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8883. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8884. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8885. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8886. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8887. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8888. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8889. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8890. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8891. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8892. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8893. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8894. "runtimes/win/lib/uap10.0.16299/_._",
  8895. "system.security.principal.windows.5.0.0.nupkg.sha512",
  8896. "system.security.principal.windows.nuspec",
  8897. "useSharedDesignerContext.txt",
  8898. "version.txt"
  8899. ]
  8900. },
  8901. "System.Text.Encoding/4.3.0": {
  8902. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8903. "type": "package",
  8904. "path": "system.text.encoding/4.3.0",
  8905. "files": [
  8906. ".nupkg.metadata",
  8907. ".signature.p7s",
  8908. "ThirdPartyNotices.txt",
  8909. "dotnet_library_license.txt",
  8910. "lib/MonoAndroid10/_._",
  8911. "lib/MonoTouch10/_._",
  8912. "lib/net45/_._",
  8913. "lib/portable-net45+win8+wp8+wpa81/_._",
  8914. "lib/win8/_._",
  8915. "lib/wp80/_._",
  8916. "lib/wpa81/_._",
  8917. "lib/xamarinios10/_._",
  8918. "lib/xamarinmac20/_._",
  8919. "lib/xamarintvos10/_._",
  8920. "lib/xamarinwatchos10/_._",
  8921. "ref/MonoAndroid10/_._",
  8922. "ref/MonoTouch10/_._",
  8923. "ref/net45/_._",
  8924. "ref/netcore50/System.Text.Encoding.dll",
  8925. "ref/netcore50/System.Text.Encoding.xml",
  8926. "ref/netcore50/de/System.Text.Encoding.xml",
  8927. "ref/netcore50/es/System.Text.Encoding.xml",
  8928. "ref/netcore50/fr/System.Text.Encoding.xml",
  8929. "ref/netcore50/it/System.Text.Encoding.xml",
  8930. "ref/netcore50/ja/System.Text.Encoding.xml",
  8931. "ref/netcore50/ko/System.Text.Encoding.xml",
  8932. "ref/netcore50/ru/System.Text.Encoding.xml",
  8933. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8934. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8935. "ref/netstandard1.0/System.Text.Encoding.dll",
  8936. "ref/netstandard1.0/System.Text.Encoding.xml",
  8937. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8938. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8939. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8940. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8941. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8942. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8943. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8944. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8945. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8946. "ref/netstandard1.3/System.Text.Encoding.dll",
  8947. "ref/netstandard1.3/System.Text.Encoding.xml",
  8948. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8949. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8950. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8951. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8952. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8953. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8954. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8955. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8956. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8957. "ref/portable-net45+win8+wp8+wpa81/_._",
  8958. "ref/win8/_._",
  8959. "ref/wp80/_._",
  8960. "ref/wpa81/_._",
  8961. "ref/xamarinios10/_._",
  8962. "ref/xamarinmac20/_._",
  8963. "ref/xamarintvos10/_._",
  8964. "ref/xamarinwatchos10/_._",
  8965. "system.text.encoding.4.3.0.nupkg.sha512",
  8966. "system.text.encoding.nuspec"
  8967. ]
  8968. },
  8969. "System.Text.Encoding.CodePages/4.7.0": {
  8970. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  8971. "type": "package",
  8972. "path": "system.text.encoding.codepages/4.7.0",
  8973. "files": [
  8974. ".nupkg.metadata",
  8975. ".signature.p7s",
  8976. "LICENSE.TXT",
  8977. "THIRD-PARTY-NOTICES.TXT",
  8978. "lib/MonoAndroid10/_._",
  8979. "lib/MonoTouch10/_._",
  8980. "lib/net46/System.Text.Encoding.CodePages.dll",
  8981. "lib/net461/System.Text.Encoding.CodePages.dll",
  8982. "lib/net461/System.Text.Encoding.CodePages.xml",
  8983. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8984. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8985. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  8986. "lib/xamarinios10/_._",
  8987. "lib/xamarinmac20/_._",
  8988. "lib/xamarintvos10/_._",
  8989. "lib/xamarinwatchos10/_._",
  8990. "ref/MonoAndroid10/_._",
  8991. "ref/MonoTouch10/_._",
  8992. "ref/xamarinios10/_._",
  8993. "ref/xamarinmac20/_._",
  8994. "ref/xamarintvos10/_._",
  8995. "ref/xamarinwatchos10/_._",
  8996. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8997. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  8998. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8999. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9000. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9001. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9002. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9003. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  9004. "system.text.encoding.codepages.nuspec",
  9005. "useSharedDesignerContext.txt",
  9006. "version.txt"
  9007. ]
  9008. },
  9009. "System.Text.Encodings.Web/6.0.0": {
  9010. "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
  9011. "type": "package",
  9012. "path": "system.text.encodings.web/6.0.0",
  9013. "files": [
  9014. ".nupkg.metadata",
  9015. ".signature.p7s",
  9016. "Icon.png",
  9017. "LICENSE.TXT",
  9018. "THIRD-PARTY-NOTICES.TXT",
  9019. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  9020. "buildTransitive/netcoreapp3.1/_._",
  9021. "lib/net461/System.Text.Encodings.Web.dll",
  9022. "lib/net461/System.Text.Encodings.Web.xml",
  9023. "lib/net6.0/System.Text.Encodings.Web.dll",
  9024. "lib/net6.0/System.Text.Encodings.Web.xml",
  9025. "lib/netcoreapp3.1/System.Text.Encodings.Web.dll",
  9026. "lib/netcoreapp3.1/System.Text.Encodings.Web.xml",
  9027. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9028. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9029. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  9030. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  9031. "system.text.encodings.web.6.0.0.nupkg.sha512",
  9032. "system.text.encodings.web.nuspec",
  9033. "useSharedDesignerContext.txt"
  9034. ]
  9035. },
  9036. "System.Text.Json/6.0.0": {
  9037. "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
  9038. "type": "package",
  9039. "path": "system.text.json/6.0.0",
  9040. "files": [
  9041. ".nupkg.metadata",
  9042. ".signature.p7s",
  9043. "Icon.png",
  9044. "LICENSE.TXT",
  9045. "THIRD-PARTY-NOTICES.TXT",
  9046. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  9047. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9048. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9049. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9050. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9051. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9052. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9053. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9054. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9055. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9056. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9057. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9058. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9059. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9060. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  9061. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  9062. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  9063. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  9064. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  9065. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  9066. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  9067. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  9068. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  9069. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  9070. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  9071. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  9072. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  9073. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  9074. "build/System.Text.Json.targets",
  9075. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  9076. "buildTransitive/netcoreapp3.1/_._",
  9077. "lib/net461/System.Text.Json.dll",
  9078. "lib/net461/System.Text.Json.xml",
  9079. "lib/net6.0/System.Text.Json.dll",
  9080. "lib/net6.0/System.Text.Json.xml",
  9081. "lib/netcoreapp3.1/System.Text.Json.dll",
  9082. "lib/netcoreapp3.1/System.Text.Json.xml",
  9083. "lib/netstandard2.0/System.Text.Json.dll",
  9084. "lib/netstandard2.0/System.Text.Json.xml",
  9085. "system.text.json.6.0.0.nupkg.sha512",
  9086. "system.text.json.nuspec",
  9087. "useSharedDesignerContext.txt"
  9088. ]
  9089. },
  9090. "System.Threading/4.3.0": {
  9091. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9092. "type": "package",
  9093. "path": "system.threading/4.3.0",
  9094. "files": [
  9095. ".nupkg.metadata",
  9096. ".signature.p7s",
  9097. "ThirdPartyNotices.txt",
  9098. "dotnet_library_license.txt",
  9099. "lib/MonoAndroid10/_._",
  9100. "lib/MonoTouch10/_._",
  9101. "lib/net45/_._",
  9102. "lib/netcore50/System.Threading.dll",
  9103. "lib/netstandard1.3/System.Threading.dll",
  9104. "lib/portable-net45+win8+wp8+wpa81/_._",
  9105. "lib/win8/_._",
  9106. "lib/wp80/_._",
  9107. "lib/wpa81/_._",
  9108. "lib/xamarinios10/_._",
  9109. "lib/xamarinmac20/_._",
  9110. "lib/xamarintvos10/_._",
  9111. "lib/xamarinwatchos10/_._",
  9112. "ref/MonoAndroid10/_._",
  9113. "ref/MonoTouch10/_._",
  9114. "ref/net45/_._",
  9115. "ref/netcore50/System.Threading.dll",
  9116. "ref/netcore50/System.Threading.xml",
  9117. "ref/netcore50/de/System.Threading.xml",
  9118. "ref/netcore50/es/System.Threading.xml",
  9119. "ref/netcore50/fr/System.Threading.xml",
  9120. "ref/netcore50/it/System.Threading.xml",
  9121. "ref/netcore50/ja/System.Threading.xml",
  9122. "ref/netcore50/ko/System.Threading.xml",
  9123. "ref/netcore50/ru/System.Threading.xml",
  9124. "ref/netcore50/zh-hans/System.Threading.xml",
  9125. "ref/netcore50/zh-hant/System.Threading.xml",
  9126. "ref/netstandard1.0/System.Threading.dll",
  9127. "ref/netstandard1.0/System.Threading.xml",
  9128. "ref/netstandard1.0/de/System.Threading.xml",
  9129. "ref/netstandard1.0/es/System.Threading.xml",
  9130. "ref/netstandard1.0/fr/System.Threading.xml",
  9131. "ref/netstandard1.0/it/System.Threading.xml",
  9132. "ref/netstandard1.0/ja/System.Threading.xml",
  9133. "ref/netstandard1.0/ko/System.Threading.xml",
  9134. "ref/netstandard1.0/ru/System.Threading.xml",
  9135. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9136. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9137. "ref/netstandard1.3/System.Threading.dll",
  9138. "ref/netstandard1.3/System.Threading.xml",
  9139. "ref/netstandard1.3/de/System.Threading.xml",
  9140. "ref/netstandard1.3/es/System.Threading.xml",
  9141. "ref/netstandard1.3/fr/System.Threading.xml",
  9142. "ref/netstandard1.3/it/System.Threading.xml",
  9143. "ref/netstandard1.3/ja/System.Threading.xml",
  9144. "ref/netstandard1.3/ko/System.Threading.xml",
  9145. "ref/netstandard1.3/ru/System.Threading.xml",
  9146. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9147. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9148. "ref/portable-net45+win8+wp8+wpa81/_._",
  9149. "ref/win8/_._",
  9150. "ref/wp80/_._",
  9151. "ref/wpa81/_._",
  9152. "ref/xamarinios10/_._",
  9153. "ref/xamarinmac20/_._",
  9154. "ref/xamarintvos10/_._",
  9155. "ref/xamarinwatchos10/_._",
  9156. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9157. "system.threading.4.3.0.nupkg.sha512",
  9158. "system.threading.nuspec"
  9159. ]
  9160. },
  9161. "System.Threading.Tasks/4.3.0": {
  9162. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9163. "type": "package",
  9164. "path": "system.threading.tasks/4.3.0",
  9165. "files": [
  9166. ".nupkg.metadata",
  9167. ".signature.p7s",
  9168. "ThirdPartyNotices.txt",
  9169. "dotnet_library_license.txt",
  9170. "lib/MonoAndroid10/_._",
  9171. "lib/MonoTouch10/_._",
  9172. "lib/net45/_._",
  9173. "lib/portable-net45+win8+wp8+wpa81/_._",
  9174. "lib/win8/_._",
  9175. "lib/wp80/_._",
  9176. "lib/wpa81/_._",
  9177. "lib/xamarinios10/_._",
  9178. "lib/xamarinmac20/_._",
  9179. "lib/xamarintvos10/_._",
  9180. "lib/xamarinwatchos10/_._",
  9181. "ref/MonoAndroid10/_._",
  9182. "ref/MonoTouch10/_._",
  9183. "ref/net45/_._",
  9184. "ref/netcore50/System.Threading.Tasks.dll",
  9185. "ref/netcore50/System.Threading.Tasks.xml",
  9186. "ref/netcore50/de/System.Threading.Tasks.xml",
  9187. "ref/netcore50/es/System.Threading.Tasks.xml",
  9188. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9189. "ref/netcore50/it/System.Threading.Tasks.xml",
  9190. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9191. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9192. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9193. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9194. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9195. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9196. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9197. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9198. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9199. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9200. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9201. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9202. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9203. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9204. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9205. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9206. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9207. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9208. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9209. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9210. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9211. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9212. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9213. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9214. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9215. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9216. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9217. "ref/portable-net45+win8+wp8+wpa81/_._",
  9218. "ref/win8/_._",
  9219. "ref/wp80/_._",
  9220. "ref/wpa81/_._",
  9221. "ref/xamarinios10/_._",
  9222. "ref/xamarinmac20/_._",
  9223. "ref/xamarintvos10/_._",
  9224. "ref/xamarinwatchos10/_._",
  9225. "system.threading.tasks.4.3.0.nupkg.sha512",
  9226. "system.threading.tasks.nuspec"
  9227. ]
  9228. },
  9229. "System.Threading.Tasks.Extensions/4.5.4": {
  9230. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  9231. "type": "package",
  9232. "path": "system.threading.tasks.extensions/4.5.4",
  9233. "files": [
  9234. ".nupkg.metadata",
  9235. ".signature.p7s",
  9236. "LICENSE.TXT",
  9237. "THIRD-PARTY-NOTICES.TXT",
  9238. "lib/MonoAndroid10/_._",
  9239. "lib/MonoTouch10/_._",
  9240. "lib/net461/System.Threading.Tasks.Extensions.dll",
  9241. "lib/net461/System.Threading.Tasks.Extensions.xml",
  9242. "lib/netcoreapp2.1/_._",
  9243. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9244. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9245. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9246. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9247. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9248. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9249. "lib/xamarinios10/_._",
  9250. "lib/xamarinmac20/_._",
  9251. "lib/xamarintvos10/_._",
  9252. "lib/xamarinwatchos10/_._",
  9253. "ref/MonoAndroid10/_._",
  9254. "ref/MonoTouch10/_._",
  9255. "ref/netcoreapp2.1/_._",
  9256. "ref/xamarinios10/_._",
  9257. "ref/xamarinmac20/_._",
  9258. "ref/xamarintvos10/_._",
  9259. "ref/xamarinwatchos10/_._",
  9260. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  9261. "system.threading.tasks.extensions.nuspec",
  9262. "useSharedDesignerContext.txt",
  9263. "version.txt"
  9264. ]
  9265. },
  9266. "System.Windows.Extensions/6.0.0": {
  9267. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  9268. "type": "package",
  9269. "path": "system.windows.extensions/6.0.0",
  9270. "files": [
  9271. ".nupkg.metadata",
  9272. ".signature.p7s",
  9273. "Icon.png",
  9274. "LICENSE.TXT",
  9275. "THIRD-PARTY-NOTICES.TXT",
  9276. "lib/net6.0/System.Windows.Extensions.dll",
  9277. "lib/net6.0/System.Windows.Extensions.xml",
  9278. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  9279. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  9280. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  9281. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  9282. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  9283. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  9284. "system.windows.extensions.6.0.0.nupkg.sha512",
  9285. "system.windows.extensions.nuspec",
  9286. "useSharedDesignerContext.txt"
  9287. ]
  9288. },
  9289. "TimeZoneConverter/5.0.0": {
  9290. "sha512": "U7Oilf3Ya6Rmu6gOaBfWyT3q0kwy2av6a5PfTn05CF54C+7DvuLsE3ljASvYmCpsSQeJvpnqU5Uzag6+ysWUeA==",
  9291. "type": "package",
  9292. "path": "timezoneconverter/5.0.0",
  9293. "files": [
  9294. ".nupkg.metadata",
  9295. ".signature.p7s",
  9296. "lib/net461/TimeZoneConverter.dll",
  9297. "lib/net461/TimeZoneConverter.xml",
  9298. "lib/netstandard2.0/TimeZoneConverter.dll",
  9299. "lib/netstandard2.0/TimeZoneConverter.xml",
  9300. "timezoneconverter.5.0.0.nupkg.sha512",
  9301. "timezoneconverter.nuspec"
  9302. ]
  9303. },
  9304. "Volo.Abp.ApiVersioning.Abstractions/6.0.0": {
  9305. "sha512": "4iPDUzQxBHHtOHQFa9+QVTk7OHbl1BBU0B3D0TAt9JOY0Y6pFl+qnc5Ce+vDyT+aQIHnueT7B1I7v/OYYiXb8A==",
  9306. "type": "package",
  9307. "path": "volo.abp.apiversioning.abstractions/6.0.0",
  9308. "files": [
  9309. ".nupkg.metadata",
  9310. ".signature.p7s",
  9311. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll",
  9312. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.pdb",
  9313. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.xml",
  9314. "volo.abp.apiversioning.abstractions.6.0.0.nupkg.sha512",
  9315. "volo.abp.apiversioning.abstractions.nuspec"
  9316. ]
  9317. },
  9318. "Volo.Abp.AspNetCore/6.0.0": {
  9319. "sha512": "/HnGtg8RszGpURnfTOvm5EoiA8FTPgKOCHn3+jfrEq6Cw/UJOySfW3n1f1aWivMmHWX8caZQiIub7TeovMGRng==",
  9320. "type": "package",
  9321. "path": "volo.abp.aspnetcore/6.0.0",
  9322. "files": [
  9323. ".nupkg.metadata",
  9324. ".signature.p7s",
  9325. "lib/net6.0/Volo.Abp.AspNetCore.dll",
  9326. "lib/net6.0/Volo.Abp.AspNetCore.pdb",
  9327. "lib/net6.0/Volo.Abp.AspNetCore.xml",
  9328. "volo.abp.aspnetcore.6.0.0.nupkg.sha512",
  9329. "volo.abp.aspnetcore.nuspec"
  9330. ]
  9331. },
  9332. "Volo.Abp.AspNetCore.MultiTenancy/6.0.0": {
  9333. "sha512": "6dLE9E15aiILff9/e+ypqiTccz10WjnFjA/hdQMaKvs29+xEChEUv0E5o/wBy4S+LcVJJwN0zvuHSOwHH7lQHg==",
  9334. "type": "package",
  9335. "path": "volo.abp.aspnetcore.multitenancy/6.0.0",
  9336. "files": [
  9337. ".nupkg.metadata",
  9338. ".signature.p7s",
  9339. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.dll",
  9340. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.pdb",
  9341. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.xml",
  9342. "volo.abp.aspnetcore.multitenancy.6.0.0.nupkg.sha512",
  9343. "volo.abp.aspnetcore.multitenancy.nuspec"
  9344. ]
  9345. },
  9346. "Volo.Abp.AspNetCore.Mvc/6.0.0": {
  9347. "sha512": "p6Ldko6b06RZKbvEVYZe2DxvBuaUWOmmQXQ2oqHwACJ8qfiTtC5oyjV06rtCAyqWvd2hZkyce7KxHDu8sp3RFg==",
  9348. "type": "package",
  9349. "path": "volo.abp.aspnetcore.mvc/6.0.0",
  9350. "files": [
  9351. ".nupkg.metadata",
  9352. ".signature.p7s",
  9353. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.dll",
  9354. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.pdb",
  9355. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.xml",
  9356. "volo.abp.aspnetcore.mvc.6.0.0.nupkg.sha512",
  9357. "volo.abp.aspnetcore.mvc.nuspec"
  9358. ]
  9359. },
  9360. "Volo.Abp.AspNetCore.Mvc.Contracts/6.0.0": {
  9361. "sha512": "cslFlSen58M6m33HwoIHgSffACX9eKhOS5/c9phCN1ZnCoXLd92jzpYrwRdaSPw5SabTmyTgA0Y8/SeEMW0vsg==",
  9362. "type": "package",
  9363. "path": "volo.abp.aspnetcore.mvc.contracts/6.0.0",
  9364. "files": [
  9365. ".nupkg.metadata",
  9366. ".signature.p7s",
  9367. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.dll",
  9368. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.pdb",
  9369. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.xml",
  9370. "volo.abp.aspnetcore.mvc.contracts.6.0.0.nupkg.sha512",
  9371. "volo.abp.aspnetcore.mvc.contracts.nuspec"
  9372. ]
  9373. },
  9374. "Volo.Abp.AspNetCore.Serilog/6.0.0": {
  9375. "sha512": "n8Uz0JKfDjuMEoV+1s7vmjWOafVP3n9W/SyZdsvhmpTbZMscjOxJ64xeHbB7UyVfAW87oMRj1u3gHhrtLv/DZQ==",
  9376. "type": "package",
  9377. "path": "volo.abp.aspnetcore.serilog/6.0.0",
  9378. "files": [
  9379. ".nupkg.metadata",
  9380. ".signature.p7s",
  9381. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.dll",
  9382. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.pdb",
  9383. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.xml",
  9384. "volo.abp.aspnetcore.serilog.6.0.0.nupkg.sha512",
  9385. "volo.abp.aspnetcore.serilog.nuspec"
  9386. ]
  9387. },
  9388. "Volo.Abp.Auditing/6.0.2": {
  9389. "sha512": "2vkUSnsKYa291+S8l/XPytd3z8eHJ3/3W4jGOliWs5cSiwR8evieJ6jrn4vvlebydOrjEL+t2hQraJKyyj5J6Q==",
  9390. "type": "package",
  9391. "path": "volo.abp.auditing/6.0.2",
  9392. "files": [
  9393. ".nupkg.metadata",
  9394. ".signature.p7s",
  9395. "lib/netstandard2.0/Volo.Abp.Auditing.dll",
  9396. "lib/netstandard2.0/Volo.Abp.Auditing.pdb",
  9397. "lib/netstandard2.0/Volo.Abp.Auditing.xml",
  9398. "volo.abp.auditing.6.0.2.nupkg.sha512",
  9399. "volo.abp.auditing.nuspec"
  9400. ]
  9401. },
  9402. "Volo.Abp.Auditing.Contracts/6.0.2": {
  9403. "sha512": "TNnCpKhIx2052j82Z3hgEpcoE1GQ0/4+NwJog5p7ntTw4T9vkN2zsepIKBxDOpVtAkhrF14p4sHORYMz1Cd0eg==",
  9404. "type": "package",
  9405. "path": "volo.abp.auditing.contracts/6.0.2",
  9406. "files": [
  9407. ".nupkg.metadata",
  9408. ".signature.p7s",
  9409. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll",
  9410. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.pdb",
  9411. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.xml",
  9412. "volo.abp.auditing.contracts.6.0.2.nupkg.sha512",
  9413. "volo.abp.auditing.contracts.nuspec"
  9414. ]
  9415. },
  9416. "Volo.Abp.Authorization/6.0.0": {
  9417. "sha512": "+ktQSujPTlA96lw8ih/iTTmncJXX3f1kTWsEWtjfmI0N3HeiVl2NFLk9g51PxHYuqOpbZpyt4y5498Q8OSpLWw==",
  9418. "type": "package",
  9419. "path": "volo.abp.authorization/6.0.0",
  9420. "files": [
  9421. ".nupkg.metadata",
  9422. ".signature.p7s",
  9423. "lib/netstandard2.0/Volo.Abp.Authorization.dll",
  9424. "lib/netstandard2.0/Volo.Abp.Authorization.pdb",
  9425. "lib/netstandard2.0/Volo.Abp.Authorization.xml",
  9426. "volo.abp.authorization.6.0.0.nupkg.sha512",
  9427. "volo.abp.authorization.nuspec"
  9428. ]
  9429. },
  9430. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  9431. "sha512": "46NIPtnfHGPX12b79kp4uLnCI+zyybD3p1pIGBlpsdlSiNrGiMys5hnar8C7z8zv14I3SUaTeaQAS8hA3JoHxA==",
  9432. "type": "package",
  9433. "path": "volo.abp.authorization.abstractions/6.0.0",
  9434. "files": [
  9435. ".nupkg.metadata",
  9436. ".signature.p7s",
  9437. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll",
  9438. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.pdb",
  9439. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.xml",
  9440. "volo.abp.authorization.abstractions.6.0.0.nupkg.sha512",
  9441. "volo.abp.authorization.abstractions.nuspec"
  9442. ]
  9443. },
  9444. "Volo.Abp.Autofac/6.0.0": {
  9445. "sha512": "F420kKNfTd2sg901bmDJM4moesADvn7qlVYN75eoODuYD3ur9PCKNrgdzJDl5dbpcoylQaagv6j6jZZREO/ycA==",
  9446. "type": "package",
  9447. "path": "volo.abp.autofac/6.0.0",
  9448. "files": [
  9449. ".nupkg.metadata",
  9450. ".signature.p7s",
  9451. "lib/netstandard2.0/Volo.Abp.Autofac.dll",
  9452. "lib/netstandard2.0/Volo.Abp.Autofac.pdb",
  9453. "lib/netstandard2.0/Volo.Abp.Autofac.xml",
  9454. "volo.abp.autofac.6.0.0.nupkg.sha512",
  9455. "volo.abp.autofac.nuspec"
  9456. ]
  9457. },
  9458. "Volo.Abp.AutoMapper/6.0.0": {
  9459. "sha512": "Vl10LTYky3bCPOBxi+EbHAi0ip5IzXFysMFDJquZyvOfJ55AZMJ0eXs43MMauFNVbz/pZgtjl23eQRLu5WFdpQ==",
  9460. "type": "package",
  9461. "path": "volo.abp.automapper/6.0.0",
  9462. "files": [
  9463. ".nupkg.metadata",
  9464. ".signature.p7s",
  9465. "lib/netstandard2.1/Volo.Abp.AutoMapper.dll",
  9466. "lib/netstandard2.1/Volo.Abp.AutoMapper.pdb",
  9467. "lib/netstandard2.1/Volo.Abp.AutoMapper.xml",
  9468. "volo.abp.automapper.6.0.0.nupkg.sha512",
  9469. "volo.abp.automapper.nuspec"
  9470. ]
  9471. },
  9472. "Volo.Abp.BackgroundWorkers/6.0.2": {
  9473. "sha512": "UIvmY1EEDnlT3jjZ92cDTWIsJncVLnntx32gLqqDWKILBAv2tAb/NQehW0yVYYcyezUULj2kJHPUaHr9uRAf9A==",
  9474. "type": "package",
  9475. "path": "volo.abp.backgroundworkers/6.0.2",
  9476. "files": [
  9477. ".nupkg.metadata",
  9478. ".signature.p7s",
  9479. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll",
  9480. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.pdb",
  9481. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.xml",
  9482. "volo.abp.backgroundworkers.6.0.2.nupkg.sha512",
  9483. "volo.abp.backgroundworkers.nuspec"
  9484. ]
  9485. },
  9486. "Volo.Abp.Caching/6.0.0": {
  9487. "sha512": "i+YHjH98KnmS2ohc+T3Gb5LvBLyfeB8M+zVib2LKm4hC/2hn/nFnV5Ss0YTwHgMErEcX1n8vWqBmDpWkcZl4Ug==",
  9488. "type": "package",
  9489. "path": "volo.abp.caching/6.0.0",
  9490. "files": [
  9491. ".nupkg.metadata",
  9492. ".signature.p7s",
  9493. "lib/netstandard2.0/Volo.Abp.Caching.dll",
  9494. "lib/netstandard2.0/Volo.Abp.Caching.pdb",
  9495. "lib/netstandard2.0/Volo.Abp.Caching.xml",
  9496. "volo.abp.caching.6.0.0.nupkg.sha512",
  9497. "volo.abp.caching.nuspec"
  9498. ]
  9499. },
  9500. "Volo.Abp.Castle.Core/6.0.0": {
  9501. "sha512": "rWyHJe7FNm4DunvMQ8y1MAZfiqRrIxEWnBWq1P7kTYy7ig9PKYj+HjSTX9uLc6d9ZScut6qM4hAltMDgFYwuEw==",
  9502. "type": "package",
  9503. "path": "volo.abp.castle.core/6.0.0",
  9504. "files": [
  9505. ".nupkg.metadata",
  9506. ".signature.p7s",
  9507. "lib/netstandard2.0/Volo.Abp.Castle.Core.dll",
  9508. "lib/netstandard2.0/Volo.Abp.Castle.Core.pdb",
  9509. "lib/netstandard2.0/Volo.Abp.Castle.Core.xml",
  9510. "volo.abp.castle.core.6.0.0.nupkg.sha512",
  9511. "volo.abp.castle.core.nuspec"
  9512. ]
  9513. },
  9514. "Volo.Abp.Core/6.0.2": {
  9515. "sha512": "wuY90hoFxowFD0jatwJ0SWJ+bDuwQD4C+Wb00EWJ7sfYDq9Xu0l4Hh7QmUKFQOKPMotLy5Lt8LGirmwE88D00w==",
  9516. "type": "package",
  9517. "path": "volo.abp.core/6.0.2",
  9518. "files": [
  9519. ".nupkg.metadata",
  9520. ".signature.p7s",
  9521. "lib/netstandard2.0/Volo.Abp.Core.dll",
  9522. "lib/netstandard2.0/Volo.Abp.Core.pdb",
  9523. "lib/netstandard2.0/Volo.Abp.Core.xml",
  9524. "volo.abp.core.6.0.2.nupkg.sha512",
  9525. "volo.abp.core.nuspec"
  9526. ]
  9527. },
  9528. "Volo.Abp.Data/6.0.2": {
  9529. "sha512": "JBWe8xpTKv9kUYCbwSL5OvviyWbldGWjkQ517SdmzqXiYbYhTIpBuEBv+XemxjMbgBG+jOxmtrXc/7/77uXd5w==",
  9530. "type": "package",
  9531. "path": "volo.abp.data/6.0.2",
  9532. "files": [
  9533. ".nupkg.metadata",
  9534. ".signature.p7s",
  9535. "lib/netstandard2.0/Volo.Abp.Data.dll",
  9536. "lib/netstandard2.0/Volo.Abp.Data.pdb",
  9537. "lib/netstandard2.0/Volo.Abp.Data.xml",
  9538. "volo.abp.data.6.0.2.nupkg.sha512",
  9539. "volo.abp.data.nuspec"
  9540. ]
  9541. },
  9542. "Volo.Abp.Ddd.Application/6.0.0": {
  9543. "sha512": "dib3NLy7bpgubyZqpZ/wht4mPoP490bBQuh/Kd4bTy0F9wjyT2Dp1St8Tc5N1kKt6C2R1w9bJMcnnJtwyPZcjw==",
  9544. "type": "package",
  9545. "path": "volo.abp.ddd.application/6.0.0",
  9546. "files": [
  9547. ".nupkg.metadata",
  9548. ".signature.p7s",
  9549. "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll",
  9550. "lib/netstandard2.0/Volo.Abp.Ddd.Application.pdb",
  9551. "lib/netstandard2.0/Volo.Abp.Ddd.Application.xml",
  9552. "volo.abp.ddd.application.6.0.0.nupkg.sha512",
  9553. "volo.abp.ddd.application.nuspec"
  9554. ]
  9555. },
  9556. "Volo.Abp.Ddd.Application.Contracts/6.0.0": {
  9557. "sha512": "IriSv5WJikdFPxx2su2z8biSmjrJn1bboBN2lf1SCD1tQYDckvrEINwNQUJ7BN1CjaL6SqvN2XHHsGocSXgIvA==",
  9558. "type": "package",
  9559. "path": "volo.abp.ddd.application.contracts/6.0.0",
  9560. "files": [
  9561. ".nupkg.metadata",
  9562. ".signature.p7s",
  9563. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll",
  9564. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.pdb",
  9565. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.xml",
  9566. "volo.abp.ddd.application.contracts.6.0.0.nupkg.sha512",
  9567. "volo.abp.ddd.application.contracts.nuspec"
  9568. ]
  9569. },
  9570. "Volo.Abp.Ddd.Domain/6.0.2": {
  9571. "sha512": "wxcpTFmoLgZ9/5vkdMaZFU1kcxOba5c1DrHQUIrV9KFDiWPguDd9hc3bPbpsCzq/oZgUUZVo42lj03gzbM4zGA==",
  9572. "type": "package",
  9573. "path": "volo.abp.ddd.domain/6.0.2",
  9574. "files": [
  9575. ".nupkg.metadata",
  9576. ".signature.p7s",
  9577. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll",
  9578. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.pdb",
  9579. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.xml",
  9580. "volo.abp.ddd.domain.6.0.2.nupkg.sha512",
  9581. "volo.abp.ddd.domain.nuspec"
  9582. ]
  9583. },
  9584. "Volo.Abp.DistributedLocking.Abstractions/6.0.2": {
  9585. "sha512": "luIm9uqOsar7wRA65X3ItlM6O3Sy/iR8nfn6ifU1VoXaODVaqPM+NzUWOoMkxPiUNMfAaap8qbfzKSJ4+PkPug==",
  9586. "type": "package",
  9587. "path": "volo.abp.distributedlocking.abstractions/6.0.2",
  9588. "files": [
  9589. ".nupkg.metadata",
  9590. ".signature.p7s",
  9591. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll",
  9592. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.pdb",
  9593. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.xml",
  9594. "volo.abp.distributedlocking.abstractions.6.0.2.nupkg.sha512",
  9595. "volo.abp.distributedlocking.abstractions.nuspec"
  9596. ]
  9597. },
  9598. "Volo.Abp.EntityFrameworkCore/6.0.2": {
  9599. "sha512": "R0VOj2p5I+TYJ+oFI3WM6FeDGDZRBrXnX3QOqt4JxTBTnnE4oXCKx8I/k6JMrllmGbyKYD2dheRxxuTKpjr0Kg==",
  9600. "type": "package",
  9601. "path": "volo.abp.entityframeworkcore/6.0.2",
  9602. "files": [
  9603. ".nupkg.metadata",
  9604. ".signature.p7s",
  9605. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll",
  9606. "lib/net6.0/Volo.Abp.EntityFrameworkCore.pdb",
  9607. "lib/net6.0/Volo.Abp.EntityFrameworkCore.xml",
  9608. "volo.abp.entityframeworkcore.6.0.2.nupkg.sha512",
  9609. "volo.abp.entityframeworkcore.nuspec"
  9610. ]
  9611. },
  9612. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.2": {
  9613. "sha512": "D/xcqgZlBhQyvTU2GInpThoebi2jKIrrVSNT2HdXUo3PihiBccdIBxSgdPSDDj6DBu/Hhy7A1CEmv7k8c+K/RA==",
  9614. "type": "package",
  9615. "path": "volo.abp.entityframeworkcore.mysql/6.0.2",
  9616. "files": [
  9617. ".nupkg.metadata",
  9618. ".signature.p7s",
  9619. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll",
  9620. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.pdb",
  9621. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.xml",
  9622. "volo.abp.entityframeworkcore.mysql.6.0.2.nupkg.sha512",
  9623. "volo.abp.entityframeworkcore.mysql.nuspec"
  9624. ]
  9625. },
  9626. "Volo.Abp.EntityFrameworkCore.SqlServer/6.0.2": {
  9627. "sha512": "EEoCydF1OjSpuEUYzMS4eukxDcoF49EmpJWjd3SYYBDEJ3i/ohP7GOkJ258cOzUw+OZCuSIlNmNppibVv595lw==",
  9628. "type": "package",
  9629. "path": "volo.abp.entityframeworkcore.sqlserver/6.0.2",
  9630. "files": [
  9631. ".nupkg.metadata",
  9632. ".signature.p7s",
  9633. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.dll",
  9634. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.pdb",
  9635. "lib/net6.0/Volo.Abp.EntityFrameworkCore.SqlServer.xml",
  9636. "volo.abp.entityframeworkcore.sqlserver.6.0.2.nupkg.sha512",
  9637. "volo.abp.entityframeworkcore.sqlserver.nuspec"
  9638. ]
  9639. },
  9640. "Volo.Abp.EventBus/6.0.2": {
  9641. "sha512": "NaGgox4T4L7AzQijPtQERZAH2crWYtyWVLZEmhEqPhDOiyFeJHwzNoP4bCqaz2FqFG0f7SbWZwJV6vdWoHCY8Q==",
  9642. "type": "package",
  9643. "path": "volo.abp.eventbus/6.0.2",
  9644. "files": [
  9645. ".nupkg.metadata",
  9646. ".signature.p7s",
  9647. "lib/netstandard2.0/Volo.Abp.EventBus.dll",
  9648. "lib/netstandard2.0/Volo.Abp.EventBus.pdb",
  9649. "lib/netstandard2.0/Volo.Abp.EventBus.xml",
  9650. "volo.abp.eventbus.6.0.2.nupkg.sha512",
  9651. "volo.abp.eventbus.nuspec"
  9652. ]
  9653. },
  9654. "Volo.Abp.EventBus.Abstractions/6.0.2": {
  9655. "sha512": "9eHrajsiJYfSBf1/hKnF8Wjc8K9aANfS9HKbJIkVJUS1PgRSLiCbLrCuyesCkgORSt3a3VDDywAfP0RhgEJ/zQ==",
  9656. "type": "package",
  9657. "path": "volo.abp.eventbus.abstractions/6.0.2",
  9658. "files": [
  9659. ".nupkg.metadata",
  9660. ".signature.p7s",
  9661. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll",
  9662. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.pdb",
  9663. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.xml",
  9664. "volo.abp.eventbus.abstractions.6.0.2.nupkg.sha512",
  9665. "volo.abp.eventbus.abstractions.nuspec"
  9666. ]
  9667. },
  9668. "Volo.Abp.ExceptionHandling/6.0.2": {
  9669. "sha512": "Gw9biTqWpDvz01dEuVO5KHKGX/po6TWSsAEQMb6XnxEicH9HU7AM6VDSHVduFszO/lhzLZ+3EUaU2rvRfP0b5w==",
  9670. "type": "package",
  9671. "path": "volo.abp.exceptionhandling/6.0.2",
  9672. "files": [
  9673. ".nupkg.metadata",
  9674. ".signature.p7s",
  9675. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll",
  9676. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.pdb",
  9677. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.xml",
  9678. "volo.abp.exceptionhandling.6.0.2.nupkg.sha512",
  9679. "volo.abp.exceptionhandling.nuspec"
  9680. ]
  9681. },
  9682. "Volo.Abp.Features/6.0.0": {
  9683. "sha512": "VgRQwdzfTbS/L3iLP+czBrV+WFAodqvbgDWIq9H50S6rRlx5YGmoqCbP/gmQAjXloZ7Mi77Y0p98pahM2yhWqg==",
  9684. "type": "package",
  9685. "path": "volo.abp.features/6.0.0",
  9686. "files": [
  9687. ".nupkg.metadata",
  9688. ".signature.p7s",
  9689. "lib/netstandard2.0/Volo.Abp.Features.dll",
  9690. "lib/netstandard2.0/Volo.Abp.Features.pdb",
  9691. "lib/netstandard2.0/Volo.Abp.Features.xml",
  9692. "volo.abp.features.6.0.0.nupkg.sha512",
  9693. "volo.abp.features.nuspec"
  9694. ]
  9695. },
  9696. "Volo.Abp.GlobalFeatures/6.0.0": {
  9697. "sha512": "vC0RODYDbO9fX0FpmyOrWFT097um5NBQ4/SkVcrguwigj6Y8CvSA2b9POI06LMGUg6QVFEzEBCoG4hUwWFgq3Q==",
  9698. "type": "package",
  9699. "path": "volo.abp.globalfeatures/6.0.0",
  9700. "files": [
  9701. ".nupkg.metadata",
  9702. ".signature.p7s",
  9703. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.dll",
  9704. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.pdb",
  9705. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.xml",
  9706. "volo.abp.globalfeatures.6.0.0.nupkg.sha512",
  9707. "volo.abp.globalfeatures.nuspec"
  9708. ]
  9709. },
  9710. "Volo.Abp.Guids/6.0.2": {
  9711. "sha512": "NZJVgg5h6l7WIVpxTIRc27Xkeu1GrsP+BgTXEEgD/+bdbyxwk3jvS1vZpCMTy3c1AxjKldJE+MDbFMSJ1P4QmQ==",
  9712. "type": "package",
  9713. "path": "volo.abp.guids/6.0.2",
  9714. "files": [
  9715. ".nupkg.metadata",
  9716. ".signature.p7s",
  9717. "lib/netstandard2.0/Volo.Abp.Guids.dll",
  9718. "lib/netstandard2.0/Volo.Abp.Guids.pdb",
  9719. "lib/netstandard2.0/Volo.Abp.Guids.xml",
  9720. "volo.abp.guids.6.0.2.nupkg.sha512",
  9721. "volo.abp.guids.nuspec"
  9722. ]
  9723. },
  9724. "Volo.Abp.Http/6.0.0": {
  9725. "sha512": "dBjC0mIbE5rHjCrF0dxbrTHj7Ep4As1LxCPTPgHqjpAGF+Q00Fuf0c7V7C/8mTAUAJ2d37tyPta2anKmYvcEtg==",
  9726. "type": "package",
  9727. "path": "volo.abp.http/6.0.0",
  9728. "files": [
  9729. ".nupkg.metadata",
  9730. ".signature.p7s",
  9731. "lib/netstandard2.0/Volo.Abp.Http.dll",
  9732. "lib/netstandard2.0/Volo.Abp.Http.pdb",
  9733. "lib/netstandard2.0/Volo.Abp.Http.xml",
  9734. "volo.abp.http.6.0.0.nupkg.sha512",
  9735. "volo.abp.http.nuspec"
  9736. ]
  9737. },
  9738. "Volo.Abp.Http.Abstractions/6.0.0": {
  9739. "sha512": "IWB9LuRmW4iuXxNVUqNXN5x1nwpdL1gcgKlwOuU3GVbbHpN5VN3irl/kONfP9buktjd5D0xo/lYaZXKaswi87w==",
  9740. "type": "package",
  9741. "path": "volo.abp.http.abstractions/6.0.0",
  9742. "files": [
  9743. ".nupkg.metadata",
  9744. ".signature.p7s",
  9745. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll",
  9746. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.pdb",
  9747. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.xml",
  9748. "volo.abp.http.abstractions.6.0.0.nupkg.sha512",
  9749. "volo.abp.http.abstractions.nuspec"
  9750. ]
  9751. },
  9752. "Volo.Abp.Json/6.0.2": {
  9753. "sha512": "opT+u/teEACd2U/8OEYYNh4XHZ2JZgx+fdqPCOHcDyV0aJFn6friK8hc8d5dkUw/XY9lbnTX0VA7a5hMFhF+VQ==",
  9754. "type": "package",
  9755. "path": "volo.abp.json/6.0.2",
  9756. "files": [
  9757. ".nupkg.metadata",
  9758. ".signature.p7s",
  9759. "lib/netstandard2.0/Volo.Abp.Json.dll",
  9760. "lib/netstandard2.0/Volo.Abp.Json.pdb",
  9761. "lib/netstandard2.0/Volo.Abp.Json.xml",
  9762. "volo.abp.json.6.0.2.nupkg.sha512",
  9763. "volo.abp.json.nuspec"
  9764. ]
  9765. },
  9766. "Volo.Abp.Localization/6.0.2": {
  9767. "sha512": "YYUEzyfH3u/ILYm045fbPZQKh2asIEXiw1swsh3qyo7fPV1q5xxEsb5xBwfE5SC0F+lcUBy72cJjRmf8HqiQFw==",
  9768. "type": "package",
  9769. "path": "volo.abp.localization/6.0.2",
  9770. "files": [
  9771. ".nupkg.metadata",
  9772. ".signature.p7s",
  9773. "lib/netstandard2.0/Volo.Abp.Localization.dll",
  9774. "lib/netstandard2.0/Volo.Abp.Localization.pdb",
  9775. "lib/netstandard2.0/Volo.Abp.Localization.xml",
  9776. "volo.abp.localization.6.0.2.nupkg.sha512",
  9777. "volo.abp.localization.nuspec"
  9778. ]
  9779. },
  9780. "Volo.Abp.Localization.Abstractions/6.0.2": {
  9781. "sha512": "RE2tYmLJJ6W6BEm4LXiqJHBpY07JE9iiAj7djfYvQzrn3oSonCyLFxH+/UWIBzcGgOrjdhzI/UuF0Y9GHNRWTA==",
  9782. "type": "package",
  9783. "path": "volo.abp.localization.abstractions/6.0.2",
  9784. "files": [
  9785. ".nupkg.metadata",
  9786. ".signature.p7s",
  9787. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll",
  9788. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb",
  9789. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.xml",
  9790. "volo.abp.localization.abstractions.6.0.2.nupkg.sha512",
  9791. "volo.abp.localization.abstractions.nuspec"
  9792. ]
  9793. },
  9794. "Volo.Abp.Minify/6.0.0": {
  9795. "sha512": "Gf7+HoBVQTATUs8okymMs30C/OpUQOtud2yn8mr8qJtWX8K7+qCjfZcpbN4g601qx/m2dzhhlVAqS2FO3fhVQQ==",
  9796. "type": "package",
  9797. "path": "volo.abp.minify/6.0.0",
  9798. "files": [
  9799. ".nupkg.metadata",
  9800. ".signature.p7s",
  9801. "lib/netstandard2.0/Volo.Abp.Minify.dll",
  9802. "lib/netstandard2.0/Volo.Abp.Minify.pdb",
  9803. "lib/netstandard2.0/Volo.Abp.Minify.xml",
  9804. "volo.abp.minify.6.0.0.nupkg.sha512",
  9805. "volo.abp.minify.nuspec"
  9806. ]
  9807. },
  9808. "Volo.Abp.MultiTenancy/6.0.2": {
  9809. "sha512": "1RU/gR260DELa1hZKmb8pwFu5yUzF3dv5ilSc3ICcu8CnStod1/wD1gwLl8WbLob2IZX/CqRRqUzawwc4lwY6w==",
  9810. "type": "package",
  9811. "path": "volo.abp.multitenancy/6.0.2",
  9812. "files": [
  9813. ".nupkg.metadata",
  9814. ".signature.p7s",
  9815. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll",
  9816. "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb",
  9817. "lib/netstandard2.0/Volo.Abp.MultiTenancy.xml",
  9818. "volo.abp.multitenancy.6.0.2.nupkg.sha512",
  9819. "volo.abp.multitenancy.nuspec"
  9820. ]
  9821. },
  9822. "Volo.Abp.ObjectExtending/6.0.2": {
  9823. "sha512": "KNAIAAoQIJg75TisdF6ZE8roeeqwlyjCMu9PAgnKbwraxwU12F390Rl3ObKhVI9aHAk31aMj4+EZpLTUbCmFpA==",
  9824. "type": "package",
  9825. "path": "volo.abp.objectextending/6.0.2",
  9826. "files": [
  9827. ".nupkg.metadata",
  9828. ".signature.p7s",
  9829. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll",
  9830. "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb",
  9831. "lib/netstandard2.0/Volo.Abp.ObjectExtending.xml",
  9832. "volo.abp.objectextending.6.0.2.nupkg.sha512",
  9833. "volo.abp.objectextending.nuspec"
  9834. ]
  9835. },
  9836. "Volo.Abp.ObjectMapping/6.0.2": {
  9837. "sha512": "reUOLtKea9//yOSNwfCno9tPIPrlLyaOFioeP4dDSlIfq6p0q8O45XHnZzv7LJ8SLpB26Xw9DuFZRZ59TVkahw==",
  9838. "type": "package",
  9839. "path": "volo.abp.objectmapping/6.0.2",
  9840. "files": [
  9841. ".nupkg.metadata",
  9842. ".signature.p7s",
  9843. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll",
  9844. "lib/netstandard2.0/Volo.Abp.ObjectMapping.pdb",
  9845. "lib/netstandard2.0/Volo.Abp.ObjectMapping.xml",
  9846. "volo.abp.objectmapping.6.0.2.nupkg.sha512",
  9847. "volo.abp.objectmapping.nuspec"
  9848. ]
  9849. },
  9850. "Volo.Abp.PermissionManagement.Application.Contracts/6.0.0": {
  9851. "sha512": "TkhbsorTogLAS20sACYSQ9B1O5t86QvxCvqodaLRzbLtraeGdrWwWTZ/dT96bp9f6hT+8KvuCrxu1mhXIgLoaw==",
  9852. "type": "package",
  9853. "path": "volo.abp.permissionmanagement.application.contracts/6.0.0",
  9854. "files": [
  9855. ".nupkg.metadata",
  9856. ".signature.p7s",
  9857. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll",
  9858. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.pdb",
  9859. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.xml",
  9860. "volo.abp.permissionmanagement.application.contracts.6.0.0.nupkg.sha512",
  9861. "volo.abp.permissionmanagement.application.contracts.nuspec"
  9862. ]
  9863. },
  9864. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  9865. "sha512": "qtYyZ/z7Zh5fMfaJXEL06iAuSgtrxt98M2oHN52POuClOx1V0Jix0fejeWsfJvvGs/l1+EyDWb2ul2IiOkuksg==",
  9866. "type": "package",
  9867. "path": "volo.abp.permissionmanagement.domain/6.0.0",
  9868. "files": [
  9869. ".nupkg.metadata",
  9870. ".signature.p7s",
  9871. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll",
  9872. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.pdb",
  9873. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.xml",
  9874. "volo.abp.permissionmanagement.domain.6.0.0.nupkg.sha512",
  9875. "volo.abp.permissionmanagement.domain.nuspec"
  9876. ]
  9877. },
  9878. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  9879. "sha512": "BjLkzErtgq3LYzt4T16QwG7FJF/pe4DrjrWOsEZc852FliAzUF9MVOOPvcAADNgIHpCJQXBJqu6c+yf77g9wsA==",
  9880. "type": "package",
  9881. "path": "volo.abp.permissionmanagement.domain.shared/6.0.0",
  9882. "files": [
  9883. ".nupkg.metadata",
  9884. ".signature.p7s",
  9885. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll",
  9886. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.pdb",
  9887. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.xml",
  9888. "volo.abp.permissionmanagement.domain.shared.6.0.0.nupkg.sha512",
  9889. "volo.abp.permissionmanagement.domain.shared.nuspec"
  9890. ]
  9891. },
  9892. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  9893. "sha512": "xS/RfnfEv49cHWpE90aFSPlg9ZdW2zeHwfSHtBxXdF1t24E0Bbouzc33iUATMPYnH02nwLGMy8n6QDRZht4+pA==",
  9894. "type": "package",
  9895. "path": "volo.abp.permissionmanagement.entityframeworkcore/6.0.0",
  9896. "files": [
  9897. ".nupkg.metadata",
  9898. ".signature.p7s",
  9899. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll",
  9900. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.pdb",
  9901. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.xml",
  9902. "volo.abp.permissionmanagement.entityframeworkcore.6.0.0.nupkg.sha512",
  9903. "volo.abp.permissionmanagement.entityframeworkcore.nuspec"
  9904. ]
  9905. },
  9906. "Volo.Abp.Security/6.0.2": {
  9907. "sha512": "+SxP7wxD+Auc4WXuPXZZ6Ra1VTy1H+UWbkvUBiKnjw8258tdTEsWBLBosOM74OzCcBMysj3uxiKVv/unNg3sWg==",
  9908. "type": "package",
  9909. "path": "volo.abp.security/6.0.2",
  9910. "files": [
  9911. ".nupkg.metadata",
  9912. ".signature.p7s",
  9913. "lib/netstandard2.0/Volo.Abp.Security.dll",
  9914. "lib/netstandard2.0/Volo.Abp.Security.pdb",
  9915. "lib/netstandard2.0/Volo.Abp.Security.xml",
  9916. "volo.abp.security.6.0.2.nupkg.sha512",
  9917. "volo.abp.security.nuspec"
  9918. ]
  9919. },
  9920. "Volo.Abp.Serialization/6.0.0": {
  9921. "sha512": "fQUBF1eyxxrw81UCAehHG/GDr9TqAPh5MzjsV8RW7PhDPwkpxzypKVx1MwR+SFhF+zY0Eml1olk5iJ8u8nxBqQ==",
  9922. "type": "package",
  9923. "path": "volo.abp.serialization/6.0.0",
  9924. "files": [
  9925. ".nupkg.metadata",
  9926. ".signature.p7s",
  9927. "lib/netstandard2.0/Volo.Abp.Serialization.dll",
  9928. "lib/netstandard2.0/Volo.Abp.Serialization.pdb",
  9929. "lib/netstandard2.0/Volo.Abp.Serialization.xml",
  9930. "volo.abp.serialization.6.0.0.nupkg.sha512",
  9931. "volo.abp.serialization.nuspec"
  9932. ]
  9933. },
  9934. "Volo.Abp.Settings/6.0.2": {
  9935. "sha512": "jRlV1GF/TjphMXIwBn/ldkweRdvZY4U/p5iNebVT2hhz8W896Y88jF5yS9JZtjWHT9vs0AitVIYWPs2ZNW8yrQ==",
  9936. "type": "package",
  9937. "path": "volo.abp.settings/6.0.2",
  9938. "files": [
  9939. ".nupkg.metadata",
  9940. ".signature.p7s",
  9941. "lib/netstandard2.0/Volo.Abp.Settings.dll",
  9942. "lib/netstandard2.0/Volo.Abp.Settings.pdb",
  9943. "lib/netstandard2.0/Volo.Abp.Settings.xml",
  9944. "volo.abp.settings.6.0.2.nupkg.sha512",
  9945. "volo.abp.settings.nuspec"
  9946. ]
  9947. },
  9948. "Volo.Abp.Specifications/6.0.2": {
  9949. "sha512": "SYc3Wjco9r9SaeP6+giUvx7x+3jU7ZwEi/AicGQ90oxqngPdL2dSLY86iVItKElM+ZY/JnW5cXwhF9IbJJ6wEw==",
  9950. "type": "package",
  9951. "path": "volo.abp.specifications/6.0.2",
  9952. "files": [
  9953. ".nupkg.metadata",
  9954. ".signature.p7s",
  9955. "lib/netstandard2.0/Volo.Abp.Specifications.dll",
  9956. "lib/netstandard2.0/Volo.Abp.Specifications.pdb",
  9957. "lib/netstandard2.0/Volo.Abp.Specifications.xml",
  9958. "volo.abp.specifications.6.0.2.nupkg.sha512",
  9959. "volo.abp.specifications.nuspec"
  9960. ]
  9961. },
  9962. "Volo.Abp.Threading/6.0.2": {
  9963. "sha512": "tgTehSlQbfNiUPNLMtw3sQRK2AxaCwLdFPf60aJNlwrWbsUTT17HrJ9Yeu9Mn+li8WARS0lvs9tnkk8blUFeuQ==",
  9964. "type": "package",
  9965. "path": "volo.abp.threading/6.0.2",
  9966. "files": [
  9967. ".nupkg.metadata",
  9968. ".signature.p7s",
  9969. "lib/netstandard2.0/Volo.Abp.Threading.dll",
  9970. "lib/netstandard2.0/Volo.Abp.Threading.pdb",
  9971. "lib/netstandard2.0/Volo.Abp.Threading.xml",
  9972. "volo.abp.threading.6.0.2.nupkg.sha512",
  9973. "volo.abp.threading.nuspec"
  9974. ]
  9975. },
  9976. "Volo.Abp.Timing/6.0.2": {
  9977. "sha512": "MbGt9ZJ9U01oHK5+bxUBGuq62w/uI++dFQdR/ghyA3M4r2k435+Snzs+oRoaRcUqvxaE97dPDd578yDwWLl3fQ==",
  9978. "type": "package",
  9979. "path": "volo.abp.timing/6.0.2",
  9980. "files": [
  9981. ".nupkg.metadata",
  9982. ".signature.p7s",
  9983. "lib/netstandard2.0/Volo.Abp.Timing.dll",
  9984. "lib/netstandard2.0/Volo.Abp.Timing.pdb",
  9985. "lib/netstandard2.0/Volo.Abp.Timing.xml",
  9986. "volo.abp.timing.6.0.2.nupkg.sha512",
  9987. "volo.abp.timing.nuspec"
  9988. ]
  9989. },
  9990. "Volo.Abp.UI/6.0.0": {
  9991. "sha512": "9jVrYqJ4eu8s1kcrWA1cQM8I0dJP175wtDUAC5aHbKzCq42P+sbikC8odevQ6t9Ok3GshJCNkIJORcUEt/nAEg==",
  9992. "type": "package",
  9993. "path": "volo.abp.ui/6.0.0",
  9994. "files": [
  9995. ".nupkg.metadata",
  9996. ".signature.p7s",
  9997. "lib/netstandard2.0/Volo.Abp.UI.dll",
  9998. "lib/netstandard2.0/Volo.Abp.UI.pdb",
  9999. "lib/netstandard2.0/Volo.Abp.UI.xml",
  10000. "volo.abp.ui.6.0.0.nupkg.sha512",
  10001. "volo.abp.ui.nuspec"
  10002. ]
  10003. },
  10004. "Volo.Abp.UI.Navigation/6.0.0": {
  10005. "sha512": "/wV50FzsHe6qJ3//dtC94ntX7S/dRHVVmpbGO+WUvlcFIAdXNCy0R5lQx10GyeO4TIYgA0mpu07HLni4A5yDyA==",
  10006. "type": "package",
  10007. "path": "volo.abp.ui.navigation/6.0.0",
  10008. "files": [
  10009. ".nupkg.metadata",
  10010. ".signature.p7s",
  10011. "lib/netstandard2.0/Volo.Abp.UI.Navigation.dll",
  10012. "lib/netstandard2.0/Volo.Abp.UI.Navigation.pdb",
  10013. "lib/netstandard2.0/Volo.Abp.UI.Navigation.xml",
  10014. "volo.abp.ui.navigation.6.0.0.nupkg.sha512",
  10015. "volo.abp.ui.navigation.nuspec"
  10016. ]
  10017. },
  10018. "Volo.Abp.Uow/6.0.2": {
  10019. "sha512": "frheu6miUaSeDzSaKpk4IUT1vZQ1a5Yji9s4pRmX7skd13bTeB6P45n+555qDBEf4/plpr4GPz+9Fd+u/EnVvQ==",
  10020. "type": "package",
  10021. "path": "volo.abp.uow/6.0.2",
  10022. "files": [
  10023. ".nupkg.metadata",
  10024. ".signature.p7s",
  10025. "lib/netstandard2.0/Volo.Abp.Uow.dll",
  10026. "lib/netstandard2.0/Volo.Abp.Uow.pdb",
  10027. "lib/netstandard2.0/Volo.Abp.Uow.xml",
  10028. "volo.abp.uow.6.0.2.nupkg.sha512",
  10029. "volo.abp.uow.nuspec"
  10030. ]
  10031. },
  10032. "Volo.Abp.Validation/6.0.0": {
  10033. "sha512": "Iza3FCoOaClOzHb+ue6q1UPd+MzfXjPfZ29YF8AUe6VfWx49EbquvSk0zjYVx3ikOBhnhffQiqv/QzzQtYmq6A==",
  10034. "type": "package",
  10035. "path": "volo.abp.validation/6.0.0",
  10036. "files": [
  10037. ".nupkg.metadata",
  10038. ".signature.p7s",
  10039. "lib/netstandard2.0/Volo.Abp.Validation.dll",
  10040. "lib/netstandard2.0/Volo.Abp.Validation.pdb",
  10041. "lib/netstandard2.0/Volo.Abp.Validation.xml",
  10042. "volo.abp.validation.6.0.0.nupkg.sha512",
  10043. "volo.abp.validation.nuspec"
  10044. ]
  10045. },
  10046. "Volo.Abp.Validation.Abstractions/6.0.2": {
  10047. "sha512": "LEeESHPMPHrrkf0sFjgUKiHayaStq4uTt7PTQyUvU3WaAJZWrENuC3aXkz4aHJhO2jjW2bRoRHNqfmoGjdzqRg==",
  10048. "type": "package",
  10049. "path": "volo.abp.validation.abstractions/6.0.2",
  10050. "files": [
  10051. ".nupkg.metadata",
  10052. ".signature.p7s",
  10053. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll",
  10054. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb",
  10055. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.xml",
  10056. "volo.abp.validation.abstractions.6.0.2.nupkg.sha512",
  10057. "volo.abp.validation.abstractions.nuspec"
  10058. ]
  10059. },
  10060. "Volo.Abp.VirtualFileSystem/6.0.2": {
  10061. "sha512": "/uA+KzInBEgg31HRis/z7qDsK1rNT8vCEdgQ4cZzUujB6vV7j8cBJQfsXLVmctSEadt0DibFa/XLn7w51J1oXg==",
  10062. "type": "package",
  10063. "path": "volo.abp.virtualfilesystem/6.0.2",
  10064. "files": [
  10065. ".nupkg.metadata",
  10066. ".signature.p7s",
  10067. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll",
  10068. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb",
  10069. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.xml",
  10070. "volo.abp.virtualfilesystem.6.0.2.nupkg.sha512",
  10071. "volo.abp.virtualfilesystem.nuspec"
  10072. ]
  10073. },
  10074. "Procurement.Application/1.0.0": {
  10075. "type": "project",
  10076. "path": "../Procurement.Application/Procurement.Application.csproj",
  10077. "msbuildProject": "../Procurement.Application/Procurement.Application.csproj"
  10078. },
  10079. "Procurement.Core/1.0.0": {
  10080. "type": "project",
  10081. "path": "../Procurement.Core/Procurement.Core.csproj",
  10082. "msbuildProject": "../Procurement.Core/Procurement.Core.csproj"
  10083. },
  10084. "Procurement.Domain/1.0.0": {
  10085. "type": "project",
  10086. "path": "../Procurement.Domain/Procurement.Domain.csproj",
  10087. "msbuildProject": "../Procurement.Domain/Procurement.Domain.csproj"
  10088. },
  10089. "Procurement.EntityFrameworkCore/1.0.0": {
  10090. "type": "project",
  10091. "path": "../Procurement.EntityFrameworkCore/Procurement.EntityFrameworkCore.csproj",
  10092. "msbuildProject": "../Procurement.EntityFrameworkCore/Procurement.EntityFrameworkCore.csproj"
  10093. },
  10094. "XCZ.Procurement.Application.Contracts/0.1.1": {
  10095. "type": "project",
  10096. "path": "../Procurement.Application.Contracts/Procurement.Application.Contracts.csproj",
  10097. "msbuildProject": "../Procurement.Application.Contracts/Procurement.Application.Contracts.csproj"
  10098. }
  10099. },
  10100. "projectFileDependencyGroups": {
  10101. "net6.0": [
  10102. "IdentityServer4.AccessTokenValidation >= 3.0.1",
  10103. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis >= 6.0.3",
  10104. "Microsoft.EntityFrameworkCore.Tools >= 6.0.5",
  10105. "Microsoft.Extensions.Caching.StackExchangeRedis >= 6.0.3",
  10106. "NLog.Database >= 5.1.2",
  10107. "NLog.Web.AspNetCore >= 5.2.2",
  10108. "Procurement.Application >= 1.0.0",
  10109. "Procurement.EntityFrameworkCore >= 1.0.0",
  10110. "Serilog.AspNetCore >= 5.0.0",
  10111. "Serilog.Sinks.Async >= 1.5.0",
  10112. "Swashbuckle.AspNetCore >= 6.3.0",
  10113. "Volo.Abp.AspNetCore.MultiTenancy >= 6.0.0",
  10114. "Volo.Abp.AspNetCore.Mvc >= 6.0.0",
  10115. "Volo.Abp.AspNetCore.Serilog >= 6.0.0",
  10116. "Volo.Abp.Autofac >= 6.0.0",
  10117. "Volo.Abp.Caching >= 6.0.0",
  10118. "Volo.Abp.EntityFrameworkCore.MySQL >= 6.0.2"
  10119. ]
  10120. },
  10121. "packageFolders": {
  10122. "C:\\Users\\fayimi\\.nuget\\packages\\": {},
  10123. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
  10124. "C:\\Microsoft\\Xamarin\\NuGet\\": {},
  10125. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
  10126. },
  10127. "project": {
  10128. "version": "1.0.0",
  10129. "restore": {
  10130. "projectUniqueName": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Host\\Procurement.Host.csproj",
  10131. "projectName": "Procurement.Host",
  10132. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Host\\Procurement.Host.csproj",
  10133. "packagesPath": "C:\\Users\\fayimi\\.nuget\\packages\\",
  10134. "outputPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Host\\obj\\",
  10135. "projectStyle": "PackageReference",
  10136. "fallbackFolders": [
  10137. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
  10138. "C:\\Microsoft\\Xamarin\\NuGet\\",
  10139. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
  10140. ],
  10141. "configFilePaths": [
  10142. "C:\\Users\\fayimi\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10143. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  10144. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  10145. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  10146. ],
  10147. "originalTargetFrameworks": [
  10148. "net6.0"
  10149. ],
  10150. "sources": {
  10151. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10152. "https://api.nuget.org/v3/index.json": {}
  10153. },
  10154. "frameworks": {
  10155. "net6.0": {
  10156. "targetAlias": "net6.0",
  10157. "projectReferences": {
  10158. "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Application\\Procurement.Application.csproj": {
  10159. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Application\\Procurement.Application.csproj"
  10160. },
  10161. "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj": {
  10162. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj"
  10163. }
  10164. }
  10165. }
  10166. },
  10167. "warningProperties": {
  10168. "warnAsError": [
  10169. "NU1605"
  10170. ]
  10171. }
  10172. },
  10173. "frameworks": {
  10174. "net6.0": {
  10175. "targetAlias": "net6.0",
  10176. "dependencies": {
  10177. "IdentityServer4.AccessTokenValidation": {
  10178. "target": "Package",
  10179. "version": "[3.0.1, )"
  10180. },
  10181. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis": {
  10182. "target": "Package",
  10183. "version": "[6.0.3, )"
  10184. },
  10185. "Microsoft.EntityFrameworkCore.Tools": {
  10186. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  10187. "suppressParent": "All",
  10188. "target": "Package",
  10189. "version": "[6.0.5, )"
  10190. },
  10191. "Microsoft.Extensions.Caching.StackExchangeRedis": {
  10192. "target": "Package",
  10193. "version": "[6.0.3, )"
  10194. },
  10195. "NLog.Database": {
  10196. "target": "Package",
  10197. "version": "[5.1.2, )"
  10198. },
  10199. "NLog.Web.AspNetCore": {
  10200. "target": "Package",
  10201. "version": "[5.2.2, )"
  10202. },
  10203. "Serilog.AspNetCore": {
  10204. "target": "Package",
  10205. "version": "[5.0.0, )"
  10206. },
  10207. "Serilog.Sinks.Async": {
  10208. "target": "Package",
  10209. "version": "[1.5.0, )"
  10210. },
  10211. "Swashbuckle.AspNetCore": {
  10212. "target": "Package",
  10213. "version": "[6.3.0, )"
  10214. },
  10215. "Volo.Abp.AspNetCore.MultiTenancy": {
  10216. "target": "Package",
  10217. "version": "[6.0.0, )"
  10218. },
  10219. "Volo.Abp.AspNetCore.Mvc": {
  10220. "target": "Package",
  10221. "version": "[6.0.0, )"
  10222. },
  10223. "Volo.Abp.AspNetCore.Serilog": {
  10224. "target": "Package",
  10225. "version": "[6.0.0, )"
  10226. },
  10227. "Volo.Abp.Autofac": {
  10228. "target": "Package",
  10229. "version": "[6.0.0, )"
  10230. },
  10231. "Volo.Abp.Caching": {
  10232. "target": "Package",
  10233. "version": "[6.0.0, )"
  10234. },
  10235. "Volo.Abp.EntityFrameworkCore.MySQL": {
  10236. "target": "Package",
  10237. "version": "[6.0.2, )"
  10238. }
  10239. },
  10240. "imports": [
  10241. "net461",
  10242. "net462",
  10243. "net47",
  10244. "net471",
  10245. "net472",
  10246. "net48",
  10247. "net481"
  10248. ],
  10249. "assetTargetFallback": true,
  10250. "warn": true,
  10251. "frameworkReferences": {
  10252. "Microsoft.AspNetCore.App": {
  10253. "privateAssets": "none"
  10254. },
  10255. "Microsoft.NETCore.App": {
  10256. "privateAssets": "all"
  10257. }
  10258. },
  10259. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  10260. }
  10261. }
  10262. }
  10263. }