project.assets.json 374 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747
  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.EntityFrameworkCore/6.0.5": {
  642. "type": "package",
  643. "dependencies": {
  644. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.5",
  645. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.5",
  646. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  647. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  648. "Microsoft.Extensions.Logging": "6.0.0",
  649. "System.Collections.Immutable": "6.0.0",
  650. "System.Diagnostics.DiagnosticSource": "6.0.0"
  651. },
  652. "compile": {
  653. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  654. "related": ".xml"
  655. }
  656. },
  657. "runtime": {
  658. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  659. "related": ".xml"
  660. }
  661. }
  662. },
  663. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  664. "type": "package",
  665. "compile": {
  666. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  667. "related": ".xml"
  668. }
  669. },
  670. "runtime": {
  671. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  672. "related": ".xml"
  673. }
  674. }
  675. },
  676. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  677. "type": "package",
  678. "compile": {
  679. "lib/netstandard2.0/_._": {}
  680. },
  681. "runtime": {
  682. "lib/netstandard2.0/_._": {}
  683. }
  684. },
  685. "Microsoft.EntityFrameworkCore.Design/6.0.5": {
  686. "type": "package",
  687. "dependencies": {
  688. "Humanizer.Core": "2.8.26",
  689. "Microsoft.EntityFrameworkCore.Relational": "6.0.5"
  690. },
  691. "compile": {
  692. "lib/net6.0/_._": {
  693. "related": ".xml"
  694. }
  695. },
  696. "runtime": {
  697. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
  698. "related": ".xml"
  699. }
  700. },
  701. "build": {
  702. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
  703. }
  704. },
  705. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  706. "type": "package",
  707. "dependencies": {
  708. "Microsoft.EntityFrameworkCore": "6.0.5",
  709. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  710. },
  711. "compile": {
  712. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  713. "related": ".xml"
  714. }
  715. },
  716. "runtime": {
  717. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  718. "related": ".xml"
  719. }
  720. }
  721. },
  722. "Microsoft.EntityFrameworkCore.Tools/6.0.5": {
  723. "type": "package",
  724. "dependencies": {
  725. "Microsoft.EntityFrameworkCore.Design": "6.0.5"
  726. },
  727. "compile": {
  728. "lib/net6.0/_._": {}
  729. },
  730. "runtime": {
  731. "lib/net6.0/_._": {}
  732. }
  733. },
  734. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  735. "type": "package",
  736. "build": {
  737. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  738. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  739. },
  740. "buildMultiTargeting": {
  741. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  742. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  743. }
  744. },
  745. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  746. "type": "package",
  747. "dependencies": {
  748. "Microsoft.Extensions.Primitives": "6.0.0"
  749. },
  750. "compile": {
  751. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  752. "related": ".xml"
  753. }
  754. },
  755. "runtime": {
  756. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  757. "related": ".xml"
  758. }
  759. }
  760. },
  761. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  762. "type": "package",
  763. "dependencies": {
  764. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  765. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  766. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  767. "Microsoft.Extensions.Options": "6.0.0",
  768. "Microsoft.Extensions.Primitives": "6.0.0"
  769. },
  770. "compile": {
  771. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  772. "related": ".xml"
  773. }
  774. },
  775. "runtime": {
  776. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  777. "related": ".xml"
  778. }
  779. }
  780. },
  781. "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.3": {
  782. "type": "package",
  783. "dependencies": {
  784. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  785. "Microsoft.Extensions.Options": "6.0.0",
  786. "StackExchange.Redis": "2.2.4"
  787. },
  788. "compile": {
  789. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": {
  790. "related": ".xml"
  791. }
  792. },
  793. "runtime": {
  794. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll": {
  795. "related": ".xml"
  796. }
  797. }
  798. },
  799. "Microsoft.Extensions.Configuration/6.0.0": {
  800. "type": "package",
  801. "dependencies": {
  802. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  803. "Microsoft.Extensions.Primitives": "6.0.0"
  804. },
  805. "compile": {
  806. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  807. "related": ".xml"
  808. }
  809. },
  810. "runtime": {
  811. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  812. "related": ".xml"
  813. }
  814. }
  815. },
  816. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  817. "type": "package",
  818. "dependencies": {
  819. "Microsoft.Extensions.Primitives": "6.0.0"
  820. },
  821. "compile": {
  822. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  823. "related": ".xml"
  824. }
  825. },
  826. "runtime": {
  827. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  828. "related": ".xml"
  829. }
  830. }
  831. },
  832. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  833. "type": "package",
  834. "dependencies": {
  835. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  836. },
  837. "compile": {
  838. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  839. "related": ".xml"
  840. }
  841. },
  842. "runtime": {
  843. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  844. "related": ".xml"
  845. }
  846. }
  847. },
  848. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  849. "type": "package",
  850. "dependencies": {
  851. "Microsoft.Extensions.Configuration": "6.0.0",
  852. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  853. },
  854. "compile": {
  855. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  856. "related": ".xml"
  857. }
  858. },
  859. "runtime": {
  860. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  861. "related": ".xml"
  862. }
  863. }
  864. },
  865. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  866. "type": "package",
  867. "dependencies": {
  868. "Microsoft.Extensions.Configuration": "6.0.0",
  869. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  870. },
  871. "compile": {
  872. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  873. "related": ".xml"
  874. }
  875. },
  876. "runtime": {
  877. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  878. "related": ".xml"
  879. }
  880. }
  881. },
  882. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  883. "type": "package",
  884. "dependencies": {
  885. "Microsoft.Extensions.Configuration": "6.0.0",
  886. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  887. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  888. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  889. "Microsoft.Extensions.Primitives": "6.0.0"
  890. },
  891. "compile": {
  892. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  893. "related": ".xml"
  894. }
  895. },
  896. "runtime": {
  897. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  898. "related": ".xml"
  899. }
  900. }
  901. },
  902. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  903. "type": "package",
  904. "dependencies": {
  905. "Microsoft.Extensions.Configuration": "6.0.0",
  906. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  907. "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0",
  908. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  909. "System.Text.Json": "6.0.0"
  910. },
  911. "compile": {
  912. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  913. "related": ".xml"
  914. }
  915. },
  916. "runtime": {
  917. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  918. "related": ".xml"
  919. }
  920. }
  921. },
  922. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  923. "type": "package",
  924. "dependencies": {
  925. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  926. "Microsoft.Extensions.Configuration.Json": "6.0.0",
  927. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  928. "Microsoft.Extensions.FileProviders.Physical": "6.0.0"
  929. },
  930. "compile": {
  931. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  932. "related": ".xml"
  933. }
  934. },
  935. "runtime": {
  936. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  937. "related": ".xml"
  938. }
  939. },
  940. "build": {
  941. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props": {},
  942. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  943. }
  944. },
  945. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  946. "type": "package",
  947. "dependencies": {
  948. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  949. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  950. },
  951. "compile": {
  952. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  953. "related": ".xml"
  954. }
  955. },
  956. "runtime": {
  957. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  958. "related": ".xml"
  959. }
  960. },
  961. "build": {
  962. "buildTransitive/netcoreapp3.1/_._": {}
  963. }
  964. },
  965. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  966. "type": "package",
  967. "compile": {
  968. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  969. "related": ".xml"
  970. }
  971. },
  972. "runtime": {
  973. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  974. "related": ".xml"
  975. }
  976. },
  977. "build": {
  978. "buildTransitive/netcoreapp3.1/_._": {}
  979. }
  980. },
  981. "Microsoft.Extensions.DependencyModel/6.0.0": {
  982. "type": "package",
  983. "dependencies": {
  984. "System.Buffers": "4.5.1",
  985. "System.Memory": "4.5.4",
  986. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  987. "System.Text.Encodings.Web": "6.0.0",
  988. "System.Text.Json": "6.0.0"
  989. },
  990. "compile": {
  991. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  992. "related": ".xml"
  993. }
  994. },
  995. "runtime": {
  996. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  997. "related": ".xml"
  998. }
  999. }
  1000. },
  1001. "Microsoft.Extensions.Diagnostics.HealthChecks/6.0.0": {
  1002. "type": "package",
  1003. "dependencies": {
  1004. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "6.0.0",
  1005. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  1006. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1007. "Microsoft.Extensions.Options": "6.0.0"
  1008. },
  1009. "compile": {
  1010. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": {
  1011. "related": ".xml"
  1012. }
  1013. },
  1014. "runtime": {
  1015. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll": {
  1016. "related": ".xml"
  1017. }
  1018. }
  1019. },
  1020. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/6.0.0": {
  1021. "type": "package",
  1022. "compile": {
  1023. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {
  1024. "related": ".xml"
  1025. }
  1026. },
  1027. "runtime": {
  1028. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {
  1029. "related": ".xml"
  1030. }
  1031. }
  1032. },
  1033. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  1034. "type": "package",
  1035. "dependencies": {
  1036. "Microsoft.Extensions.Primitives": "6.0.0"
  1037. },
  1038. "compile": {
  1039. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1040. "related": ".xml"
  1041. }
  1042. },
  1043. "runtime": {
  1044. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1045. "related": ".xml"
  1046. }
  1047. },
  1048. "build": {
  1049. "buildTransitive/netcoreapp3.1/_._": {}
  1050. }
  1051. },
  1052. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  1053. "type": "package",
  1054. "dependencies": {
  1055. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  1056. "Microsoft.Extensions.Primitives": "6.0.0"
  1057. },
  1058. "compile": {
  1059. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1060. "related": ".xml"
  1061. }
  1062. },
  1063. "runtime": {
  1064. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1065. "related": ".xml"
  1066. }
  1067. }
  1068. },
  1069. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  1070. "type": "package",
  1071. "dependencies": {
  1072. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  1073. },
  1074. "compile": {
  1075. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1076. "related": ".xml"
  1077. }
  1078. },
  1079. "runtime": {
  1080. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1081. "related": ".xml"
  1082. }
  1083. },
  1084. "build": {
  1085. "build/netstandard2.0/_._": {}
  1086. },
  1087. "buildMultiTargeting": {
  1088. "buildMultiTargeting/_._": {}
  1089. }
  1090. },
  1091. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  1092. "type": "package",
  1093. "dependencies": {
  1094. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  1095. "Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
  1096. "Microsoft.Extensions.Primitives": "6.0.0"
  1097. },
  1098. "compile": {
  1099. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1100. "related": ".xml"
  1101. }
  1102. },
  1103. "runtime": {
  1104. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1105. "related": ".xml"
  1106. }
  1107. },
  1108. "build": {
  1109. "buildTransitive/netcoreapp3.1/_._": {}
  1110. }
  1111. },
  1112. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  1113. "type": "package",
  1114. "compile": {
  1115. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1116. "related": ".xml"
  1117. }
  1118. },
  1119. "runtime": {
  1120. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1121. "related": ".xml"
  1122. }
  1123. },
  1124. "build": {
  1125. "buildTransitive/netcoreapp3.1/_._": {}
  1126. }
  1127. },
  1128. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  1129. "type": "package",
  1130. "dependencies": {
  1131. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1132. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1133. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  1134. },
  1135. "compile": {
  1136. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1137. "related": ".xml"
  1138. }
  1139. },
  1140. "runtime": {
  1141. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1142. "related": ".xml"
  1143. }
  1144. }
  1145. },
  1146. "Microsoft.Extensions.Localization/6.0.5": {
  1147. "type": "package",
  1148. "dependencies": {
  1149. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1150. "Microsoft.Extensions.Localization.Abstractions": "6.0.5",
  1151. "Microsoft.Extensions.Logging.Abstractions": "6.0.1",
  1152. "Microsoft.Extensions.Options": "6.0.0"
  1153. },
  1154. "compile": {
  1155. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  1156. "related": ".xml"
  1157. }
  1158. },
  1159. "runtime": {
  1160. "lib/net6.0/Microsoft.Extensions.Localization.dll": {
  1161. "related": ".xml"
  1162. }
  1163. }
  1164. },
  1165. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  1166. "type": "package",
  1167. "compile": {
  1168. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1169. "related": ".xml"
  1170. }
  1171. },
  1172. "runtime": {
  1173. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1174. "related": ".xml"
  1175. }
  1176. }
  1177. },
  1178. "Microsoft.Extensions.Logging/6.0.0": {
  1179. "type": "package",
  1180. "dependencies": {
  1181. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1182. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1183. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1184. "Microsoft.Extensions.Options": "6.0.0",
  1185. "System.Diagnostics.DiagnosticSource": "6.0.0"
  1186. },
  1187. "compile": {
  1188. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1189. "related": ".xml"
  1190. }
  1191. },
  1192. "runtime": {
  1193. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1194. "related": ".xml"
  1195. }
  1196. }
  1197. },
  1198. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  1199. "type": "package",
  1200. "compile": {
  1201. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1202. "related": ".xml"
  1203. }
  1204. },
  1205. "runtime": {
  1206. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1207. "related": ".xml"
  1208. }
  1209. },
  1210. "build": {
  1211. "buildTransitive/netcoreapp3.1/_._": {}
  1212. }
  1213. },
  1214. "Microsoft.Extensions.Options/6.0.0": {
  1215. "type": "package",
  1216. "dependencies": {
  1217. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1218. "Microsoft.Extensions.Primitives": "6.0.0"
  1219. },
  1220. "compile": {
  1221. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1222. "related": ".xml"
  1223. }
  1224. },
  1225. "runtime": {
  1226. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1227. "related": ".xml"
  1228. }
  1229. }
  1230. },
  1231. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  1232. "type": "package",
  1233. "dependencies": {
  1234. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1235. "Microsoft.Extensions.Configuration.Binder": "6.0.0",
  1236. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1237. "Microsoft.Extensions.Options": "6.0.0",
  1238. "Microsoft.Extensions.Primitives": "6.0.0"
  1239. },
  1240. "compile": {
  1241. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1242. "related": ".xml"
  1243. }
  1244. },
  1245. "runtime": {
  1246. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1247. "related": ".xml"
  1248. }
  1249. }
  1250. },
  1251. "Microsoft.Extensions.Primitives/6.0.0": {
  1252. "type": "package",
  1253. "dependencies": {
  1254. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1255. },
  1256. "compile": {
  1257. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  1258. "related": ".xml"
  1259. }
  1260. },
  1261. "runtime": {
  1262. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  1263. "related": ".xml"
  1264. }
  1265. },
  1266. "build": {
  1267. "buildTransitive/netcoreapp3.1/_._": {}
  1268. }
  1269. },
  1270. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  1271. "type": "package",
  1272. "dependencies": {
  1273. "Microsoft.IdentityModel.Tokens": "5.5.0",
  1274. "Newtonsoft.Json": "10.0.1"
  1275. },
  1276. "compile": {
  1277. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1278. "related": ".xml"
  1279. }
  1280. },
  1281. "runtime": {
  1282. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1283. "related": ".xml"
  1284. }
  1285. }
  1286. },
  1287. "Microsoft.IdentityModel.Logging/5.5.0": {
  1288. "type": "package",
  1289. "compile": {
  1290. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1291. "related": ".xml"
  1292. }
  1293. },
  1294. "runtime": {
  1295. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1296. "related": ".xml"
  1297. }
  1298. }
  1299. },
  1300. "Microsoft.IdentityModel.Protocols/5.5.0": {
  1301. "type": "package",
  1302. "dependencies": {
  1303. "Microsoft.IdentityModel.Logging": "5.5.0",
  1304. "Microsoft.IdentityModel.Tokens": "5.5.0"
  1305. },
  1306. "compile": {
  1307. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1308. "related": ".xml"
  1309. }
  1310. },
  1311. "runtime": {
  1312. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1313. "related": ".xml"
  1314. }
  1315. }
  1316. },
  1317. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  1318. "type": "package",
  1319. "dependencies": {
  1320. "Microsoft.IdentityModel.Protocols": "5.5.0",
  1321. "Newtonsoft.Json": "10.0.1",
  1322. "System.IdentityModel.Tokens.Jwt": "5.5.0"
  1323. },
  1324. "compile": {
  1325. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1326. "related": ".xml"
  1327. }
  1328. },
  1329. "runtime": {
  1330. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1331. "related": ".xml"
  1332. }
  1333. }
  1334. },
  1335. "Microsoft.IdentityModel.Tokens/5.5.0": {
  1336. "type": "package",
  1337. "dependencies": {
  1338. "Microsoft.IdentityModel.Logging": "5.5.0",
  1339. "Newtonsoft.Json": "10.0.1",
  1340. "System.Security.Cryptography.Cng": "4.5.0"
  1341. },
  1342. "compile": {
  1343. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1344. "related": ".xml"
  1345. }
  1346. },
  1347. "runtime": {
  1348. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1349. "related": ".xml"
  1350. }
  1351. }
  1352. },
  1353. "Microsoft.NETCore.Platforms/5.0.0": {
  1354. "type": "package",
  1355. "compile": {
  1356. "lib/netstandard1.0/_._": {}
  1357. },
  1358. "runtime": {
  1359. "lib/netstandard1.0/_._": {}
  1360. }
  1361. },
  1362. "Microsoft.NETCore.Targets/1.1.0": {
  1363. "type": "package",
  1364. "compile": {
  1365. "lib/netstandard1.0/_._": {}
  1366. },
  1367. "runtime": {
  1368. "lib/netstandard1.0/_._": {}
  1369. }
  1370. },
  1371. "Microsoft.OpenApi/1.2.3": {
  1372. "type": "package",
  1373. "compile": {
  1374. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1375. "related": ".pdb;.xml"
  1376. }
  1377. },
  1378. "runtime": {
  1379. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1380. "related": ".pdb;.xml"
  1381. }
  1382. }
  1383. },
  1384. "Microsoft.Win32.Registry/5.0.0": {
  1385. "type": "package",
  1386. "dependencies": {
  1387. "System.Security.AccessControl": "5.0.0",
  1388. "System.Security.Principal.Windows": "5.0.0"
  1389. },
  1390. "compile": {
  1391. "ref/netstandard2.0/_._": {
  1392. "related": ".xml"
  1393. }
  1394. },
  1395. "runtime": {
  1396. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1397. "related": ".xml"
  1398. }
  1399. },
  1400. "runtimeTargets": {
  1401. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1402. "assetType": "runtime",
  1403. "rid": "win"
  1404. }
  1405. }
  1406. },
  1407. "Microsoft.Win32.SystemEvents/6.0.0": {
  1408. "type": "package",
  1409. "compile": {
  1410. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1411. "related": ".xml"
  1412. }
  1413. },
  1414. "runtime": {
  1415. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1416. "related": ".xml"
  1417. }
  1418. },
  1419. "build": {
  1420. "buildTransitive/netcoreapp3.1/_._": {}
  1421. },
  1422. "runtimeTargets": {
  1423. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  1424. "assetType": "runtime",
  1425. "rid": "win"
  1426. }
  1427. }
  1428. },
  1429. "MySql.Data/8.0.32.1": {
  1430. "type": "package",
  1431. "dependencies": {
  1432. "Google.Protobuf": "3.21.9",
  1433. "K4os.Compression.LZ4.Streams": "1.2.6",
  1434. "Portable.BouncyCastle": "1.9.0",
  1435. "System.Buffers": "4.5.1",
  1436. "System.Configuration.ConfigurationManager": "4.4.1",
  1437. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  1438. "System.Runtime.Loader": "4.3.0",
  1439. "System.Security.Permissions": "4.7.0",
  1440. "System.Text.Encoding.CodePages": "4.4.0"
  1441. },
  1442. "compile": {
  1443. "lib/net6.0/MySql.Data.dll": {
  1444. "related": ".xml"
  1445. }
  1446. },
  1447. "runtime": {
  1448. "lib/net6.0/MySql.Data.dll": {
  1449. "related": ".xml"
  1450. }
  1451. },
  1452. "runtimeTargets": {
  1453. "runtimes/win-x64/native/comerr64.dll": {
  1454. "assetType": "native",
  1455. "rid": "win-x64"
  1456. },
  1457. "runtimes/win-x64/native/gssapi64.dll": {
  1458. "assetType": "native",
  1459. "rid": "win-x64"
  1460. },
  1461. "runtimes/win-x64/native/k5sprt64.dll": {
  1462. "assetType": "native",
  1463. "rid": "win-x64"
  1464. },
  1465. "runtimes/win-x64/native/krb5_64.dll": {
  1466. "assetType": "native",
  1467. "rid": "win-x64"
  1468. },
  1469. "runtimes/win-x64/native/krbcc64.dll": {
  1470. "assetType": "native",
  1471. "rid": "win-x64"
  1472. }
  1473. }
  1474. },
  1475. "MySqlConnector/2.0.0": {
  1476. "type": "package",
  1477. "compile": {
  1478. "lib/net6.0/MySqlConnector.dll": {
  1479. "related": ".xml"
  1480. }
  1481. },
  1482. "runtime": {
  1483. "lib/net6.0/MySqlConnector.dll": {
  1484. "related": ".xml"
  1485. }
  1486. }
  1487. },
  1488. "Newtonsoft.Json/13.0.1": {
  1489. "type": "package",
  1490. "compile": {
  1491. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1492. "related": ".xml"
  1493. }
  1494. },
  1495. "runtime": {
  1496. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1497. "related": ".xml"
  1498. }
  1499. }
  1500. },
  1501. "Newtonsoft.Json.Bson/1.0.2": {
  1502. "type": "package",
  1503. "dependencies": {
  1504. "Newtonsoft.Json": "12.0.1"
  1505. },
  1506. "compile": {
  1507. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1508. "related": ".pdb;.xml"
  1509. }
  1510. },
  1511. "runtime": {
  1512. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": {
  1513. "related": ".pdb;.xml"
  1514. }
  1515. }
  1516. },
  1517. "Nito.AsyncEx.Context/5.1.2": {
  1518. "type": "package",
  1519. "dependencies": {
  1520. "Nito.AsyncEx.Tasks": "5.1.2"
  1521. },
  1522. "compile": {
  1523. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  1524. "related": ".xml"
  1525. }
  1526. },
  1527. "runtime": {
  1528. "lib/netstandard2.0/Nito.AsyncEx.Context.dll": {
  1529. "related": ".xml"
  1530. }
  1531. }
  1532. },
  1533. "Nito.AsyncEx.Coordination/5.1.2": {
  1534. "type": "package",
  1535. "dependencies": {
  1536. "Nito.AsyncEx.Tasks": "5.1.2",
  1537. "Nito.Collections.Deque": "1.1.1"
  1538. },
  1539. "compile": {
  1540. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1541. "related": ".xml"
  1542. }
  1543. },
  1544. "runtime": {
  1545. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll": {
  1546. "related": ".xml"
  1547. }
  1548. }
  1549. },
  1550. "Nito.AsyncEx.Tasks/5.1.2": {
  1551. "type": "package",
  1552. "dependencies": {
  1553. "Nito.Disposables": "2.2.1"
  1554. },
  1555. "compile": {
  1556. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1557. "related": ".xml"
  1558. }
  1559. },
  1560. "runtime": {
  1561. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll": {
  1562. "related": ".xml"
  1563. }
  1564. }
  1565. },
  1566. "Nito.Collections.Deque/1.1.1": {
  1567. "type": "package",
  1568. "compile": {
  1569. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1570. "related": ".xml"
  1571. }
  1572. },
  1573. "runtime": {
  1574. "lib/netstandard2.0/Nito.Collections.Deque.dll": {
  1575. "related": ".xml"
  1576. }
  1577. }
  1578. },
  1579. "Nito.Disposables/2.2.1": {
  1580. "type": "package",
  1581. "dependencies": {
  1582. "System.Collections.Immutable": "1.7.1"
  1583. },
  1584. "compile": {
  1585. "lib/netstandard2.1/Nito.Disposables.dll": {
  1586. "related": ".xml"
  1587. }
  1588. },
  1589. "runtime": {
  1590. "lib/netstandard2.1/Nito.Disposables.dll": {
  1591. "related": ".xml"
  1592. }
  1593. }
  1594. },
  1595. "NLog/5.1.2": {
  1596. "type": "package",
  1597. "compile": {
  1598. "lib/netstandard2.0/NLog.dll": {
  1599. "related": ".xml"
  1600. }
  1601. },
  1602. "runtime": {
  1603. "lib/netstandard2.0/NLog.dll": {
  1604. "related": ".xml"
  1605. }
  1606. }
  1607. },
  1608. "NLog.Database/5.1.2": {
  1609. "type": "package",
  1610. "dependencies": {
  1611. "NLog": "5.1.2"
  1612. },
  1613. "compile": {
  1614. "lib/netstandard2.0/NLog.Database.dll": {
  1615. "related": ".xml"
  1616. }
  1617. },
  1618. "runtime": {
  1619. "lib/netstandard2.0/NLog.Database.dll": {
  1620. "related": ".xml"
  1621. }
  1622. }
  1623. },
  1624. "NLog.Extensions.Logging/5.2.2": {
  1625. "type": "package",
  1626. "dependencies": {
  1627. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1628. "Microsoft.Extensions.Logging": "6.0.0",
  1629. "NLog": "5.1.2"
  1630. },
  1631. "compile": {
  1632. "lib/net6.0/NLog.Extensions.Logging.dll": {
  1633. "related": ".xml"
  1634. }
  1635. },
  1636. "runtime": {
  1637. "lib/net6.0/NLog.Extensions.Logging.dll": {
  1638. "related": ".xml"
  1639. }
  1640. }
  1641. },
  1642. "NLog.Web.AspNetCore/5.2.2": {
  1643. "type": "package",
  1644. "dependencies": {
  1645. "NLog.Extensions.Logging": "5.2.2"
  1646. },
  1647. "compile": {
  1648. "lib/net6.0/NLog.Web.AspNetCore.dll": {
  1649. "related": ".xml"
  1650. }
  1651. },
  1652. "runtime": {
  1653. "lib/net6.0/NLog.Web.AspNetCore.dll": {
  1654. "related": ".xml"
  1655. }
  1656. },
  1657. "frameworkReferences": [
  1658. "Microsoft.AspNetCore.App"
  1659. ]
  1660. },
  1661. "NUglify/1.20.0": {
  1662. "type": "package",
  1663. "compile": {
  1664. "lib/net5.0/NUglify.dll": {
  1665. "related": ".xml"
  1666. }
  1667. },
  1668. "runtime": {
  1669. "lib/net5.0/NUglify.dll": {
  1670. "related": ".xml"
  1671. }
  1672. }
  1673. },
  1674. "Pipelines.Sockets.Unofficial/2.2.0": {
  1675. "type": "package",
  1676. "dependencies": {
  1677. "System.IO.Pipelines": "5.0.0"
  1678. },
  1679. "compile": {
  1680. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  1681. "related": ".xml"
  1682. }
  1683. },
  1684. "runtime": {
  1685. "lib/net5.0/Pipelines.Sockets.Unofficial.dll": {
  1686. "related": ".xml"
  1687. }
  1688. }
  1689. },
  1690. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  1691. "type": "package",
  1692. "dependencies": {
  1693. "Microsoft.EntityFrameworkCore.Relational": "[6.0.0, 7.0.0)",
  1694. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1695. "MySqlConnector": "2.0.0"
  1696. },
  1697. "compile": {
  1698. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  1699. "related": ".xml"
  1700. }
  1701. },
  1702. "runtime": {
  1703. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll": {
  1704. "related": ".xml"
  1705. }
  1706. }
  1707. },
  1708. "Portable.BouncyCastle/1.9.0": {
  1709. "type": "package",
  1710. "compile": {
  1711. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1712. "related": ".xml"
  1713. }
  1714. },
  1715. "runtime": {
  1716. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  1717. "related": ".xml"
  1718. }
  1719. }
  1720. },
  1721. "Quartz/3.6.2": {
  1722. "type": "package",
  1723. "dependencies": {
  1724. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1725. "System.Configuration.ConfigurationManager": "6.0.1",
  1726. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1727. },
  1728. "compile": {
  1729. "lib/netstandard2.0/Quartz.dll": {
  1730. "related": ".xml"
  1731. }
  1732. },
  1733. "runtime": {
  1734. "lib/netstandard2.0/Quartz.dll": {
  1735. "related": ".xml"
  1736. }
  1737. }
  1738. },
  1739. "Quartz.AspNetCore/3.6.2": {
  1740. "type": "package",
  1741. "dependencies": {
  1742. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1743. "Microsoft.Extensions.Diagnostics.HealthChecks": "6.0.0",
  1744. "Quartz.Extensions.Hosting": "3.6.2"
  1745. },
  1746. "compile": {
  1747. "lib/net6.0/Quartz.AspNetCore.dll": {
  1748. "related": ".xml"
  1749. }
  1750. },
  1751. "runtime": {
  1752. "lib/net6.0/Quartz.AspNetCore.dll": {
  1753. "related": ".xml"
  1754. }
  1755. }
  1756. },
  1757. "Quartz.Extensions.DependencyInjection/3.6.2": {
  1758. "type": "package",
  1759. "dependencies": {
  1760. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1761. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1762. "Microsoft.Extensions.Options": "6.0.0",
  1763. "Quartz": "3.6.2"
  1764. },
  1765. "compile": {
  1766. "lib/net6.0/Quartz.Extensions.DependencyInjection.dll": {
  1767. "related": ".xml"
  1768. }
  1769. },
  1770. "runtime": {
  1771. "lib/net6.0/Quartz.Extensions.DependencyInjection.dll": {
  1772. "related": ".xml"
  1773. }
  1774. }
  1775. },
  1776. "Quartz.Extensions.Hosting/3.6.2": {
  1777. "type": "package",
  1778. "dependencies": {
  1779. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  1780. "Quartz.Extensions.DependencyInjection": "3.6.2"
  1781. },
  1782. "compile": {
  1783. "lib/net6.0/Quartz.Extensions.Hosting.dll": {
  1784. "related": ".xml"
  1785. }
  1786. },
  1787. "runtime": {
  1788. "lib/net6.0/Quartz.Extensions.Hosting.dll": {
  1789. "related": ".xml"
  1790. }
  1791. }
  1792. },
  1793. "Serilog/2.11.0": {
  1794. "type": "package",
  1795. "compile": {
  1796. "lib/net5.0/Serilog.dll": {
  1797. "related": ".xml"
  1798. }
  1799. },
  1800. "runtime": {
  1801. "lib/net5.0/Serilog.dll": {
  1802. "related": ".xml"
  1803. }
  1804. }
  1805. },
  1806. "Serilog.AspNetCore/5.0.0": {
  1807. "type": "package",
  1808. "dependencies": {
  1809. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1810. "Microsoft.Extensions.Logging": "5.0.0",
  1811. "Serilog": "2.10.0",
  1812. "Serilog.Extensions.Hosting": "4.2.0",
  1813. "Serilog.Formatting.Compact": "1.1.0",
  1814. "Serilog.Settings.Configuration": "3.3.0",
  1815. "Serilog.Sinks.Console": "4.0.1",
  1816. "Serilog.Sinks.Debug": "2.0.0",
  1817. "Serilog.Sinks.File": "5.0.0"
  1818. },
  1819. "compile": {
  1820. "lib/net5.0/Serilog.AspNetCore.dll": {
  1821. "related": ".xml"
  1822. }
  1823. },
  1824. "runtime": {
  1825. "lib/net5.0/Serilog.AspNetCore.dll": {
  1826. "related": ".xml"
  1827. }
  1828. },
  1829. "frameworkReferences": [
  1830. "Microsoft.AspNetCore.App"
  1831. ]
  1832. },
  1833. "Serilog.Extensions.Hosting/4.2.0": {
  1834. "type": "package",
  1835. "dependencies": {
  1836. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
  1837. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
  1838. "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
  1839. "Serilog": "2.10.0",
  1840. "Serilog.Extensions.Logging": "3.1.0"
  1841. },
  1842. "compile": {
  1843. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  1844. "related": ".xml"
  1845. }
  1846. },
  1847. "runtime": {
  1848. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  1849. "related": ".xml"
  1850. }
  1851. }
  1852. },
  1853. "Serilog.Extensions.Logging/3.1.0": {
  1854. "type": "package",
  1855. "dependencies": {
  1856. "Microsoft.Extensions.Logging": "2.0.0",
  1857. "Serilog": "2.9.0"
  1858. },
  1859. "compile": {
  1860. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1861. "related": ".xml"
  1862. }
  1863. },
  1864. "runtime": {
  1865. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  1866. "related": ".xml"
  1867. }
  1868. }
  1869. },
  1870. "Serilog.Formatting.Compact/1.1.0": {
  1871. "type": "package",
  1872. "dependencies": {
  1873. "Serilog": "2.8.0"
  1874. },
  1875. "compile": {
  1876. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1877. "related": ".xml"
  1878. }
  1879. },
  1880. "runtime": {
  1881. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  1882. "related": ".xml"
  1883. }
  1884. }
  1885. },
  1886. "Serilog.Settings.Configuration/3.3.0": {
  1887. "type": "package",
  1888. "dependencies": {
  1889. "Microsoft.Extensions.DependencyModel": "3.0.0",
  1890. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0",
  1891. "Serilog": "2.10.0"
  1892. },
  1893. "compile": {
  1894. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1895. "related": ".xml"
  1896. }
  1897. },
  1898. "runtime": {
  1899. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  1900. "related": ".xml"
  1901. }
  1902. }
  1903. },
  1904. "Serilog.Sinks.Async/1.5.0": {
  1905. "type": "package",
  1906. "dependencies": {
  1907. "Serilog": "2.9.0"
  1908. },
  1909. "compile": {
  1910. "lib/netstandard2.0/Serilog.Sinks.Async.dll": {
  1911. "related": ".xml"
  1912. }
  1913. },
  1914. "runtime": {
  1915. "lib/netstandard2.0/Serilog.Sinks.Async.dll": {
  1916. "related": ".xml"
  1917. }
  1918. }
  1919. },
  1920. "Serilog.Sinks.Console/4.0.1": {
  1921. "type": "package",
  1922. "dependencies": {
  1923. "Serilog": "2.10.0"
  1924. },
  1925. "compile": {
  1926. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1927. "related": ".xml"
  1928. }
  1929. },
  1930. "runtime": {
  1931. "lib/net5.0/Serilog.Sinks.Console.dll": {
  1932. "related": ".xml"
  1933. }
  1934. }
  1935. },
  1936. "Serilog.Sinks.Debug/2.0.0": {
  1937. "type": "package",
  1938. "dependencies": {
  1939. "Serilog": "2.10.0"
  1940. },
  1941. "compile": {
  1942. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  1943. "related": ".xml"
  1944. }
  1945. },
  1946. "runtime": {
  1947. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  1948. "related": ".xml"
  1949. }
  1950. }
  1951. },
  1952. "Serilog.Sinks.File/5.0.0": {
  1953. "type": "package",
  1954. "dependencies": {
  1955. "Serilog": "2.10.0"
  1956. },
  1957. "compile": {
  1958. "lib/net5.0/Serilog.Sinks.File.dll": {
  1959. "related": ".pdb;.xml"
  1960. }
  1961. },
  1962. "runtime": {
  1963. "lib/net5.0/Serilog.Sinks.File.dll": {
  1964. "related": ".pdb;.xml"
  1965. }
  1966. }
  1967. },
  1968. "StackExchange.Redis/2.2.4": {
  1969. "type": "package",
  1970. "dependencies": {
  1971. "Pipelines.Sockets.Unofficial": "2.2.0",
  1972. "System.Diagnostics.PerformanceCounter": "5.0.0"
  1973. },
  1974. "compile": {
  1975. "lib/net5.0/StackExchange.Redis.dll": {
  1976. "related": ".xml"
  1977. }
  1978. },
  1979. "runtime": {
  1980. "lib/net5.0/StackExchange.Redis.dll": {
  1981. "related": ".xml"
  1982. }
  1983. }
  1984. },
  1985. "Swashbuckle.AspNetCore/6.3.0": {
  1986. "type": "package",
  1987. "dependencies": {
  1988. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1989. "Swashbuckle.AspNetCore.Swagger": "6.3.0",
  1990. "Swashbuckle.AspNetCore.SwaggerGen": "6.3.0",
  1991. "Swashbuckle.AspNetCore.SwaggerUI": "6.3.0"
  1992. },
  1993. "build": {
  1994. "build/Swashbuckle.AspNetCore.props": {}
  1995. }
  1996. },
  1997. "Swashbuckle.AspNetCore.Swagger/6.3.0": {
  1998. "type": "package",
  1999. "dependencies": {
  2000. "Microsoft.OpenApi": "1.2.3"
  2001. },
  2002. "compile": {
  2003. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  2004. "related": ".pdb;.xml"
  2005. }
  2006. },
  2007. "runtime": {
  2008. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {
  2009. "related": ".pdb;.xml"
  2010. }
  2011. },
  2012. "frameworkReferences": [
  2013. "Microsoft.AspNetCore.App"
  2014. ]
  2015. },
  2016. "Swashbuckle.AspNetCore.SwaggerGen/6.3.0": {
  2017. "type": "package",
  2018. "dependencies": {
  2019. "Swashbuckle.AspNetCore.Swagger": "6.3.0"
  2020. },
  2021. "compile": {
  2022. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  2023. "related": ".pdb;.xml"
  2024. }
  2025. },
  2026. "runtime": {
  2027. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  2028. "related": ".pdb;.xml"
  2029. }
  2030. }
  2031. },
  2032. "Swashbuckle.AspNetCore.SwaggerUI/6.3.0": {
  2033. "type": "package",
  2034. "compile": {
  2035. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  2036. "related": ".pdb;.xml"
  2037. }
  2038. },
  2039. "runtime": {
  2040. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  2041. "related": ".pdb;.xml"
  2042. }
  2043. },
  2044. "frameworkReferences": [
  2045. "Microsoft.AspNetCore.App"
  2046. ]
  2047. },
  2048. "System.Buffers/4.5.1": {
  2049. "type": "package",
  2050. "compile": {
  2051. "ref/netcoreapp2.0/_._": {}
  2052. },
  2053. "runtime": {
  2054. "lib/netcoreapp2.0/_._": {}
  2055. }
  2056. },
  2057. "System.Collections/4.3.0": {
  2058. "type": "package",
  2059. "dependencies": {
  2060. "Microsoft.NETCore.Platforms": "1.1.0",
  2061. "Microsoft.NETCore.Targets": "1.1.0",
  2062. "System.Runtime": "4.3.0"
  2063. },
  2064. "compile": {
  2065. "ref/netstandard1.3/System.Collections.dll": {
  2066. "related": ".xml"
  2067. }
  2068. }
  2069. },
  2070. "System.Collections.Immutable/6.0.0": {
  2071. "type": "package",
  2072. "dependencies": {
  2073. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2074. },
  2075. "compile": {
  2076. "lib/net6.0/System.Collections.Immutable.dll": {
  2077. "related": ".xml"
  2078. }
  2079. },
  2080. "runtime": {
  2081. "lib/net6.0/System.Collections.Immutable.dll": {
  2082. "related": ".xml"
  2083. }
  2084. },
  2085. "build": {
  2086. "buildTransitive/netcoreapp3.1/_._": {}
  2087. }
  2088. },
  2089. "System.Configuration.ConfigurationManager/6.0.1": {
  2090. "type": "package",
  2091. "dependencies": {
  2092. "System.Security.Cryptography.ProtectedData": "6.0.0",
  2093. "System.Security.Permissions": "6.0.0"
  2094. },
  2095. "compile": {
  2096. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  2097. "related": ".xml"
  2098. }
  2099. },
  2100. "runtime": {
  2101. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  2102. "related": ".xml"
  2103. }
  2104. },
  2105. "build": {
  2106. "buildTransitive/netcoreapp3.1/_._": {}
  2107. }
  2108. },
  2109. "System.Diagnostics.Debug/4.3.0": {
  2110. "type": "package",
  2111. "dependencies": {
  2112. "Microsoft.NETCore.Platforms": "1.1.0",
  2113. "Microsoft.NETCore.Targets": "1.1.0",
  2114. "System.Runtime": "4.3.0"
  2115. },
  2116. "compile": {
  2117. "ref/netstandard1.3/_._": {
  2118. "related": ".xml"
  2119. }
  2120. }
  2121. },
  2122. "System.Diagnostics.DiagnosticSource/6.0.0": {
  2123. "type": "package",
  2124. "dependencies": {
  2125. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2126. },
  2127. "compile": {
  2128. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2129. "related": ".xml"
  2130. }
  2131. },
  2132. "runtime": {
  2133. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2134. "related": ".xml"
  2135. }
  2136. },
  2137. "build": {
  2138. "buildTransitive/netcoreapp3.1/_._": {}
  2139. }
  2140. },
  2141. "System.Diagnostics.EventLog/6.0.0": {
  2142. "type": "package",
  2143. "compile": {
  2144. "lib/net6.0/System.Diagnostics.EventLog.dll": {
  2145. "related": ".xml"
  2146. }
  2147. },
  2148. "runtime": {
  2149. "lib/net6.0/System.Diagnostics.EventLog.dll": {
  2150. "related": ".xml"
  2151. }
  2152. },
  2153. "build": {
  2154. "buildTransitive/netcoreapp3.1/_._": {}
  2155. },
  2156. "runtimeTargets": {
  2157. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": {
  2158. "assetType": "runtime",
  2159. "rid": "win"
  2160. },
  2161. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": {
  2162. "assetType": "runtime",
  2163. "rid": "win"
  2164. }
  2165. }
  2166. },
  2167. "System.Diagnostics.PerformanceCounter/5.0.0": {
  2168. "type": "package",
  2169. "dependencies": {
  2170. "Microsoft.NETCore.Platforms": "5.0.0",
  2171. "Microsoft.Win32.Registry": "5.0.0",
  2172. "System.Configuration.ConfigurationManager": "5.0.0",
  2173. "System.Security.Principal.Windows": "5.0.0"
  2174. },
  2175. "compile": {
  2176. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  2177. "related": ".xml"
  2178. }
  2179. },
  2180. "runtime": {
  2181. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll": {
  2182. "related": ".xml"
  2183. }
  2184. },
  2185. "runtimeTargets": {
  2186. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll": {
  2187. "assetType": "runtime",
  2188. "rid": "win"
  2189. }
  2190. }
  2191. },
  2192. "System.Drawing.Common/6.0.0": {
  2193. "type": "package",
  2194. "dependencies": {
  2195. "Microsoft.Win32.SystemEvents": "6.0.0"
  2196. },
  2197. "compile": {
  2198. "lib/net6.0/System.Drawing.Common.dll": {
  2199. "related": ".xml"
  2200. }
  2201. },
  2202. "runtime": {
  2203. "lib/net6.0/System.Drawing.Common.dll": {
  2204. "related": ".xml"
  2205. }
  2206. },
  2207. "build": {
  2208. "buildTransitive/netcoreapp3.1/_._": {}
  2209. },
  2210. "runtimeTargets": {
  2211. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  2212. "assetType": "runtime",
  2213. "rid": "unix"
  2214. },
  2215. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  2216. "assetType": "runtime",
  2217. "rid": "win"
  2218. }
  2219. }
  2220. },
  2221. "System.Formats.Asn1/6.0.0": {
  2222. "type": "package",
  2223. "compile": {
  2224. "lib/net6.0/System.Formats.Asn1.dll": {
  2225. "related": ".xml"
  2226. }
  2227. },
  2228. "runtime": {
  2229. "lib/net6.0/System.Formats.Asn1.dll": {
  2230. "related": ".xml"
  2231. }
  2232. },
  2233. "build": {
  2234. "buildTransitive/netcoreapp3.1/_._": {}
  2235. }
  2236. },
  2237. "System.Globalization/4.3.0": {
  2238. "type": "package",
  2239. "dependencies": {
  2240. "Microsoft.NETCore.Platforms": "1.1.0",
  2241. "Microsoft.NETCore.Targets": "1.1.0",
  2242. "System.Runtime": "4.3.0"
  2243. },
  2244. "compile": {
  2245. "ref/netstandard1.3/_._": {
  2246. "related": ".xml"
  2247. }
  2248. }
  2249. },
  2250. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  2251. "type": "package",
  2252. "dependencies": {
  2253. "Microsoft.IdentityModel.JsonWebTokens": "5.5.0",
  2254. "Microsoft.IdentityModel.Tokens": "5.5.0",
  2255. "Newtonsoft.Json": "10.0.1"
  2256. },
  2257. "compile": {
  2258. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2259. "related": ".xml"
  2260. }
  2261. },
  2262. "runtime": {
  2263. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2264. "related": ".xml"
  2265. }
  2266. }
  2267. },
  2268. "System.IO/4.3.0": {
  2269. "type": "package",
  2270. "dependencies": {
  2271. "Microsoft.NETCore.Platforms": "1.1.0",
  2272. "Microsoft.NETCore.Targets": "1.1.0",
  2273. "System.Runtime": "4.3.0",
  2274. "System.Text.Encoding": "4.3.0",
  2275. "System.Threading.Tasks": "4.3.0"
  2276. },
  2277. "compile": {
  2278. "ref/netstandard1.5/System.IO.dll": {
  2279. "related": ".xml"
  2280. }
  2281. }
  2282. },
  2283. "System.IO.Pipelines/5.0.2": {
  2284. "type": "package",
  2285. "compile": {
  2286. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2287. "related": ".xml"
  2288. }
  2289. },
  2290. "runtime": {
  2291. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2292. "related": ".xml"
  2293. }
  2294. }
  2295. },
  2296. "System.Linq/4.3.0": {
  2297. "type": "package",
  2298. "dependencies": {
  2299. "System.Collections": "4.3.0",
  2300. "System.Diagnostics.Debug": "4.3.0",
  2301. "System.Resources.ResourceManager": "4.3.0",
  2302. "System.Runtime": "4.3.0",
  2303. "System.Runtime.Extensions": "4.3.0"
  2304. },
  2305. "compile": {
  2306. "ref/netstandard1.6/System.Linq.dll": {
  2307. "related": ".xml"
  2308. }
  2309. },
  2310. "runtime": {
  2311. "lib/netstandard1.6/System.Linq.dll": {}
  2312. }
  2313. },
  2314. "System.Linq.Dynamic.Core/1.2.18": {
  2315. "type": "package",
  2316. "compile": {
  2317. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  2318. "related": ".pdb;.xml"
  2319. }
  2320. },
  2321. "runtime": {
  2322. "lib/net6.0/System.Linq.Dynamic.Core.dll": {
  2323. "related": ".pdb;.xml"
  2324. }
  2325. }
  2326. },
  2327. "System.Linq.Expressions/4.3.0": {
  2328. "type": "package",
  2329. "dependencies": {
  2330. "System.Collections": "4.3.0",
  2331. "System.Diagnostics.Debug": "4.3.0",
  2332. "System.Globalization": "4.3.0",
  2333. "System.IO": "4.3.0",
  2334. "System.Linq": "4.3.0",
  2335. "System.ObjectModel": "4.3.0",
  2336. "System.Reflection": "4.3.0",
  2337. "System.Reflection.Emit": "4.3.0",
  2338. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2339. "System.Reflection.Emit.Lightweight": "4.3.0",
  2340. "System.Reflection.Extensions": "4.3.0",
  2341. "System.Reflection.Primitives": "4.3.0",
  2342. "System.Reflection.TypeExtensions": "4.3.0",
  2343. "System.Resources.ResourceManager": "4.3.0",
  2344. "System.Runtime": "4.3.0",
  2345. "System.Runtime.Extensions": "4.3.0",
  2346. "System.Threading": "4.3.0"
  2347. },
  2348. "compile": {
  2349. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2350. "related": ".xml"
  2351. }
  2352. },
  2353. "runtime": {
  2354. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2355. }
  2356. },
  2357. "System.Linq.Queryable/4.3.0": {
  2358. "type": "package",
  2359. "dependencies": {
  2360. "System.Collections": "4.3.0",
  2361. "System.Diagnostics.Debug": "4.3.0",
  2362. "System.Linq": "4.3.0",
  2363. "System.Linq.Expressions": "4.3.0",
  2364. "System.Reflection": "4.3.0",
  2365. "System.Reflection.Extensions": "4.3.0",
  2366. "System.Resources.ResourceManager": "4.3.0",
  2367. "System.Runtime": "4.3.0"
  2368. },
  2369. "compile": {
  2370. "ref/netstandard1.0/System.Linq.Queryable.dll": {
  2371. "related": ".xml"
  2372. }
  2373. },
  2374. "runtime": {
  2375. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  2376. }
  2377. },
  2378. "System.Memory/4.5.4": {
  2379. "type": "package",
  2380. "compile": {
  2381. "ref/netcoreapp2.1/_._": {}
  2382. },
  2383. "runtime": {
  2384. "lib/netcoreapp2.1/_._": {}
  2385. }
  2386. },
  2387. "System.ObjectModel/4.3.0": {
  2388. "type": "package",
  2389. "dependencies": {
  2390. "System.Collections": "4.3.0",
  2391. "System.Diagnostics.Debug": "4.3.0",
  2392. "System.Resources.ResourceManager": "4.3.0",
  2393. "System.Runtime": "4.3.0",
  2394. "System.Threading": "4.3.0"
  2395. },
  2396. "compile": {
  2397. "ref/netstandard1.3/_._": {
  2398. "related": ".xml"
  2399. }
  2400. },
  2401. "runtime": {
  2402. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2403. }
  2404. },
  2405. "System.Reflection/4.3.0": {
  2406. "type": "package",
  2407. "dependencies": {
  2408. "Microsoft.NETCore.Platforms": "1.1.0",
  2409. "Microsoft.NETCore.Targets": "1.1.0",
  2410. "System.IO": "4.3.0",
  2411. "System.Reflection.Primitives": "4.3.0",
  2412. "System.Runtime": "4.3.0"
  2413. },
  2414. "compile": {
  2415. "ref/netstandard1.5/System.Reflection.dll": {
  2416. "related": ".xml"
  2417. }
  2418. }
  2419. },
  2420. "System.Reflection.Emit/4.3.0": {
  2421. "type": "package",
  2422. "dependencies": {
  2423. "System.IO": "4.3.0",
  2424. "System.Reflection": "4.3.0",
  2425. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2426. "System.Reflection.Primitives": "4.3.0",
  2427. "System.Runtime": "4.3.0"
  2428. },
  2429. "compile": {
  2430. "ref/netstandard1.1/_._": {
  2431. "related": ".xml"
  2432. }
  2433. },
  2434. "runtime": {
  2435. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2436. }
  2437. },
  2438. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2439. "type": "package",
  2440. "dependencies": {
  2441. "System.Reflection": "4.3.0",
  2442. "System.Reflection.Primitives": "4.3.0",
  2443. "System.Runtime": "4.3.0"
  2444. },
  2445. "compile": {
  2446. "ref/netstandard1.0/_._": {
  2447. "related": ".xml"
  2448. }
  2449. },
  2450. "runtime": {
  2451. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2452. }
  2453. },
  2454. "System.Reflection.Emit.Lightweight/4.3.0": {
  2455. "type": "package",
  2456. "dependencies": {
  2457. "System.Reflection": "4.3.0",
  2458. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2459. "System.Reflection.Primitives": "4.3.0",
  2460. "System.Runtime": "4.3.0"
  2461. },
  2462. "compile": {
  2463. "ref/netstandard1.0/_._": {
  2464. "related": ".xml"
  2465. }
  2466. },
  2467. "runtime": {
  2468. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2469. }
  2470. },
  2471. "System.Reflection.Extensions/4.3.0": {
  2472. "type": "package",
  2473. "dependencies": {
  2474. "Microsoft.NETCore.Platforms": "1.1.0",
  2475. "Microsoft.NETCore.Targets": "1.1.0",
  2476. "System.Reflection": "4.3.0",
  2477. "System.Runtime": "4.3.0"
  2478. },
  2479. "compile": {
  2480. "ref/netstandard1.0/_._": {
  2481. "related": ".xml"
  2482. }
  2483. }
  2484. },
  2485. "System.Reflection.Metadata/5.0.0": {
  2486. "type": "package",
  2487. "compile": {
  2488. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2489. "related": ".xml"
  2490. }
  2491. },
  2492. "runtime": {
  2493. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2494. "related": ".xml"
  2495. }
  2496. }
  2497. },
  2498. "System.Reflection.Primitives/4.3.0": {
  2499. "type": "package",
  2500. "dependencies": {
  2501. "Microsoft.NETCore.Platforms": "1.1.0",
  2502. "Microsoft.NETCore.Targets": "1.1.0",
  2503. "System.Runtime": "4.3.0"
  2504. },
  2505. "compile": {
  2506. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2507. "related": ".xml"
  2508. }
  2509. }
  2510. },
  2511. "System.Reflection.TypeExtensions/4.3.0": {
  2512. "type": "package",
  2513. "dependencies": {
  2514. "System.Reflection": "4.3.0",
  2515. "System.Runtime": "4.3.0"
  2516. },
  2517. "compile": {
  2518. "ref/netstandard1.5/_._": {
  2519. "related": ".xml"
  2520. }
  2521. },
  2522. "runtime": {
  2523. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2524. }
  2525. },
  2526. "System.Resources.ResourceManager/4.3.0": {
  2527. "type": "package",
  2528. "dependencies": {
  2529. "Microsoft.NETCore.Platforms": "1.1.0",
  2530. "Microsoft.NETCore.Targets": "1.1.0",
  2531. "System.Globalization": "4.3.0",
  2532. "System.Reflection": "4.3.0",
  2533. "System.Runtime": "4.3.0"
  2534. },
  2535. "compile": {
  2536. "ref/netstandard1.0/_._": {
  2537. "related": ".xml"
  2538. }
  2539. }
  2540. },
  2541. "System.Runtime/4.3.0": {
  2542. "type": "package",
  2543. "dependencies": {
  2544. "Microsoft.NETCore.Platforms": "1.1.0",
  2545. "Microsoft.NETCore.Targets": "1.1.0"
  2546. },
  2547. "compile": {
  2548. "ref/netstandard1.5/System.Runtime.dll": {
  2549. "related": ".xml"
  2550. }
  2551. }
  2552. },
  2553. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2554. "type": "package",
  2555. "compile": {
  2556. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2557. "related": ".xml"
  2558. }
  2559. },
  2560. "runtime": {
  2561. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  2562. "related": ".xml"
  2563. }
  2564. },
  2565. "build": {
  2566. "buildTransitive/netcoreapp3.1/_._": {}
  2567. }
  2568. },
  2569. "System.Runtime.Extensions/4.3.0": {
  2570. "type": "package",
  2571. "dependencies": {
  2572. "Microsoft.NETCore.Platforms": "1.1.0",
  2573. "Microsoft.NETCore.Targets": "1.1.0",
  2574. "System.Runtime": "4.3.0"
  2575. },
  2576. "compile": {
  2577. "ref/netstandard1.5/_._": {
  2578. "related": ".xml"
  2579. }
  2580. }
  2581. },
  2582. "System.Runtime.Loader/4.3.0": {
  2583. "type": "package",
  2584. "dependencies": {
  2585. "System.IO": "4.3.0",
  2586. "System.Reflection": "4.3.0",
  2587. "System.Runtime": "4.3.0"
  2588. },
  2589. "compile": {
  2590. "ref/netstandard1.5/System.Runtime.Loader.dll": {
  2591. "related": ".xml"
  2592. }
  2593. },
  2594. "runtime": {
  2595. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  2596. }
  2597. },
  2598. "System.Security.AccessControl/6.0.0": {
  2599. "type": "package",
  2600. "compile": {
  2601. "lib/net6.0/System.Security.AccessControl.dll": {
  2602. "related": ".xml"
  2603. }
  2604. },
  2605. "runtime": {
  2606. "lib/net6.0/System.Security.AccessControl.dll": {
  2607. "related": ".xml"
  2608. }
  2609. },
  2610. "build": {
  2611. "buildTransitive/netcoreapp3.1/_._": {}
  2612. },
  2613. "runtimeTargets": {
  2614. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": {
  2615. "assetType": "runtime",
  2616. "rid": "win"
  2617. }
  2618. }
  2619. },
  2620. "System.Security.Cryptography.Cng/4.5.0": {
  2621. "type": "package",
  2622. "compile": {
  2623. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2624. "related": ".xml"
  2625. }
  2626. },
  2627. "runtime": {
  2628. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2629. },
  2630. "runtimeTargets": {
  2631. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2632. "assetType": "runtime",
  2633. "rid": "win"
  2634. }
  2635. }
  2636. },
  2637. "System.Security.Cryptography.Pkcs/6.0.0": {
  2638. "type": "package",
  2639. "dependencies": {
  2640. "System.Formats.Asn1": "6.0.0"
  2641. },
  2642. "compile": {
  2643. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2644. "related": ".xml"
  2645. }
  2646. },
  2647. "runtime": {
  2648. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2649. "related": ".xml"
  2650. }
  2651. },
  2652. "build": {
  2653. "buildTransitive/netcoreapp3.1/_._": {}
  2654. },
  2655. "runtimeTargets": {
  2656. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  2657. "assetType": "runtime",
  2658. "rid": "win"
  2659. }
  2660. }
  2661. },
  2662. "System.Security.Cryptography.ProtectedData/6.0.0": {
  2663. "type": "package",
  2664. "compile": {
  2665. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  2666. "related": ".xml"
  2667. }
  2668. },
  2669. "runtime": {
  2670. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  2671. "related": ".xml"
  2672. }
  2673. },
  2674. "build": {
  2675. "buildTransitive/netcoreapp3.1/_._": {}
  2676. },
  2677. "runtimeTargets": {
  2678. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  2679. "assetType": "runtime",
  2680. "rid": "win"
  2681. }
  2682. }
  2683. },
  2684. "System.Security.Cryptography.Xml/6.0.0": {
  2685. "type": "package",
  2686. "dependencies": {
  2687. "System.Security.AccessControl": "6.0.0",
  2688. "System.Security.Cryptography.Pkcs": "6.0.0"
  2689. },
  2690. "compile": {
  2691. "lib/net6.0/System.Security.Cryptography.Xml.dll": {
  2692. "related": ".xml"
  2693. }
  2694. },
  2695. "runtime": {
  2696. "lib/net6.0/System.Security.Cryptography.Xml.dll": {
  2697. "related": ".xml"
  2698. }
  2699. },
  2700. "build": {
  2701. "buildTransitive/netcoreapp3.1/_._": {}
  2702. }
  2703. },
  2704. "System.Security.Permissions/6.0.0": {
  2705. "type": "package",
  2706. "dependencies": {
  2707. "System.Security.AccessControl": "6.0.0",
  2708. "System.Windows.Extensions": "6.0.0"
  2709. },
  2710. "compile": {
  2711. "lib/net6.0/System.Security.Permissions.dll": {
  2712. "related": ".xml"
  2713. }
  2714. },
  2715. "runtime": {
  2716. "lib/net6.0/System.Security.Permissions.dll": {
  2717. "related": ".xml"
  2718. }
  2719. },
  2720. "build": {
  2721. "buildTransitive/netcoreapp3.1/_._": {}
  2722. }
  2723. },
  2724. "System.Security.Principal.Windows/5.0.0": {
  2725. "type": "package",
  2726. "compile": {
  2727. "ref/netcoreapp3.0/_._": {
  2728. "related": ".xml"
  2729. }
  2730. },
  2731. "runtime": {
  2732. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2733. "related": ".xml"
  2734. }
  2735. },
  2736. "runtimeTargets": {
  2737. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2738. "assetType": "runtime",
  2739. "rid": "unix"
  2740. },
  2741. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2742. "assetType": "runtime",
  2743. "rid": "win"
  2744. }
  2745. }
  2746. },
  2747. "System.Text.Encoding/4.3.0": {
  2748. "type": "package",
  2749. "dependencies": {
  2750. "Microsoft.NETCore.Platforms": "1.1.0",
  2751. "Microsoft.NETCore.Targets": "1.1.0",
  2752. "System.Runtime": "4.3.0"
  2753. },
  2754. "compile": {
  2755. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2756. "related": ".xml"
  2757. }
  2758. }
  2759. },
  2760. "System.Text.Encoding.CodePages/4.5.1": {
  2761. "type": "package",
  2762. "dependencies": {
  2763. "Microsoft.NETCore.Platforms": "2.1.2",
  2764. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2765. },
  2766. "compile": {
  2767. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2768. },
  2769. "runtime": {
  2770. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2771. },
  2772. "runtimeTargets": {
  2773. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2774. "assetType": "runtime",
  2775. "rid": "win"
  2776. }
  2777. }
  2778. },
  2779. "System.Text.Encodings.Web/6.0.0": {
  2780. "type": "package",
  2781. "dependencies": {
  2782. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2783. },
  2784. "compile": {
  2785. "lib/net6.0/System.Text.Encodings.Web.dll": {
  2786. "related": ".xml"
  2787. }
  2788. },
  2789. "runtime": {
  2790. "lib/net6.0/System.Text.Encodings.Web.dll": {
  2791. "related": ".xml"
  2792. }
  2793. },
  2794. "build": {
  2795. "buildTransitive/netcoreapp3.1/_._": {}
  2796. },
  2797. "runtimeTargets": {
  2798. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
  2799. "assetType": "runtime",
  2800. "rid": "browser"
  2801. }
  2802. }
  2803. },
  2804. "System.Text.Json/6.0.0": {
  2805. "type": "package",
  2806. "dependencies": {
  2807. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  2808. "System.Text.Encodings.Web": "6.0.0"
  2809. },
  2810. "compile": {
  2811. "lib/net6.0/System.Text.Json.dll": {
  2812. "related": ".xml"
  2813. }
  2814. },
  2815. "runtime": {
  2816. "lib/net6.0/System.Text.Json.dll": {
  2817. "related": ".xml"
  2818. }
  2819. },
  2820. "build": {
  2821. "buildTransitive/netcoreapp3.1/_._": {}
  2822. }
  2823. },
  2824. "System.Threading/4.3.0": {
  2825. "type": "package",
  2826. "dependencies": {
  2827. "System.Runtime": "4.3.0",
  2828. "System.Threading.Tasks": "4.3.0"
  2829. },
  2830. "compile": {
  2831. "ref/netstandard1.3/_._": {
  2832. "related": ".xml"
  2833. }
  2834. },
  2835. "runtime": {
  2836. "lib/netstandard1.3/System.Threading.dll": {}
  2837. }
  2838. },
  2839. "System.Threading.Tasks/4.3.0": {
  2840. "type": "package",
  2841. "dependencies": {
  2842. "Microsoft.NETCore.Platforms": "1.1.0",
  2843. "Microsoft.NETCore.Targets": "1.1.0",
  2844. "System.Runtime": "4.3.0"
  2845. },
  2846. "compile": {
  2847. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2848. "related": ".xml"
  2849. }
  2850. }
  2851. },
  2852. "System.Threading.Tasks.Extensions/4.5.4": {
  2853. "type": "package",
  2854. "compile": {
  2855. "ref/netcoreapp2.1/_._": {}
  2856. },
  2857. "runtime": {
  2858. "lib/netcoreapp2.1/_._": {}
  2859. }
  2860. },
  2861. "System.Windows.Extensions/6.0.0": {
  2862. "type": "package",
  2863. "dependencies": {
  2864. "System.Drawing.Common": "6.0.0"
  2865. },
  2866. "compile": {
  2867. "lib/net6.0/System.Windows.Extensions.dll": {
  2868. "related": ".xml"
  2869. }
  2870. },
  2871. "runtime": {
  2872. "lib/net6.0/System.Windows.Extensions.dll": {
  2873. "related": ".xml"
  2874. }
  2875. },
  2876. "runtimeTargets": {
  2877. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
  2878. "assetType": "runtime",
  2879. "rid": "win"
  2880. }
  2881. }
  2882. },
  2883. "TimeZoneConverter/5.0.0": {
  2884. "type": "package",
  2885. "compile": {
  2886. "lib/netstandard2.0/TimeZoneConverter.dll": {
  2887. "related": ".xml"
  2888. }
  2889. },
  2890. "runtime": {
  2891. "lib/netstandard2.0/TimeZoneConverter.dll": {
  2892. "related": ".xml"
  2893. }
  2894. }
  2895. },
  2896. "Volo.Abp.ApiVersioning.Abstractions/6.0.0": {
  2897. "type": "package",
  2898. "dependencies": {
  2899. "Volo.Abp.Core": "6.0.0"
  2900. },
  2901. "compile": {
  2902. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {
  2903. "related": ".pdb;.xml"
  2904. }
  2905. },
  2906. "runtime": {
  2907. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll": {
  2908. "related": ".pdb;.xml"
  2909. }
  2910. }
  2911. },
  2912. "Volo.Abp.AspNetCore/6.0.0": {
  2913. "type": "package",
  2914. "dependencies": {
  2915. "Volo.Abp.Auditing": "6.0.0",
  2916. "Volo.Abp.Authorization": "6.0.0",
  2917. "Volo.Abp.ExceptionHandling": "6.0.0",
  2918. "Volo.Abp.Http": "6.0.0",
  2919. "Volo.Abp.Security": "6.0.0",
  2920. "Volo.Abp.Uow": "6.0.0",
  2921. "Volo.Abp.Validation": "6.0.0",
  2922. "Volo.Abp.VirtualFileSystem": "6.0.0"
  2923. },
  2924. "compile": {
  2925. "lib/net6.0/Volo.Abp.AspNetCore.dll": {
  2926. "related": ".pdb;.xml"
  2927. }
  2928. },
  2929. "runtime": {
  2930. "lib/net6.0/Volo.Abp.AspNetCore.dll": {
  2931. "related": ".pdb;.xml"
  2932. }
  2933. },
  2934. "frameworkReferences": [
  2935. "Microsoft.AspNetCore.App"
  2936. ]
  2937. },
  2938. "Volo.Abp.AspNetCore.MultiTenancy/6.0.0": {
  2939. "type": "package",
  2940. "dependencies": {
  2941. "Volo.Abp.AspNetCore": "6.0.0",
  2942. "Volo.Abp.MultiTenancy": "6.0.0"
  2943. },
  2944. "compile": {
  2945. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.dll": {
  2946. "related": ".pdb;.xml"
  2947. }
  2948. },
  2949. "runtime": {
  2950. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.dll": {
  2951. "related": ".pdb;.xml"
  2952. }
  2953. },
  2954. "frameworkReferences": [
  2955. "Microsoft.AspNetCore.App"
  2956. ]
  2957. },
  2958. "Volo.Abp.AspNetCore.Mvc/6.0.0": {
  2959. "type": "package",
  2960. "dependencies": {
  2961. "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "6.0.5",
  2962. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": "6.0.5",
  2963. "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0",
  2964. "Volo.Abp.ApiVersioning.Abstractions": "6.0.0",
  2965. "Volo.Abp.AspNetCore": "6.0.0",
  2966. "Volo.Abp.AspNetCore.Mvc.Contracts": "6.0.0",
  2967. "Volo.Abp.Ddd.Application": "6.0.0",
  2968. "Volo.Abp.GlobalFeatures": "6.0.0",
  2969. "Volo.Abp.Localization": "6.0.0",
  2970. "Volo.Abp.UI.Navigation": "6.0.0"
  2971. },
  2972. "compile": {
  2973. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.dll": {
  2974. "related": ".pdb;.xml"
  2975. }
  2976. },
  2977. "runtime": {
  2978. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.dll": {
  2979. "related": ".pdb;.xml"
  2980. }
  2981. }
  2982. },
  2983. "Volo.Abp.AspNetCore.Mvc.Contracts/6.0.0": {
  2984. "type": "package",
  2985. "dependencies": {
  2986. "Volo.Abp.Ddd.Application.Contracts": "6.0.0"
  2987. },
  2988. "compile": {
  2989. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {
  2990. "related": ".pdb;.xml"
  2991. }
  2992. },
  2993. "runtime": {
  2994. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.dll": {
  2995. "related": ".pdb;.xml"
  2996. }
  2997. }
  2998. },
  2999. "Volo.Abp.AspNetCore.Serilog/6.0.0": {
  3000. "type": "package",
  3001. "dependencies": {
  3002. "Serilog": "2.11.0",
  3003. "Volo.Abp.AspNetCore": "6.0.0",
  3004. "Volo.Abp.MultiTenancy": "6.0.0"
  3005. },
  3006. "compile": {
  3007. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.dll": {
  3008. "related": ".pdb;.xml"
  3009. }
  3010. },
  3011. "runtime": {
  3012. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.dll": {
  3013. "related": ".pdb;.xml"
  3014. }
  3015. },
  3016. "frameworkReferences": [
  3017. "Microsoft.AspNetCore.App"
  3018. ]
  3019. },
  3020. "Volo.Abp.Auditing/6.0.2": {
  3021. "type": "package",
  3022. "dependencies": {
  3023. "Volo.Abp.Auditing.Contracts": "6.0.2",
  3024. "Volo.Abp.Data": "6.0.2",
  3025. "Volo.Abp.Json": "6.0.2",
  3026. "Volo.Abp.MultiTenancy": "6.0.2",
  3027. "Volo.Abp.Security": "6.0.2",
  3028. "Volo.Abp.Threading": "6.0.2",
  3029. "Volo.Abp.Timing": "6.0.2"
  3030. },
  3031. "compile": {
  3032. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  3033. "related": ".pdb;.xml"
  3034. }
  3035. },
  3036. "runtime": {
  3037. "lib/netstandard2.0/Volo.Abp.Auditing.dll": {
  3038. "related": ".pdb;.xml"
  3039. }
  3040. }
  3041. },
  3042. "Volo.Abp.Auditing.Contracts/6.0.2": {
  3043. "type": "package",
  3044. "dependencies": {
  3045. "Volo.Abp.Core": "6.0.2"
  3046. },
  3047. "compile": {
  3048. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  3049. "related": ".pdb;.xml"
  3050. }
  3051. },
  3052. "runtime": {
  3053. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll": {
  3054. "related": ".pdb;.xml"
  3055. }
  3056. }
  3057. },
  3058. "Volo.Abp.Authorization/6.0.0": {
  3059. "type": "package",
  3060. "dependencies": {
  3061. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3062. "Volo.Abp.Localization": "6.0.0",
  3063. "Volo.Abp.Security": "6.0.0"
  3064. },
  3065. "compile": {
  3066. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  3067. "related": ".pdb;.xml"
  3068. }
  3069. },
  3070. "runtime": {
  3071. "lib/netstandard2.0/Volo.Abp.Authorization.dll": {
  3072. "related": ".pdb;.xml"
  3073. }
  3074. }
  3075. },
  3076. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  3077. "type": "package",
  3078. "dependencies": {
  3079. "Microsoft.AspNetCore.Authorization": "6.0.5",
  3080. "Volo.Abp.MultiTenancy": "6.0.0"
  3081. },
  3082. "compile": {
  3083. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  3084. "related": ".pdb;.xml"
  3085. }
  3086. },
  3087. "runtime": {
  3088. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll": {
  3089. "related": ".pdb;.xml"
  3090. }
  3091. }
  3092. },
  3093. "Volo.Abp.Autofac/6.0.0": {
  3094. "type": "package",
  3095. "dependencies": {
  3096. "Autofac": "6.4.0",
  3097. "Autofac.Extensions.DependencyInjection": "8.0.0",
  3098. "Autofac.Extras.DynamicProxy": "6.0.1",
  3099. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  3100. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  3101. "Volo.Abp.Castle.Core": "6.0.0"
  3102. },
  3103. "compile": {
  3104. "lib/netstandard2.0/Volo.Abp.Autofac.dll": {
  3105. "related": ".pdb;.xml"
  3106. }
  3107. },
  3108. "runtime": {
  3109. "lib/netstandard2.0/Volo.Abp.Autofac.dll": {
  3110. "related": ".pdb;.xml"
  3111. }
  3112. }
  3113. },
  3114. "Volo.Abp.AutoMapper/6.0.0": {
  3115. "type": "package",
  3116. "dependencies": {
  3117. "AutoMapper": "11.0.1",
  3118. "Volo.Abp.Auditing": "6.0.0",
  3119. "Volo.Abp.ObjectExtending": "6.0.0",
  3120. "Volo.Abp.ObjectMapping": "6.0.0"
  3121. },
  3122. "compile": {
  3123. "lib/netstandard2.1/Volo.Abp.AutoMapper.dll": {
  3124. "related": ".pdb;.xml"
  3125. }
  3126. },
  3127. "runtime": {
  3128. "lib/netstandard2.1/Volo.Abp.AutoMapper.dll": {
  3129. "related": ".pdb;.xml"
  3130. }
  3131. }
  3132. },
  3133. "Volo.Abp.BackgroundWorkers/6.0.2": {
  3134. "type": "package",
  3135. "dependencies": {
  3136. "Volo.Abp.Threading": "6.0.2"
  3137. },
  3138. "compile": {
  3139. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  3140. "related": ".pdb;.xml"
  3141. }
  3142. },
  3143. "runtime": {
  3144. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll": {
  3145. "related": ".pdb;.xml"
  3146. }
  3147. }
  3148. },
  3149. "Volo.Abp.Caching/6.0.0": {
  3150. "type": "package",
  3151. "dependencies": {
  3152. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  3153. "Volo.Abp.Json": "6.0.0",
  3154. "Volo.Abp.MultiTenancy": "6.0.0",
  3155. "Volo.Abp.Serialization": "6.0.0",
  3156. "Volo.Abp.Threading": "6.0.0"
  3157. },
  3158. "compile": {
  3159. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  3160. "related": ".pdb;.xml"
  3161. }
  3162. },
  3163. "runtime": {
  3164. "lib/netstandard2.0/Volo.Abp.Caching.dll": {
  3165. "related": ".pdb;.xml"
  3166. }
  3167. }
  3168. },
  3169. "Volo.Abp.Castle.Core/6.0.0": {
  3170. "type": "package",
  3171. "dependencies": {
  3172. "Castle.Core": "5.0.0",
  3173. "Castle.Core.AsyncInterceptor": "2.1.0",
  3174. "Volo.Abp.Core": "6.0.0"
  3175. },
  3176. "compile": {
  3177. "lib/netstandard2.0/Volo.Abp.Castle.Core.dll": {
  3178. "related": ".pdb;.xml"
  3179. }
  3180. },
  3181. "runtime": {
  3182. "lib/netstandard2.0/Volo.Abp.Castle.Core.dll": {
  3183. "related": ".pdb;.xml"
  3184. }
  3185. }
  3186. },
  3187. "Volo.Abp.Core/6.0.2": {
  3188. "type": "package",
  3189. "dependencies": {
  3190. "JetBrains.Annotations": "2022.1.0",
  3191. "Microsoft.Extensions.Configuration.CommandLine": "6.0.0",
  3192. "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.1",
  3193. "Microsoft.Extensions.Configuration.UserSecrets": "6.0.1",
  3194. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  3195. "Microsoft.Extensions.Hosting.Abstractions": "6.0.0",
  3196. "Microsoft.Extensions.Localization": "6.0.5",
  3197. "Microsoft.Extensions.Logging": "6.0.0",
  3198. "Microsoft.Extensions.Options": "6.0.0",
  3199. "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0",
  3200. "Nito.AsyncEx.Context": "5.1.2",
  3201. "Nito.AsyncEx.Coordination": "5.1.2",
  3202. "System.Collections.Immutable": "6.0.0",
  3203. "System.Linq.Dynamic.Core": "1.2.18",
  3204. "System.Linq.Queryable": "4.3.0",
  3205. "System.Runtime.Loader": "4.3.0",
  3206. "System.Text.Encodings.Web": "6.0.0"
  3207. },
  3208. "compile": {
  3209. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  3210. "related": ".pdb;.xml"
  3211. }
  3212. },
  3213. "runtime": {
  3214. "lib/netstandard2.0/Volo.Abp.Core.dll": {
  3215. "related": ".pdb;.xml"
  3216. }
  3217. }
  3218. },
  3219. "Volo.Abp.Data/6.0.2": {
  3220. "type": "package",
  3221. "dependencies": {
  3222. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  3223. "Volo.Abp.ObjectExtending": "6.0.2",
  3224. "Volo.Abp.Uow": "6.0.2"
  3225. },
  3226. "compile": {
  3227. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  3228. "related": ".pdb;.xml"
  3229. }
  3230. },
  3231. "runtime": {
  3232. "lib/netstandard2.0/Volo.Abp.Data.dll": {
  3233. "related": ".pdb;.xml"
  3234. }
  3235. }
  3236. },
  3237. "Volo.Abp.Ddd.Application/6.0.0": {
  3238. "type": "package",
  3239. "dependencies": {
  3240. "Volo.Abp.Authorization": "6.0.0",
  3241. "Volo.Abp.Ddd.Application.Contracts": "6.0.0",
  3242. "Volo.Abp.Ddd.Domain": "6.0.0",
  3243. "Volo.Abp.Features": "6.0.0",
  3244. "Volo.Abp.GlobalFeatures": "6.0.0",
  3245. "Volo.Abp.Http.Abstractions": "6.0.0",
  3246. "Volo.Abp.Localization": "6.0.0",
  3247. "Volo.Abp.ObjectMapping": "6.0.0",
  3248. "Volo.Abp.Security": "6.0.0",
  3249. "Volo.Abp.Settings": "6.0.0",
  3250. "Volo.Abp.Validation": "6.0.0"
  3251. },
  3252. "compile": {
  3253. "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {
  3254. "related": ".pdb;.xml"
  3255. }
  3256. },
  3257. "runtime": {
  3258. "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll": {
  3259. "related": ".pdb;.xml"
  3260. }
  3261. }
  3262. },
  3263. "Volo.Abp.Ddd.Application.Contracts/6.0.0": {
  3264. "type": "package",
  3265. "dependencies": {
  3266. "Volo.Abp.Auditing.Contracts": "6.0.0",
  3267. "Volo.Abp.Localization": "6.0.0"
  3268. },
  3269. "compile": {
  3270. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {
  3271. "related": ".pdb;.xml"
  3272. }
  3273. },
  3274. "runtime": {
  3275. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll": {
  3276. "related": ".pdb;.xml"
  3277. }
  3278. }
  3279. },
  3280. "Volo.Abp.Ddd.Domain/6.0.2": {
  3281. "type": "package",
  3282. "dependencies": {
  3283. "Volo.Abp.Auditing": "6.0.2",
  3284. "Volo.Abp.Data": "6.0.2",
  3285. "Volo.Abp.EventBus": "6.0.2",
  3286. "Volo.Abp.ExceptionHandling": "6.0.2",
  3287. "Volo.Abp.Guids": "6.0.2",
  3288. "Volo.Abp.MultiTenancy": "6.0.2",
  3289. "Volo.Abp.ObjectMapping": "6.0.2",
  3290. "Volo.Abp.Specifications": "6.0.2",
  3291. "Volo.Abp.Threading": "6.0.2",
  3292. "Volo.Abp.Timing": "6.0.2",
  3293. "Volo.Abp.Uow": "6.0.2"
  3294. },
  3295. "compile": {
  3296. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  3297. "related": ".pdb;.xml"
  3298. }
  3299. },
  3300. "runtime": {
  3301. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll": {
  3302. "related": ".pdb;.xml"
  3303. }
  3304. }
  3305. },
  3306. "Volo.Abp.DistributedLocking.Abstractions/6.0.2": {
  3307. "type": "package",
  3308. "dependencies": {
  3309. "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
  3310. "Volo.Abp.Core": "6.0.2"
  3311. },
  3312. "compile": {
  3313. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  3314. "related": ".pdb;.xml"
  3315. }
  3316. },
  3317. "runtime": {
  3318. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll": {
  3319. "related": ".pdb;.xml"
  3320. }
  3321. }
  3322. },
  3323. "Volo.Abp.EntityFrameworkCore/6.0.2": {
  3324. "type": "package",
  3325. "dependencies": {
  3326. "Microsoft.EntityFrameworkCore": "6.0.5",
  3327. "Microsoft.EntityFrameworkCore.Relational": "6.0.5",
  3328. "Volo.Abp.Ddd.Domain": "6.0.2",
  3329. "Volo.Abp.Json": "6.0.2"
  3330. },
  3331. "compile": {
  3332. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  3333. "related": ".pdb;.xml"
  3334. }
  3335. },
  3336. "runtime": {
  3337. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll": {
  3338. "related": ".pdb;.xml"
  3339. }
  3340. }
  3341. },
  3342. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.2": {
  3343. "type": "package",
  3344. "dependencies": {
  3345. "Pomelo.EntityFrameworkCore.MySql": "6.0.0",
  3346. "Volo.Abp.EntityFrameworkCore": "6.0.2"
  3347. },
  3348. "compile": {
  3349. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  3350. "related": ".pdb;.xml"
  3351. }
  3352. },
  3353. "runtime": {
  3354. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll": {
  3355. "related": ".pdb;.xml"
  3356. }
  3357. }
  3358. },
  3359. "Volo.Abp.EventBus/6.0.2": {
  3360. "type": "package",
  3361. "dependencies": {
  3362. "Volo.Abp.BackgroundWorkers": "6.0.2",
  3363. "Volo.Abp.DistributedLocking.Abstractions": "6.0.2",
  3364. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  3365. "Volo.Abp.Guids": "6.0.2",
  3366. "Volo.Abp.Json": "6.0.2",
  3367. "Volo.Abp.MultiTenancy": "6.0.2"
  3368. },
  3369. "compile": {
  3370. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  3371. "related": ".pdb;.xml"
  3372. }
  3373. },
  3374. "runtime": {
  3375. "lib/netstandard2.0/Volo.Abp.EventBus.dll": {
  3376. "related": ".pdb;.xml"
  3377. }
  3378. }
  3379. },
  3380. "Volo.Abp.EventBus.Abstractions/6.0.2": {
  3381. "type": "package",
  3382. "dependencies": {
  3383. "Volo.Abp.Core": "6.0.2"
  3384. },
  3385. "compile": {
  3386. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  3387. "related": ".pdb;.xml"
  3388. }
  3389. },
  3390. "runtime": {
  3391. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll": {
  3392. "related": ".pdb;.xml"
  3393. }
  3394. }
  3395. },
  3396. "Volo.Abp.ExceptionHandling/6.0.2": {
  3397. "type": "package",
  3398. "dependencies": {
  3399. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  3400. "Volo.Abp.Localization": "6.0.2"
  3401. },
  3402. "compile": {
  3403. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  3404. "related": ".pdb;.xml"
  3405. }
  3406. },
  3407. "runtime": {
  3408. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll": {
  3409. "related": ".pdb;.xml"
  3410. }
  3411. }
  3412. },
  3413. "Volo.Abp.Features/6.0.0": {
  3414. "type": "package",
  3415. "dependencies": {
  3416. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3417. "Volo.Abp.Localization": "6.0.0",
  3418. "Volo.Abp.MultiTenancy": "6.0.0",
  3419. "Volo.Abp.Validation": "6.0.0"
  3420. },
  3421. "compile": {
  3422. "lib/netstandard2.0/Volo.Abp.Features.dll": {
  3423. "related": ".pdb;.xml"
  3424. }
  3425. },
  3426. "runtime": {
  3427. "lib/netstandard2.0/Volo.Abp.Features.dll": {
  3428. "related": ".pdb;.xml"
  3429. }
  3430. }
  3431. },
  3432. "Volo.Abp.GlobalFeatures/6.0.0": {
  3433. "type": "package",
  3434. "dependencies": {
  3435. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3436. "Volo.Abp.Localization": "6.0.0",
  3437. "Volo.Abp.VirtualFileSystem": "6.0.0"
  3438. },
  3439. "compile": {
  3440. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.dll": {
  3441. "related": ".pdb;.xml"
  3442. }
  3443. },
  3444. "runtime": {
  3445. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.dll": {
  3446. "related": ".pdb;.xml"
  3447. }
  3448. }
  3449. },
  3450. "Volo.Abp.Guids/6.0.2": {
  3451. "type": "package",
  3452. "dependencies": {
  3453. "Volo.Abp.Core": "6.0.2"
  3454. },
  3455. "compile": {
  3456. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  3457. "related": ".pdb;.xml"
  3458. }
  3459. },
  3460. "runtime": {
  3461. "lib/netstandard2.0/Volo.Abp.Guids.dll": {
  3462. "related": ".pdb;.xml"
  3463. }
  3464. }
  3465. },
  3466. "Volo.Abp.Http/6.0.0": {
  3467. "type": "package",
  3468. "dependencies": {
  3469. "Volo.Abp.Http.Abstractions": "6.0.0",
  3470. "Volo.Abp.Json": "6.0.0",
  3471. "Volo.Abp.Minify": "6.0.0"
  3472. },
  3473. "compile": {
  3474. "lib/netstandard2.0/Volo.Abp.Http.dll": {
  3475. "related": ".pdb;.xml"
  3476. }
  3477. },
  3478. "runtime": {
  3479. "lib/netstandard2.0/Volo.Abp.Http.dll": {
  3480. "related": ".pdb;.xml"
  3481. }
  3482. }
  3483. },
  3484. "Volo.Abp.Http.Abstractions/6.0.0": {
  3485. "type": "package",
  3486. "dependencies": {
  3487. "Volo.Abp.Core": "6.0.0"
  3488. },
  3489. "compile": {
  3490. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {
  3491. "related": ".pdb;.xml"
  3492. }
  3493. },
  3494. "runtime": {
  3495. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll": {
  3496. "related": ".pdb;.xml"
  3497. }
  3498. }
  3499. },
  3500. "Volo.Abp.Json/6.0.2": {
  3501. "type": "package",
  3502. "dependencies": {
  3503. "Newtonsoft.Json": "13.0.1",
  3504. "Volo.Abp.ObjectExtending": "6.0.2",
  3505. "Volo.Abp.Timing": "6.0.2"
  3506. },
  3507. "compile": {
  3508. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  3509. "related": ".pdb;.xml"
  3510. }
  3511. },
  3512. "runtime": {
  3513. "lib/netstandard2.0/Volo.Abp.Json.dll": {
  3514. "related": ".pdb;.xml"
  3515. }
  3516. }
  3517. },
  3518. "Volo.Abp.Localization/6.0.2": {
  3519. "type": "package",
  3520. "dependencies": {
  3521. "Volo.Abp.Localization.Abstractions": "6.0.2",
  3522. "Volo.Abp.Settings": "6.0.2",
  3523. "Volo.Abp.VirtualFileSystem": "6.0.2"
  3524. },
  3525. "compile": {
  3526. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  3527. "related": ".pdb;.xml"
  3528. }
  3529. },
  3530. "runtime": {
  3531. "lib/netstandard2.0/Volo.Abp.Localization.dll": {
  3532. "related": ".pdb;.xml"
  3533. }
  3534. }
  3535. },
  3536. "Volo.Abp.Localization.Abstractions/6.0.2": {
  3537. "type": "package",
  3538. "dependencies": {
  3539. "Volo.Abp.Core": "6.0.2"
  3540. },
  3541. "compile": {
  3542. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  3543. "related": ".pdb;.xml"
  3544. }
  3545. },
  3546. "runtime": {
  3547. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll": {
  3548. "related": ".pdb;.xml"
  3549. }
  3550. }
  3551. },
  3552. "Volo.Abp.Minify/6.0.0": {
  3553. "type": "package",
  3554. "dependencies": {
  3555. "NUglify": "1.20.0",
  3556. "Volo.Abp.Core": "6.0.0"
  3557. },
  3558. "compile": {
  3559. "lib/netstandard2.0/Volo.Abp.Minify.dll": {
  3560. "related": ".pdb;.xml"
  3561. }
  3562. },
  3563. "runtime": {
  3564. "lib/netstandard2.0/Volo.Abp.Minify.dll": {
  3565. "related": ".pdb;.xml"
  3566. }
  3567. }
  3568. },
  3569. "Volo.Abp.MultiTenancy/6.0.2": {
  3570. "type": "package",
  3571. "dependencies": {
  3572. "Volo.Abp.Data": "6.0.2",
  3573. "Volo.Abp.EventBus.Abstractions": "6.0.2",
  3574. "Volo.Abp.Security": "6.0.2"
  3575. },
  3576. "compile": {
  3577. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  3578. "related": ".pdb;.xml"
  3579. }
  3580. },
  3581. "runtime": {
  3582. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll": {
  3583. "related": ".pdb;.xml"
  3584. }
  3585. }
  3586. },
  3587. "Volo.Abp.ObjectExtending/6.0.2": {
  3588. "type": "package",
  3589. "dependencies": {
  3590. "Volo.Abp.Localization.Abstractions": "6.0.2",
  3591. "Volo.Abp.Validation.Abstractions": "6.0.2"
  3592. },
  3593. "compile": {
  3594. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  3595. "related": ".pdb;.xml"
  3596. }
  3597. },
  3598. "runtime": {
  3599. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll": {
  3600. "related": ".pdb;.xml"
  3601. }
  3602. }
  3603. },
  3604. "Volo.Abp.ObjectMapping/6.0.2": {
  3605. "type": "package",
  3606. "dependencies": {
  3607. "Volo.Abp.Core": "6.0.2"
  3608. },
  3609. "compile": {
  3610. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  3611. "related": ".pdb;.xml"
  3612. }
  3613. },
  3614. "runtime": {
  3615. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll": {
  3616. "related": ".pdb;.xml"
  3617. }
  3618. }
  3619. },
  3620. "Volo.Abp.PermissionManagement.Application.Contracts/6.0.0": {
  3621. "type": "package",
  3622. "dependencies": {
  3623. "Volo.Abp.Authorization.Abstractions": "6.0.0",
  3624. "Volo.Abp.Ddd.Application.Contracts": "6.0.0",
  3625. "Volo.Abp.PermissionManagement.Domain.Shared": "6.0.0"
  3626. },
  3627. "compile": {
  3628. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll": {
  3629. "related": ".pdb;.xml"
  3630. }
  3631. },
  3632. "runtime": {
  3633. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll": {
  3634. "related": ".pdb;.xml"
  3635. }
  3636. }
  3637. },
  3638. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  3639. "type": "package",
  3640. "dependencies": {
  3641. "Volo.Abp.Authorization": "6.0.0",
  3642. "Volo.Abp.Caching": "6.0.0",
  3643. "Volo.Abp.Ddd.Domain": "6.0.0",
  3644. "Volo.Abp.Json": "6.0.0",
  3645. "Volo.Abp.PermissionManagement.Domain.Shared": "6.0.0"
  3646. },
  3647. "compile": {
  3648. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  3649. "related": ".pdb;.xml"
  3650. }
  3651. },
  3652. "runtime": {
  3653. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll": {
  3654. "related": ".pdb;.xml"
  3655. }
  3656. }
  3657. },
  3658. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  3659. "type": "package",
  3660. "dependencies": {
  3661. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  3662. "Volo.Abp.Validation": "6.0.0"
  3663. },
  3664. "compile": {
  3665. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  3666. "related": ".pdb;.xml"
  3667. }
  3668. },
  3669. "runtime": {
  3670. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll": {
  3671. "related": ".pdb;.xml"
  3672. }
  3673. }
  3674. },
  3675. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  3676. "type": "package",
  3677. "dependencies": {
  3678. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  3679. "Volo.Abp.PermissionManagement.Domain": "6.0.0"
  3680. },
  3681. "compile": {
  3682. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  3683. "related": ".pdb;.xml"
  3684. }
  3685. },
  3686. "runtime": {
  3687. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll": {
  3688. "related": ".pdb;.xml"
  3689. }
  3690. }
  3691. },
  3692. "Volo.Abp.Security/6.0.2": {
  3693. "type": "package",
  3694. "dependencies": {
  3695. "Volo.Abp.Core": "6.0.2"
  3696. },
  3697. "compile": {
  3698. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  3699. "related": ".pdb;.xml"
  3700. }
  3701. },
  3702. "runtime": {
  3703. "lib/netstandard2.0/Volo.Abp.Security.dll": {
  3704. "related": ".pdb;.xml"
  3705. }
  3706. }
  3707. },
  3708. "Volo.Abp.Serialization/6.0.0": {
  3709. "type": "package",
  3710. "dependencies": {
  3711. "Volo.Abp.Core": "6.0.0"
  3712. },
  3713. "compile": {
  3714. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  3715. "related": ".pdb;.xml"
  3716. }
  3717. },
  3718. "runtime": {
  3719. "lib/netstandard2.0/Volo.Abp.Serialization.dll": {
  3720. "related": ".pdb;.xml"
  3721. }
  3722. }
  3723. },
  3724. "Volo.Abp.Settings/6.0.2": {
  3725. "type": "package",
  3726. "dependencies": {
  3727. "Volo.Abp.Localization.Abstractions": "6.0.2",
  3728. "Volo.Abp.MultiTenancy": "6.0.2",
  3729. "Volo.Abp.Security": "6.0.2"
  3730. },
  3731. "compile": {
  3732. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  3733. "related": ".pdb;.xml"
  3734. }
  3735. },
  3736. "runtime": {
  3737. "lib/netstandard2.0/Volo.Abp.Settings.dll": {
  3738. "related": ".pdb;.xml"
  3739. }
  3740. }
  3741. },
  3742. "Volo.Abp.Specifications/6.0.2": {
  3743. "type": "package",
  3744. "dependencies": {
  3745. "Volo.Abp.Core": "6.0.2"
  3746. },
  3747. "compile": {
  3748. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  3749. "related": ".pdb;.xml"
  3750. }
  3751. },
  3752. "runtime": {
  3753. "lib/netstandard2.0/Volo.Abp.Specifications.dll": {
  3754. "related": ".pdb;.xml"
  3755. }
  3756. }
  3757. },
  3758. "Volo.Abp.Threading/6.0.2": {
  3759. "type": "package",
  3760. "dependencies": {
  3761. "Volo.Abp.Core": "6.0.2"
  3762. },
  3763. "compile": {
  3764. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  3765. "related": ".pdb;.xml"
  3766. }
  3767. },
  3768. "runtime": {
  3769. "lib/netstandard2.0/Volo.Abp.Threading.dll": {
  3770. "related": ".pdb;.xml"
  3771. }
  3772. }
  3773. },
  3774. "Volo.Abp.Timing/6.0.2": {
  3775. "type": "package",
  3776. "dependencies": {
  3777. "TimeZoneConverter": "5.0.0",
  3778. "Volo.Abp.Localization": "6.0.2",
  3779. "Volo.Abp.Settings": "6.0.2"
  3780. },
  3781. "compile": {
  3782. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  3783. "related": ".pdb;.xml"
  3784. }
  3785. },
  3786. "runtime": {
  3787. "lib/netstandard2.0/Volo.Abp.Timing.dll": {
  3788. "related": ".pdb;.xml"
  3789. }
  3790. }
  3791. },
  3792. "Volo.Abp.UI/6.0.0": {
  3793. "type": "package",
  3794. "dependencies": {
  3795. "Volo.Abp.ExceptionHandling": "6.0.0"
  3796. },
  3797. "compile": {
  3798. "lib/netstandard2.0/Volo.Abp.UI.dll": {
  3799. "related": ".pdb;.xml"
  3800. }
  3801. },
  3802. "runtime": {
  3803. "lib/netstandard2.0/Volo.Abp.UI.dll": {
  3804. "related": ".pdb;.xml"
  3805. }
  3806. }
  3807. },
  3808. "Volo.Abp.UI.Navigation/6.0.0": {
  3809. "type": "package",
  3810. "dependencies": {
  3811. "Volo.Abp.Authorization": "6.0.0",
  3812. "Volo.Abp.UI": "6.0.0"
  3813. },
  3814. "compile": {
  3815. "lib/netstandard2.0/Volo.Abp.UI.Navigation.dll": {
  3816. "related": ".pdb;.xml"
  3817. }
  3818. },
  3819. "runtime": {
  3820. "lib/netstandard2.0/Volo.Abp.UI.Navigation.dll": {
  3821. "related": ".pdb;.xml"
  3822. }
  3823. }
  3824. },
  3825. "Volo.Abp.Uow/6.0.2": {
  3826. "type": "package",
  3827. "dependencies": {
  3828. "Volo.Abp.Core": "6.0.2"
  3829. },
  3830. "compile": {
  3831. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  3832. "related": ".pdb;.xml"
  3833. }
  3834. },
  3835. "runtime": {
  3836. "lib/netstandard2.0/Volo.Abp.Uow.dll": {
  3837. "related": ".pdb;.xml"
  3838. }
  3839. }
  3840. },
  3841. "Volo.Abp.Validation/6.0.0": {
  3842. "type": "package",
  3843. "dependencies": {
  3844. "Volo.Abp.Localization": "6.0.0",
  3845. "Volo.Abp.Validation.Abstractions": "6.0.0"
  3846. },
  3847. "compile": {
  3848. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  3849. "related": ".pdb;.xml"
  3850. }
  3851. },
  3852. "runtime": {
  3853. "lib/netstandard2.0/Volo.Abp.Validation.dll": {
  3854. "related": ".pdb;.xml"
  3855. }
  3856. }
  3857. },
  3858. "Volo.Abp.Validation.Abstractions/6.0.2": {
  3859. "type": "package",
  3860. "dependencies": {
  3861. "Volo.Abp.Core": "6.0.2"
  3862. },
  3863. "compile": {
  3864. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  3865. "related": ".pdb;.xml"
  3866. }
  3867. },
  3868. "runtime": {
  3869. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll": {
  3870. "related": ".pdb;.xml"
  3871. }
  3872. }
  3873. },
  3874. "Volo.Abp.VirtualFileSystem/6.0.2": {
  3875. "type": "package",
  3876. "dependencies": {
  3877. "Microsoft.Extensions.FileProviders.Composite": "6.0.0",
  3878. "Microsoft.Extensions.FileProviders.Embedded": "6.0.5",
  3879. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  3880. "Volo.Abp.Core": "6.0.2"
  3881. },
  3882. "compile": {
  3883. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  3884. "related": ".pdb;.xml"
  3885. }
  3886. },
  3887. "runtime": {
  3888. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll": {
  3889. "related": ".pdb;.xml"
  3890. }
  3891. }
  3892. },
  3893. "Procurement.Application/1.0.0": {
  3894. "type": "project",
  3895. "framework": ".NETCoreApp,Version=v6.0",
  3896. "dependencies": {
  3897. "NLog": "5.1.2",
  3898. "Procurement.Core": "1.0.0",
  3899. "Procurement.Domain": "1.0.0",
  3900. "Quartz.AspNetCore": "3.6.2",
  3901. "Volo.Abp.AspNetCore.Mvc": "6.0.0",
  3902. "Volo.Abp.AutoMapper": "6.0.0",
  3903. "XCZ.Procurement.Application.Contracts": "0.1.1"
  3904. },
  3905. "compile": {
  3906. "bin/placeholder/Procurement.Application.dll": {}
  3907. },
  3908. "runtime": {
  3909. "bin/placeholder/Procurement.Application.dll": {}
  3910. }
  3911. },
  3912. "Procurement.Core/1.0.0": {
  3913. "type": "project",
  3914. "framework": ".NETCoreApp,Version=v6.0",
  3915. "dependencies": {
  3916. "NLog": "5.1.2",
  3917. "NLog.Extensions.Logging": "5.2.2",
  3918. "NLog.Web.AspNetCore": "5.2.2"
  3919. },
  3920. "compile": {
  3921. "bin/placeholder/Procurement.Core.dll": {}
  3922. },
  3923. "runtime": {
  3924. "bin/placeholder/Procurement.Core.dll": {}
  3925. }
  3926. },
  3927. "Procurement.Domain/1.0.0": {
  3928. "type": "project",
  3929. "framework": ".NETCoreApp,Version=v6.0",
  3930. "dependencies": {
  3931. "Volo.Abp.Ddd.Domain": "6.0.0",
  3932. "Volo.Abp.EntityFrameworkCore": "6.0.0",
  3933. "Volo.Abp.Localization": "6.0.0",
  3934. "Volo.Abp.Validation": "6.0.0"
  3935. },
  3936. "compile": {
  3937. "bin/placeholder/Procurement.Domain.dll": {}
  3938. },
  3939. "runtime": {
  3940. "bin/placeholder/Procurement.Domain.dll": {}
  3941. }
  3942. },
  3943. "Procurement.EntityFrameworkCore/1.0.0": {
  3944. "type": "project",
  3945. "framework": ".NETCoreApp,Version=v6.0",
  3946. "dependencies": {
  3947. "MySql.Data": "8.0.32.1",
  3948. "Procurement.Domain": "1.0.0",
  3949. "Volo.Abp.EntityFrameworkCore.MySQL": "6.0.0",
  3950. "Volo.Abp.PermissionManagement.EntityFrameworkCore": "6.0.0"
  3951. },
  3952. "compile": {
  3953. "bin/placeholder/Procurement.EntityFrameworkCore.dll": {}
  3954. },
  3955. "runtime": {
  3956. "bin/placeholder/Procurement.EntityFrameworkCore.dll": {}
  3957. }
  3958. },
  3959. "XCZ.Procurement.Application.Contracts/0.1.1": {
  3960. "type": "project",
  3961. "framework": ".NETCoreApp,Version=v6.0",
  3962. "dependencies": {
  3963. "Microsoft.AspNetCore.Http.Features": "5.0.17",
  3964. "Volo.Abp.Ddd.Application": "6.0.0",
  3965. "Volo.Abp.PermissionManagement.Application.Contracts": "6.0.0"
  3966. },
  3967. "compile": {
  3968. "bin/placeholder/XCZ.Procurement.Application.Contracts.dll": {}
  3969. },
  3970. "runtime": {
  3971. "bin/placeholder/XCZ.Procurement.Application.Contracts.dll": {}
  3972. }
  3973. }
  3974. }
  3975. },
  3976. "libraries": {
  3977. "Autofac/6.4.0": {
  3978. "sha512": "tkFxl6wAPuwVhrlN8wuNADnd+k2tv4ReP7ZZSL0vjfcN0RcfC9v25ogxK6b03HC7D4NwWjSLf1G/zTG8Bw43wQ==",
  3979. "type": "package",
  3980. "path": "autofac/6.4.0",
  3981. "files": [
  3982. ".nupkg.metadata",
  3983. ".signature.p7s",
  3984. "README.md",
  3985. "autofac.6.4.0.nupkg.sha512",
  3986. "autofac.nuspec",
  3987. "icon.png",
  3988. "lib/net5.0/Autofac.dll",
  3989. "lib/net5.0/Autofac.xml",
  3990. "lib/net6.0/Autofac.dll",
  3991. "lib/net6.0/Autofac.xml",
  3992. "lib/netstandard2.0/Autofac.dll",
  3993. "lib/netstandard2.0/Autofac.xml",
  3994. "lib/netstandard2.1/Autofac.dll",
  3995. "lib/netstandard2.1/Autofac.xml"
  3996. ]
  3997. },
  3998. "Autofac.Extensions.DependencyInjection/8.0.0": {
  3999. "sha512": "nGrXNpQX2FiZpIBydK9cxZnnoqP/cUd3k/53uRERYEqLtWzKtE15R6L+j5q5ax5Rv/+3wAIkOaPePkahfqrwjg==",
  4000. "type": "package",
  4001. "path": "autofac.extensions.dependencyinjection/8.0.0",
  4002. "files": [
  4003. ".nupkg.metadata",
  4004. ".signature.p7s",
  4005. "autofac.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  4006. "autofac.extensions.dependencyinjection.nuspec",
  4007. "icon.png",
  4008. "lib/net5.0/Autofac.Extensions.DependencyInjection.dll",
  4009. "lib/net5.0/Autofac.Extensions.DependencyInjection.xml",
  4010. "lib/net6.0/Autofac.Extensions.DependencyInjection.dll",
  4011. "lib/net6.0/Autofac.Extensions.DependencyInjection.xml",
  4012. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.dll",
  4013. "lib/netstandard2.0/Autofac.Extensions.DependencyInjection.xml",
  4014. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.dll",
  4015. "lib/netstandard2.1/Autofac.Extensions.DependencyInjection.xml"
  4016. ]
  4017. },
  4018. "Autofac.Extras.DynamicProxy/6.0.1": {
  4019. "sha512": "+ulCOXUjbJ5dljBPZf3gRxQNPRGqg/h1cNTZ4SpXK3qiamTfRsW3gXs2w/IJ+CIDmHrFGYXLqzNd5etvzwB8kA==",
  4020. "type": "package",
  4021. "path": "autofac.extras.dynamicproxy/6.0.1",
  4022. "files": [
  4023. ".nupkg.metadata",
  4024. ".signature.p7s",
  4025. "README.md",
  4026. "autofac.extras.dynamicproxy.6.0.1.nupkg.sha512",
  4027. "autofac.extras.dynamicproxy.nuspec",
  4028. "icon.png",
  4029. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.dll",
  4030. "lib/netstandard2.0/Autofac.Extras.DynamicProxy.xml",
  4031. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.dll",
  4032. "lib/netstandard2.1/Autofac.Extras.DynamicProxy.xml"
  4033. ]
  4034. },
  4035. "AutoMapper/11.0.1": {
  4036. "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==",
  4037. "type": "package",
  4038. "path": "automapper/11.0.1",
  4039. "files": [
  4040. ".nupkg.metadata",
  4041. ".signature.p7s",
  4042. "README.md",
  4043. "automapper.11.0.1.nupkg.sha512",
  4044. "automapper.nuspec",
  4045. "icon.png",
  4046. "lib/netstandard2.1/AutoMapper.dll",
  4047. "lib/netstandard2.1/AutoMapper.xml"
  4048. ]
  4049. },
  4050. "Castle.Core/5.0.0": {
  4051. "sha512": "edc8jjyXqzzy8jFdhs36FZdwmlDDTgqPb2Zy1Q5F/f2uAc88bu/VS/0Tpvgupmpl9zJOvOo5ZizVANb0ltN1NQ==",
  4052. "type": "package",
  4053. "path": "castle.core/5.0.0",
  4054. "files": [
  4055. ".nupkg.metadata",
  4056. ".signature.p7s",
  4057. "ASL - Apache Software Foundation License.txt",
  4058. "CHANGELOG.md",
  4059. "LICENSE",
  4060. "castle-logo.png",
  4061. "castle.core.5.0.0.nupkg.sha512",
  4062. "castle.core.nuspec",
  4063. "lib/net462/Castle.Core.dll",
  4064. "lib/net462/Castle.Core.xml",
  4065. "lib/net6.0/Castle.Core.dll",
  4066. "lib/net6.0/Castle.Core.xml",
  4067. "lib/netstandard2.0/Castle.Core.dll",
  4068. "lib/netstandard2.0/Castle.Core.xml",
  4069. "lib/netstandard2.1/Castle.Core.dll",
  4070. "lib/netstandard2.1/Castle.Core.xml",
  4071. "readme.txt"
  4072. ]
  4073. },
  4074. "Castle.Core.AsyncInterceptor/2.1.0": {
  4075. "sha512": "1vOovJnbjjoCFbPPNLvLTeiqJwoA+aRXkhXcgCQY0pi1eejGqCegJwl58pIIPH/uKDfUXnPIo7aqSrcXEyEH1Q==",
  4076. "type": "package",
  4077. "path": "castle.core.asyncinterceptor/2.1.0",
  4078. "files": [
  4079. ".nupkg.metadata",
  4080. ".signature.p7s",
  4081. "castle-logo.png",
  4082. "castle.core.asyncinterceptor.2.1.0.nupkg.sha512",
  4083. "castle.core.asyncinterceptor.nuspec",
  4084. "lib/net45/Castle.Core.AsyncInterceptor.dll",
  4085. "lib/net45/Castle.Core.AsyncInterceptor.xml",
  4086. "lib/net5.0/Castle.Core.AsyncInterceptor.dll",
  4087. "lib/net5.0/Castle.Core.AsyncInterceptor.xml",
  4088. "lib/net6.0/Castle.Core.AsyncInterceptor.dll",
  4089. "lib/net6.0/Castle.Core.AsyncInterceptor.xml",
  4090. "lib/netstandard2.0/Castle.Core.AsyncInterceptor.dll",
  4091. "lib/netstandard2.0/Castle.Core.AsyncInterceptor.xml"
  4092. ]
  4093. },
  4094. "Google.Protobuf/3.21.9": {
  4095. "sha512": "OTpFujTgkmqMLbg3KT7F/iuKi1rg6s5FCS2M9XcVLDn40zL8wgXm37CY/F6MeOEXKjdcnXGCN/h7oyMkVydVsg==",
  4096. "type": "package",
  4097. "path": "google.protobuf/3.21.9",
  4098. "files": [
  4099. ".nupkg.metadata",
  4100. ".signature.p7s",
  4101. "google.protobuf.3.21.9.nupkg.sha512",
  4102. "google.protobuf.nuspec",
  4103. "lib/net45/Google.Protobuf.dll",
  4104. "lib/net45/Google.Protobuf.pdb",
  4105. "lib/net45/Google.Protobuf.xml",
  4106. "lib/net5.0/Google.Protobuf.dll",
  4107. "lib/net5.0/Google.Protobuf.pdb",
  4108. "lib/net5.0/Google.Protobuf.xml",
  4109. "lib/netstandard1.1/Google.Protobuf.dll",
  4110. "lib/netstandard1.1/Google.Protobuf.pdb",
  4111. "lib/netstandard1.1/Google.Protobuf.xml",
  4112. "lib/netstandard2.0/Google.Protobuf.dll",
  4113. "lib/netstandard2.0/Google.Protobuf.pdb",
  4114. "lib/netstandard2.0/Google.Protobuf.xml"
  4115. ]
  4116. },
  4117. "Humanizer.Core/2.8.26": {
  4118. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  4119. "type": "package",
  4120. "path": "humanizer.core/2.8.26",
  4121. "files": [
  4122. ".nupkg.metadata",
  4123. ".signature.p7s",
  4124. "humanizer.core.2.8.26.nupkg.sha512",
  4125. "humanizer.core.nuspec",
  4126. "lib/netstandard1.0/Humanizer.dll",
  4127. "lib/netstandard1.0/Humanizer.xml",
  4128. "lib/netstandard2.0/Humanizer.dll",
  4129. "lib/netstandard2.0/Humanizer.xml",
  4130. "logo.png"
  4131. ]
  4132. },
  4133. "IdentityModel/4.0.0": {
  4134. "sha512": "Y7i2fezKKKnmxdENfEOpby4Es84e76D16SYcxWKggYraFOvvfKfQAn5KGuuR1X2h1aTrlKZy0lct0NxHg4aVVw==",
  4135. "type": "package",
  4136. "path": "identitymodel/4.0.0",
  4137. "files": [
  4138. ".nupkg.metadata",
  4139. ".signature.p7s",
  4140. "identitymodel.4.0.0.nupkg.sha512",
  4141. "identitymodel.nuspec",
  4142. "lib/net461/IdentityModel.dll",
  4143. "lib/net461/IdentityModel.pdb",
  4144. "lib/net461/IdentityModel.xml",
  4145. "lib/netstandard2.0/IdentityModel.dll",
  4146. "lib/netstandard2.0/IdentityModel.pdb",
  4147. "lib/netstandard2.0/IdentityModel.xml"
  4148. ]
  4149. },
  4150. "IdentityModel.AspNetCore.OAuth2Introspection/4.0.1": {
  4151. "sha512": "ZNdMZMaj9fqR3j50vYsu+1U3QGd6n8+fqwf+a8mCTcmXGor+HgFDfdq0mM34bsmD6uEgAQup7sv2ZW5kR36dbA==",
  4152. "type": "package",
  4153. "path": "identitymodel.aspnetcore.oauth2introspection/4.0.1",
  4154. "files": [
  4155. ".nupkg.metadata",
  4156. ".signature.p7s",
  4157. "icon.jpg",
  4158. "identitymodel.aspnetcore.oauth2introspection.4.0.1.nupkg.sha512",
  4159. "identitymodel.aspnetcore.oauth2introspection.nuspec",
  4160. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.dll",
  4161. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.pdb",
  4162. "lib/netcoreapp3.0/IdentityModel.AspNetCore.OAuth2Introspection.xml"
  4163. ]
  4164. },
  4165. "IdentityServer4.AccessTokenValidation/3.0.1": {
  4166. "sha512": "qu/M6UyN4o9NVep7q545Ms7hYAnsQqSdLbN1Fjjrn4m35lyBfeQPSSNzDryAKHbodyWOQfHaOqKEyMEJQ5Rpgw==",
  4167. "type": "package",
  4168. "path": "identityserver4.accesstokenvalidation/3.0.1",
  4169. "files": [
  4170. ".nupkg.metadata",
  4171. ".signature.p7s",
  4172. "icon.jpg",
  4173. "identityserver4.accesstokenvalidation.3.0.1.nupkg.sha512",
  4174. "identityserver4.accesstokenvalidation.nuspec",
  4175. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.dll",
  4176. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.pdb",
  4177. "lib/netcoreapp3.0/IdentityServer4.AccessTokenValidation.xml"
  4178. ]
  4179. },
  4180. "JetBrains.Annotations/2022.1.0": {
  4181. "sha512": "ASfpoFJxiRsC9Xc4TWuPM41Zb/gl64xwfMOhnOZ3RnVWGYIZchjpWQV5zshJgoc/ZxVtgjaF7b577lURj7E6ig==",
  4182. "type": "package",
  4183. "path": "jetbrains.annotations/2022.1.0",
  4184. "files": [
  4185. ".nupkg.metadata",
  4186. ".signature.p7s",
  4187. "icon.png",
  4188. "jetbrains.annotations.2022.1.0.nupkg.sha512",
  4189. "jetbrains.annotations.nuspec",
  4190. "lib/net20/JetBrains.Annotations.dll",
  4191. "lib/net20/JetBrains.Annotations.xml",
  4192. "lib/netstandard1.0/JetBrains.Annotations.deps.json",
  4193. "lib/netstandard1.0/JetBrains.Annotations.dll",
  4194. "lib/netstandard1.0/JetBrains.Annotations.xml",
  4195. "lib/netstandard2.0/JetBrains.Annotations.deps.json",
  4196. "lib/netstandard2.0/JetBrains.Annotations.dll",
  4197. "lib/netstandard2.0/JetBrains.Annotations.xml",
  4198. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.dll",
  4199. "lib/portable40-net40+sl5+win8+wp8+wpa81/JetBrains.Annotations.xml"
  4200. ]
  4201. },
  4202. "K4os.Compression.LZ4/1.2.6": {
  4203. "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==",
  4204. "type": "package",
  4205. "path": "k4os.compression.lz4/1.2.6",
  4206. "files": [
  4207. ".nupkg.metadata",
  4208. ".signature.p7s",
  4209. "k4os.compression.lz4.1.2.6.nupkg.sha512",
  4210. "k4os.compression.lz4.nuspec",
  4211. "lib/net45/K4os.Compression.LZ4.dll",
  4212. "lib/net45/K4os.Compression.LZ4.xml",
  4213. "lib/net46/K4os.Compression.LZ4.dll",
  4214. "lib/net46/K4os.Compression.LZ4.xml",
  4215. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  4216. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  4217. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  4218. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  4219. ]
  4220. },
  4221. "K4os.Compression.LZ4.Streams/1.2.6": {
  4222. "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==",
  4223. "type": "package",
  4224. "path": "k4os.compression.lz4.streams/1.2.6",
  4225. "files": [
  4226. ".nupkg.metadata",
  4227. ".signature.p7s",
  4228. "k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
  4229. "k4os.compression.lz4.streams.nuspec",
  4230. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  4231. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  4232. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  4233. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  4234. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  4235. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  4236. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  4237. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml",
  4238. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll",
  4239. "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml"
  4240. ]
  4241. },
  4242. "K4os.Hash.xxHash/1.0.6": {
  4243. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  4244. "type": "package",
  4245. "path": "k4os.hash.xxhash/1.0.6",
  4246. "files": [
  4247. ".nupkg.metadata",
  4248. ".signature.p7s",
  4249. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  4250. "k4os.hash.xxhash.nuspec",
  4251. "lib/net45/K4os.Hash.xxHash.dll",
  4252. "lib/net45/K4os.Hash.xxHash.xml",
  4253. "lib/net46/K4os.Hash.xxHash.dll",
  4254. "lib/net46/K4os.Hash.xxHash.xml",
  4255. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  4256. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  4257. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  4258. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  4259. ]
  4260. },
  4261. "Microsoft.AspNetCore.Authentication.JwtBearer/3.0.0": {
  4262. "sha512": "FrlxgBG6+FKlYr1IVxXNXSK7jpxiIYf036VNR1UgopKSIUNjaK2zvkhfVgFZVavagitQ/+UZ8Snnm6axyAVRNg==",
  4263. "type": "package",
  4264. "path": "microsoft.aspnetcore.authentication.jwtbearer/3.0.0",
  4265. "files": [
  4266. ".nupkg.metadata",
  4267. ".signature.p7s",
  4268. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll",
  4269. "lib/netcoreapp3.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml",
  4270. "microsoft.aspnetcore.authentication.jwtbearer.3.0.0.nupkg.sha512",
  4271. "microsoft.aspnetcore.authentication.jwtbearer.nuspec"
  4272. ]
  4273. },
  4274. "Microsoft.AspNetCore.Authorization/6.0.5": {
  4275. "sha512": "T3J4Z4xK/mmJlMv/j7Cs1PZjRLh1fGsvHay3RNBNooP0qhHCk3UnU+WgBvcGApZFnEfeyOEGZBHZv5gb1RrDLA==",
  4276. "type": "package",
  4277. "path": "microsoft.aspnetcore.authorization/6.0.5",
  4278. "files": [
  4279. ".nupkg.metadata",
  4280. ".signature.p7s",
  4281. "Icon.png",
  4282. "THIRD-PARTY-NOTICES.TXT",
  4283. "lib/net461/Microsoft.AspNetCore.Authorization.dll",
  4284. "lib/net461/Microsoft.AspNetCore.Authorization.xml",
  4285. "lib/net6.0/Microsoft.AspNetCore.Authorization.dll",
  4286. "lib/net6.0/Microsoft.AspNetCore.Authorization.xml",
  4287. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  4288. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  4289. "microsoft.aspnetcore.authorization.6.0.5.nupkg.sha512",
  4290. "microsoft.aspnetcore.authorization.nuspec"
  4291. ]
  4292. },
  4293. "Microsoft.AspNetCore.Cryptography.Internal/6.0.3": {
  4294. "sha512": "x90uNiEssA16NRSJ0nYIBJRC2GVVs2pmvHR88MySsolexasmc449PmWkSVHok+FyA1gLfF0oVA4LjkngkWdlGw==",
  4295. "type": "package",
  4296. "path": "microsoft.aspnetcore.cryptography.internal/6.0.3",
  4297. "files": [
  4298. ".nupkg.metadata",
  4299. ".signature.p7s",
  4300. "Icon.png",
  4301. "THIRD-PARTY-NOTICES.TXT",
  4302. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4303. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4304. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4305. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4306. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4307. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4308. "microsoft.aspnetcore.cryptography.internal.6.0.3.nupkg.sha512",
  4309. "microsoft.aspnetcore.cryptography.internal.nuspec"
  4310. ]
  4311. },
  4312. "Microsoft.AspNetCore.DataProtection/6.0.3": {
  4313. "sha512": "bPWpqSMFbhI7fGJ5DuBYdaMrulKxXdfGZYoZCgI3QxCoIn/nYKEQhX40KRXC/ZNucGJAxUGXzBSzz9TV1QTsXg==",
  4314. "type": "package",
  4315. "path": "microsoft.aspnetcore.dataprotection/6.0.3",
  4316. "files": [
  4317. ".nupkg.metadata",
  4318. ".signature.p7s",
  4319. "Icon.png",
  4320. "THIRD-PARTY-NOTICES.TXT",
  4321. "lib/net461/Microsoft.AspNetCore.DataProtection.dll",
  4322. "lib/net461/Microsoft.AspNetCore.DataProtection.xml",
  4323. "lib/net6.0/Microsoft.AspNetCore.DataProtection.dll",
  4324. "lib/net6.0/Microsoft.AspNetCore.DataProtection.xml",
  4325. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll",
  4326. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml",
  4327. "microsoft.aspnetcore.dataprotection.6.0.3.nupkg.sha512",
  4328. "microsoft.aspnetcore.dataprotection.nuspec"
  4329. ]
  4330. },
  4331. "Microsoft.AspNetCore.DataProtection.Abstractions/6.0.3": {
  4332. "sha512": "xCMiU/vTn4GH6IMJEcWiwC2HZTdmTGVZ7BlllAfkVUmKX5yI3EE+CcUgo3SCNMJo3jznYuaq5n82Kt0YsZKymg==",
  4333. "type": "package",
  4334. "path": "microsoft.aspnetcore.dataprotection.abstractions/6.0.3",
  4335. "files": [
  4336. ".nupkg.metadata",
  4337. ".signature.p7s",
  4338. "Icon.png",
  4339. "THIRD-PARTY-NOTICES.TXT",
  4340. "lib/net461/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4341. "lib/net461/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4342. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4343. "lib/net6.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4344. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4345. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4346. "microsoft.aspnetcore.dataprotection.abstractions.6.0.3.nupkg.sha512",
  4347. "microsoft.aspnetcore.dataprotection.abstractions.nuspec"
  4348. ]
  4349. },
  4350. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis/6.0.3": {
  4351. "sha512": "eeG+W7SEtiv+NJs8PqOAKsmXorq/RfiJadTg53WNnND4mc3le/7sTpR/+mazOLjNGNgWfGSkOkh0zCq4y03FUA==",
  4352. "type": "package",
  4353. "path": "microsoft.aspnetcore.dataprotection.stackexchangeredis/6.0.3",
  4354. "files": [
  4355. ".nupkg.metadata",
  4356. ".signature.p7s",
  4357. "Icon.png",
  4358. "THIRD-PARTY-NOTICES.TXT",
  4359. "lib/net461/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll",
  4360. "lib/net461/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.xml",
  4361. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll",
  4362. "lib/net6.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.xml",
  4363. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.dll",
  4364. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.StackExchangeRedis.xml",
  4365. "microsoft.aspnetcore.dataprotection.stackexchangeredis.6.0.3.nupkg.sha512",
  4366. "microsoft.aspnetcore.dataprotection.stackexchangeredis.nuspec"
  4367. ]
  4368. },
  4369. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  4370. "sha512": "3jG2xS+dx8DDCGV/F+STdPTg89lX3ao3dF/VEPvJaz3wzBIjuadipTtYNEXDIVuOPZwb6jdmhrX9jkzOIBm5cw==",
  4371. "type": "package",
  4372. "path": "microsoft.aspnetcore.http.features/5.0.17",
  4373. "files": [
  4374. ".nupkg.metadata",
  4375. ".signature.p7s",
  4376. "Icon.png",
  4377. "THIRD-PARTY-NOTICES.TXT",
  4378. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4379. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4380. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4381. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4382. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4383. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4384. "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512",
  4385. "microsoft.aspnetcore.http.features.nuspec"
  4386. ]
  4387. },
  4388. "Microsoft.AspNetCore.JsonPatch/6.0.5": {
  4389. "sha512": "kxQR7xCm9pQxnM3UZBp45Z470LFa1VA0qG/hFKhpE5hOJKgLOu4zmxakoVqswptAnHuD6ghd7XGb7hm1s1D0lw==",
  4390. "type": "package",
  4391. "path": "microsoft.aspnetcore.jsonpatch/6.0.5",
  4392. "files": [
  4393. ".nupkg.metadata",
  4394. ".signature.p7s",
  4395. "Icon.png",
  4396. "THIRD-PARTY-NOTICES.TXT",
  4397. "lib/net461/Microsoft.AspNetCore.JsonPatch.dll",
  4398. "lib/net461/Microsoft.AspNetCore.JsonPatch.xml",
  4399. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.dll",
  4400. "lib/net6.0/Microsoft.AspNetCore.JsonPatch.xml",
  4401. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  4402. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  4403. "microsoft.aspnetcore.jsonpatch.6.0.5.nupkg.sha512",
  4404. "microsoft.aspnetcore.jsonpatch.nuspec"
  4405. ]
  4406. },
  4407. "Microsoft.AspNetCore.Metadata/6.0.5": {
  4408. "sha512": "4VRJoJa/EbncxQTAzM6abqQUUbNrohg5MC1glZ1R1lzzXJM2CdXiRKvcpAfn3luAwPzkwJtHejuLgI6Osn0aDA==",
  4409. "type": "package",
  4410. "path": "microsoft.aspnetcore.metadata/6.0.5",
  4411. "files": [
  4412. ".nupkg.metadata",
  4413. ".signature.p7s",
  4414. "Icon.png",
  4415. "THIRD-PARTY-NOTICES.TXT",
  4416. "lib/net461/Microsoft.AspNetCore.Metadata.dll",
  4417. "lib/net461/Microsoft.AspNetCore.Metadata.xml",
  4418. "lib/net6.0/Microsoft.AspNetCore.Metadata.dll",
  4419. "lib/net6.0/Microsoft.AspNetCore.Metadata.xml",
  4420. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
  4421. "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
  4422. "microsoft.aspnetcore.metadata.6.0.5.nupkg.sha512",
  4423. "microsoft.aspnetcore.metadata.nuspec"
  4424. ]
  4425. },
  4426. "Microsoft.AspNetCore.Mvc.NewtonsoftJson/6.0.5": {
  4427. "sha512": "ord2AixR+h2xmv7LPAtifz5k4MHV0BVtzyp2UyB1+gILT+xw4usAvTWo0SX1ruBk3GK4kyhHa9cgQt0yafR2dQ==",
  4428. "type": "package",
  4429. "path": "microsoft.aspnetcore.mvc.newtonsoftjson/6.0.5",
  4430. "files": [
  4431. ".nupkg.metadata",
  4432. ".signature.p7s",
  4433. "Icon.png",
  4434. "THIRD-PARTY-NOTICES.TXT",
  4435. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll",
  4436. "lib/net6.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.xml",
  4437. "microsoft.aspnetcore.mvc.newtonsoftjson.6.0.5.nupkg.sha512",
  4438. "microsoft.aspnetcore.mvc.newtonsoftjson.nuspec"
  4439. ]
  4440. },
  4441. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.5": {
  4442. "sha512": "d+eStMVaYtT43O0B7WxO24RSixQQipiEddOHP6juS7yiDT5mPcvGwXdZ09yvfyqbBbD0+h9dRwsHQOm3jfVgCg==",
  4443. "type": "package",
  4444. "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.5",
  4445. "files": [
  4446. ".nupkg.metadata",
  4447. ".signature.p7s",
  4448. "Icon.png",
  4449. "THIRD-PARTY-NOTICES.TXT",
  4450. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  4451. "microsoft.aspnetcore.mvc.razor.extensions.6.0.5.nupkg.sha512",
  4452. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  4453. ]
  4454. },
  4455. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/6.0.5": {
  4456. "sha512": "ZojV4R0naJqftc3d9Fjb6kNqrPZxhCVa4yps0ZIRhfRgz+1fy8uIROrixNezduKDGo1hMQErRMDGKOrzB18XQA==",
  4457. "type": "package",
  4458. "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/6.0.5",
  4459. "files": [
  4460. ".nupkg.metadata",
  4461. ".signature.p7s",
  4462. "Icon.png",
  4463. "THIRD-PARTY-NOTICES.TXT",
  4464. "build/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  4465. "buildTransitive/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  4466. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll",
  4467. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml",
  4468. "microsoft.aspnetcore.mvc.razor.runtimecompilation.6.0.5.nupkg.sha512",
  4469. "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec"
  4470. ]
  4471. },
  4472. "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": {
  4473. "sha512": "mN9IARvNpHMBD2/oGmp5Bxp1Dg45Hfcp+LWaAyTtL2HisWLMOIcf0Ox1qW9IvCvdbHM+2A9dWEInhiqBsNxsJA==",
  4474. "type": "package",
  4475. "path": "microsoft.aspnetcore.mvc.versioning/5.0.0",
  4476. "files": [
  4477. ".nupkg.metadata",
  4478. ".signature.p7s",
  4479. "LICENSE.txt",
  4480. "icon.png",
  4481. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll",
  4482. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.pdb",
  4483. "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.xml",
  4484. "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.dll",
  4485. "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.pdb",
  4486. "lib/netcoreapp3.1/Microsoft.AspNetCore.Mvc.Versioning.xml",
  4487. "microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512",
  4488. "microsoft.aspnetcore.mvc.versioning.nuspec"
  4489. ]
  4490. },
  4491. "Microsoft.AspNetCore.Razor.Language/6.0.5": {
  4492. "sha512": "0U+jIqo4hSUFOf/GiYtQ62aCM2SK2E3LJH+hpmLsSD8hl++0LOSKH5AIQO6KmANfmF04jEdvGPD0B0hBTM3zxA==",
  4493. "type": "package",
  4494. "path": "microsoft.aspnetcore.razor.language/6.0.5",
  4495. "files": [
  4496. ".nupkg.metadata",
  4497. ".signature.p7s",
  4498. "Icon.png",
  4499. "THIRD-PARTY-NOTICES.TXT",
  4500. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  4501. "microsoft.aspnetcore.razor.language.6.0.5.nupkg.sha512",
  4502. "microsoft.aspnetcore.razor.language.nuspec"
  4503. ]
  4504. },
  4505. "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
  4506. "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
  4507. "type": "package",
  4508. "path": "microsoft.bcl.asyncinterfaces/6.0.0",
  4509. "files": [
  4510. ".nupkg.metadata",
  4511. ".signature.p7s",
  4512. "Icon.png",
  4513. "LICENSE.TXT",
  4514. "THIRD-PARTY-NOTICES.TXT",
  4515. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  4516. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  4517. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4518. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  4519. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4520. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  4521. "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
  4522. "microsoft.bcl.asyncinterfaces.nuspec",
  4523. "useSharedDesignerContext.txt"
  4524. ]
  4525. },
  4526. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  4527. "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==",
  4528. "type": "package",
  4529. "path": "microsoft.codeanalysis.analyzers/3.3.2",
  4530. "hasTools": true,
  4531. "files": [
  4532. ".nupkg.metadata",
  4533. ".signature.p7s",
  4534. "EULA.rtf",
  4535. "ThirdPartyNotices.rtf",
  4536. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4537. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4538. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4539. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4540. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4541. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4542. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4543. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4544. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4545. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4546. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4547. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4548. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4549. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4550. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4551. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4552. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4553. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4554. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4555. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4556. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4557. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4558. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4559. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4560. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4561. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4562. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4563. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4564. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4565. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4566. "build/Microsoft.CodeAnalysis.Analyzers.props",
  4567. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  4568. "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig",
  4569. "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig",
  4570. "build/config/AnalysisLevel_2_9_8_Default.editorconfig",
  4571. "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig",
  4572. "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig",
  4573. "build/config/AnalysisLevel_3_3_Default.editorconfig",
  4574. "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig",
  4575. "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig",
  4576. "build/config/AnalysisLevel_3_Default.editorconfig",
  4577. "documentation/Analyzer Configuration.md",
  4578. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  4579. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  4580. "editorconfig/AllRulesDefault/.editorconfig",
  4581. "editorconfig/AllRulesDisabled/.editorconfig",
  4582. "editorconfig/AllRulesEnabled/.editorconfig",
  4583. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  4584. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  4585. "editorconfig/DataflowRulesDefault/.editorconfig",
  4586. "editorconfig/DataflowRulesEnabled/.editorconfig",
  4587. "editorconfig/LibraryRulesDefault/.editorconfig",
  4588. "editorconfig/LibraryRulesEnabled/.editorconfig",
  4589. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  4590. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  4591. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  4592. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  4593. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  4594. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  4595. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  4596. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  4597. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  4598. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  4599. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  4600. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  4601. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  4602. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  4603. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  4604. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  4605. "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512",
  4606. "microsoft.codeanalysis.analyzers.nuspec",
  4607. "rulesets/AllRulesDefault.ruleset",
  4608. "rulesets/AllRulesDisabled.ruleset",
  4609. "rulesets/AllRulesEnabled.ruleset",
  4610. "rulesets/CorrectnessRulesDefault.ruleset",
  4611. "rulesets/CorrectnessRulesEnabled.ruleset",
  4612. "rulesets/DataflowRulesDefault.ruleset",
  4613. "rulesets/DataflowRulesEnabled.ruleset",
  4614. "rulesets/LibraryRulesDefault.ruleset",
  4615. "rulesets/LibraryRulesEnabled.ruleset",
  4616. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  4617. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  4618. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  4619. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  4620. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  4621. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  4622. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  4623. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  4624. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  4625. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  4626. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  4627. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  4628. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  4629. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  4630. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  4631. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  4632. "tools/install.ps1",
  4633. "tools/uninstall.ps1"
  4634. ]
  4635. },
  4636. "Microsoft.CodeAnalysis.Common/4.0.0": {
  4637. "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==",
  4638. "type": "package",
  4639. "path": "microsoft.codeanalysis.common/4.0.0",
  4640. "files": [
  4641. ".nupkg.metadata",
  4642. ".signature.p7s",
  4643. "Icon.png",
  4644. "ThirdPartyNotices.rtf",
  4645. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  4646. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  4647. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  4648. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  4649. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  4650. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  4651. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  4652. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  4653. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  4654. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  4655. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  4656. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4657. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  4658. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  4659. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4660. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4661. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  4662. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  4663. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  4664. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4665. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  4666. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  4667. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4668. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  4669. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4670. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4671. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4672. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4673. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4674. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4675. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4676. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4677. "microsoft.codeanalysis.common.4.0.0.nupkg.sha512",
  4678. "microsoft.codeanalysis.common.nuspec"
  4679. ]
  4680. },
  4681. "Microsoft.CodeAnalysis.CSharp/4.0.0": {
  4682. "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==",
  4683. "type": "package",
  4684. "path": "microsoft.codeanalysis.csharp/4.0.0",
  4685. "files": [
  4686. ".nupkg.metadata",
  4687. ".signature.p7s",
  4688. "Icon.png",
  4689. "ThirdPartyNotices.rtf",
  4690. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  4691. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  4692. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  4693. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4694. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4695. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4696. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4697. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4698. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4699. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4700. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4701. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4702. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4703. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4704. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4705. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4706. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  4707. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4708. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  4709. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4710. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4711. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4712. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4713. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4714. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4715. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4716. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4717. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4718. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4719. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4720. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4721. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4722. "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512",
  4723. "microsoft.codeanalysis.csharp.nuspec"
  4724. ]
  4725. },
  4726. "Microsoft.CodeAnalysis.Razor/6.0.5": {
  4727. "sha512": "hASP/Ift9GVUKWqaC71XqCTYxXGSTuj8Lt+0mI6JBZbyDyNwHLxbNgpcWgddusgwqc6RJnrEkeZXTwFVN1CwOQ==",
  4728. "type": "package",
  4729. "path": "microsoft.codeanalysis.razor/6.0.5",
  4730. "files": [
  4731. ".nupkg.metadata",
  4732. ".signature.p7s",
  4733. "Icon.png",
  4734. "THIRD-PARTY-NOTICES.TXT",
  4735. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  4736. "microsoft.codeanalysis.razor.6.0.5.nupkg.sha512",
  4737. "microsoft.codeanalysis.razor.nuspec"
  4738. ]
  4739. },
  4740. "Microsoft.CSharp/4.7.0": {
  4741. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4742. "type": "package",
  4743. "path": "microsoft.csharp/4.7.0",
  4744. "files": [
  4745. ".nupkg.metadata",
  4746. ".signature.p7s",
  4747. "LICENSE.TXT",
  4748. "THIRD-PARTY-NOTICES.TXT",
  4749. "lib/MonoAndroid10/_._",
  4750. "lib/MonoTouch10/_._",
  4751. "lib/net45/_._",
  4752. "lib/netcore50/Microsoft.CSharp.dll",
  4753. "lib/netcoreapp2.0/_._",
  4754. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4755. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4756. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4757. "lib/portable-net45+win8+wp8+wpa81/_._",
  4758. "lib/uap10.0.16299/_._",
  4759. "lib/win8/_._",
  4760. "lib/wp80/_._",
  4761. "lib/wpa81/_._",
  4762. "lib/xamarinios10/_._",
  4763. "lib/xamarinmac20/_._",
  4764. "lib/xamarintvos10/_._",
  4765. "lib/xamarinwatchos10/_._",
  4766. "microsoft.csharp.4.7.0.nupkg.sha512",
  4767. "microsoft.csharp.nuspec",
  4768. "ref/MonoAndroid10/_._",
  4769. "ref/MonoTouch10/_._",
  4770. "ref/net45/_._",
  4771. "ref/netcore50/Microsoft.CSharp.dll",
  4772. "ref/netcore50/Microsoft.CSharp.xml",
  4773. "ref/netcore50/de/Microsoft.CSharp.xml",
  4774. "ref/netcore50/es/Microsoft.CSharp.xml",
  4775. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4776. "ref/netcore50/it/Microsoft.CSharp.xml",
  4777. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4778. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4779. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4780. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4781. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4782. "ref/netcoreapp2.0/_._",
  4783. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4784. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4785. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4786. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4787. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4788. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4789. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4790. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4791. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4792. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4793. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4794. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4795. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4796. "ref/portable-net45+win8+wp8+wpa81/_._",
  4797. "ref/uap10.0.16299/_._",
  4798. "ref/win8/_._",
  4799. "ref/wp80/_._",
  4800. "ref/wpa81/_._",
  4801. "ref/xamarinios10/_._",
  4802. "ref/xamarinmac20/_._",
  4803. "ref/xamarintvos10/_._",
  4804. "ref/xamarinwatchos10/_._",
  4805. "useSharedDesignerContext.txt",
  4806. "version.txt"
  4807. ]
  4808. },
  4809. "Microsoft.EntityFrameworkCore/6.0.5": {
  4810. "sha512": "hP5J3EvpVdZmCn1D3ovedphvZrIn3OXZaBZfEnCkSCqqbqAu6xzwbNqwRkik0y4R6zOOf4eLh1riwjy4eAUlZA==",
  4811. "type": "package",
  4812. "path": "microsoft.entityframeworkcore/6.0.5",
  4813. "files": [
  4814. ".nupkg.metadata",
  4815. ".signature.p7s",
  4816. "Icon.png",
  4817. "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
  4818. "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
  4819. "microsoft.entityframeworkcore.6.0.5.nupkg.sha512",
  4820. "microsoft.entityframeworkcore.nuspec"
  4821. ]
  4822. },
  4823. "Microsoft.EntityFrameworkCore.Abstractions/6.0.5": {
  4824. "sha512": "Q3/fKW6XCTfnDk4fYP2BJZi84cD2SuCPkP3A3QqxvCQcXbX90bfSLzVIsoMXzigHGJgZUJ+Un7QodT5Nvk0+Eg==",
  4825. "type": "package",
  4826. "path": "microsoft.entityframeworkcore.abstractions/6.0.5",
  4827. "files": [
  4828. ".nupkg.metadata",
  4829. ".signature.p7s",
  4830. "Icon.png",
  4831. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4832. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4833. "microsoft.entityframeworkcore.abstractions.6.0.5.nupkg.sha512",
  4834. "microsoft.entityframeworkcore.abstractions.nuspec"
  4835. ]
  4836. },
  4837. "Microsoft.EntityFrameworkCore.Analyzers/6.0.5": {
  4838. "sha512": "QUeDIhs+O+MoDEc3k60mNyVDbwyDURCqZQlZoKShuZUcSfXSrDMbHKuFSxBIDNQBt092qSjfnwf7w0Ua/IB3Zw==",
  4839. "type": "package",
  4840. "path": "microsoft.entityframeworkcore.analyzers/6.0.5",
  4841. "files": [
  4842. ".nupkg.metadata",
  4843. ".signature.p7s",
  4844. "Icon.png",
  4845. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4846. "lib/netstandard2.0/_._",
  4847. "microsoft.entityframeworkcore.analyzers.6.0.5.nupkg.sha512",
  4848. "microsoft.entityframeworkcore.analyzers.nuspec"
  4849. ]
  4850. },
  4851. "Microsoft.EntityFrameworkCore.Design/6.0.5": {
  4852. "sha512": "zNjMWJ6MJ/Qm7S6wFBqVgn7DEpilbDMy0xgA7c4Y1yY9/LoaC2pWwWO4ePaYoPCZpLx/eTViWEr5ZXta/vK//Q==",
  4853. "type": "package",
  4854. "path": "microsoft.entityframeworkcore.design/6.0.5",
  4855. "files": [
  4856. ".nupkg.metadata",
  4857. ".signature.p7s",
  4858. "Icon.png",
  4859. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
  4860. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
  4861. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
  4862. "microsoft.entityframeworkcore.design.6.0.5.nupkg.sha512",
  4863. "microsoft.entityframeworkcore.design.nuspec"
  4864. ]
  4865. },
  4866. "Microsoft.EntityFrameworkCore.Relational/6.0.5": {
  4867. "sha512": "vhAQizlAgvPfurkh9XysNaFc/g3WPXtSka3Y1rXuQdnT//p16CDKt9lO9h+rYmooD+cA7TijSxwqck4GApDT/Q==",
  4868. "type": "package",
  4869. "path": "microsoft.entityframeworkcore.relational/6.0.5",
  4870. "files": [
  4871. ".nupkg.metadata",
  4872. ".signature.p7s",
  4873. "Icon.png",
  4874. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
  4875. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
  4876. "microsoft.entityframeworkcore.relational.6.0.5.nupkg.sha512",
  4877. "microsoft.entityframeworkcore.relational.nuspec"
  4878. ]
  4879. },
  4880. "Microsoft.EntityFrameworkCore.Tools/6.0.5": {
  4881. "sha512": "aeCzVNLmDl9IfB19WAjrlKcG61Cl4/ZV/9ubifmifKEps+kvMkKIcams5j+8q6dtx9/UL2x3tbOz2BS3eU0sXQ==",
  4882. "type": "package",
  4883. "path": "microsoft.entityframeworkcore.tools/6.0.5",
  4884. "hasTools": true,
  4885. "files": [
  4886. ".nupkg.metadata",
  4887. ".signature.p7s",
  4888. "Icon.png",
  4889. "lib/net6.0/_._",
  4890. "microsoft.entityframeworkcore.tools.6.0.5.nupkg.sha512",
  4891. "microsoft.entityframeworkcore.tools.nuspec",
  4892. "tools/EntityFrameworkCore.PS2.psd1",
  4893. "tools/EntityFrameworkCore.PS2.psm1",
  4894. "tools/EntityFrameworkCore.psd1",
  4895. "tools/EntityFrameworkCore.psm1",
  4896. "tools/about_EntityFrameworkCore.help.txt",
  4897. "tools/init.ps1",
  4898. "tools/net461/any/ef.exe",
  4899. "tools/net461/win-x86/ef.exe",
  4900. "tools/netcoreapp2.0/any/ef.dll",
  4901. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  4902. ]
  4903. },
  4904. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4905. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4906. "type": "package",
  4907. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4908. "hasTools": true,
  4909. "files": [
  4910. ".nupkg.metadata",
  4911. ".signature.p7s",
  4912. "build/Microsoft.Extensions.ApiDescription.Server.props",
  4913. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  4914. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  4915. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  4916. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  4917. "microsoft.extensions.apidescription.server.nuspec",
  4918. "tools/Newtonsoft.Json.dll",
  4919. "tools/dotnet-getdocument.deps.json",
  4920. "tools/dotnet-getdocument.dll",
  4921. "tools/dotnet-getdocument.runtimeconfig.json",
  4922. "tools/net461-x86/GetDocument.Insider.exe",
  4923. "tools/net461-x86/GetDocument.Insider.exe.config",
  4924. "tools/net461/GetDocument.Insider.exe",
  4925. "tools/net461/GetDocument.Insider.exe.config",
  4926. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  4927. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  4928. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  4929. ]
  4930. },
  4931. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  4932. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  4933. "type": "package",
  4934. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  4935. "files": [
  4936. ".nupkg.metadata",
  4937. ".signature.p7s",
  4938. "Icon.png",
  4939. "LICENSE.TXT",
  4940. "THIRD-PARTY-NOTICES.TXT",
  4941. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4942. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4943. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4944. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4945. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  4946. "microsoft.extensions.caching.abstractions.nuspec",
  4947. "useSharedDesignerContext.txt"
  4948. ]
  4949. },
  4950. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  4951. "sha512": "B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
  4952. "type": "package",
  4953. "path": "microsoft.extensions.caching.memory/6.0.1",
  4954. "files": [
  4955. ".nupkg.metadata",
  4956. ".signature.p7s",
  4957. "Icon.png",
  4958. "LICENSE.TXT",
  4959. "THIRD-PARTY-NOTICES.TXT",
  4960. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4961. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4962. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4963. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4964. "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
  4965. "microsoft.extensions.caching.memory.nuspec",
  4966. "useSharedDesignerContext.txt"
  4967. ]
  4968. },
  4969. "Microsoft.Extensions.Caching.StackExchangeRedis/6.0.3": {
  4970. "sha512": "kqMJ+kLoSMk2EJe5u+4QQSv7m9cCllcJ+4bjvwfR4cjro3rfAXHIsah/87pedAvdUFk9iMYLl8RYf/uSUEkH2g==",
  4971. "type": "package",
  4972. "path": "microsoft.extensions.caching.stackexchangeredis/6.0.3",
  4973. "files": [
  4974. ".nupkg.metadata",
  4975. ".signature.p7s",
  4976. "Icon.png",
  4977. "THIRD-PARTY-NOTICES.TXT",
  4978. "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.dll",
  4979. "lib/net461/Microsoft.Extensions.Caching.StackExchangeRedis.xml",
  4980. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll",
  4981. "lib/net6.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml",
  4982. "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.dll",
  4983. "lib/netstandard2.0/Microsoft.Extensions.Caching.StackExchangeRedis.xml",
  4984. "microsoft.extensions.caching.stackexchangeredis.6.0.3.nupkg.sha512",
  4985. "microsoft.extensions.caching.stackexchangeredis.nuspec"
  4986. ]
  4987. },
  4988. "Microsoft.Extensions.Configuration/6.0.0": {
  4989. "sha512": "tq2wXyh3fL17EMF2bXgRhU7JrbO3on93MRKYxzz4JzzvuGSA1l0W3GI9/tl8EO89TH+KWEymP7bcFway6z9fXg==",
  4990. "type": "package",
  4991. "path": "microsoft.extensions.configuration/6.0.0",
  4992. "files": [
  4993. ".nupkg.metadata",
  4994. ".signature.p7s",
  4995. "Icon.png",
  4996. "LICENSE.TXT",
  4997. "THIRD-PARTY-NOTICES.TXT",
  4998. "lib/net461/Microsoft.Extensions.Configuration.dll",
  4999. "lib/net461/Microsoft.Extensions.Configuration.xml",
  5000. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  5001. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  5002. "microsoft.extensions.configuration.6.0.0.nupkg.sha512",
  5003. "microsoft.extensions.configuration.nuspec",
  5004. "useSharedDesignerContext.txt"
  5005. ]
  5006. },
  5007. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  5008. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  5009. "type": "package",
  5010. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  5011. "files": [
  5012. ".nupkg.metadata",
  5013. ".signature.p7s",
  5014. "Icon.png",
  5015. "LICENSE.TXT",
  5016. "THIRD-PARTY-NOTICES.TXT",
  5017. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  5018. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  5019. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5020. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5021. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  5022. "microsoft.extensions.configuration.abstractions.nuspec",
  5023. "useSharedDesignerContext.txt"
  5024. ]
  5025. },
  5026. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  5027. "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==",
  5028. "type": "package",
  5029. "path": "microsoft.extensions.configuration.binder/6.0.0",
  5030. "files": [
  5031. ".nupkg.metadata",
  5032. ".signature.p7s",
  5033. "Icon.png",
  5034. "LICENSE.TXT",
  5035. "THIRD-PARTY-NOTICES.TXT",
  5036. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  5037. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  5038. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  5039. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  5040. "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
  5041. "microsoft.extensions.configuration.binder.nuspec",
  5042. "useSharedDesignerContext.txt"
  5043. ]
  5044. },
  5045. "Microsoft.Extensions.Configuration.CommandLine/6.0.0": {
  5046. "sha512": "3nL1qCkZ1Oxx14ZTzgo4MmlO7tso7F+TtMZAY2jUAtTLyAcDp+EDjk3RqafoKiNaePyPvvlleEcBxh3b2Hzl1g==",
  5047. "type": "package",
  5048. "path": "microsoft.extensions.configuration.commandline/6.0.0",
  5049. "files": [
  5050. ".nupkg.metadata",
  5051. ".signature.p7s",
  5052. "Icon.png",
  5053. "LICENSE.TXT",
  5054. "THIRD-PARTY-NOTICES.TXT",
  5055. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.dll",
  5056. "lib/net461/Microsoft.Extensions.Configuration.CommandLine.xml",
  5057. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  5058. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  5059. "microsoft.extensions.configuration.commandline.6.0.0.nupkg.sha512",
  5060. "microsoft.extensions.configuration.commandline.nuspec",
  5061. "useSharedDesignerContext.txt"
  5062. ]
  5063. },
  5064. "Microsoft.Extensions.Configuration.EnvironmentVariables/6.0.1": {
  5065. "sha512": "pnyXV1LFOsYjGveuC07xp0YHIyGq7jRq5Ncb5zrrIieMLWVwgMyYxcOH0jTnBedDT4Gh1QinSqsjqzcieHk1og==",
  5066. "type": "package",
  5067. "path": "microsoft.extensions.configuration.environmentvariables/6.0.1",
  5068. "files": [
  5069. ".nupkg.metadata",
  5070. ".signature.p7s",
  5071. "Icon.png",
  5072. "LICENSE.TXT",
  5073. "THIRD-PARTY-NOTICES.TXT",
  5074. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  5075. "lib/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  5076. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  5077. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  5078. "microsoft.extensions.configuration.environmentvariables.6.0.1.nupkg.sha512",
  5079. "microsoft.extensions.configuration.environmentvariables.nuspec",
  5080. "useSharedDesignerContext.txt"
  5081. ]
  5082. },
  5083. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  5084. "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==",
  5085. "type": "package",
  5086. "path": "microsoft.extensions.configuration.fileextensions/6.0.0",
  5087. "files": [
  5088. ".nupkg.metadata",
  5089. ".signature.p7s",
  5090. "Icon.png",
  5091. "LICENSE.TXT",
  5092. "THIRD-PARTY-NOTICES.TXT",
  5093. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  5094. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  5095. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  5096. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  5097. "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512",
  5098. "microsoft.extensions.configuration.fileextensions.nuspec",
  5099. "useSharedDesignerContext.txt"
  5100. ]
  5101. },
  5102. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  5103. "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==",
  5104. "type": "package",
  5105. "path": "microsoft.extensions.configuration.json/6.0.0",
  5106. "files": [
  5107. ".nupkg.metadata",
  5108. ".signature.p7s",
  5109. "Icon.png",
  5110. "LICENSE.TXT",
  5111. "THIRD-PARTY-NOTICES.TXT",
  5112. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  5113. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  5114. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  5115. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  5116. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  5117. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  5118. "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512",
  5119. "microsoft.extensions.configuration.json.nuspec",
  5120. "useSharedDesignerContext.txt"
  5121. ]
  5122. },
  5123. "Microsoft.Extensions.Configuration.UserSecrets/6.0.1": {
  5124. "sha512": "Fy8yr4V6obi7ZxvKYI1i85jqtwMq8tqyxQVZpRSkgeA8enqy/KvBIMdcuNdznlxQMZa72mvbHqb7vbg4Pyx95w==",
  5125. "type": "package",
  5126. "path": "microsoft.extensions.configuration.usersecrets/6.0.1",
  5127. "files": [
  5128. ".nupkg.metadata",
  5129. ".signature.p7s",
  5130. "Icon.png",
  5131. "LICENSE.TXT",
  5132. "THIRD-PARTY-NOTICES.TXT",
  5133. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  5134. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  5135. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.dll",
  5136. "lib/net461/Microsoft.Extensions.Configuration.UserSecrets.xml",
  5137. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  5138. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  5139. "microsoft.extensions.configuration.usersecrets.6.0.1.nupkg.sha512",
  5140. "microsoft.extensions.configuration.usersecrets.nuspec",
  5141. "useSharedDesignerContext.txt"
  5142. ]
  5143. },
  5144. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  5145. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  5146. "type": "package",
  5147. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  5148. "files": [
  5149. ".nupkg.metadata",
  5150. ".signature.p7s",
  5151. "Icon.png",
  5152. "LICENSE.TXT",
  5153. "THIRD-PARTY-NOTICES.TXT",
  5154. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  5155. "buildTransitive/netcoreapp3.1/_._",
  5156. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  5157. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  5158. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  5159. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  5160. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  5161. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  5162. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  5163. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  5164. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  5165. "microsoft.extensions.dependencyinjection.nuspec",
  5166. "useSharedDesignerContext.txt"
  5167. ]
  5168. },
  5169. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  5170. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  5171. "type": "package",
  5172. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  5173. "files": [
  5174. ".nupkg.metadata",
  5175. ".signature.p7s",
  5176. "Icon.png",
  5177. "LICENSE.TXT",
  5178. "THIRD-PARTY-NOTICES.TXT",
  5179. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  5180. "buildTransitive/netcoreapp3.1/_._",
  5181. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5182. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5183. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5184. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5185. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5186. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5187. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5188. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5189. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  5190. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  5191. "useSharedDesignerContext.txt"
  5192. ]
  5193. },
  5194. "Microsoft.Extensions.DependencyModel/6.0.0": {
  5195. "sha512": "TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==",
  5196. "type": "package",
  5197. "path": "microsoft.extensions.dependencymodel/6.0.0",
  5198. "files": [
  5199. ".nupkg.metadata",
  5200. ".signature.p7s",
  5201. "Icon.png",
  5202. "LICENSE.TXT",
  5203. "THIRD-PARTY-NOTICES.TXT",
  5204. "lib/net461/Microsoft.Extensions.DependencyModel.dll",
  5205. "lib/net461/Microsoft.Extensions.DependencyModel.xml",
  5206. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  5207. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  5208. "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512",
  5209. "microsoft.extensions.dependencymodel.nuspec",
  5210. "useSharedDesignerContext.txt"
  5211. ]
  5212. },
  5213. "Microsoft.Extensions.Diagnostics.HealthChecks/6.0.0": {
  5214. "sha512": "ktOGFY2uJ6QqZbLgLZgYg6qWuOnwKEIYbpgGDR/1QY8E+8NhnL75dJZ+WDl88h7Q4JkIFeTkFBUGF5QmNcfUEg==",
  5215. "type": "package",
  5216. "path": "microsoft.extensions.diagnostics.healthchecks/6.0.0",
  5217. "files": [
  5218. ".nupkg.metadata",
  5219. ".signature.p7s",
  5220. "Icon.png",
  5221. "THIRD-PARTY-NOTICES.TXT",
  5222. "lib/net461/Microsoft.Extensions.Diagnostics.HealthChecks.dll",
  5223. "lib/net461/Microsoft.Extensions.Diagnostics.HealthChecks.xml",
  5224. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll",
  5225. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.xml",
  5226. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.dll",
  5227. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.xml",
  5228. "microsoft.extensions.diagnostics.healthchecks.6.0.0.nupkg.sha512",
  5229. "microsoft.extensions.diagnostics.healthchecks.nuspec"
  5230. ]
  5231. },
  5232. "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/6.0.0": {
  5233. "sha512": "6C9uhsA7GwT1qlXF+1JgOktilrWBSMLNVcwIjg63UvFaDVizg8fYTv826MC58dznvvT9yG31gGwsN1cFfg+yZQ==",
  5234. "type": "package",
  5235. "path": "microsoft.extensions.diagnostics.healthchecks.abstractions/6.0.0",
  5236. "files": [
  5237. ".nupkg.metadata",
  5238. ".signature.p7s",
  5239. "Icon.png",
  5240. "THIRD-PARTY-NOTICES.TXT",
  5241. "lib/net461/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll",
  5242. "lib/net461/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml",
  5243. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll",
  5244. "lib/net6.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml",
  5245. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll",
  5246. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.xml",
  5247. "microsoft.extensions.diagnostics.healthchecks.abstractions.6.0.0.nupkg.sha512",
  5248. "microsoft.extensions.diagnostics.healthchecks.abstractions.nuspec"
  5249. ]
  5250. },
  5251. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  5252. "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
  5253. "type": "package",
  5254. "path": "microsoft.extensions.fileproviders.abstractions/6.0.0",
  5255. "files": [
  5256. ".nupkg.metadata",
  5257. ".signature.p7s",
  5258. "Icon.png",
  5259. "LICENSE.TXT",
  5260. "THIRD-PARTY-NOTICES.TXT",
  5261. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  5262. "buildTransitive/netcoreapp3.1/_._",
  5263. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5264. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5265. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5266. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5267. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5268. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5269. "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512",
  5270. "microsoft.extensions.fileproviders.abstractions.nuspec",
  5271. "useSharedDesignerContext.txt"
  5272. ]
  5273. },
  5274. "Microsoft.Extensions.FileProviders.Composite/6.0.0": {
  5275. "sha512": "Cx8K9xnN95wbvKa/KTyDBVBaNUsS9L8IkKt2dKMkcyj0wOBe+xVMwyNR4ySmpxBK3b0PuP7tW6UtroXIlRC3uQ==",
  5276. "type": "package",
  5277. "path": "microsoft.extensions.fileproviders.composite/6.0.0",
  5278. "files": [
  5279. ".nupkg.metadata",
  5280. ".signature.p7s",
  5281. "Icon.png",
  5282. "LICENSE.TXT",
  5283. "THIRD-PARTY-NOTICES.TXT",
  5284. "lib/net461/Microsoft.Extensions.FileProviders.Composite.dll",
  5285. "lib/net461/Microsoft.Extensions.FileProviders.Composite.xml",
  5286. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  5287. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  5288. "microsoft.extensions.fileproviders.composite.6.0.0.nupkg.sha512",
  5289. "microsoft.extensions.fileproviders.composite.nuspec",
  5290. "useSharedDesignerContext.txt"
  5291. ]
  5292. },
  5293. "Microsoft.Extensions.FileProviders.Embedded/6.0.5": {
  5294. "sha512": "z7M3GpcYfKw1FYUGcurTbv/v0ZZ95LSMOZOjOtYLUztzUIUZZ61H5NFjLXjeQ8G72zxrVrt+jubb4MZGvm0EQw==",
  5295. "type": "package",
  5296. "path": "microsoft.extensions.fileproviders.embedded/6.0.5",
  5297. "files": [
  5298. ".nupkg.metadata",
  5299. ".signature.p7s",
  5300. "Icon.png",
  5301. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props",
  5302. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets",
  5303. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props",
  5304. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets",
  5305. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.dll",
  5306. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.xml",
  5307. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5308. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5309. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5310. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5311. "microsoft.extensions.fileproviders.embedded.6.0.5.nupkg.sha512",
  5312. "microsoft.extensions.fileproviders.embedded.nuspec",
  5313. "tasks/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll"
  5314. ]
  5315. },
  5316. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  5317. "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==",
  5318. "type": "package",
  5319. "path": "microsoft.extensions.fileproviders.physical/6.0.0",
  5320. "files": [
  5321. ".nupkg.metadata",
  5322. ".signature.p7s",
  5323. "Icon.png",
  5324. "LICENSE.TXT",
  5325. "THIRD-PARTY-NOTICES.TXT",
  5326. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  5327. "buildTransitive/netcoreapp3.1/_._",
  5328. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  5329. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  5330. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5331. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5332. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5333. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5334. "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512",
  5335. "microsoft.extensions.fileproviders.physical.nuspec",
  5336. "useSharedDesignerContext.txt"
  5337. ]
  5338. },
  5339. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  5340. "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==",
  5341. "type": "package",
  5342. "path": "microsoft.extensions.filesystemglobbing/6.0.0",
  5343. "files": [
  5344. ".nupkg.metadata",
  5345. ".signature.p7s",
  5346. "Icon.png",
  5347. "LICENSE.TXT",
  5348. "THIRD-PARTY-NOTICES.TXT",
  5349. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  5350. "buildTransitive/netcoreapp3.1/_._",
  5351. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  5352. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  5353. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5354. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5355. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5356. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5357. "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512",
  5358. "microsoft.extensions.filesystemglobbing.nuspec",
  5359. "useSharedDesignerContext.txt"
  5360. ]
  5361. },
  5362. "Microsoft.Extensions.Hosting.Abstractions/6.0.0": {
  5363. "sha512": "GcT5l2CYXL6Sa27KCSh0TixsRfADUgth+ojQSD5EkzisZxmGFh7CwzkcYuGwvmXLjr27uWRNrJ2vuuEjMhU05Q==",
  5364. "type": "package",
  5365. "path": "microsoft.extensions.hosting.abstractions/6.0.0",
  5366. "files": [
  5367. ".nupkg.metadata",
  5368. ".signature.p7s",
  5369. "Icon.png",
  5370. "LICENSE.TXT",
  5371. "THIRD-PARTY-NOTICES.TXT",
  5372. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.dll",
  5373. "lib/net461/Microsoft.Extensions.Hosting.Abstractions.xml",
  5374. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  5375. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  5376. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  5377. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  5378. "microsoft.extensions.hosting.abstractions.6.0.0.nupkg.sha512",
  5379. "microsoft.extensions.hosting.abstractions.nuspec",
  5380. "useSharedDesignerContext.txt"
  5381. ]
  5382. },
  5383. "Microsoft.Extensions.Localization/6.0.5": {
  5384. "sha512": "mbNGvpCgCYD6o+2IFNT3EZ+AQE8W0yI9GXmXDYWtCXclhvjKn3RJ37QrMRXqzNqOBkWzdiJ/HINVuccrJEenNA==",
  5385. "type": "package",
  5386. "path": "microsoft.extensions.localization/6.0.5",
  5387. "files": [
  5388. ".nupkg.metadata",
  5389. ".signature.p7s",
  5390. "Icon.png",
  5391. "THIRD-PARTY-NOTICES.TXT",
  5392. "lib/net461/Microsoft.Extensions.Localization.dll",
  5393. "lib/net461/Microsoft.Extensions.Localization.xml",
  5394. "lib/net6.0/Microsoft.Extensions.Localization.dll",
  5395. "lib/net6.0/Microsoft.Extensions.Localization.xml",
  5396. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  5397. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  5398. "microsoft.extensions.localization.6.0.5.nupkg.sha512",
  5399. "microsoft.extensions.localization.nuspec"
  5400. ]
  5401. },
  5402. "Microsoft.Extensions.Localization.Abstractions/6.0.5": {
  5403. "sha512": "PzYBMoQk4i1dOC2szAy90hPLBIe6YWdiaGxqoRdWesiJbZwiGCd2syC7kkePp2/ef3f8o202YRMt0tzbLP50rw==",
  5404. "type": "package",
  5405. "path": "microsoft.extensions.localization.abstractions/6.0.5",
  5406. "files": [
  5407. ".nupkg.metadata",
  5408. ".signature.p7s",
  5409. "Icon.png",
  5410. "THIRD-PARTY-NOTICES.TXT",
  5411. "lib/net461/Microsoft.Extensions.Localization.Abstractions.dll",
  5412. "lib/net461/Microsoft.Extensions.Localization.Abstractions.xml",
  5413. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.dll",
  5414. "lib/net6.0/Microsoft.Extensions.Localization.Abstractions.xml",
  5415. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  5416. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  5417. "microsoft.extensions.localization.abstractions.6.0.5.nupkg.sha512",
  5418. "microsoft.extensions.localization.abstractions.nuspec"
  5419. ]
  5420. },
  5421. "Microsoft.Extensions.Logging/6.0.0": {
  5422. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  5423. "type": "package",
  5424. "path": "microsoft.extensions.logging/6.0.0",
  5425. "files": [
  5426. ".nupkg.metadata",
  5427. ".signature.p7s",
  5428. "Icon.png",
  5429. "LICENSE.TXT",
  5430. "THIRD-PARTY-NOTICES.TXT",
  5431. "lib/net461/Microsoft.Extensions.Logging.dll",
  5432. "lib/net461/Microsoft.Extensions.Logging.xml",
  5433. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5434. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5435. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5436. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5437. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  5438. "microsoft.extensions.logging.nuspec",
  5439. "useSharedDesignerContext.txt"
  5440. ]
  5441. },
  5442. "Microsoft.Extensions.Logging.Abstractions/6.0.1": {
  5443. "sha512": "dzB2Cgg+JmrouhjkcQGzSFjjvpwlq353i8oBQO2GWNjCXSzhbtBRUf28HSauWe7eib3wYOdb3tItdjRwAdwCSg==",
  5444. "type": "package",
  5445. "path": "microsoft.extensions.logging.abstractions/6.0.1",
  5446. "files": [
  5447. ".nupkg.metadata",
  5448. ".signature.p7s",
  5449. "Icon.png",
  5450. "LICENSE.TXT",
  5451. "THIRD-PARTY-NOTICES.TXT",
  5452. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  5453. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5454. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5455. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5456. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5457. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5458. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5459. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5460. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5461. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5462. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5463. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5464. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5465. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5466. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  5467. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5468. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5469. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5470. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5471. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5472. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5473. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5474. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5475. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5476. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5477. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5478. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5479. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5480. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  5481. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5482. "buildTransitive/netcoreapp3.1/_._",
  5483. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  5484. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  5485. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5486. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5487. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5488. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5489. "microsoft.extensions.logging.abstractions.6.0.1.nupkg.sha512",
  5490. "microsoft.extensions.logging.abstractions.nuspec",
  5491. "useSharedDesignerContext.txt"
  5492. ]
  5493. },
  5494. "Microsoft.Extensions.Options/6.0.0": {
  5495. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  5496. "type": "package",
  5497. "path": "microsoft.extensions.options/6.0.0",
  5498. "files": [
  5499. ".nupkg.metadata",
  5500. ".signature.p7s",
  5501. "Icon.png",
  5502. "LICENSE.TXT",
  5503. "THIRD-PARTY-NOTICES.TXT",
  5504. "lib/net461/Microsoft.Extensions.Options.dll",
  5505. "lib/net461/Microsoft.Extensions.Options.xml",
  5506. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5507. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5508. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  5509. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  5510. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  5511. "microsoft.extensions.options.nuspec",
  5512. "useSharedDesignerContext.txt"
  5513. ]
  5514. },
  5515. "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
  5516. "sha512": "bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==",
  5517. "type": "package",
  5518. "path": "microsoft.extensions.options.configurationextensions/6.0.0",
  5519. "files": [
  5520. ".nupkg.metadata",
  5521. ".signature.p7s",
  5522. "Icon.png",
  5523. "LICENSE.TXT",
  5524. "THIRD-PARTY-NOTICES.TXT",
  5525. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5526. "lib/net461/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5527. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  5528. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  5529. "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
  5530. "microsoft.extensions.options.configurationextensions.nuspec",
  5531. "useSharedDesignerContext.txt"
  5532. ]
  5533. },
  5534. "Microsoft.Extensions.Primitives/6.0.0": {
  5535. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  5536. "type": "package",
  5537. "path": "microsoft.extensions.primitives/6.0.0",
  5538. "files": [
  5539. ".nupkg.metadata",
  5540. ".signature.p7s",
  5541. "Icon.png",
  5542. "LICENSE.TXT",
  5543. "THIRD-PARTY-NOTICES.TXT",
  5544. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  5545. "buildTransitive/netcoreapp3.1/_._",
  5546. "lib/net461/Microsoft.Extensions.Primitives.dll",
  5547. "lib/net461/Microsoft.Extensions.Primitives.xml",
  5548. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  5549. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  5550. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  5551. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  5552. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5553. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5554. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  5555. "microsoft.extensions.primitives.nuspec",
  5556. "useSharedDesignerContext.txt"
  5557. ]
  5558. },
  5559. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  5560. "sha512": "cT9SCW/dN+ulrvAtbh37c36DR6aArENH3S4UtFmvXRx+VGC0ArDgzRaEbEh+ChS4koxdl2oS691250iZhgKvwg==",
  5561. "type": "package",
  5562. "path": "microsoft.identitymodel.jsonwebtokens/5.5.0",
  5563. "files": [
  5564. ".nupkg.metadata",
  5565. ".signature.p7s",
  5566. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  5567. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  5568. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  5569. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  5570. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  5571. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  5572. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  5573. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  5574. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  5575. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  5576. "microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512",
  5577. "microsoft.identitymodel.jsonwebtokens.nuspec"
  5578. ]
  5579. },
  5580. "Microsoft.IdentityModel.Logging/5.5.0": {
  5581. "sha512": "1w/Hz/7+al+ugQn+6y0tAPmpN8U0u1aBtl1QXYCVkiJfbCC4tgyroFOuhdztOq48rgeM+3JW9bGqOtkfVurW8w==",
  5582. "type": "package",
  5583. "path": "microsoft.identitymodel.logging/5.5.0",
  5584. "files": [
  5585. ".nupkg.metadata",
  5586. ".signature.p7s",
  5587. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  5588. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  5589. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  5590. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  5591. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  5592. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  5593. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  5594. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  5595. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  5596. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  5597. "microsoft.identitymodel.logging.5.5.0.nupkg.sha512",
  5598. "microsoft.identitymodel.logging.nuspec"
  5599. ]
  5600. },
  5601. "Microsoft.IdentityModel.Protocols/5.5.0": {
  5602. "sha512": "m1gwAQwZjUxzRBC+4H40vYSo9Cms9yUbMdW492rQoXHU77G/ItiKxpk2+W9bWYcdsKUDKudye7im3T3MlVxEkg==",
  5603. "type": "package",
  5604. "path": "microsoft.identitymodel.protocols/5.5.0",
  5605. "files": [
  5606. ".nupkg.metadata",
  5607. ".signature.p7s",
  5608. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  5609. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  5610. "lib/net451/Microsoft.IdentityModel.Protocols.dll",
  5611. "lib/net451/Microsoft.IdentityModel.Protocols.xml",
  5612. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  5613. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  5614. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll",
  5615. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml",
  5616. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  5617. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  5618. "microsoft.identitymodel.protocols.5.5.0.nupkg.sha512",
  5619. "microsoft.identitymodel.protocols.nuspec"
  5620. ]
  5621. },
  5622. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  5623. "sha512": "21F4QlbaD5CXNs2urNRCO6vljbbrhv3gmGT8P18SKGKZ9IYBCn29extoJriHiPfhABd5b8S7RcdKU50XhERkYg==",
  5624. "type": "package",
  5625. "path": "microsoft.identitymodel.protocols.openidconnect/5.5.0",
  5626. "files": [
  5627. ".nupkg.metadata",
  5628. ".signature.p7s",
  5629. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5630. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5631. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5632. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5633. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5634. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5635. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5636. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5637. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5638. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5639. "microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512",
  5640. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  5641. ]
  5642. },
  5643. "Microsoft.IdentityModel.Tokens/5.5.0": {
  5644. "sha512": "cu1klZiuCwVYbXHs0QdnseuoRGG1/85VX9d1Sk0vbJlKp+HJUN/4pAS/fe2m9bTOYyIPdeCHeksMiVHgo1EfAA==",
  5645. "type": "package",
  5646. "path": "microsoft.identitymodel.tokens/5.5.0",
  5647. "files": [
  5648. ".nupkg.metadata",
  5649. ".signature.p7s",
  5650. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  5651. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  5652. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  5653. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  5654. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  5655. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  5656. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  5657. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  5658. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  5659. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  5660. "microsoft.identitymodel.tokens.5.5.0.nupkg.sha512",
  5661. "microsoft.identitymodel.tokens.nuspec"
  5662. ]
  5663. },
  5664. "Microsoft.NETCore.Platforms/5.0.0": {
  5665. "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
  5666. "type": "package",
  5667. "path": "microsoft.netcore.platforms/5.0.0",
  5668. "files": [
  5669. ".nupkg.metadata",
  5670. ".signature.p7s",
  5671. "Icon.png",
  5672. "LICENSE.TXT",
  5673. "THIRD-PARTY-NOTICES.TXT",
  5674. "lib/netstandard1.0/_._",
  5675. "microsoft.netcore.platforms.5.0.0.nupkg.sha512",
  5676. "microsoft.netcore.platforms.nuspec",
  5677. "runtime.json",
  5678. "useSharedDesignerContext.txt",
  5679. "version.txt"
  5680. ]
  5681. },
  5682. "Microsoft.NETCore.Targets/1.1.0": {
  5683. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  5684. "type": "package",
  5685. "path": "microsoft.netcore.targets/1.1.0",
  5686. "files": [
  5687. ".nupkg.metadata",
  5688. "ThirdPartyNotices.txt",
  5689. "dotnet_library_license.txt",
  5690. "lib/netstandard1.0/_._",
  5691. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  5692. "microsoft.netcore.targets.nuspec",
  5693. "runtime.json"
  5694. ]
  5695. },
  5696. "Microsoft.OpenApi/1.2.3": {
  5697. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  5698. "type": "package",
  5699. "path": "microsoft.openapi/1.2.3",
  5700. "files": [
  5701. ".nupkg.metadata",
  5702. ".signature.p7s",
  5703. "lib/net46/Microsoft.OpenApi.dll",
  5704. "lib/net46/Microsoft.OpenApi.pdb",
  5705. "lib/net46/Microsoft.OpenApi.xml",
  5706. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  5707. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  5708. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  5709. "microsoft.openapi.1.2.3.nupkg.sha512",
  5710. "microsoft.openapi.nuspec"
  5711. ]
  5712. },
  5713. "Microsoft.Win32.Registry/5.0.0": {
  5714. "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
  5715. "type": "package",
  5716. "path": "microsoft.win32.registry/5.0.0",
  5717. "files": [
  5718. ".nupkg.metadata",
  5719. ".signature.p7s",
  5720. "Icon.png",
  5721. "LICENSE.TXT",
  5722. "THIRD-PARTY-NOTICES.TXT",
  5723. "lib/net46/Microsoft.Win32.Registry.dll",
  5724. "lib/net461/Microsoft.Win32.Registry.dll",
  5725. "lib/net461/Microsoft.Win32.Registry.xml",
  5726. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5727. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5728. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5729. "microsoft.win32.registry.5.0.0.nupkg.sha512",
  5730. "microsoft.win32.registry.nuspec",
  5731. "ref/net46/Microsoft.Win32.Registry.dll",
  5732. "ref/net461/Microsoft.Win32.Registry.dll",
  5733. "ref/net461/Microsoft.Win32.Registry.xml",
  5734. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  5735. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  5736. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  5737. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  5738. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  5739. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  5740. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  5741. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  5742. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  5743. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  5744. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  5745. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  5746. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  5747. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  5748. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  5749. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  5750. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5751. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5752. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5753. "useSharedDesignerContext.txt",
  5754. "version.txt"
  5755. ]
  5756. },
  5757. "Microsoft.Win32.SystemEvents/6.0.0": {
  5758. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  5759. "type": "package",
  5760. "path": "microsoft.win32.systemevents/6.0.0",
  5761. "files": [
  5762. ".nupkg.metadata",
  5763. ".signature.p7s",
  5764. "Icon.png",
  5765. "LICENSE.TXT",
  5766. "THIRD-PARTY-NOTICES.TXT",
  5767. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  5768. "buildTransitive/netcoreapp3.1/_._",
  5769. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5770. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5771. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  5772. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  5773. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  5774. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  5775. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5776. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5777. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  5778. "microsoft.win32.systemevents.nuspec",
  5779. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  5780. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  5781. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  5782. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  5783. "useSharedDesignerContext.txt"
  5784. ]
  5785. },
  5786. "MySql.Data/8.0.32.1": {
  5787. "sha512": "K5WkZz8hkiHyKSnEON5AER+oMxmwhRrSAy6/a7XnfWpytn8EyYLCFWe0lDNZqZJ/w79P1Qtw0TZvf3kP0a1fbg==",
  5788. "type": "package",
  5789. "path": "mysql.data/8.0.32.1",
  5790. "files": [
  5791. ".nupkg.metadata",
  5792. ".signature.p7s",
  5793. "lib/net452/MySql.Data.dll",
  5794. "lib/net452/MySql.Data.xml",
  5795. "lib/net48/MySql.Data.dll",
  5796. "lib/net48/MySql.Data.xml",
  5797. "lib/net6.0/MySql.Data.dll",
  5798. "lib/net6.0/MySql.Data.xml",
  5799. "lib/net7.0/MySql.Data.dll",
  5800. "lib/net7.0/MySql.Data.xml",
  5801. "lib/netstandard2.0/MySql.Data.dll",
  5802. "lib/netstandard2.0/MySql.Data.xml",
  5803. "lib/netstandard2.1/MySql.Data.dll",
  5804. "lib/netstandard2.1/MySql.Data.xml",
  5805. "mysql.data.8.0.32.1.nupkg.sha512",
  5806. "mysql.data.nuspec",
  5807. "runtimes/win-x64/native/comerr64.dll",
  5808. "runtimes/win-x64/native/gssapi64.dll",
  5809. "runtimes/win-x64/native/k5sprt64.dll",
  5810. "runtimes/win-x64/native/krb5_64.dll",
  5811. "runtimes/win-x64/native/krbcc64.dll"
  5812. ]
  5813. },
  5814. "MySqlConnector/2.0.0": {
  5815. "sha512": "EY0KXqQas+QvdZQU0NPkqBSfJitWAl8IUCg0v/Qn0P7f/KApJTFJFm8czYWoDPyewUjPHrAnE/cSYzzSFGc8Ng==",
  5816. "type": "package",
  5817. "path": "mysqlconnector/2.0.0",
  5818. "files": [
  5819. ".nupkg.metadata",
  5820. ".signature.p7s",
  5821. "README.md",
  5822. "lib/net45/MySqlConnector.dll",
  5823. "lib/net45/MySqlConnector.xml",
  5824. "lib/net461/MySqlConnector.dll",
  5825. "lib/net461/MySqlConnector.xml",
  5826. "lib/net471/MySqlConnector.dll",
  5827. "lib/net471/MySqlConnector.xml",
  5828. "lib/net5.0/MySqlConnector.dll",
  5829. "lib/net5.0/MySqlConnector.xml",
  5830. "lib/net6.0/MySqlConnector.dll",
  5831. "lib/net6.0/MySqlConnector.xml",
  5832. "lib/netcoreapp3.1/MySqlConnector.dll",
  5833. "lib/netcoreapp3.1/MySqlConnector.xml",
  5834. "lib/netstandard2.0/MySqlConnector.dll",
  5835. "lib/netstandard2.0/MySqlConnector.xml",
  5836. "lib/netstandard2.1/MySqlConnector.dll",
  5837. "lib/netstandard2.1/MySqlConnector.xml",
  5838. "logo.png",
  5839. "mysqlconnector.2.0.0.nupkg.sha512",
  5840. "mysqlconnector.nuspec"
  5841. ]
  5842. },
  5843. "Newtonsoft.Json/13.0.1": {
  5844. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5845. "type": "package",
  5846. "path": "newtonsoft.json/13.0.1",
  5847. "files": [
  5848. ".nupkg.metadata",
  5849. ".signature.p7s",
  5850. "LICENSE.md",
  5851. "lib/net20/Newtonsoft.Json.dll",
  5852. "lib/net20/Newtonsoft.Json.xml",
  5853. "lib/net35/Newtonsoft.Json.dll",
  5854. "lib/net35/Newtonsoft.Json.xml",
  5855. "lib/net40/Newtonsoft.Json.dll",
  5856. "lib/net40/Newtonsoft.Json.xml",
  5857. "lib/net45/Newtonsoft.Json.dll",
  5858. "lib/net45/Newtonsoft.Json.xml",
  5859. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5860. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5861. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5862. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5863. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5864. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5865. "newtonsoft.json.13.0.1.nupkg.sha512",
  5866. "newtonsoft.json.nuspec",
  5867. "packageIcon.png"
  5868. ]
  5869. },
  5870. "Newtonsoft.Json.Bson/1.0.2": {
  5871. "sha512": "QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==",
  5872. "type": "package",
  5873. "path": "newtonsoft.json.bson/1.0.2",
  5874. "files": [
  5875. ".nupkg.metadata",
  5876. ".signature.p7s",
  5877. "LICENSE.md",
  5878. "lib/net45/Newtonsoft.Json.Bson.dll",
  5879. "lib/net45/Newtonsoft.Json.Bson.pdb",
  5880. "lib/net45/Newtonsoft.Json.Bson.xml",
  5881. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  5882. "lib/netstandard1.3/Newtonsoft.Json.Bson.pdb",
  5883. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  5884. "lib/netstandard2.0/Newtonsoft.Json.Bson.dll",
  5885. "lib/netstandard2.0/Newtonsoft.Json.Bson.pdb",
  5886. "lib/netstandard2.0/Newtonsoft.Json.Bson.xml",
  5887. "newtonsoft.json.bson.1.0.2.nupkg.sha512",
  5888. "newtonsoft.json.bson.nuspec"
  5889. ]
  5890. },
  5891. "Nito.AsyncEx.Context/5.1.2": {
  5892. "sha512": "rMwL7Nj3oNyvFu/jxUzQ/YBobEkM2RQHe+5mpCDRyq6mfD7vCj7Z3rjB6XgpM6Mqcx1CA2xGv0ascU/2Xk8IIg==",
  5893. "type": "package",
  5894. "path": "nito.asyncex.context/5.1.2",
  5895. "files": [
  5896. ".nupkg.metadata",
  5897. ".signature.p7s",
  5898. "icon.png",
  5899. "lib/net461/Nito.AsyncEx.Context.dll",
  5900. "lib/net461/Nito.AsyncEx.Context.xml",
  5901. "lib/netstandard1.3/Nito.AsyncEx.Context.dll",
  5902. "lib/netstandard1.3/Nito.AsyncEx.Context.xml",
  5903. "lib/netstandard2.0/Nito.AsyncEx.Context.dll",
  5904. "lib/netstandard2.0/Nito.AsyncEx.Context.xml",
  5905. "nito.asyncex.context.5.1.2.nupkg.sha512",
  5906. "nito.asyncex.context.nuspec"
  5907. ]
  5908. },
  5909. "Nito.AsyncEx.Coordination/5.1.2": {
  5910. "sha512": "QMyUfsaxov//0ZMbOHWr9hJaBFteZd66DV1ay4J5wRODDb8+K/uHC7+3VsOflo6SVw/29mu8OWZp8vMDSuzc0w==",
  5911. "type": "package",
  5912. "path": "nito.asyncex.coordination/5.1.2",
  5913. "files": [
  5914. ".nupkg.metadata",
  5915. ".signature.p7s",
  5916. "icon.png",
  5917. "lib/net461/Nito.AsyncEx.Coordination.dll",
  5918. "lib/net461/Nito.AsyncEx.Coordination.xml",
  5919. "lib/netstandard1.3/Nito.AsyncEx.Coordination.dll",
  5920. "lib/netstandard1.3/Nito.AsyncEx.Coordination.xml",
  5921. "lib/netstandard2.0/Nito.AsyncEx.Coordination.dll",
  5922. "lib/netstandard2.0/Nito.AsyncEx.Coordination.xml",
  5923. "nito.asyncex.coordination.5.1.2.nupkg.sha512",
  5924. "nito.asyncex.coordination.nuspec"
  5925. ]
  5926. },
  5927. "Nito.AsyncEx.Tasks/5.1.2": {
  5928. "sha512": "jEkCfR2/M26OK/U4G7SEN063EU/F4LiVA06TtpZILMdX/quIHCg+wn31Zerl2LC+u1cyFancjTY3cNAr2/89PA==",
  5929. "type": "package",
  5930. "path": "nito.asyncex.tasks/5.1.2",
  5931. "files": [
  5932. ".nupkg.metadata",
  5933. ".signature.p7s",
  5934. "icon.png",
  5935. "lib/net461/Nito.AsyncEx.Tasks.dll",
  5936. "lib/net461/Nito.AsyncEx.Tasks.xml",
  5937. "lib/netstandard1.3/Nito.AsyncEx.Tasks.dll",
  5938. "lib/netstandard1.3/Nito.AsyncEx.Tasks.xml",
  5939. "lib/netstandard2.0/Nito.AsyncEx.Tasks.dll",
  5940. "lib/netstandard2.0/Nito.AsyncEx.Tasks.xml",
  5941. "nito.asyncex.tasks.5.1.2.nupkg.sha512",
  5942. "nito.asyncex.tasks.nuspec"
  5943. ]
  5944. },
  5945. "Nito.Collections.Deque/1.1.1": {
  5946. "sha512": "CU0/Iuv5VDynK8I8pDLwkgF0rZhbQoZahtodfL0M3x2gFkpBRApKs8RyMyNlAi1mwExE4gsmqQXk4aFVvW9a4Q==",
  5947. "type": "package",
  5948. "path": "nito.collections.deque/1.1.1",
  5949. "files": [
  5950. ".nupkg.metadata",
  5951. ".signature.p7s",
  5952. "icon.png",
  5953. "lib/net461/Nito.Collections.Deque.dll",
  5954. "lib/net461/Nito.Collections.Deque.xml",
  5955. "lib/netstandard1.0/Nito.Collections.Deque.dll",
  5956. "lib/netstandard1.0/Nito.Collections.Deque.xml",
  5957. "lib/netstandard2.0/Nito.Collections.Deque.dll",
  5958. "lib/netstandard2.0/Nito.Collections.Deque.xml",
  5959. "nito.collections.deque.1.1.1.nupkg.sha512",
  5960. "nito.collections.deque.nuspec"
  5961. ]
  5962. },
  5963. "Nito.Disposables/2.2.1": {
  5964. "sha512": "6sZ5uynQeAE9dPWBQGKebNmxbY4xsvcc5VplB5WkYEESUS7oy4AwnFp0FhqxTSKm/PaFrFqLrYr696CYN8cugg==",
  5965. "type": "package",
  5966. "path": "nito.disposables/2.2.1",
  5967. "files": [
  5968. ".nupkg.metadata",
  5969. ".signature.p7s",
  5970. "icon.png",
  5971. "lib/net461/Nito.Disposables.dll",
  5972. "lib/net461/Nito.Disposables.xml",
  5973. "lib/netstandard1.0/Nito.Disposables.dll",
  5974. "lib/netstandard1.0/Nito.Disposables.xml",
  5975. "lib/netstandard2.0/Nito.Disposables.dll",
  5976. "lib/netstandard2.0/Nito.Disposables.xml",
  5977. "lib/netstandard2.1/Nito.Disposables.dll",
  5978. "lib/netstandard2.1/Nito.Disposables.xml",
  5979. "nito.disposables.2.2.1.nupkg.sha512",
  5980. "nito.disposables.nuspec"
  5981. ]
  5982. },
  5983. "NLog/5.1.2": {
  5984. "sha512": "JfQY93ure3IPVTN3eabBewBGvrcXcWIlaesFEXdy5UzIymfIT9yCgLISYtM0cOhjWziIaUr/6Z9NC2RwtjwrsQ==",
  5985. "type": "package",
  5986. "path": "nlog/5.1.2",
  5987. "files": [
  5988. ".nupkg.metadata",
  5989. ".signature.p7s",
  5990. "N.png",
  5991. "lib/net35/NLog.dll",
  5992. "lib/net35/NLog.xml",
  5993. "lib/net45/NLog.dll",
  5994. "lib/net45/NLog.xml",
  5995. "lib/net46/NLog.dll",
  5996. "lib/net46/NLog.xml",
  5997. "lib/netstandard1.3/NLog.dll",
  5998. "lib/netstandard1.3/NLog.xml",
  5999. "lib/netstandard1.5/NLog.dll",
  6000. "lib/netstandard1.5/NLog.xml",
  6001. "lib/netstandard2.0/NLog.dll",
  6002. "lib/netstandard2.0/NLog.xml",
  6003. "nlog.5.1.2.nupkg.sha512",
  6004. "nlog.nuspec"
  6005. ]
  6006. },
  6007. "NLog.Database/5.1.2": {
  6008. "sha512": "fpsYObX1OheGErXTHFUOhpgD/HZ6T3XwcPUOnaS/bMCI/3u4ntZXgwFhQMkNwRxRZDQK6nocdQJi4nhe/bPs5A==",
  6009. "type": "package",
  6010. "path": "nlog.database/5.1.2",
  6011. "files": [
  6012. ".nupkg.metadata",
  6013. ".signature.p7s",
  6014. "N.png",
  6015. "lib/net35/NLog.Database.dll",
  6016. "lib/net35/NLog.Database.xml",
  6017. "lib/net45/NLog.Database.dll",
  6018. "lib/net45/NLog.Database.xml",
  6019. "lib/net46/NLog.Database.dll",
  6020. "lib/net46/NLog.Database.xml",
  6021. "lib/netstandard1.3/NLog.Database.dll",
  6022. "lib/netstandard1.3/NLog.Database.xml",
  6023. "lib/netstandard1.5/NLog.Database.dll",
  6024. "lib/netstandard1.5/NLog.Database.xml",
  6025. "lib/netstandard2.0/NLog.Database.dll",
  6026. "lib/netstandard2.0/NLog.Database.xml",
  6027. "nlog.database.5.1.2.nupkg.sha512",
  6028. "nlog.database.nuspec"
  6029. ]
  6030. },
  6031. "NLog.Extensions.Logging/5.2.2": {
  6032. "sha512": "V6sd+0Hrk2XlU//XbUizFYTE8Hf8+xFkhi81shIhsKl4tvWFUYmjBY/zBy/wlQCt0K6mfseaEKnayRJVhIz5Iw==",
  6033. "type": "package",
  6034. "path": "nlog.extensions.logging/5.2.2",
  6035. "files": [
  6036. ".nupkg.metadata",
  6037. ".signature.p7s",
  6038. "N.png",
  6039. "lib/net461/NLog.Extensions.Logging.dll",
  6040. "lib/net461/NLog.Extensions.Logging.xml",
  6041. "lib/net6.0/NLog.Extensions.Logging.dll",
  6042. "lib/net6.0/NLog.Extensions.Logging.xml",
  6043. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  6044. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  6045. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  6046. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  6047. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  6048. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  6049. "lib/netstandard2.1/NLog.Extensions.Logging.dll",
  6050. "lib/netstandard2.1/NLog.Extensions.Logging.xml",
  6051. "nlog.extensions.logging.5.2.2.nupkg.sha512",
  6052. "nlog.extensions.logging.nuspec"
  6053. ]
  6054. },
  6055. "NLog.Web.AspNetCore/5.2.2": {
  6056. "sha512": "0Qa6V7LXgbWNxYdZDLcQz/TjGrSfx32XThxAL+xoAtjplC2uCIhy27WiMIjznuMAJR3zjElIiYzMmPSsQ4LZSQ==",
  6057. "type": "package",
  6058. "path": "nlog.web.aspnetcore/5.2.2",
  6059. "files": [
  6060. ".nupkg.metadata",
  6061. ".signature.p7s",
  6062. "N.png",
  6063. "README.md",
  6064. "lib/net461/NLog.Web.AspNetCore.dll",
  6065. "lib/net461/NLog.Web.AspNetCore.xml",
  6066. "lib/net5.0/NLog.Web.AspNetCore.dll",
  6067. "lib/net5.0/NLog.Web.AspNetCore.xml",
  6068. "lib/net6.0/NLog.Web.AspNetCore.dll",
  6069. "lib/net6.0/NLog.Web.AspNetCore.xml",
  6070. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll",
  6071. "lib/netcoreapp3.1/NLog.Web.AspNetCore.xml",
  6072. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  6073. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  6074. "nlog.web.aspnetcore.5.2.2.nupkg.sha512",
  6075. "nlog.web.aspnetcore.nuspec"
  6076. ]
  6077. },
  6078. "NUglify/1.20.0": {
  6079. "sha512": "EK1OImD1Xub/tdvFmhLl939KO0bSAkNDqAGwKAaFV4FASelpyOr9iDvgWElSvbniCmS1HMeKgQWJFDF7/QVp/g==",
  6080. "type": "package",
  6081. "path": "nuglify/1.20.0",
  6082. "files": [
  6083. ".nupkg.metadata",
  6084. ".signature.p7s",
  6085. "lib/net35/NUglify.dll",
  6086. "lib/net35/NUglify.xml",
  6087. "lib/net40/NUglify.dll",
  6088. "lib/net40/NUglify.xml",
  6089. "lib/net5.0/NUglify.dll",
  6090. "lib/net5.0/NUglify.xml",
  6091. "lib/netstandard1.3/NUglify.dll",
  6092. "lib/netstandard1.3/NUglify.xml",
  6093. "lib/netstandard2.0/NUglify.dll",
  6094. "lib/netstandard2.0/NUglify.xml",
  6095. "nuglify.1.20.0.nupkg.sha512",
  6096. "nuglify.nuspec",
  6097. "nuglify.png"
  6098. ]
  6099. },
  6100. "Pipelines.Sockets.Unofficial/2.2.0": {
  6101. "sha512": "7hzHplEIVOGBl5zOQZGX/DiJDHjq+RVRVrYgDiqXb6RriqWAdacXxp+XO9WSrATCEXyNOUOQg9aqQArsjase/A==",
  6102. "type": "package",
  6103. "path": "pipelines.sockets.unofficial/2.2.0",
  6104. "files": [
  6105. ".nupkg.metadata",
  6106. ".signature.p7s",
  6107. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  6108. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  6109. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  6110. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  6111. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  6112. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  6113. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  6114. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  6115. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  6116. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  6117. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  6118. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  6119. "pipelines.sockets.unofficial.2.2.0.nupkg.sha512",
  6120. "pipelines.sockets.unofficial.nuspec"
  6121. ]
  6122. },
  6123. "Pomelo.EntityFrameworkCore.MySql/6.0.0": {
  6124. "sha512": "iWloXFjpN6BllZA9oPqZTW9mNtFV5Q6DFv0WwFyh1IuOJ71btS3ifTwpLmaFXSlXzuEU9o7Rul0dU0WiwkOq0Q==",
  6125. "type": "package",
  6126. "path": "pomelo.entityframeworkcore.mysql/6.0.0",
  6127. "files": [
  6128. ".nupkg.metadata",
  6129. ".signature.p7s",
  6130. "icon.png",
  6131. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.dll",
  6132. "lib/net6.0/Pomelo.EntityFrameworkCore.MySql.xml",
  6133. "pomelo.entityframeworkcore.mysql.6.0.0.nupkg.sha512",
  6134. "pomelo.entityframeworkcore.mysql.nuspec"
  6135. ]
  6136. },
  6137. "Portable.BouncyCastle/1.9.0": {
  6138. "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==",
  6139. "type": "package",
  6140. "path": "portable.bouncycastle/1.9.0",
  6141. "files": [
  6142. ".nupkg.metadata",
  6143. ".signature.p7s",
  6144. "lib/net40/BouncyCastle.Crypto.dll",
  6145. "lib/net40/BouncyCastle.Crypto.xml",
  6146. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  6147. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  6148. "portable.bouncycastle.1.9.0.nupkg.sha512",
  6149. "portable.bouncycastle.nuspec"
  6150. ]
  6151. },
  6152. "Quartz/3.6.2": {
  6153. "sha512": "wCNiVQKdwSz85fOFvEixOuxiIqsenixf34b8w21oGF0qw9oylFPDrV/ri02cX531WelFsN8K5w6E5/qop5mRYw==",
  6154. "type": "package",
  6155. "path": "quartz/3.6.2",
  6156. "files": [
  6157. ".nupkg.metadata",
  6158. ".signature.p7s",
  6159. "lib/net462/Quartz.dll",
  6160. "lib/net462/Quartz.xml",
  6161. "lib/net472/Quartz.dll",
  6162. "lib/net472/Quartz.xml",
  6163. "lib/netstandard2.0/Quartz.dll",
  6164. "lib/netstandard2.0/Quartz.xml",
  6165. "quartz-logo-small.png",
  6166. "quartz.3.6.2.nupkg.sha512",
  6167. "quartz.nuspec"
  6168. ]
  6169. },
  6170. "Quartz.AspNetCore/3.6.2": {
  6171. "sha512": "dcKmsicZjMs2TeSYGnboRFphtckT0/cQGoJK9DCVKIGgwa7b8e/bbCjcaCyHIUDwAAKCgDp3AdtPTExalnS7XA==",
  6172. "type": "package",
  6173. "path": "quartz.aspnetcore/3.6.2",
  6174. "files": [
  6175. ".nupkg.metadata",
  6176. ".signature.p7s",
  6177. "lib/net6.0/Quartz.AspNetCore.dll",
  6178. "lib/net6.0/Quartz.AspNetCore.xml",
  6179. "lib/netcoreapp3.1/Quartz.AspNetCore.dll",
  6180. "lib/netcoreapp3.1/Quartz.AspNetCore.xml",
  6181. "lib/netstandard2.0/Quartz.AspNetCore.dll",
  6182. "lib/netstandard2.0/Quartz.AspNetCore.xml",
  6183. "quartz-logo-small.png",
  6184. "quartz.aspnetcore.3.6.2.nupkg.sha512",
  6185. "quartz.aspnetcore.nuspec"
  6186. ]
  6187. },
  6188. "Quartz.Extensions.DependencyInjection/3.6.2": {
  6189. "sha512": "EkJCyTVhfaE2SX2hVSQbKSVQs+fw1gWnGaQv+RzfsWASvk7CzDddPE31WA00I0t9gfXpcnV9jDgSOP8K+tO1uA==",
  6190. "type": "package",
  6191. "path": "quartz.extensions.dependencyinjection/3.6.2",
  6192. "files": [
  6193. ".nupkg.metadata",
  6194. ".signature.p7s",
  6195. "lib/net6.0/Quartz.Extensions.DependencyInjection.dll",
  6196. "lib/net6.0/Quartz.Extensions.DependencyInjection.xml",
  6197. "lib/netcoreapp3.1/Quartz.Extensions.DependencyInjection.dll",
  6198. "lib/netcoreapp3.1/Quartz.Extensions.DependencyInjection.xml",
  6199. "lib/netstandard2.0/Quartz.Extensions.DependencyInjection.dll",
  6200. "lib/netstandard2.0/Quartz.Extensions.DependencyInjection.xml",
  6201. "quartz-logo-small.png",
  6202. "quartz.extensions.dependencyinjection.3.6.2.nupkg.sha512",
  6203. "quartz.extensions.dependencyinjection.nuspec"
  6204. ]
  6205. },
  6206. "Quartz.Extensions.Hosting/3.6.2": {
  6207. "sha512": "P9PIWcFmK/x5GbxTZcgfOFkagb+OBviNvmsrdksLKe1Dv0LfdjuWvWyUxjbttjmAEm+5IibxGVF5hf42Ws2Qkw==",
  6208. "type": "package",
  6209. "path": "quartz.extensions.hosting/3.6.2",
  6210. "files": [
  6211. ".nupkg.metadata",
  6212. ".signature.p7s",
  6213. "lib/net6.0/Quartz.Extensions.Hosting.dll",
  6214. "lib/net6.0/Quartz.Extensions.Hosting.xml",
  6215. "lib/netcoreapp3.1/Quartz.Extensions.Hosting.dll",
  6216. "lib/netcoreapp3.1/Quartz.Extensions.Hosting.xml",
  6217. "lib/netstandard2.0/Quartz.Extensions.Hosting.dll",
  6218. "lib/netstandard2.0/Quartz.Extensions.Hosting.xml",
  6219. "quartz-logo-small.png",
  6220. "quartz.extensions.hosting.3.6.2.nupkg.sha512",
  6221. "quartz.extensions.hosting.nuspec"
  6222. ]
  6223. },
  6224. "Serilog/2.11.0": {
  6225. "sha512": "ysv+hBzTul6Dp+Hvm10FlhJO3yMQcFKSAleus+LpiIzvNstpeV4Z7gGuIZ1OPNfIMulSHOjmLuGAEDKzpnV8ZQ==",
  6226. "type": "package",
  6227. "path": "serilog/2.11.0",
  6228. "files": [
  6229. ".nupkg.metadata",
  6230. ".signature.p7s",
  6231. "icon.png",
  6232. "lib/net45/Serilog.dll",
  6233. "lib/net45/Serilog.xml",
  6234. "lib/net46/Serilog.dll",
  6235. "lib/net46/Serilog.xml",
  6236. "lib/net5.0/Serilog.dll",
  6237. "lib/net5.0/Serilog.xml",
  6238. "lib/netstandard1.0/Serilog.dll",
  6239. "lib/netstandard1.0/Serilog.xml",
  6240. "lib/netstandard1.3/Serilog.dll",
  6241. "lib/netstandard1.3/Serilog.xml",
  6242. "lib/netstandard2.0/Serilog.dll",
  6243. "lib/netstandard2.0/Serilog.xml",
  6244. "lib/netstandard2.1/Serilog.dll",
  6245. "lib/netstandard2.1/Serilog.xml",
  6246. "serilog.2.11.0.nupkg.sha512",
  6247. "serilog.nuspec"
  6248. ]
  6249. },
  6250. "Serilog.AspNetCore/5.0.0": {
  6251. "sha512": "/JO/txIxRR61x1UXQAgUzG2Sx05o1QHCkokVBWrKzmAoDu+p5EtCAj7L/TVVg7Ezhh3GPiZ0JI9OJCmRO9tSRw==",
  6252. "type": "package",
  6253. "path": "serilog.aspnetcore/5.0.0",
  6254. "files": [
  6255. ".nupkg.metadata",
  6256. ".signature.p7s",
  6257. "icon.png",
  6258. "lib/net5.0/Serilog.AspNetCore.dll",
  6259. "lib/net5.0/Serilog.AspNetCore.xml",
  6260. "lib/netcoreapp3.1/Serilog.AspNetCore.dll",
  6261. "lib/netcoreapp3.1/Serilog.AspNetCore.xml",
  6262. "lib/netstandard2.0/Serilog.AspNetCore.dll",
  6263. "lib/netstandard2.0/Serilog.AspNetCore.xml",
  6264. "lib/netstandard2.1/Serilog.AspNetCore.dll",
  6265. "lib/netstandard2.1/Serilog.AspNetCore.xml",
  6266. "serilog.aspnetcore.5.0.0.nupkg.sha512",
  6267. "serilog.aspnetcore.nuspec"
  6268. ]
  6269. },
  6270. "Serilog.Extensions.Hosting/4.2.0": {
  6271. "sha512": "gT2keceCmPQR9EX0VpXQZvUgELdfE7yqJ7MOxBhm3WLCblcvRgswEOOTgok/DHObbM15A3V/DtF3VdVDQPIZzQ==",
  6272. "type": "package",
  6273. "path": "serilog.extensions.hosting/4.2.0",
  6274. "files": [
  6275. ".nupkg.metadata",
  6276. ".signature.p7s",
  6277. "icon.png",
  6278. "lib/netstandard2.0/Serilog.Extensions.Hosting.dll",
  6279. "lib/netstandard2.0/Serilog.Extensions.Hosting.xml",
  6280. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll",
  6281. "lib/netstandard2.1/Serilog.Extensions.Hosting.xml",
  6282. "serilog.extensions.hosting.4.2.0.nupkg.sha512",
  6283. "serilog.extensions.hosting.nuspec"
  6284. ]
  6285. },
  6286. "Serilog.Extensions.Logging/3.1.0": {
  6287. "sha512": "IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==",
  6288. "type": "package",
  6289. "path": "serilog.extensions.logging/3.1.0",
  6290. "files": [
  6291. ".nupkg.metadata",
  6292. ".signature.p7s",
  6293. "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
  6294. "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
  6295. "serilog-extension-nuget.png",
  6296. "serilog.extensions.logging.3.1.0.nupkg.sha512",
  6297. "serilog.extensions.logging.nuspec"
  6298. ]
  6299. },
  6300. "Serilog.Formatting.Compact/1.1.0": {
  6301. "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  6302. "type": "package",
  6303. "path": "serilog.formatting.compact/1.1.0",
  6304. "files": [
  6305. ".nupkg.metadata",
  6306. ".signature.p7s",
  6307. "lib/net452/Serilog.Formatting.Compact.dll",
  6308. "lib/net452/Serilog.Formatting.Compact.xml",
  6309. "lib/netstandard1.1/Serilog.Formatting.Compact.dll",
  6310. "lib/netstandard1.1/Serilog.Formatting.Compact.xml",
  6311. "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
  6312. "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
  6313. "serilog.formatting.compact.1.1.0.nupkg.sha512",
  6314. "serilog.formatting.compact.nuspec"
  6315. ]
  6316. },
  6317. "Serilog.Settings.Configuration/3.3.0": {
  6318. "sha512": "7GNudISZwqaT902hqEL2OFGTZeUFWfnrNLupJkOqeF41AR3GjcxX+Hwb30xb8gG2/CDXsCMVfF8o0+8KY0fJNg==",
  6319. "type": "package",
  6320. "path": "serilog.settings.configuration/3.3.0",
  6321. "files": [
  6322. ".nupkg.metadata",
  6323. ".signature.p7s",
  6324. "icon.png",
  6325. "lib/net451/Serilog.Settings.Configuration.dll",
  6326. "lib/net451/Serilog.Settings.Configuration.xml",
  6327. "lib/net461/Serilog.Settings.Configuration.dll",
  6328. "lib/net461/Serilog.Settings.Configuration.xml",
  6329. "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
  6330. "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
  6331. "serilog.settings.configuration.3.3.0.nupkg.sha512",
  6332. "serilog.settings.configuration.nuspec"
  6333. ]
  6334. },
  6335. "Serilog.Sinks.Async/1.5.0": {
  6336. "sha512": "csHYIqAwI4Gy9oAhXYRwxGrQEAtBg3Ep7WaCzsnA1cZuBZjVAU0n7hWaJhItjO7hbLHh/9gRVxALCUB4Dv+gZw==",
  6337. "type": "package",
  6338. "path": "serilog.sinks.async/1.5.0",
  6339. "files": [
  6340. ".nupkg.metadata",
  6341. ".signature.p7s",
  6342. "lib/net45/Serilog.Sinks.Async.dll",
  6343. "lib/net45/Serilog.Sinks.Async.xml",
  6344. "lib/net461/Serilog.Sinks.Async.dll",
  6345. "lib/net461/Serilog.Sinks.Async.xml",
  6346. "lib/netstandard1.1/Serilog.Sinks.Async.dll",
  6347. "lib/netstandard1.1/Serilog.Sinks.Async.xml",
  6348. "lib/netstandard2.0/Serilog.Sinks.Async.dll",
  6349. "lib/netstandard2.0/Serilog.Sinks.Async.xml",
  6350. "serilog-sink-nuget.png",
  6351. "serilog.sinks.async.1.5.0.nupkg.sha512",
  6352. "serilog.sinks.async.nuspec"
  6353. ]
  6354. },
  6355. "Serilog.Sinks.Console/4.0.1": {
  6356. "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  6357. "type": "package",
  6358. "path": "serilog.sinks.console/4.0.1",
  6359. "files": [
  6360. ".nupkg.metadata",
  6361. ".signature.p7s",
  6362. "icon.png",
  6363. "lib/net45/Serilog.Sinks.Console.dll",
  6364. "lib/net45/Serilog.Sinks.Console.xml",
  6365. "lib/net5.0/Serilog.Sinks.Console.dll",
  6366. "lib/net5.0/Serilog.Sinks.Console.xml",
  6367. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  6368. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  6369. "lib/netstandard2.0/Serilog.Sinks.Console.dll",
  6370. "lib/netstandard2.0/Serilog.Sinks.Console.xml",
  6371. "serilog.sinks.console.4.0.1.nupkg.sha512",
  6372. "serilog.sinks.console.nuspec"
  6373. ]
  6374. },
  6375. "Serilog.Sinks.Debug/2.0.0": {
  6376. "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
  6377. "type": "package",
  6378. "path": "serilog.sinks.debug/2.0.0",
  6379. "files": [
  6380. ".nupkg.metadata",
  6381. ".signature.p7s",
  6382. "icon.png",
  6383. "lib/net45/Serilog.Sinks.Debug.dll",
  6384. "lib/net45/Serilog.Sinks.Debug.xml",
  6385. "lib/net46/Serilog.Sinks.Debug.dll",
  6386. "lib/net46/Serilog.Sinks.Debug.xml",
  6387. "lib/netstandard1.0/Serilog.Sinks.Debug.dll",
  6388. "lib/netstandard1.0/Serilog.Sinks.Debug.xml",
  6389. "lib/netstandard2.0/Serilog.Sinks.Debug.dll",
  6390. "lib/netstandard2.0/Serilog.Sinks.Debug.xml",
  6391. "lib/netstandard2.1/Serilog.Sinks.Debug.dll",
  6392. "lib/netstandard2.1/Serilog.Sinks.Debug.xml",
  6393. "serilog.sinks.debug.2.0.0.nupkg.sha512",
  6394. "serilog.sinks.debug.nuspec"
  6395. ]
  6396. },
  6397. "Serilog.Sinks.File/5.0.0": {
  6398. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  6399. "type": "package",
  6400. "path": "serilog.sinks.file/5.0.0",
  6401. "files": [
  6402. ".nupkg.metadata",
  6403. ".signature.p7s",
  6404. "images/icon.png",
  6405. "lib/net45/Serilog.Sinks.File.dll",
  6406. "lib/net45/Serilog.Sinks.File.pdb",
  6407. "lib/net45/Serilog.Sinks.File.xml",
  6408. "lib/net5.0/Serilog.Sinks.File.dll",
  6409. "lib/net5.0/Serilog.Sinks.File.pdb",
  6410. "lib/net5.0/Serilog.Sinks.File.xml",
  6411. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  6412. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  6413. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  6414. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  6415. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  6416. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  6417. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  6418. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  6419. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  6420. "serilog.sinks.file.5.0.0.nupkg.sha512",
  6421. "serilog.sinks.file.nuspec"
  6422. ]
  6423. },
  6424. "StackExchange.Redis/2.2.4": {
  6425. "sha512": "wM0OuRyRaZTFndFRjIOvas4jjkeclRJsmNm0eAx5tOju3SQisrLubNaSFT/dBypi4Vh1n7nYc1gWpw9L7ernOg==",
  6426. "type": "package",
  6427. "path": "stackexchange.redis/2.2.4",
  6428. "files": [
  6429. ".nupkg.metadata",
  6430. ".signature.p7s",
  6431. "lib/net461/StackExchange.Redis.dll",
  6432. "lib/net461/StackExchange.Redis.xml",
  6433. "lib/net472/StackExchange.Redis.dll",
  6434. "lib/net472/StackExchange.Redis.xml",
  6435. "lib/net5.0/StackExchange.Redis.dll",
  6436. "lib/net5.0/StackExchange.Redis.xml",
  6437. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  6438. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  6439. "lib/netstandard2.0/StackExchange.Redis.dll",
  6440. "lib/netstandard2.0/StackExchange.Redis.xml",
  6441. "stackexchange.redis.2.2.4.nupkg.sha512",
  6442. "stackexchange.redis.nuspec"
  6443. ]
  6444. },
  6445. "Swashbuckle.AspNetCore/6.3.0": {
  6446. "sha512": "3TAV6JqsJF2F5e5d/tiQuW/TlzKXB/n2IcL5QR1FP8ArmLhmPkpeHiLZ3+1YnJ5840/X5ApvpRRJpM9809IjTg==",
  6447. "type": "package",
  6448. "path": "swashbuckle.aspnetcore/6.3.0",
  6449. "files": [
  6450. ".nupkg.metadata",
  6451. ".signature.p7s",
  6452. "build/Swashbuckle.AspNetCore.props",
  6453. "swashbuckle.aspnetcore.6.3.0.nupkg.sha512",
  6454. "swashbuckle.aspnetcore.nuspec"
  6455. ]
  6456. },
  6457. "Swashbuckle.AspNetCore.Swagger/6.3.0": {
  6458. "sha512": "+taHh7kowNF+tQo9a82avwDtfqhAC82jTZTqZwypDpauPvwavyVtJ7+ERxE+yDb6U/nOcMicMmDAGbqbJ2Pc+Q==",
  6459. "type": "package",
  6460. "path": "swashbuckle.aspnetcore.swagger/6.3.0",
  6461. "files": [
  6462. ".nupkg.metadata",
  6463. ".signature.p7s",
  6464. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  6465. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6466. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  6467. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  6468. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6469. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  6470. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  6471. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6472. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  6473. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  6474. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  6475. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  6476. "swashbuckle.aspnetcore.swagger.6.3.0.nupkg.sha512",
  6477. "swashbuckle.aspnetcore.swagger.nuspec"
  6478. ]
  6479. },
  6480. "Swashbuckle.AspNetCore.SwaggerGen/6.3.0": {
  6481. "sha512": "8PRLtqCXTIfc+W/pcyab8GqHzHuFRZ3L+9/fix/ssVknwy/pbgkOqgzq9DGWfKz+MZReIp5ajZLR7bXioDdacQ==",
  6482. "type": "package",
  6483. "path": "swashbuckle.aspnetcore.swaggergen/6.3.0",
  6484. "files": [
  6485. ".nupkg.metadata",
  6486. ".signature.p7s",
  6487. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6488. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6489. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6490. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6491. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6492. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6493. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6494. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6495. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6496. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  6497. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  6498. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  6499. "swashbuckle.aspnetcore.swaggergen.6.3.0.nupkg.sha512",
  6500. "swashbuckle.aspnetcore.swaggergen.nuspec"
  6501. ]
  6502. },
  6503. "Swashbuckle.AspNetCore.SwaggerUI/6.3.0": {
  6504. "sha512": "OmVLGzyeNBFUAx6E/bqrZW4uxfv9q2MtegYzeHv5Dj8N34ry8104d6OcyRIV4BhwHBSFD1rMvDlPciguFMtQ5w==",
  6505. "type": "package",
  6506. "path": "swashbuckle.aspnetcore.swaggerui/6.3.0",
  6507. "files": [
  6508. ".nupkg.metadata",
  6509. ".signature.p7s",
  6510. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6511. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6512. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6513. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6514. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6515. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6516. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6517. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6518. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6519. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  6520. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  6521. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  6522. "swashbuckle.aspnetcore.swaggerui.6.3.0.nupkg.sha512",
  6523. "swashbuckle.aspnetcore.swaggerui.nuspec"
  6524. ]
  6525. },
  6526. "System.Buffers/4.5.1": {
  6527. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  6528. "type": "package",
  6529. "path": "system.buffers/4.5.1",
  6530. "files": [
  6531. ".nupkg.metadata",
  6532. ".signature.p7s",
  6533. "LICENSE.TXT",
  6534. "THIRD-PARTY-NOTICES.TXT",
  6535. "lib/net461/System.Buffers.dll",
  6536. "lib/net461/System.Buffers.xml",
  6537. "lib/netcoreapp2.0/_._",
  6538. "lib/netstandard1.1/System.Buffers.dll",
  6539. "lib/netstandard1.1/System.Buffers.xml",
  6540. "lib/netstandard2.0/System.Buffers.dll",
  6541. "lib/netstandard2.0/System.Buffers.xml",
  6542. "lib/uap10.0.16299/_._",
  6543. "ref/net45/System.Buffers.dll",
  6544. "ref/net45/System.Buffers.xml",
  6545. "ref/netcoreapp2.0/_._",
  6546. "ref/netstandard1.1/System.Buffers.dll",
  6547. "ref/netstandard1.1/System.Buffers.xml",
  6548. "ref/netstandard2.0/System.Buffers.dll",
  6549. "ref/netstandard2.0/System.Buffers.xml",
  6550. "ref/uap10.0.16299/_._",
  6551. "system.buffers.4.5.1.nupkg.sha512",
  6552. "system.buffers.nuspec",
  6553. "useSharedDesignerContext.txt",
  6554. "version.txt"
  6555. ]
  6556. },
  6557. "System.Collections/4.3.0": {
  6558. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6559. "type": "package",
  6560. "path": "system.collections/4.3.0",
  6561. "files": [
  6562. ".nupkg.metadata",
  6563. ".signature.p7s",
  6564. "ThirdPartyNotices.txt",
  6565. "dotnet_library_license.txt",
  6566. "lib/MonoAndroid10/_._",
  6567. "lib/MonoTouch10/_._",
  6568. "lib/net45/_._",
  6569. "lib/portable-net45+win8+wp8+wpa81/_._",
  6570. "lib/win8/_._",
  6571. "lib/wp80/_._",
  6572. "lib/wpa81/_._",
  6573. "lib/xamarinios10/_._",
  6574. "lib/xamarinmac20/_._",
  6575. "lib/xamarintvos10/_._",
  6576. "lib/xamarinwatchos10/_._",
  6577. "ref/MonoAndroid10/_._",
  6578. "ref/MonoTouch10/_._",
  6579. "ref/net45/_._",
  6580. "ref/netcore50/System.Collections.dll",
  6581. "ref/netcore50/System.Collections.xml",
  6582. "ref/netcore50/de/System.Collections.xml",
  6583. "ref/netcore50/es/System.Collections.xml",
  6584. "ref/netcore50/fr/System.Collections.xml",
  6585. "ref/netcore50/it/System.Collections.xml",
  6586. "ref/netcore50/ja/System.Collections.xml",
  6587. "ref/netcore50/ko/System.Collections.xml",
  6588. "ref/netcore50/ru/System.Collections.xml",
  6589. "ref/netcore50/zh-hans/System.Collections.xml",
  6590. "ref/netcore50/zh-hant/System.Collections.xml",
  6591. "ref/netstandard1.0/System.Collections.dll",
  6592. "ref/netstandard1.0/System.Collections.xml",
  6593. "ref/netstandard1.0/de/System.Collections.xml",
  6594. "ref/netstandard1.0/es/System.Collections.xml",
  6595. "ref/netstandard1.0/fr/System.Collections.xml",
  6596. "ref/netstandard1.0/it/System.Collections.xml",
  6597. "ref/netstandard1.0/ja/System.Collections.xml",
  6598. "ref/netstandard1.0/ko/System.Collections.xml",
  6599. "ref/netstandard1.0/ru/System.Collections.xml",
  6600. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6601. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6602. "ref/netstandard1.3/System.Collections.dll",
  6603. "ref/netstandard1.3/System.Collections.xml",
  6604. "ref/netstandard1.3/de/System.Collections.xml",
  6605. "ref/netstandard1.3/es/System.Collections.xml",
  6606. "ref/netstandard1.3/fr/System.Collections.xml",
  6607. "ref/netstandard1.3/it/System.Collections.xml",
  6608. "ref/netstandard1.3/ja/System.Collections.xml",
  6609. "ref/netstandard1.3/ko/System.Collections.xml",
  6610. "ref/netstandard1.3/ru/System.Collections.xml",
  6611. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6612. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6613. "ref/portable-net45+win8+wp8+wpa81/_._",
  6614. "ref/win8/_._",
  6615. "ref/wp80/_._",
  6616. "ref/wpa81/_._",
  6617. "ref/xamarinios10/_._",
  6618. "ref/xamarinmac20/_._",
  6619. "ref/xamarintvos10/_._",
  6620. "ref/xamarinwatchos10/_._",
  6621. "system.collections.4.3.0.nupkg.sha512",
  6622. "system.collections.nuspec"
  6623. ]
  6624. },
  6625. "System.Collections.Immutable/6.0.0": {
  6626. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  6627. "type": "package",
  6628. "path": "system.collections.immutable/6.0.0",
  6629. "files": [
  6630. ".nupkg.metadata",
  6631. ".signature.p7s",
  6632. "Icon.png",
  6633. "LICENSE.TXT",
  6634. "THIRD-PARTY-NOTICES.TXT",
  6635. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  6636. "buildTransitive/netcoreapp3.1/_._",
  6637. "lib/net461/System.Collections.Immutable.dll",
  6638. "lib/net461/System.Collections.Immutable.xml",
  6639. "lib/net6.0/System.Collections.Immutable.dll",
  6640. "lib/net6.0/System.Collections.Immutable.xml",
  6641. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6642. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6643. "system.collections.immutable.6.0.0.nupkg.sha512",
  6644. "system.collections.immutable.nuspec",
  6645. "useSharedDesignerContext.txt"
  6646. ]
  6647. },
  6648. "System.Configuration.ConfigurationManager/6.0.1": {
  6649. "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  6650. "type": "package",
  6651. "path": "system.configuration.configurationmanager/6.0.1",
  6652. "files": [
  6653. ".nupkg.metadata",
  6654. ".signature.p7s",
  6655. "Icon.png",
  6656. "LICENSE.TXT",
  6657. "THIRD-PARTY-NOTICES.TXT",
  6658. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  6659. "buildTransitive/netcoreapp3.1/_._",
  6660. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6661. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6662. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  6663. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  6664. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6665. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6666. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  6667. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  6668. "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
  6669. "system.configuration.configurationmanager.nuspec",
  6670. "useSharedDesignerContext.txt"
  6671. ]
  6672. },
  6673. "System.Diagnostics.Debug/4.3.0": {
  6674. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6675. "type": "package",
  6676. "path": "system.diagnostics.debug/4.3.0",
  6677. "files": [
  6678. ".nupkg.metadata",
  6679. ".signature.p7s",
  6680. "ThirdPartyNotices.txt",
  6681. "dotnet_library_license.txt",
  6682. "lib/MonoAndroid10/_._",
  6683. "lib/MonoTouch10/_._",
  6684. "lib/net45/_._",
  6685. "lib/portable-net45+win8+wp8+wpa81/_._",
  6686. "lib/win8/_._",
  6687. "lib/wp80/_._",
  6688. "lib/wpa81/_._",
  6689. "lib/xamarinios10/_._",
  6690. "lib/xamarinmac20/_._",
  6691. "lib/xamarintvos10/_._",
  6692. "lib/xamarinwatchos10/_._",
  6693. "ref/MonoAndroid10/_._",
  6694. "ref/MonoTouch10/_._",
  6695. "ref/net45/_._",
  6696. "ref/netcore50/System.Diagnostics.Debug.dll",
  6697. "ref/netcore50/System.Diagnostics.Debug.xml",
  6698. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6699. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6700. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6701. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6702. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6703. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6704. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6705. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6706. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6707. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6708. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6709. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6710. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6711. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6712. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6713. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6714. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6715. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6716. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6717. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6718. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6719. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6720. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6721. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6722. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6723. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6724. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6725. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6726. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6727. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6728. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6729. "ref/portable-net45+win8+wp8+wpa81/_._",
  6730. "ref/win8/_._",
  6731. "ref/wp80/_._",
  6732. "ref/wpa81/_._",
  6733. "ref/xamarinios10/_._",
  6734. "ref/xamarinmac20/_._",
  6735. "ref/xamarintvos10/_._",
  6736. "ref/xamarinwatchos10/_._",
  6737. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6738. "system.diagnostics.debug.nuspec"
  6739. ]
  6740. },
  6741. "System.Diagnostics.DiagnosticSource/6.0.0": {
  6742. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  6743. "type": "package",
  6744. "path": "system.diagnostics.diagnosticsource/6.0.0",
  6745. "files": [
  6746. ".nupkg.metadata",
  6747. ".signature.p7s",
  6748. "Icon.png",
  6749. "LICENSE.TXT",
  6750. "THIRD-PARTY-NOTICES.TXT",
  6751. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  6752. "buildTransitive/netcoreapp3.1/_._",
  6753. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  6754. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  6755. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6756. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6757. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  6758. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  6759. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  6760. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  6761. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  6762. "system.diagnostics.diagnosticsource.nuspec",
  6763. "useSharedDesignerContext.txt"
  6764. ]
  6765. },
  6766. "System.Diagnostics.EventLog/6.0.0": {
  6767. "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==",
  6768. "type": "package",
  6769. "path": "system.diagnostics.eventlog/6.0.0",
  6770. "files": [
  6771. ".nupkg.metadata",
  6772. ".signature.p7s",
  6773. "Icon.png",
  6774. "LICENSE.TXT",
  6775. "THIRD-PARTY-NOTICES.TXT",
  6776. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  6777. "buildTransitive/netcoreapp3.1/_._",
  6778. "lib/net461/System.Diagnostics.EventLog.dll",
  6779. "lib/net461/System.Diagnostics.EventLog.xml",
  6780. "lib/net6.0/System.Diagnostics.EventLog.dll",
  6781. "lib/net6.0/System.Diagnostics.EventLog.xml",
  6782. "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll",
  6783. "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml",
  6784. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  6785. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  6786. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  6787. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  6788. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  6789. "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll",
  6790. "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll",
  6791. "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml",
  6792. "system.diagnostics.eventlog.6.0.0.nupkg.sha512",
  6793. "system.diagnostics.eventlog.nuspec",
  6794. "useSharedDesignerContext.txt"
  6795. ]
  6796. },
  6797. "System.Diagnostics.PerformanceCounter/5.0.0": {
  6798. "sha512": "kcQWWtGVC3MWMNXdMDWfrmIlFZZ2OdoeT6pSNVRtk9+Sa7jwdPiMlNwb0ZQcS7NRlT92pCfmjRtkSWUW3RAKwg==",
  6799. "type": "package",
  6800. "path": "system.diagnostics.performancecounter/5.0.0",
  6801. "files": [
  6802. ".nupkg.metadata",
  6803. ".signature.p7s",
  6804. "Icon.png",
  6805. "LICENSE.TXT",
  6806. "THIRD-PARTY-NOTICES.TXT",
  6807. "lib/MonoAndroid10/_._",
  6808. "lib/MonoTouch10/_._",
  6809. "lib/net461/System.Diagnostics.PerformanceCounter.dll",
  6810. "lib/net461/System.Diagnostics.PerformanceCounter.xml",
  6811. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  6812. "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  6813. "lib/xamarinios10/_._",
  6814. "lib/xamarinmac20/_._",
  6815. "lib/xamarintvos10/_._",
  6816. "lib/xamarinwatchos10/_._",
  6817. "ref/MonoAndroid10/_._",
  6818. "ref/MonoTouch10/_._",
  6819. "ref/net461/System.Diagnostics.PerformanceCounter.dll",
  6820. "ref/net461/System.Diagnostics.PerformanceCounter.xml",
  6821. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.dll",
  6822. "ref/netstandard2.0/System.Diagnostics.PerformanceCounter.xml",
  6823. "ref/xamarinios10/_._",
  6824. "ref/xamarinmac20/_._",
  6825. "ref/xamarintvos10/_._",
  6826. "ref/xamarinwatchos10/_._",
  6827. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.dll",
  6828. "runtimes/win/lib/netcoreapp2.0/System.Diagnostics.PerformanceCounter.xml",
  6829. "system.diagnostics.performancecounter.5.0.0.nupkg.sha512",
  6830. "system.diagnostics.performancecounter.nuspec",
  6831. "useSharedDesignerContext.txt",
  6832. "version.txt"
  6833. ]
  6834. },
  6835. "System.Drawing.Common/6.0.0": {
  6836. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  6837. "type": "package",
  6838. "path": "system.drawing.common/6.0.0",
  6839. "files": [
  6840. ".nupkg.metadata",
  6841. ".signature.p7s",
  6842. "Icon.png",
  6843. "LICENSE.TXT",
  6844. "THIRD-PARTY-NOTICES.TXT",
  6845. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  6846. "buildTransitive/netcoreapp3.1/_._",
  6847. "lib/MonoAndroid10/_._",
  6848. "lib/MonoTouch10/_._",
  6849. "lib/net461/System.Drawing.Common.dll",
  6850. "lib/net461/System.Drawing.Common.xml",
  6851. "lib/net6.0/System.Drawing.Common.dll",
  6852. "lib/net6.0/System.Drawing.Common.xml",
  6853. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  6854. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  6855. "lib/netstandard2.0/System.Drawing.Common.dll",
  6856. "lib/netstandard2.0/System.Drawing.Common.xml",
  6857. "lib/xamarinios10/_._",
  6858. "lib/xamarinmac20/_._",
  6859. "lib/xamarintvos10/_._",
  6860. "lib/xamarinwatchos10/_._",
  6861. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  6862. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  6863. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  6864. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  6865. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  6866. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  6867. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  6868. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  6869. "system.drawing.common.6.0.0.nupkg.sha512",
  6870. "system.drawing.common.nuspec",
  6871. "useSharedDesignerContext.txt"
  6872. ]
  6873. },
  6874. "System.Formats.Asn1/6.0.0": {
  6875. "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
  6876. "type": "package",
  6877. "path": "system.formats.asn1/6.0.0",
  6878. "files": [
  6879. ".nupkg.metadata",
  6880. ".signature.p7s",
  6881. "Icon.png",
  6882. "LICENSE.TXT",
  6883. "THIRD-PARTY-NOTICES.TXT",
  6884. "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
  6885. "buildTransitive/netcoreapp3.1/_._",
  6886. "lib/net461/System.Formats.Asn1.dll",
  6887. "lib/net461/System.Formats.Asn1.xml",
  6888. "lib/net6.0/System.Formats.Asn1.dll",
  6889. "lib/net6.0/System.Formats.Asn1.xml",
  6890. "lib/netstandard2.0/System.Formats.Asn1.dll",
  6891. "lib/netstandard2.0/System.Formats.Asn1.xml",
  6892. "system.formats.asn1.6.0.0.nupkg.sha512",
  6893. "system.formats.asn1.nuspec",
  6894. "useSharedDesignerContext.txt"
  6895. ]
  6896. },
  6897. "System.Globalization/4.3.0": {
  6898. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6899. "type": "package",
  6900. "path": "system.globalization/4.3.0",
  6901. "files": [
  6902. ".nupkg.metadata",
  6903. ".signature.p7s",
  6904. "ThirdPartyNotices.txt",
  6905. "dotnet_library_license.txt",
  6906. "lib/MonoAndroid10/_._",
  6907. "lib/MonoTouch10/_._",
  6908. "lib/net45/_._",
  6909. "lib/portable-net45+win8+wp8+wpa81/_._",
  6910. "lib/win8/_._",
  6911. "lib/wp80/_._",
  6912. "lib/wpa81/_._",
  6913. "lib/xamarinios10/_._",
  6914. "lib/xamarinmac20/_._",
  6915. "lib/xamarintvos10/_._",
  6916. "lib/xamarinwatchos10/_._",
  6917. "ref/MonoAndroid10/_._",
  6918. "ref/MonoTouch10/_._",
  6919. "ref/net45/_._",
  6920. "ref/netcore50/System.Globalization.dll",
  6921. "ref/netcore50/System.Globalization.xml",
  6922. "ref/netcore50/de/System.Globalization.xml",
  6923. "ref/netcore50/es/System.Globalization.xml",
  6924. "ref/netcore50/fr/System.Globalization.xml",
  6925. "ref/netcore50/it/System.Globalization.xml",
  6926. "ref/netcore50/ja/System.Globalization.xml",
  6927. "ref/netcore50/ko/System.Globalization.xml",
  6928. "ref/netcore50/ru/System.Globalization.xml",
  6929. "ref/netcore50/zh-hans/System.Globalization.xml",
  6930. "ref/netcore50/zh-hant/System.Globalization.xml",
  6931. "ref/netstandard1.0/System.Globalization.dll",
  6932. "ref/netstandard1.0/System.Globalization.xml",
  6933. "ref/netstandard1.0/de/System.Globalization.xml",
  6934. "ref/netstandard1.0/es/System.Globalization.xml",
  6935. "ref/netstandard1.0/fr/System.Globalization.xml",
  6936. "ref/netstandard1.0/it/System.Globalization.xml",
  6937. "ref/netstandard1.0/ja/System.Globalization.xml",
  6938. "ref/netstandard1.0/ko/System.Globalization.xml",
  6939. "ref/netstandard1.0/ru/System.Globalization.xml",
  6940. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6941. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6942. "ref/netstandard1.3/System.Globalization.dll",
  6943. "ref/netstandard1.3/System.Globalization.xml",
  6944. "ref/netstandard1.3/de/System.Globalization.xml",
  6945. "ref/netstandard1.3/es/System.Globalization.xml",
  6946. "ref/netstandard1.3/fr/System.Globalization.xml",
  6947. "ref/netstandard1.3/it/System.Globalization.xml",
  6948. "ref/netstandard1.3/ja/System.Globalization.xml",
  6949. "ref/netstandard1.3/ko/System.Globalization.xml",
  6950. "ref/netstandard1.3/ru/System.Globalization.xml",
  6951. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6952. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6953. "ref/portable-net45+win8+wp8+wpa81/_._",
  6954. "ref/win8/_._",
  6955. "ref/wp80/_._",
  6956. "ref/wpa81/_._",
  6957. "ref/xamarinios10/_._",
  6958. "ref/xamarinmac20/_._",
  6959. "ref/xamarintvos10/_._",
  6960. "ref/xamarinwatchos10/_._",
  6961. "system.globalization.4.3.0.nupkg.sha512",
  6962. "system.globalization.nuspec"
  6963. ]
  6964. },
  6965. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  6966. "sha512": "xa8kptJ+uf9hzj366f3pLcs5HFZ6dQMDKzEGq/yZNF0s3mVfyIhuQwgDcTJlAU4AROne/6Z5+vITwrW3gVNKIA==",
  6967. "type": "package",
  6968. "path": "system.identitymodel.tokens.jwt/5.5.0",
  6969. "files": [
  6970. ".nupkg.metadata",
  6971. ".signature.p7s",
  6972. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  6973. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  6974. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  6975. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  6976. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  6977. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  6978. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  6979. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  6980. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6981. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6982. "system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512",
  6983. "system.identitymodel.tokens.jwt.nuspec"
  6984. ]
  6985. },
  6986. "System.IO/4.3.0": {
  6987. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6988. "type": "package",
  6989. "path": "system.io/4.3.0",
  6990. "files": [
  6991. ".nupkg.metadata",
  6992. ".signature.p7s",
  6993. "ThirdPartyNotices.txt",
  6994. "dotnet_library_license.txt",
  6995. "lib/MonoAndroid10/_._",
  6996. "lib/MonoTouch10/_._",
  6997. "lib/net45/_._",
  6998. "lib/net462/System.IO.dll",
  6999. "lib/portable-net45+win8+wp8+wpa81/_._",
  7000. "lib/win8/_._",
  7001. "lib/wp80/_._",
  7002. "lib/wpa81/_._",
  7003. "lib/xamarinios10/_._",
  7004. "lib/xamarinmac20/_._",
  7005. "lib/xamarintvos10/_._",
  7006. "lib/xamarinwatchos10/_._",
  7007. "ref/MonoAndroid10/_._",
  7008. "ref/MonoTouch10/_._",
  7009. "ref/net45/_._",
  7010. "ref/net462/System.IO.dll",
  7011. "ref/netcore50/System.IO.dll",
  7012. "ref/netcore50/System.IO.xml",
  7013. "ref/netcore50/de/System.IO.xml",
  7014. "ref/netcore50/es/System.IO.xml",
  7015. "ref/netcore50/fr/System.IO.xml",
  7016. "ref/netcore50/it/System.IO.xml",
  7017. "ref/netcore50/ja/System.IO.xml",
  7018. "ref/netcore50/ko/System.IO.xml",
  7019. "ref/netcore50/ru/System.IO.xml",
  7020. "ref/netcore50/zh-hans/System.IO.xml",
  7021. "ref/netcore50/zh-hant/System.IO.xml",
  7022. "ref/netstandard1.0/System.IO.dll",
  7023. "ref/netstandard1.0/System.IO.xml",
  7024. "ref/netstandard1.0/de/System.IO.xml",
  7025. "ref/netstandard1.0/es/System.IO.xml",
  7026. "ref/netstandard1.0/fr/System.IO.xml",
  7027. "ref/netstandard1.0/it/System.IO.xml",
  7028. "ref/netstandard1.0/ja/System.IO.xml",
  7029. "ref/netstandard1.0/ko/System.IO.xml",
  7030. "ref/netstandard1.0/ru/System.IO.xml",
  7031. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7032. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7033. "ref/netstandard1.3/System.IO.dll",
  7034. "ref/netstandard1.3/System.IO.xml",
  7035. "ref/netstandard1.3/de/System.IO.xml",
  7036. "ref/netstandard1.3/es/System.IO.xml",
  7037. "ref/netstandard1.3/fr/System.IO.xml",
  7038. "ref/netstandard1.3/it/System.IO.xml",
  7039. "ref/netstandard1.3/ja/System.IO.xml",
  7040. "ref/netstandard1.3/ko/System.IO.xml",
  7041. "ref/netstandard1.3/ru/System.IO.xml",
  7042. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7043. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7044. "ref/netstandard1.5/System.IO.dll",
  7045. "ref/netstandard1.5/System.IO.xml",
  7046. "ref/netstandard1.5/de/System.IO.xml",
  7047. "ref/netstandard1.5/es/System.IO.xml",
  7048. "ref/netstandard1.5/fr/System.IO.xml",
  7049. "ref/netstandard1.5/it/System.IO.xml",
  7050. "ref/netstandard1.5/ja/System.IO.xml",
  7051. "ref/netstandard1.5/ko/System.IO.xml",
  7052. "ref/netstandard1.5/ru/System.IO.xml",
  7053. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7054. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7055. "ref/portable-net45+win8+wp8+wpa81/_._",
  7056. "ref/win8/_._",
  7057. "ref/wp80/_._",
  7058. "ref/wpa81/_._",
  7059. "ref/xamarinios10/_._",
  7060. "ref/xamarinmac20/_._",
  7061. "ref/xamarintvos10/_._",
  7062. "ref/xamarinwatchos10/_._",
  7063. "system.io.4.3.0.nupkg.sha512",
  7064. "system.io.nuspec"
  7065. ]
  7066. },
  7067. "System.IO.Pipelines/5.0.2": {
  7068. "sha512": "Iew+dfa6FFiyvWBdRmXApixRY1db+beyutpIck4SOSe0NLM8FD/7AD54MscqVLhvfSMLHO7KadjTRT7fqxOGTA==",
  7069. "type": "package",
  7070. "path": "system.io.pipelines/5.0.2",
  7071. "files": [
  7072. ".nupkg.metadata",
  7073. ".signature.p7s",
  7074. "Icon.png",
  7075. "LICENSE.TXT",
  7076. "THIRD-PARTY-NOTICES.TXT",
  7077. "lib/net461/System.IO.Pipelines.dll",
  7078. "lib/net461/System.IO.Pipelines.xml",
  7079. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7080. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7081. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7082. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7083. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7084. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7085. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7086. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7087. "system.io.pipelines.5.0.2.nupkg.sha512",
  7088. "system.io.pipelines.nuspec",
  7089. "useSharedDesignerContext.txt",
  7090. "version.txt"
  7091. ]
  7092. },
  7093. "System.Linq/4.3.0": {
  7094. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7095. "type": "package",
  7096. "path": "system.linq/4.3.0",
  7097. "files": [
  7098. ".nupkg.metadata",
  7099. ".signature.p7s",
  7100. "ThirdPartyNotices.txt",
  7101. "dotnet_library_license.txt",
  7102. "lib/MonoAndroid10/_._",
  7103. "lib/MonoTouch10/_._",
  7104. "lib/net45/_._",
  7105. "lib/net463/System.Linq.dll",
  7106. "lib/netcore50/System.Linq.dll",
  7107. "lib/netstandard1.6/System.Linq.dll",
  7108. "lib/portable-net45+win8+wp8+wpa81/_._",
  7109. "lib/win8/_._",
  7110. "lib/wp80/_._",
  7111. "lib/wpa81/_._",
  7112. "lib/xamarinios10/_._",
  7113. "lib/xamarinmac20/_._",
  7114. "lib/xamarintvos10/_._",
  7115. "lib/xamarinwatchos10/_._",
  7116. "ref/MonoAndroid10/_._",
  7117. "ref/MonoTouch10/_._",
  7118. "ref/net45/_._",
  7119. "ref/net463/System.Linq.dll",
  7120. "ref/netcore50/System.Linq.dll",
  7121. "ref/netcore50/System.Linq.xml",
  7122. "ref/netcore50/de/System.Linq.xml",
  7123. "ref/netcore50/es/System.Linq.xml",
  7124. "ref/netcore50/fr/System.Linq.xml",
  7125. "ref/netcore50/it/System.Linq.xml",
  7126. "ref/netcore50/ja/System.Linq.xml",
  7127. "ref/netcore50/ko/System.Linq.xml",
  7128. "ref/netcore50/ru/System.Linq.xml",
  7129. "ref/netcore50/zh-hans/System.Linq.xml",
  7130. "ref/netcore50/zh-hant/System.Linq.xml",
  7131. "ref/netstandard1.0/System.Linq.dll",
  7132. "ref/netstandard1.0/System.Linq.xml",
  7133. "ref/netstandard1.0/de/System.Linq.xml",
  7134. "ref/netstandard1.0/es/System.Linq.xml",
  7135. "ref/netstandard1.0/fr/System.Linq.xml",
  7136. "ref/netstandard1.0/it/System.Linq.xml",
  7137. "ref/netstandard1.0/ja/System.Linq.xml",
  7138. "ref/netstandard1.0/ko/System.Linq.xml",
  7139. "ref/netstandard1.0/ru/System.Linq.xml",
  7140. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7141. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7142. "ref/netstandard1.6/System.Linq.dll",
  7143. "ref/netstandard1.6/System.Linq.xml",
  7144. "ref/netstandard1.6/de/System.Linq.xml",
  7145. "ref/netstandard1.6/es/System.Linq.xml",
  7146. "ref/netstandard1.6/fr/System.Linq.xml",
  7147. "ref/netstandard1.6/it/System.Linq.xml",
  7148. "ref/netstandard1.6/ja/System.Linq.xml",
  7149. "ref/netstandard1.6/ko/System.Linq.xml",
  7150. "ref/netstandard1.6/ru/System.Linq.xml",
  7151. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7152. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7153. "ref/portable-net45+win8+wp8+wpa81/_._",
  7154. "ref/win8/_._",
  7155. "ref/wp80/_._",
  7156. "ref/wpa81/_._",
  7157. "ref/xamarinios10/_._",
  7158. "ref/xamarinmac20/_._",
  7159. "ref/xamarintvos10/_._",
  7160. "ref/xamarinwatchos10/_._",
  7161. "system.linq.4.3.0.nupkg.sha512",
  7162. "system.linq.nuspec"
  7163. ]
  7164. },
  7165. "System.Linq.Dynamic.Core/1.2.18": {
  7166. "sha512": "+RH90sKD6SK2c9MD2Xo2jz1hkAJYfgPVyW1VgAwiPURR+JzOJCdvsDBg2Iq97FmTymxlQBY76G1cMxsF6j+6tA==",
  7167. "type": "package",
  7168. "path": "system.linq.dynamic.core/1.2.18",
  7169. "files": [
  7170. ".nupkg.metadata",
  7171. ".signature.p7s",
  7172. "lib/net35/System.Linq.Dynamic.Core.dll",
  7173. "lib/net35/System.Linq.Dynamic.Core.pdb",
  7174. "lib/net35/System.Linq.Dynamic.Core.xml",
  7175. "lib/net40/System.Linq.Dynamic.Core.dll",
  7176. "lib/net40/System.Linq.Dynamic.Core.pdb",
  7177. "lib/net40/System.Linq.Dynamic.Core.xml",
  7178. "lib/net45/System.Linq.Dynamic.Core.dll",
  7179. "lib/net45/System.Linq.Dynamic.Core.pdb",
  7180. "lib/net45/System.Linq.Dynamic.Core.xml",
  7181. "lib/net452/System.Linq.Dynamic.Core.dll",
  7182. "lib/net452/System.Linq.Dynamic.Core.pdb",
  7183. "lib/net452/System.Linq.Dynamic.Core.xml",
  7184. "lib/net46/System.Linq.Dynamic.Core.dll",
  7185. "lib/net46/System.Linq.Dynamic.Core.pdb",
  7186. "lib/net46/System.Linq.Dynamic.Core.xml",
  7187. "lib/net5.0/System.Linq.Dynamic.Core.dll",
  7188. "lib/net5.0/System.Linq.Dynamic.Core.pdb",
  7189. "lib/net5.0/System.Linq.Dynamic.Core.xml",
  7190. "lib/net6.0/System.Linq.Dynamic.Core.dll",
  7191. "lib/net6.0/System.Linq.Dynamic.Core.pdb",
  7192. "lib/net6.0/System.Linq.Dynamic.Core.xml",
  7193. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.dll",
  7194. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.pdb",
  7195. "lib/netcoreapp2.1/System.Linq.Dynamic.Core.xml",
  7196. "lib/netstandard1.3/System.Linq.Dynamic.Core.dll",
  7197. "lib/netstandard1.3/System.Linq.Dynamic.Core.pdb",
  7198. "lib/netstandard1.3/System.Linq.Dynamic.Core.xml",
  7199. "lib/netstandard2.0/System.Linq.Dynamic.Core.dll",
  7200. "lib/netstandard2.0/System.Linq.Dynamic.Core.pdb",
  7201. "lib/netstandard2.0/System.Linq.Dynamic.Core.xml",
  7202. "lib/netstandard2.1/System.Linq.Dynamic.Core.dll",
  7203. "lib/netstandard2.1/System.Linq.Dynamic.Core.pdb",
  7204. "lib/netstandard2.1/System.Linq.Dynamic.Core.xml",
  7205. "lib/uap10.0.10240/System.Linq.Dynamic.Core.dll",
  7206. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pdb",
  7207. "lib/uap10.0.10240/System.Linq.Dynamic.Core.pri",
  7208. "lib/uap10.0.10240/System.Linq.Dynamic.Core.xml",
  7209. "system.linq.dynamic.core.1.2.18.nupkg.sha512",
  7210. "system.linq.dynamic.core.nuspec"
  7211. ]
  7212. },
  7213. "System.Linq.Expressions/4.3.0": {
  7214. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7215. "type": "package",
  7216. "path": "system.linq.expressions/4.3.0",
  7217. "files": [
  7218. ".nupkg.metadata",
  7219. ".signature.p7s",
  7220. "ThirdPartyNotices.txt",
  7221. "dotnet_library_license.txt",
  7222. "lib/MonoAndroid10/_._",
  7223. "lib/MonoTouch10/_._",
  7224. "lib/net45/_._",
  7225. "lib/net463/System.Linq.Expressions.dll",
  7226. "lib/netcore50/System.Linq.Expressions.dll",
  7227. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7228. "lib/portable-net45+win8+wp8+wpa81/_._",
  7229. "lib/win8/_._",
  7230. "lib/wp80/_._",
  7231. "lib/wpa81/_._",
  7232. "lib/xamarinios10/_._",
  7233. "lib/xamarinmac20/_._",
  7234. "lib/xamarintvos10/_._",
  7235. "lib/xamarinwatchos10/_._",
  7236. "ref/MonoAndroid10/_._",
  7237. "ref/MonoTouch10/_._",
  7238. "ref/net45/_._",
  7239. "ref/net463/System.Linq.Expressions.dll",
  7240. "ref/netcore50/System.Linq.Expressions.dll",
  7241. "ref/netcore50/System.Linq.Expressions.xml",
  7242. "ref/netcore50/de/System.Linq.Expressions.xml",
  7243. "ref/netcore50/es/System.Linq.Expressions.xml",
  7244. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7245. "ref/netcore50/it/System.Linq.Expressions.xml",
  7246. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7247. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7248. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7249. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7250. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7251. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7252. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7253. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7254. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7255. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7256. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7257. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7258. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7259. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7260. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7261. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7262. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7263. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7264. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7265. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7266. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7267. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7268. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7269. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7270. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7271. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7272. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7273. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7274. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7275. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7276. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7277. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7278. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7279. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7280. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7281. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7282. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7283. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7284. "ref/portable-net45+win8+wp8+wpa81/_._",
  7285. "ref/win8/_._",
  7286. "ref/wp80/_._",
  7287. "ref/wpa81/_._",
  7288. "ref/xamarinios10/_._",
  7289. "ref/xamarinmac20/_._",
  7290. "ref/xamarintvos10/_._",
  7291. "ref/xamarinwatchos10/_._",
  7292. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7293. "system.linq.expressions.4.3.0.nupkg.sha512",
  7294. "system.linq.expressions.nuspec"
  7295. ]
  7296. },
  7297. "System.Linq.Queryable/4.3.0": {
  7298. "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
  7299. "type": "package",
  7300. "path": "system.linq.queryable/4.3.0",
  7301. "files": [
  7302. ".nupkg.metadata",
  7303. ".signature.p7s",
  7304. "ThirdPartyNotices.txt",
  7305. "dotnet_library_license.txt",
  7306. "lib/monoandroid10/_._",
  7307. "lib/monotouch10/_._",
  7308. "lib/net45/_._",
  7309. "lib/netcore50/System.Linq.Queryable.dll",
  7310. "lib/netstandard1.3/System.Linq.Queryable.dll",
  7311. "lib/portable-net45+win8+wp8+wpa81/_._",
  7312. "lib/win8/_._",
  7313. "lib/wp80/_._",
  7314. "lib/wpa81/_._",
  7315. "lib/xamarinios10/_._",
  7316. "lib/xamarinmac20/_._",
  7317. "lib/xamarintvos10/_._",
  7318. "lib/xamarinwatchos10/_._",
  7319. "ref/monoandroid10/_._",
  7320. "ref/monotouch10/_._",
  7321. "ref/net45/_._",
  7322. "ref/netcore50/System.Linq.Queryable.dll",
  7323. "ref/netcore50/System.Linq.Queryable.xml",
  7324. "ref/netcore50/de/System.Linq.Queryable.xml",
  7325. "ref/netcore50/es/System.Linq.Queryable.xml",
  7326. "ref/netcore50/fr/System.Linq.Queryable.xml",
  7327. "ref/netcore50/it/System.Linq.Queryable.xml",
  7328. "ref/netcore50/ja/System.Linq.Queryable.xml",
  7329. "ref/netcore50/ko/System.Linq.Queryable.xml",
  7330. "ref/netcore50/ru/System.Linq.Queryable.xml",
  7331. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  7332. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  7333. "ref/netstandard1.0/System.Linq.Queryable.dll",
  7334. "ref/netstandard1.0/System.Linq.Queryable.xml",
  7335. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  7336. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  7337. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  7338. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  7339. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  7340. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  7341. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  7342. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  7343. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  7344. "ref/portable-net45+win8+wp8+wpa81/_._",
  7345. "ref/win8/_._",
  7346. "ref/wp80/_._",
  7347. "ref/wpa81/_._",
  7348. "ref/xamarinios10/_._",
  7349. "ref/xamarinmac20/_._",
  7350. "ref/xamarintvos10/_._",
  7351. "ref/xamarinwatchos10/_._",
  7352. "system.linq.queryable.4.3.0.nupkg.sha512",
  7353. "system.linq.queryable.nuspec"
  7354. ]
  7355. },
  7356. "System.Memory/4.5.4": {
  7357. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  7358. "type": "package",
  7359. "path": "system.memory/4.5.4",
  7360. "files": [
  7361. ".nupkg.metadata",
  7362. ".signature.p7s",
  7363. "LICENSE.TXT",
  7364. "THIRD-PARTY-NOTICES.TXT",
  7365. "lib/net461/System.Memory.dll",
  7366. "lib/net461/System.Memory.xml",
  7367. "lib/netcoreapp2.1/_._",
  7368. "lib/netstandard1.1/System.Memory.dll",
  7369. "lib/netstandard1.1/System.Memory.xml",
  7370. "lib/netstandard2.0/System.Memory.dll",
  7371. "lib/netstandard2.0/System.Memory.xml",
  7372. "ref/netcoreapp2.1/_._",
  7373. "system.memory.4.5.4.nupkg.sha512",
  7374. "system.memory.nuspec",
  7375. "useSharedDesignerContext.txt",
  7376. "version.txt"
  7377. ]
  7378. },
  7379. "System.ObjectModel/4.3.0": {
  7380. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7381. "type": "package",
  7382. "path": "system.objectmodel/4.3.0",
  7383. "files": [
  7384. ".nupkg.metadata",
  7385. ".signature.p7s",
  7386. "ThirdPartyNotices.txt",
  7387. "dotnet_library_license.txt",
  7388. "lib/MonoAndroid10/_._",
  7389. "lib/MonoTouch10/_._",
  7390. "lib/net45/_._",
  7391. "lib/netcore50/System.ObjectModel.dll",
  7392. "lib/netstandard1.3/System.ObjectModel.dll",
  7393. "lib/portable-net45+win8+wp8+wpa81/_._",
  7394. "lib/win8/_._",
  7395. "lib/wp80/_._",
  7396. "lib/wpa81/_._",
  7397. "lib/xamarinios10/_._",
  7398. "lib/xamarinmac20/_._",
  7399. "lib/xamarintvos10/_._",
  7400. "lib/xamarinwatchos10/_._",
  7401. "ref/MonoAndroid10/_._",
  7402. "ref/MonoTouch10/_._",
  7403. "ref/net45/_._",
  7404. "ref/netcore50/System.ObjectModel.dll",
  7405. "ref/netcore50/System.ObjectModel.xml",
  7406. "ref/netcore50/de/System.ObjectModel.xml",
  7407. "ref/netcore50/es/System.ObjectModel.xml",
  7408. "ref/netcore50/fr/System.ObjectModel.xml",
  7409. "ref/netcore50/it/System.ObjectModel.xml",
  7410. "ref/netcore50/ja/System.ObjectModel.xml",
  7411. "ref/netcore50/ko/System.ObjectModel.xml",
  7412. "ref/netcore50/ru/System.ObjectModel.xml",
  7413. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7414. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7415. "ref/netstandard1.0/System.ObjectModel.dll",
  7416. "ref/netstandard1.0/System.ObjectModel.xml",
  7417. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7418. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7419. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7420. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7421. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7422. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7423. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7424. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7425. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7426. "ref/netstandard1.3/System.ObjectModel.dll",
  7427. "ref/netstandard1.3/System.ObjectModel.xml",
  7428. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7429. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7430. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7431. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7432. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7433. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7434. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7435. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7436. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7437. "ref/portable-net45+win8+wp8+wpa81/_._",
  7438. "ref/win8/_._",
  7439. "ref/wp80/_._",
  7440. "ref/wpa81/_._",
  7441. "ref/xamarinios10/_._",
  7442. "ref/xamarinmac20/_._",
  7443. "ref/xamarintvos10/_._",
  7444. "ref/xamarinwatchos10/_._",
  7445. "system.objectmodel.4.3.0.nupkg.sha512",
  7446. "system.objectmodel.nuspec"
  7447. ]
  7448. },
  7449. "System.Reflection/4.3.0": {
  7450. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7451. "type": "package",
  7452. "path": "system.reflection/4.3.0",
  7453. "files": [
  7454. ".nupkg.metadata",
  7455. ".signature.p7s",
  7456. "ThirdPartyNotices.txt",
  7457. "dotnet_library_license.txt",
  7458. "lib/MonoAndroid10/_._",
  7459. "lib/MonoTouch10/_._",
  7460. "lib/net45/_._",
  7461. "lib/net462/System.Reflection.dll",
  7462. "lib/portable-net45+win8+wp8+wpa81/_._",
  7463. "lib/win8/_._",
  7464. "lib/wp80/_._",
  7465. "lib/wpa81/_._",
  7466. "lib/xamarinios10/_._",
  7467. "lib/xamarinmac20/_._",
  7468. "lib/xamarintvos10/_._",
  7469. "lib/xamarinwatchos10/_._",
  7470. "ref/MonoAndroid10/_._",
  7471. "ref/MonoTouch10/_._",
  7472. "ref/net45/_._",
  7473. "ref/net462/System.Reflection.dll",
  7474. "ref/netcore50/System.Reflection.dll",
  7475. "ref/netcore50/System.Reflection.xml",
  7476. "ref/netcore50/de/System.Reflection.xml",
  7477. "ref/netcore50/es/System.Reflection.xml",
  7478. "ref/netcore50/fr/System.Reflection.xml",
  7479. "ref/netcore50/it/System.Reflection.xml",
  7480. "ref/netcore50/ja/System.Reflection.xml",
  7481. "ref/netcore50/ko/System.Reflection.xml",
  7482. "ref/netcore50/ru/System.Reflection.xml",
  7483. "ref/netcore50/zh-hans/System.Reflection.xml",
  7484. "ref/netcore50/zh-hant/System.Reflection.xml",
  7485. "ref/netstandard1.0/System.Reflection.dll",
  7486. "ref/netstandard1.0/System.Reflection.xml",
  7487. "ref/netstandard1.0/de/System.Reflection.xml",
  7488. "ref/netstandard1.0/es/System.Reflection.xml",
  7489. "ref/netstandard1.0/fr/System.Reflection.xml",
  7490. "ref/netstandard1.0/it/System.Reflection.xml",
  7491. "ref/netstandard1.0/ja/System.Reflection.xml",
  7492. "ref/netstandard1.0/ko/System.Reflection.xml",
  7493. "ref/netstandard1.0/ru/System.Reflection.xml",
  7494. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7495. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7496. "ref/netstandard1.3/System.Reflection.dll",
  7497. "ref/netstandard1.3/System.Reflection.xml",
  7498. "ref/netstandard1.3/de/System.Reflection.xml",
  7499. "ref/netstandard1.3/es/System.Reflection.xml",
  7500. "ref/netstandard1.3/fr/System.Reflection.xml",
  7501. "ref/netstandard1.3/it/System.Reflection.xml",
  7502. "ref/netstandard1.3/ja/System.Reflection.xml",
  7503. "ref/netstandard1.3/ko/System.Reflection.xml",
  7504. "ref/netstandard1.3/ru/System.Reflection.xml",
  7505. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7506. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7507. "ref/netstandard1.5/System.Reflection.dll",
  7508. "ref/netstandard1.5/System.Reflection.xml",
  7509. "ref/netstandard1.5/de/System.Reflection.xml",
  7510. "ref/netstandard1.5/es/System.Reflection.xml",
  7511. "ref/netstandard1.5/fr/System.Reflection.xml",
  7512. "ref/netstandard1.5/it/System.Reflection.xml",
  7513. "ref/netstandard1.5/ja/System.Reflection.xml",
  7514. "ref/netstandard1.5/ko/System.Reflection.xml",
  7515. "ref/netstandard1.5/ru/System.Reflection.xml",
  7516. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7517. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7518. "ref/portable-net45+win8+wp8+wpa81/_._",
  7519. "ref/win8/_._",
  7520. "ref/wp80/_._",
  7521. "ref/wpa81/_._",
  7522. "ref/xamarinios10/_._",
  7523. "ref/xamarinmac20/_._",
  7524. "ref/xamarintvos10/_._",
  7525. "ref/xamarinwatchos10/_._",
  7526. "system.reflection.4.3.0.nupkg.sha512",
  7527. "system.reflection.nuspec"
  7528. ]
  7529. },
  7530. "System.Reflection.Emit/4.3.0": {
  7531. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  7532. "type": "package",
  7533. "path": "system.reflection.emit/4.3.0",
  7534. "files": [
  7535. ".nupkg.metadata",
  7536. "ThirdPartyNotices.txt",
  7537. "dotnet_library_license.txt",
  7538. "lib/MonoAndroid10/_._",
  7539. "lib/monotouch10/_._",
  7540. "lib/net45/_._",
  7541. "lib/netcore50/System.Reflection.Emit.dll",
  7542. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7543. "lib/xamarinios10/_._",
  7544. "lib/xamarinmac20/_._",
  7545. "lib/xamarintvos10/_._",
  7546. "lib/xamarinwatchos10/_._",
  7547. "ref/MonoAndroid10/_._",
  7548. "ref/net45/_._",
  7549. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7550. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7551. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7552. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7553. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7554. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7555. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7556. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7557. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7558. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7559. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7560. "ref/xamarinmac20/_._",
  7561. "system.reflection.emit.4.3.0.nupkg.sha512",
  7562. "system.reflection.emit.nuspec"
  7563. ]
  7564. },
  7565. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7566. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7567. "type": "package",
  7568. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7569. "files": [
  7570. ".nupkg.metadata",
  7571. "ThirdPartyNotices.txt",
  7572. "dotnet_library_license.txt",
  7573. "lib/MonoAndroid10/_._",
  7574. "lib/MonoTouch10/_._",
  7575. "lib/net45/_._",
  7576. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7577. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7578. "lib/portable-net45+wp8/_._",
  7579. "lib/wp80/_._",
  7580. "lib/xamarinios10/_._",
  7581. "lib/xamarinmac20/_._",
  7582. "lib/xamarintvos10/_._",
  7583. "lib/xamarinwatchos10/_._",
  7584. "ref/MonoAndroid10/_._",
  7585. "ref/MonoTouch10/_._",
  7586. "ref/net45/_._",
  7587. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7588. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7589. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7590. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7591. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7592. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7593. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7594. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7595. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7596. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7597. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7598. "ref/portable-net45+wp8/_._",
  7599. "ref/wp80/_._",
  7600. "ref/xamarinios10/_._",
  7601. "ref/xamarinmac20/_._",
  7602. "ref/xamarintvos10/_._",
  7603. "ref/xamarinwatchos10/_._",
  7604. "runtimes/aot/lib/netcore50/_._",
  7605. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7606. "system.reflection.emit.ilgeneration.nuspec"
  7607. ]
  7608. },
  7609. "System.Reflection.Emit.Lightweight/4.3.0": {
  7610. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  7611. "type": "package",
  7612. "path": "system.reflection.emit.lightweight/4.3.0",
  7613. "files": [
  7614. ".nupkg.metadata",
  7615. "ThirdPartyNotices.txt",
  7616. "dotnet_library_license.txt",
  7617. "lib/MonoAndroid10/_._",
  7618. "lib/MonoTouch10/_._",
  7619. "lib/net45/_._",
  7620. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7621. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7622. "lib/portable-net45+wp8/_._",
  7623. "lib/wp80/_._",
  7624. "lib/xamarinios10/_._",
  7625. "lib/xamarinmac20/_._",
  7626. "lib/xamarintvos10/_._",
  7627. "lib/xamarinwatchos10/_._",
  7628. "ref/MonoAndroid10/_._",
  7629. "ref/MonoTouch10/_._",
  7630. "ref/net45/_._",
  7631. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7632. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7633. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7634. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7635. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7636. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7637. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7638. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7639. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7640. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7641. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7642. "ref/portable-net45+wp8/_._",
  7643. "ref/wp80/_._",
  7644. "ref/xamarinios10/_._",
  7645. "ref/xamarinmac20/_._",
  7646. "ref/xamarintvos10/_._",
  7647. "ref/xamarinwatchos10/_._",
  7648. "runtimes/aot/lib/netcore50/_._",
  7649. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  7650. "system.reflection.emit.lightweight.nuspec"
  7651. ]
  7652. },
  7653. "System.Reflection.Extensions/4.3.0": {
  7654. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7655. "type": "package",
  7656. "path": "system.reflection.extensions/4.3.0",
  7657. "files": [
  7658. ".nupkg.metadata",
  7659. ".signature.p7s",
  7660. "ThirdPartyNotices.txt",
  7661. "dotnet_library_license.txt",
  7662. "lib/MonoAndroid10/_._",
  7663. "lib/MonoTouch10/_._",
  7664. "lib/net45/_._",
  7665. "lib/portable-net45+win8+wp8+wpa81/_._",
  7666. "lib/win8/_._",
  7667. "lib/wp80/_._",
  7668. "lib/wpa81/_._",
  7669. "lib/xamarinios10/_._",
  7670. "lib/xamarinmac20/_._",
  7671. "lib/xamarintvos10/_._",
  7672. "lib/xamarinwatchos10/_._",
  7673. "ref/MonoAndroid10/_._",
  7674. "ref/MonoTouch10/_._",
  7675. "ref/net45/_._",
  7676. "ref/netcore50/System.Reflection.Extensions.dll",
  7677. "ref/netcore50/System.Reflection.Extensions.xml",
  7678. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7679. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7680. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7681. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7682. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7683. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7684. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7685. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7686. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7687. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7688. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7689. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7690. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7691. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7692. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7693. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7694. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7695. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7696. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7697. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7698. "ref/portable-net45+win8+wp8+wpa81/_._",
  7699. "ref/win8/_._",
  7700. "ref/wp80/_._",
  7701. "ref/wpa81/_._",
  7702. "ref/xamarinios10/_._",
  7703. "ref/xamarinmac20/_._",
  7704. "ref/xamarintvos10/_._",
  7705. "ref/xamarinwatchos10/_._",
  7706. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7707. "system.reflection.extensions.nuspec"
  7708. ]
  7709. },
  7710. "System.Reflection.Metadata/5.0.0": {
  7711. "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  7712. "type": "package",
  7713. "path": "system.reflection.metadata/5.0.0",
  7714. "files": [
  7715. ".nupkg.metadata",
  7716. ".signature.p7s",
  7717. "Icon.png",
  7718. "LICENSE.TXT",
  7719. "THIRD-PARTY-NOTICES.TXT",
  7720. "lib/net461/System.Reflection.Metadata.dll",
  7721. "lib/net461/System.Reflection.Metadata.xml",
  7722. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  7723. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  7724. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  7725. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  7726. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  7727. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  7728. "system.reflection.metadata.5.0.0.nupkg.sha512",
  7729. "system.reflection.metadata.nuspec",
  7730. "useSharedDesignerContext.txt",
  7731. "version.txt"
  7732. ]
  7733. },
  7734. "System.Reflection.Primitives/4.3.0": {
  7735. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7736. "type": "package",
  7737. "path": "system.reflection.primitives/4.3.0",
  7738. "files": [
  7739. ".nupkg.metadata",
  7740. ".signature.p7s",
  7741. "ThirdPartyNotices.txt",
  7742. "dotnet_library_license.txt",
  7743. "lib/MonoAndroid10/_._",
  7744. "lib/MonoTouch10/_._",
  7745. "lib/net45/_._",
  7746. "lib/portable-net45+win8+wp8+wpa81/_._",
  7747. "lib/win8/_._",
  7748. "lib/wp80/_._",
  7749. "lib/wpa81/_._",
  7750. "lib/xamarinios10/_._",
  7751. "lib/xamarinmac20/_._",
  7752. "lib/xamarintvos10/_._",
  7753. "lib/xamarinwatchos10/_._",
  7754. "ref/MonoAndroid10/_._",
  7755. "ref/MonoTouch10/_._",
  7756. "ref/net45/_._",
  7757. "ref/netcore50/System.Reflection.Primitives.dll",
  7758. "ref/netcore50/System.Reflection.Primitives.xml",
  7759. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7760. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7761. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7762. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7763. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7764. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7765. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7766. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7767. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7768. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7769. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7770. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7771. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7772. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7773. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7774. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7775. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7776. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7777. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7778. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7779. "ref/portable-net45+win8+wp8+wpa81/_._",
  7780. "ref/win8/_._",
  7781. "ref/wp80/_._",
  7782. "ref/wpa81/_._",
  7783. "ref/xamarinios10/_._",
  7784. "ref/xamarinmac20/_._",
  7785. "ref/xamarintvos10/_._",
  7786. "ref/xamarinwatchos10/_._",
  7787. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7788. "system.reflection.primitives.nuspec"
  7789. ]
  7790. },
  7791. "System.Reflection.TypeExtensions/4.3.0": {
  7792. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7793. "type": "package",
  7794. "path": "system.reflection.typeextensions/4.3.0",
  7795. "files": [
  7796. ".nupkg.metadata",
  7797. "ThirdPartyNotices.txt",
  7798. "dotnet_library_license.txt",
  7799. "lib/MonoAndroid10/_._",
  7800. "lib/MonoTouch10/_._",
  7801. "lib/net46/System.Reflection.TypeExtensions.dll",
  7802. "lib/net462/System.Reflection.TypeExtensions.dll",
  7803. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7804. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7805. "lib/xamarinios10/_._",
  7806. "lib/xamarinmac20/_._",
  7807. "lib/xamarintvos10/_._",
  7808. "lib/xamarinwatchos10/_._",
  7809. "ref/MonoAndroid10/_._",
  7810. "ref/MonoTouch10/_._",
  7811. "ref/net46/System.Reflection.TypeExtensions.dll",
  7812. "ref/net462/System.Reflection.TypeExtensions.dll",
  7813. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7814. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7815. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7816. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7817. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7818. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7819. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7820. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7821. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7822. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7823. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7824. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7825. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7826. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7827. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7828. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7829. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7830. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7831. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7832. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7833. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7834. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7835. "ref/xamarinios10/_._",
  7836. "ref/xamarinmac20/_._",
  7837. "ref/xamarintvos10/_._",
  7838. "ref/xamarinwatchos10/_._",
  7839. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7840. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7841. "system.reflection.typeextensions.nuspec"
  7842. ]
  7843. },
  7844. "System.Resources.ResourceManager/4.3.0": {
  7845. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7846. "type": "package",
  7847. "path": "system.resources.resourcemanager/4.3.0",
  7848. "files": [
  7849. ".nupkg.metadata",
  7850. ".signature.p7s",
  7851. "ThirdPartyNotices.txt",
  7852. "dotnet_library_license.txt",
  7853. "lib/MonoAndroid10/_._",
  7854. "lib/MonoTouch10/_._",
  7855. "lib/net45/_._",
  7856. "lib/portable-net45+win8+wp8+wpa81/_._",
  7857. "lib/win8/_._",
  7858. "lib/wp80/_._",
  7859. "lib/wpa81/_._",
  7860. "lib/xamarinios10/_._",
  7861. "lib/xamarinmac20/_._",
  7862. "lib/xamarintvos10/_._",
  7863. "lib/xamarinwatchos10/_._",
  7864. "ref/MonoAndroid10/_._",
  7865. "ref/MonoTouch10/_._",
  7866. "ref/net45/_._",
  7867. "ref/netcore50/System.Resources.ResourceManager.dll",
  7868. "ref/netcore50/System.Resources.ResourceManager.xml",
  7869. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7870. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7871. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7872. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7873. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7874. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7875. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7876. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7877. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7878. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7879. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7880. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7881. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7882. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7883. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7884. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7885. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7886. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7887. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7888. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7889. "ref/portable-net45+win8+wp8+wpa81/_._",
  7890. "ref/win8/_._",
  7891. "ref/wp80/_._",
  7892. "ref/wpa81/_._",
  7893. "ref/xamarinios10/_._",
  7894. "ref/xamarinmac20/_._",
  7895. "ref/xamarintvos10/_._",
  7896. "ref/xamarinwatchos10/_._",
  7897. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7898. "system.resources.resourcemanager.nuspec"
  7899. ]
  7900. },
  7901. "System.Runtime/4.3.0": {
  7902. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7903. "type": "package",
  7904. "path": "system.runtime/4.3.0",
  7905. "files": [
  7906. ".nupkg.metadata",
  7907. ".signature.p7s",
  7908. "ThirdPartyNotices.txt",
  7909. "dotnet_library_license.txt",
  7910. "lib/MonoAndroid10/_._",
  7911. "lib/MonoTouch10/_._",
  7912. "lib/net45/_._",
  7913. "lib/net462/System.Runtime.dll",
  7914. "lib/portable-net45+win8+wp80+wpa81/_._",
  7915. "lib/win8/_._",
  7916. "lib/wp80/_._",
  7917. "lib/wpa81/_._",
  7918. "lib/xamarinios10/_._",
  7919. "lib/xamarinmac20/_._",
  7920. "lib/xamarintvos10/_._",
  7921. "lib/xamarinwatchos10/_._",
  7922. "ref/MonoAndroid10/_._",
  7923. "ref/MonoTouch10/_._",
  7924. "ref/net45/_._",
  7925. "ref/net462/System.Runtime.dll",
  7926. "ref/netcore50/System.Runtime.dll",
  7927. "ref/netcore50/System.Runtime.xml",
  7928. "ref/netcore50/de/System.Runtime.xml",
  7929. "ref/netcore50/es/System.Runtime.xml",
  7930. "ref/netcore50/fr/System.Runtime.xml",
  7931. "ref/netcore50/it/System.Runtime.xml",
  7932. "ref/netcore50/ja/System.Runtime.xml",
  7933. "ref/netcore50/ko/System.Runtime.xml",
  7934. "ref/netcore50/ru/System.Runtime.xml",
  7935. "ref/netcore50/zh-hans/System.Runtime.xml",
  7936. "ref/netcore50/zh-hant/System.Runtime.xml",
  7937. "ref/netstandard1.0/System.Runtime.dll",
  7938. "ref/netstandard1.0/System.Runtime.xml",
  7939. "ref/netstandard1.0/de/System.Runtime.xml",
  7940. "ref/netstandard1.0/es/System.Runtime.xml",
  7941. "ref/netstandard1.0/fr/System.Runtime.xml",
  7942. "ref/netstandard1.0/it/System.Runtime.xml",
  7943. "ref/netstandard1.0/ja/System.Runtime.xml",
  7944. "ref/netstandard1.0/ko/System.Runtime.xml",
  7945. "ref/netstandard1.0/ru/System.Runtime.xml",
  7946. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  7947. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  7948. "ref/netstandard1.2/System.Runtime.dll",
  7949. "ref/netstandard1.2/System.Runtime.xml",
  7950. "ref/netstandard1.2/de/System.Runtime.xml",
  7951. "ref/netstandard1.2/es/System.Runtime.xml",
  7952. "ref/netstandard1.2/fr/System.Runtime.xml",
  7953. "ref/netstandard1.2/it/System.Runtime.xml",
  7954. "ref/netstandard1.2/ja/System.Runtime.xml",
  7955. "ref/netstandard1.2/ko/System.Runtime.xml",
  7956. "ref/netstandard1.2/ru/System.Runtime.xml",
  7957. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  7958. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  7959. "ref/netstandard1.3/System.Runtime.dll",
  7960. "ref/netstandard1.3/System.Runtime.xml",
  7961. "ref/netstandard1.3/de/System.Runtime.xml",
  7962. "ref/netstandard1.3/es/System.Runtime.xml",
  7963. "ref/netstandard1.3/fr/System.Runtime.xml",
  7964. "ref/netstandard1.3/it/System.Runtime.xml",
  7965. "ref/netstandard1.3/ja/System.Runtime.xml",
  7966. "ref/netstandard1.3/ko/System.Runtime.xml",
  7967. "ref/netstandard1.3/ru/System.Runtime.xml",
  7968. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  7969. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  7970. "ref/netstandard1.5/System.Runtime.dll",
  7971. "ref/netstandard1.5/System.Runtime.xml",
  7972. "ref/netstandard1.5/de/System.Runtime.xml",
  7973. "ref/netstandard1.5/es/System.Runtime.xml",
  7974. "ref/netstandard1.5/fr/System.Runtime.xml",
  7975. "ref/netstandard1.5/it/System.Runtime.xml",
  7976. "ref/netstandard1.5/ja/System.Runtime.xml",
  7977. "ref/netstandard1.5/ko/System.Runtime.xml",
  7978. "ref/netstandard1.5/ru/System.Runtime.xml",
  7979. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  7980. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  7981. "ref/portable-net45+win8+wp80+wpa81/_._",
  7982. "ref/win8/_._",
  7983. "ref/wp80/_._",
  7984. "ref/wpa81/_._",
  7985. "ref/xamarinios10/_._",
  7986. "ref/xamarinmac20/_._",
  7987. "ref/xamarintvos10/_._",
  7988. "ref/xamarinwatchos10/_._",
  7989. "system.runtime.4.3.0.nupkg.sha512",
  7990. "system.runtime.nuspec"
  7991. ]
  7992. },
  7993. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  7994. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  7995. "type": "package",
  7996. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  7997. "files": [
  7998. ".nupkg.metadata",
  7999. ".signature.p7s",
  8000. "Icon.png",
  8001. "LICENSE.TXT",
  8002. "THIRD-PARTY-NOTICES.TXT",
  8003. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  8004. "buildTransitive/netcoreapp3.1/_._",
  8005. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8006. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8007. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  8008. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  8009. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  8010. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  8011. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8012. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8013. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  8014. "system.runtime.compilerservices.unsafe.nuspec",
  8015. "useSharedDesignerContext.txt"
  8016. ]
  8017. },
  8018. "System.Runtime.Extensions/4.3.0": {
  8019. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8020. "type": "package",
  8021. "path": "system.runtime.extensions/4.3.0",
  8022. "files": [
  8023. ".nupkg.metadata",
  8024. ".signature.p7s",
  8025. "ThirdPartyNotices.txt",
  8026. "dotnet_library_license.txt",
  8027. "lib/MonoAndroid10/_._",
  8028. "lib/MonoTouch10/_._",
  8029. "lib/net45/_._",
  8030. "lib/net462/System.Runtime.Extensions.dll",
  8031. "lib/portable-net45+win8+wp8+wpa81/_._",
  8032. "lib/win8/_._",
  8033. "lib/wp80/_._",
  8034. "lib/wpa81/_._",
  8035. "lib/xamarinios10/_._",
  8036. "lib/xamarinmac20/_._",
  8037. "lib/xamarintvos10/_._",
  8038. "lib/xamarinwatchos10/_._",
  8039. "ref/MonoAndroid10/_._",
  8040. "ref/MonoTouch10/_._",
  8041. "ref/net45/_._",
  8042. "ref/net462/System.Runtime.Extensions.dll",
  8043. "ref/netcore50/System.Runtime.Extensions.dll",
  8044. "ref/netcore50/System.Runtime.Extensions.xml",
  8045. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8046. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8047. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8048. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8049. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8050. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8051. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8052. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8053. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8054. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8055. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8056. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8057. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8058. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8059. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8060. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8061. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8062. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8063. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8064. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8065. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8066. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8067. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8068. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8069. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8070. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8071. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8072. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8073. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8074. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8075. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8076. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8077. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8078. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8079. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8080. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8081. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8082. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8083. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8084. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8085. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8086. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8087. "ref/portable-net45+win8+wp8+wpa81/_._",
  8088. "ref/win8/_._",
  8089. "ref/wp80/_._",
  8090. "ref/wpa81/_._",
  8091. "ref/xamarinios10/_._",
  8092. "ref/xamarinmac20/_._",
  8093. "ref/xamarintvos10/_._",
  8094. "ref/xamarinwatchos10/_._",
  8095. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8096. "system.runtime.extensions.nuspec"
  8097. ]
  8098. },
  8099. "System.Runtime.Loader/4.3.0": {
  8100. "sha512": "DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
  8101. "type": "package",
  8102. "path": "system.runtime.loader/4.3.0",
  8103. "files": [
  8104. ".nupkg.metadata",
  8105. ".signature.p7s",
  8106. "ThirdPartyNotices.txt",
  8107. "dotnet_library_license.txt",
  8108. "lib/MonoAndroid10/_._",
  8109. "lib/MonoTouch10/_._",
  8110. "lib/net462/_._",
  8111. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8112. "lib/xamarinios10/_._",
  8113. "lib/xamarinmac20/_._",
  8114. "lib/xamarintvos10/_._",
  8115. "lib/xamarinwatchos10/_._",
  8116. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8117. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8118. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8119. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8120. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8121. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8122. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8123. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8124. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8125. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8126. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml",
  8127. "system.runtime.loader.4.3.0.nupkg.sha512",
  8128. "system.runtime.loader.nuspec"
  8129. ]
  8130. },
  8131. "System.Security.AccessControl/6.0.0": {
  8132. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  8133. "type": "package",
  8134. "path": "system.security.accesscontrol/6.0.0",
  8135. "files": [
  8136. ".nupkg.metadata",
  8137. ".signature.p7s",
  8138. "Icon.png",
  8139. "LICENSE.TXT",
  8140. "THIRD-PARTY-NOTICES.TXT",
  8141. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  8142. "buildTransitive/netcoreapp3.1/_._",
  8143. "lib/net461/System.Security.AccessControl.dll",
  8144. "lib/net461/System.Security.AccessControl.xml",
  8145. "lib/net6.0/System.Security.AccessControl.dll",
  8146. "lib/net6.0/System.Security.AccessControl.xml",
  8147. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8148. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8149. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8150. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8151. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  8152. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  8153. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  8154. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  8155. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  8156. "system.security.accesscontrol.nuspec",
  8157. "useSharedDesignerContext.txt"
  8158. ]
  8159. },
  8160. "System.Security.Cryptography.Cng/4.5.0": {
  8161. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  8162. "type": "package",
  8163. "path": "system.security.cryptography.cng/4.5.0",
  8164. "files": [
  8165. ".nupkg.metadata",
  8166. ".signature.p7s",
  8167. "LICENSE.TXT",
  8168. "THIRD-PARTY-NOTICES.TXT",
  8169. "lib/MonoAndroid10/_._",
  8170. "lib/MonoTouch10/_._",
  8171. "lib/net46/System.Security.Cryptography.Cng.dll",
  8172. "lib/net461/System.Security.Cryptography.Cng.dll",
  8173. "lib/net462/System.Security.Cryptography.Cng.dll",
  8174. "lib/net47/System.Security.Cryptography.Cng.dll",
  8175. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8176. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8177. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8178. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8179. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8180. "lib/uap10.0.16299/_._",
  8181. "lib/xamarinios10/_._",
  8182. "lib/xamarinmac20/_._",
  8183. "lib/xamarintvos10/_._",
  8184. "lib/xamarinwatchos10/_._",
  8185. "ref/MonoAndroid10/_._",
  8186. "ref/MonoTouch10/_._",
  8187. "ref/net46/System.Security.Cryptography.Cng.dll",
  8188. "ref/net461/System.Security.Cryptography.Cng.dll",
  8189. "ref/net461/System.Security.Cryptography.Cng.xml",
  8190. "ref/net462/System.Security.Cryptography.Cng.dll",
  8191. "ref/net462/System.Security.Cryptography.Cng.xml",
  8192. "ref/net47/System.Security.Cryptography.Cng.dll",
  8193. "ref/net47/System.Security.Cryptography.Cng.xml",
  8194. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8195. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8196. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8197. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8198. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8199. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8200. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8201. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8202. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8203. "ref/uap10.0.16299/_._",
  8204. "ref/xamarinios10/_._",
  8205. "ref/xamarinmac20/_._",
  8206. "ref/xamarintvos10/_._",
  8207. "ref/xamarinwatchos10/_._",
  8208. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8209. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8210. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8211. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8212. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8213. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8214. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8215. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8216. "runtimes/win/lib/uap10.0.16299/_._",
  8217. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  8218. "system.security.cryptography.cng.nuspec",
  8219. "useSharedDesignerContext.txt",
  8220. "version.txt"
  8221. ]
  8222. },
  8223. "System.Security.Cryptography.Pkcs/6.0.0": {
  8224. "sha512": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==",
  8225. "type": "package",
  8226. "path": "system.security.cryptography.pkcs/6.0.0",
  8227. "files": [
  8228. ".nupkg.metadata",
  8229. ".signature.p7s",
  8230. "Icon.png",
  8231. "LICENSE.TXT",
  8232. "THIRD-PARTY-NOTICES.TXT",
  8233. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
  8234. "buildTransitive/netcoreapp3.1/_._",
  8235. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  8236. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  8237. "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  8238. "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  8239. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  8240. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  8241. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8242. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  8243. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  8244. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  8245. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  8246. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  8247. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  8248. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  8249. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  8250. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  8251. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8252. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  8253. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  8254. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  8255. "system.security.cryptography.pkcs.6.0.0.nupkg.sha512",
  8256. "system.security.cryptography.pkcs.nuspec",
  8257. "useSharedDesignerContext.txt"
  8258. ]
  8259. },
  8260. "System.Security.Cryptography.ProtectedData/6.0.0": {
  8261. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  8262. "type": "package",
  8263. "path": "system.security.cryptography.protecteddata/6.0.0",
  8264. "files": [
  8265. ".nupkg.metadata",
  8266. ".signature.p7s",
  8267. "Icon.png",
  8268. "LICENSE.TXT",
  8269. "THIRD-PARTY-NOTICES.TXT",
  8270. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  8271. "buildTransitive/netcoreapp3.1/_._",
  8272. "lib/MonoAndroid10/_._",
  8273. "lib/MonoTouch10/_._",
  8274. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8275. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8276. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  8277. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  8278. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8279. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8280. "lib/xamarinios10/_._",
  8281. "lib/xamarinmac20/_._",
  8282. "lib/xamarintvos10/_._",
  8283. "lib/xamarinwatchos10/_._",
  8284. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8285. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8286. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  8287. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  8288. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8289. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8290. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  8291. "system.security.cryptography.protecteddata.nuspec",
  8292. "useSharedDesignerContext.txt"
  8293. ]
  8294. },
  8295. "System.Security.Cryptography.Xml/6.0.0": {
  8296. "sha512": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==",
  8297. "type": "package",
  8298. "path": "system.security.cryptography.xml/6.0.0",
  8299. "files": [
  8300. ".nupkg.metadata",
  8301. ".signature.p7s",
  8302. "Icon.png",
  8303. "LICENSE.TXT",
  8304. "THIRD-PARTY-NOTICES.TXT",
  8305. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets",
  8306. "buildTransitive/netcoreapp3.1/_._",
  8307. "lib/net461/System.Security.Cryptography.Xml.dll",
  8308. "lib/net461/System.Security.Cryptography.Xml.xml",
  8309. "lib/net6.0/System.Security.Cryptography.Xml.dll",
  8310. "lib/net6.0/System.Security.Cryptography.Xml.xml",
  8311. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  8312. "lib/netstandard2.0/System.Security.Cryptography.Xml.xml",
  8313. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll",
  8314. "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml",
  8315. "system.security.cryptography.xml.6.0.0.nupkg.sha512",
  8316. "system.security.cryptography.xml.nuspec",
  8317. "useSharedDesignerContext.txt"
  8318. ]
  8319. },
  8320. "System.Security.Permissions/6.0.0": {
  8321. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  8322. "type": "package",
  8323. "path": "system.security.permissions/6.0.0",
  8324. "files": [
  8325. ".nupkg.metadata",
  8326. ".signature.p7s",
  8327. "Icon.png",
  8328. "LICENSE.TXT",
  8329. "THIRD-PARTY-NOTICES.TXT",
  8330. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  8331. "buildTransitive/netcoreapp3.1/_._",
  8332. "lib/net461/System.Security.Permissions.dll",
  8333. "lib/net461/System.Security.Permissions.xml",
  8334. "lib/net5.0/System.Security.Permissions.dll",
  8335. "lib/net5.0/System.Security.Permissions.xml",
  8336. "lib/net6.0/System.Security.Permissions.dll",
  8337. "lib/net6.0/System.Security.Permissions.xml",
  8338. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  8339. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  8340. "lib/netstandard2.0/System.Security.Permissions.dll",
  8341. "lib/netstandard2.0/System.Security.Permissions.xml",
  8342. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  8343. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  8344. "system.security.permissions.6.0.0.nupkg.sha512",
  8345. "system.security.permissions.nuspec",
  8346. "useSharedDesignerContext.txt"
  8347. ]
  8348. },
  8349. "System.Security.Principal.Windows/5.0.0": {
  8350. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  8351. "type": "package",
  8352. "path": "system.security.principal.windows/5.0.0",
  8353. "files": [
  8354. ".nupkg.metadata",
  8355. ".signature.p7s",
  8356. "Icon.png",
  8357. "LICENSE.TXT",
  8358. "THIRD-PARTY-NOTICES.TXT",
  8359. "lib/net46/System.Security.Principal.Windows.dll",
  8360. "lib/net461/System.Security.Principal.Windows.dll",
  8361. "lib/net461/System.Security.Principal.Windows.xml",
  8362. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8363. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8364. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8365. "lib/uap10.0.16299/_._",
  8366. "ref/net46/System.Security.Principal.Windows.dll",
  8367. "ref/net461/System.Security.Principal.Windows.dll",
  8368. "ref/net461/System.Security.Principal.Windows.xml",
  8369. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8370. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8371. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8372. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8373. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8374. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8375. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8376. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8377. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8378. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8379. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8380. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8381. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8382. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8383. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8384. "ref/uap10.0.16299/_._",
  8385. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8386. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8387. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8388. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8389. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8390. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8391. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8392. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8393. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8394. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8395. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8396. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8397. "runtimes/win/lib/uap10.0.16299/_._",
  8398. "system.security.principal.windows.5.0.0.nupkg.sha512",
  8399. "system.security.principal.windows.nuspec",
  8400. "useSharedDesignerContext.txt",
  8401. "version.txt"
  8402. ]
  8403. },
  8404. "System.Text.Encoding/4.3.0": {
  8405. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8406. "type": "package",
  8407. "path": "system.text.encoding/4.3.0",
  8408. "files": [
  8409. ".nupkg.metadata",
  8410. ".signature.p7s",
  8411. "ThirdPartyNotices.txt",
  8412. "dotnet_library_license.txt",
  8413. "lib/MonoAndroid10/_._",
  8414. "lib/MonoTouch10/_._",
  8415. "lib/net45/_._",
  8416. "lib/portable-net45+win8+wp8+wpa81/_._",
  8417. "lib/win8/_._",
  8418. "lib/wp80/_._",
  8419. "lib/wpa81/_._",
  8420. "lib/xamarinios10/_._",
  8421. "lib/xamarinmac20/_._",
  8422. "lib/xamarintvos10/_._",
  8423. "lib/xamarinwatchos10/_._",
  8424. "ref/MonoAndroid10/_._",
  8425. "ref/MonoTouch10/_._",
  8426. "ref/net45/_._",
  8427. "ref/netcore50/System.Text.Encoding.dll",
  8428. "ref/netcore50/System.Text.Encoding.xml",
  8429. "ref/netcore50/de/System.Text.Encoding.xml",
  8430. "ref/netcore50/es/System.Text.Encoding.xml",
  8431. "ref/netcore50/fr/System.Text.Encoding.xml",
  8432. "ref/netcore50/it/System.Text.Encoding.xml",
  8433. "ref/netcore50/ja/System.Text.Encoding.xml",
  8434. "ref/netcore50/ko/System.Text.Encoding.xml",
  8435. "ref/netcore50/ru/System.Text.Encoding.xml",
  8436. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8437. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8438. "ref/netstandard1.0/System.Text.Encoding.dll",
  8439. "ref/netstandard1.0/System.Text.Encoding.xml",
  8440. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8441. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8442. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8443. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8444. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8445. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8446. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8447. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8448. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8449. "ref/netstandard1.3/System.Text.Encoding.dll",
  8450. "ref/netstandard1.3/System.Text.Encoding.xml",
  8451. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8452. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8453. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8454. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8455. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8456. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8457. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  8458. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  8459. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  8460. "ref/portable-net45+win8+wp8+wpa81/_._",
  8461. "ref/win8/_._",
  8462. "ref/wp80/_._",
  8463. "ref/wpa81/_._",
  8464. "ref/xamarinios10/_._",
  8465. "ref/xamarinmac20/_._",
  8466. "ref/xamarintvos10/_._",
  8467. "ref/xamarinwatchos10/_._",
  8468. "system.text.encoding.4.3.0.nupkg.sha512",
  8469. "system.text.encoding.nuspec"
  8470. ]
  8471. },
  8472. "System.Text.Encoding.CodePages/4.5.1": {
  8473. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  8474. "type": "package",
  8475. "path": "system.text.encoding.codepages/4.5.1",
  8476. "files": [
  8477. ".nupkg.metadata",
  8478. ".signature.p7s",
  8479. "LICENSE.TXT",
  8480. "THIRD-PARTY-NOTICES.TXT",
  8481. "lib/MonoAndroid10/_._",
  8482. "lib/MonoTouch10/_._",
  8483. "lib/net46/System.Text.Encoding.CodePages.dll",
  8484. "lib/net461/System.Text.Encoding.CodePages.dll",
  8485. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8486. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8487. "lib/xamarinios10/_._",
  8488. "lib/xamarinmac20/_._",
  8489. "lib/xamarintvos10/_._",
  8490. "lib/xamarinwatchos10/_._",
  8491. "ref/MonoAndroid10/_._",
  8492. "ref/MonoTouch10/_._",
  8493. "ref/xamarinios10/_._",
  8494. "ref/xamarinmac20/_._",
  8495. "ref/xamarintvos10/_._",
  8496. "ref/xamarinwatchos10/_._",
  8497. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  8498. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  8499. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  8500. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  8501. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  8502. "system.text.encoding.codepages.nuspec",
  8503. "useSharedDesignerContext.txt",
  8504. "version.txt"
  8505. ]
  8506. },
  8507. "System.Text.Encodings.Web/6.0.0": {
  8508. "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
  8509. "type": "package",
  8510. "path": "system.text.encodings.web/6.0.0",
  8511. "files": [
  8512. ".nupkg.metadata",
  8513. ".signature.p7s",
  8514. "Icon.png",
  8515. "LICENSE.TXT",
  8516. "THIRD-PARTY-NOTICES.TXT",
  8517. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  8518. "buildTransitive/netcoreapp3.1/_._",
  8519. "lib/net461/System.Text.Encodings.Web.dll",
  8520. "lib/net461/System.Text.Encodings.Web.xml",
  8521. "lib/net6.0/System.Text.Encodings.Web.dll",
  8522. "lib/net6.0/System.Text.Encodings.Web.xml",
  8523. "lib/netcoreapp3.1/System.Text.Encodings.Web.dll",
  8524. "lib/netcoreapp3.1/System.Text.Encodings.Web.xml",
  8525. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  8526. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  8527. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  8528. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  8529. "system.text.encodings.web.6.0.0.nupkg.sha512",
  8530. "system.text.encodings.web.nuspec",
  8531. "useSharedDesignerContext.txt"
  8532. ]
  8533. },
  8534. "System.Text.Json/6.0.0": {
  8535. "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
  8536. "type": "package",
  8537. "path": "system.text.json/6.0.0",
  8538. "files": [
  8539. ".nupkg.metadata",
  8540. ".signature.p7s",
  8541. "Icon.png",
  8542. "LICENSE.TXT",
  8543. "THIRD-PARTY-NOTICES.TXT",
  8544. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  8545. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8546. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8547. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8548. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8549. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8550. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8551. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8552. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8553. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8554. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8555. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8556. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8557. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8558. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  8559. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  8560. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  8561. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  8562. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  8563. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  8564. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  8565. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  8566. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  8567. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  8568. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  8569. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  8570. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  8571. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  8572. "build/System.Text.Json.targets",
  8573. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  8574. "buildTransitive/netcoreapp3.1/_._",
  8575. "lib/net461/System.Text.Json.dll",
  8576. "lib/net461/System.Text.Json.xml",
  8577. "lib/net6.0/System.Text.Json.dll",
  8578. "lib/net6.0/System.Text.Json.xml",
  8579. "lib/netcoreapp3.1/System.Text.Json.dll",
  8580. "lib/netcoreapp3.1/System.Text.Json.xml",
  8581. "lib/netstandard2.0/System.Text.Json.dll",
  8582. "lib/netstandard2.0/System.Text.Json.xml",
  8583. "system.text.json.6.0.0.nupkg.sha512",
  8584. "system.text.json.nuspec",
  8585. "useSharedDesignerContext.txt"
  8586. ]
  8587. },
  8588. "System.Threading/4.3.0": {
  8589. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8590. "type": "package",
  8591. "path": "system.threading/4.3.0",
  8592. "files": [
  8593. ".nupkg.metadata",
  8594. ".signature.p7s",
  8595. "ThirdPartyNotices.txt",
  8596. "dotnet_library_license.txt",
  8597. "lib/MonoAndroid10/_._",
  8598. "lib/MonoTouch10/_._",
  8599. "lib/net45/_._",
  8600. "lib/netcore50/System.Threading.dll",
  8601. "lib/netstandard1.3/System.Threading.dll",
  8602. "lib/portable-net45+win8+wp8+wpa81/_._",
  8603. "lib/win8/_._",
  8604. "lib/wp80/_._",
  8605. "lib/wpa81/_._",
  8606. "lib/xamarinios10/_._",
  8607. "lib/xamarinmac20/_._",
  8608. "lib/xamarintvos10/_._",
  8609. "lib/xamarinwatchos10/_._",
  8610. "ref/MonoAndroid10/_._",
  8611. "ref/MonoTouch10/_._",
  8612. "ref/net45/_._",
  8613. "ref/netcore50/System.Threading.dll",
  8614. "ref/netcore50/System.Threading.xml",
  8615. "ref/netcore50/de/System.Threading.xml",
  8616. "ref/netcore50/es/System.Threading.xml",
  8617. "ref/netcore50/fr/System.Threading.xml",
  8618. "ref/netcore50/it/System.Threading.xml",
  8619. "ref/netcore50/ja/System.Threading.xml",
  8620. "ref/netcore50/ko/System.Threading.xml",
  8621. "ref/netcore50/ru/System.Threading.xml",
  8622. "ref/netcore50/zh-hans/System.Threading.xml",
  8623. "ref/netcore50/zh-hant/System.Threading.xml",
  8624. "ref/netstandard1.0/System.Threading.dll",
  8625. "ref/netstandard1.0/System.Threading.xml",
  8626. "ref/netstandard1.0/de/System.Threading.xml",
  8627. "ref/netstandard1.0/es/System.Threading.xml",
  8628. "ref/netstandard1.0/fr/System.Threading.xml",
  8629. "ref/netstandard1.0/it/System.Threading.xml",
  8630. "ref/netstandard1.0/ja/System.Threading.xml",
  8631. "ref/netstandard1.0/ko/System.Threading.xml",
  8632. "ref/netstandard1.0/ru/System.Threading.xml",
  8633. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8634. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8635. "ref/netstandard1.3/System.Threading.dll",
  8636. "ref/netstandard1.3/System.Threading.xml",
  8637. "ref/netstandard1.3/de/System.Threading.xml",
  8638. "ref/netstandard1.3/es/System.Threading.xml",
  8639. "ref/netstandard1.3/fr/System.Threading.xml",
  8640. "ref/netstandard1.3/it/System.Threading.xml",
  8641. "ref/netstandard1.3/ja/System.Threading.xml",
  8642. "ref/netstandard1.3/ko/System.Threading.xml",
  8643. "ref/netstandard1.3/ru/System.Threading.xml",
  8644. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8645. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8646. "ref/portable-net45+win8+wp8+wpa81/_._",
  8647. "ref/win8/_._",
  8648. "ref/wp80/_._",
  8649. "ref/wpa81/_._",
  8650. "ref/xamarinios10/_._",
  8651. "ref/xamarinmac20/_._",
  8652. "ref/xamarintvos10/_._",
  8653. "ref/xamarinwatchos10/_._",
  8654. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8655. "system.threading.4.3.0.nupkg.sha512",
  8656. "system.threading.nuspec"
  8657. ]
  8658. },
  8659. "System.Threading.Tasks/4.3.0": {
  8660. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8661. "type": "package",
  8662. "path": "system.threading.tasks/4.3.0",
  8663. "files": [
  8664. ".nupkg.metadata",
  8665. ".signature.p7s",
  8666. "ThirdPartyNotices.txt",
  8667. "dotnet_library_license.txt",
  8668. "lib/MonoAndroid10/_._",
  8669. "lib/MonoTouch10/_._",
  8670. "lib/net45/_._",
  8671. "lib/portable-net45+win8+wp8+wpa81/_._",
  8672. "lib/win8/_._",
  8673. "lib/wp80/_._",
  8674. "lib/wpa81/_._",
  8675. "lib/xamarinios10/_._",
  8676. "lib/xamarinmac20/_._",
  8677. "lib/xamarintvos10/_._",
  8678. "lib/xamarinwatchos10/_._",
  8679. "ref/MonoAndroid10/_._",
  8680. "ref/MonoTouch10/_._",
  8681. "ref/net45/_._",
  8682. "ref/netcore50/System.Threading.Tasks.dll",
  8683. "ref/netcore50/System.Threading.Tasks.xml",
  8684. "ref/netcore50/de/System.Threading.Tasks.xml",
  8685. "ref/netcore50/es/System.Threading.Tasks.xml",
  8686. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8687. "ref/netcore50/it/System.Threading.Tasks.xml",
  8688. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8689. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8690. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8691. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8692. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8693. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8694. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8695. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8696. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8697. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8698. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8699. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8700. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8701. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8702. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8703. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8704. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8705. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8706. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8707. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8708. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8709. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8710. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8711. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8712. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8713. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8714. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8715. "ref/portable-net45+win8+wp8+wpa81/_._",
  8716. "ref/win8/_._",
  8717. "ref/wp80/_._",
  8718. "ref/wpa81/_._",
  8719. "ref/xamarinios10/_._",
  8720. "ref/xamarinmac20/_._",
  8721. "ref/xamarintvos10/_._",
  8722. "ref/xamarinwatchos10/_._",
  8723. "system.threading.tasks.4.3.0.nupkg.sha512",
  8724. "system.threading.tasks.nuspec"
  8725. ]
  8726. },
  8727. "System.Threading.Tasks.Extensions/4.5.4": {
  8728. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  8729. "type": "package",
  8730. "path": "system.threading.tasks.extensions/4.5.4",
  8731. "files": [
  8732. ".nupkg.metadata",
  8733. ".signature.p7s",
  8734. "LICENSE.TXT",
  8735. "THIRD-PARTY-NOTICES.TXT",
  8736. "lib/MonoAndroid10/_._",
  8737. "lib/MonoTouch10/_._",
  8738. "lib/net461/System.Threading.Tasks.Extensions.dll",
  8739. "lib/net461/System.Threading.Tasks.Extensions.xml",
  8740. "lib/netcoreapp2.1/_._",
  8741. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8742. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8743. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8744. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8745. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8746. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8747. "lib/xamarinios10/_._",
  8748. "lib/xamarinmac20/_._",
  8749. "lib/xamarintvos10/_._",
  8750. "lib/xamarinwatchos10/_._",
  8751. "ref/MonoAndroid10/_._",
  8752. "ref/MonoTouch10/_._",
  8753. "ref/netcoreapp2.1/_._",
  8754. "ref/xamarinios10/_._",
  8755. "ref/xamarinmac20/_._",
  8756. "ref/xamarintvos10/_._",
  8757. "ref/xamarinwatchos10/_._",
  8758. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  8759. "system.threading.tasks.extensions.nuspec",
  8760. "useSharedDesignerContext.txt",
  8761. "version.txt"
  8762. ]
  8763. },
  8764. "System.Windows.Extensions/6.0.0": {
  8765. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  8766. "type": "package",
  8767. "path": "system.windows.extensions/6.0.0",
  8768. "files": [
  8769. ".nupkg.metadata",
  8770. ".signature.p7s",
  8771. "Icon.png",
  8772. "LICENSE.TXT",
  8773. "THIRD-PARTY-NOTICES.TXT",
  8774. "lib/net6.0/System.Windows.Extensions.dll",
  8775. "lib/net6.0/System.Windows.Extensions.xml",
  8776. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  8777. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  8778. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  8779. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  8780. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  8781. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  8782. "system.windows.extensions.6.0.0.nupkg.sha512",
  8783. "system.windows.extensions.nuspec",
  8784. "useSharedDesignerContext.txt"
  8785. ]
  8786. },
  8787. "TimeZoneConverter/5.0.0": {
  8788. "sha512": "U7Oilf3Ya6Rmu6gOaBfWyT3q0kwy2av6a5PfTn05CF54C+7DvuLsE3ljASvYmCpsSQeJvpnqU5Uzag6+ysWUeA==",
  8789. "type": "package",
  8790. "path": "timezoneconverter/5.0.0",
  8791. "files": [
  8792. ".nupkg.metadata",
  8793. ".signature.p7s",
  8794. "lib/net461/TimeZoneConverter.dll",
  8795. "lib/net461/TimeZoneConverter.xml",
  8796. "lib/netstandard2.0/TimeZoneConverter.dll",
  8797. "lib/netstandard2.0/TimeZoneConverter.xml",
  8798. "timezoneconverter.5.0.0.nupkg.sha512",
  8799. "timezoneconverter.nuspec"
  8800. ]
  8801. },
  8802. "Volo.Abp.ApiVersioning.Abstractions/6.0.0": {
  8803. "sha512": "4iPDUzQxBHHtOHQFa9+QVTk7OHbl1BBU0B3D0TAt9JOY0Y6pFl+qnc5Ce+vDyT+aQIHnueT7B1I7v/OYYiXb8A==",
  8804. "type": "package",
  8805. "path": "volo.abp.apiversioning.abstractions/6.0.0",
  8806. "files": [
  8807. ".nupkg.metadata",
  8808. ".signature.p7s",
  8809. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.dll",
  8810. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.pdb",
  8811. "lib/netstandard2.0/Volo.Abp.ApiVersioning.Abstractions.xml",
  8812. "volo.abp.apiversioning.abstractions.6.0.0.nupkg.sha512",
  8813. "volo.abp.apiversioning.abstractions.nuspec"
  8814. ]
  8815. },
  8816. "Volo.Abp.AspNetCore/6.0.0": {
  8817. "sha512": "/HnGtg8RszGpURnfTOvm5EoiA8FTPgKOCHn3+jfrEq6Cw/UJOySfW3n1f1aWivMmHWX8caZQiIub7TeovMGRng==",
  8818. "type": "package",
  8819. "path": "volo.abp.aspnetcore/6.0.0",
  8820. "files": [
  8821. ".nupkg.metadata",
  8822. ".signature.p7s",
  8823. "lib/net6.0/Volo.Abp.AspNetCore.dll",
  8824. "lib/net6.0/Volo.Abp.AspNetCore.pdb",
  8825. "lib/net6.0/Volo.Abp.AspNetCore.xml",
  8826. "volo.abp.aspnetcore.6.0.0.nupkg.sha512",
  8827. "volo.abp.aspnetcore.nuspec"
  8828. ]
  8829. },
  8830. "Volo.Abp.AspNetCore.MultiTenancy/6.0.0": {
  8831. "sha512": "6dLE9E15aiILff9/e+ypqiTccz10WjnFjA/hdQMaKvs29+xEChEUv0E5o/wBy4S+LcVJJwN0zvuHSOwHH7lQHg==",
  8832. "type": "package",
  8833. "path": "volo.abp.aspnetcore.multitenancy/6.0.0",
  8834. "files": [
  8835. ".nupkg.metadata",
  8836. ".signature.p7s",
  8837. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.dll",
  8838. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.pdb",
  8839. "lib/net6.0/Volo.Abp.AspNetCore.MultiTenancy.xml",
  8840. "volo.abp.aspnetcore.multitenancy.6.0.0.nupkg.sha512",
  8841. "volo.abp.aspnetcore.multitenancy.nuspec"
  8842. ]
  8843. },
  8844. "Volo.Abp.AspNetCore.Mvc/6.0.0": {
  8845. "sha512": "p6Ldko6b06RZKbvEVYZe2DxvBuaUWOmmQXQ2oqHwACJ8qfiTtC5oyjV06rtCAyqWvd2hZkyce7KxHDu8sp3RFg==",
  8846. "type": "package",
  8847. "path": "volo.abp.aspnetcore.mvc/6.0.0",
  8848. "files": [
  8849. ".nupkg.metadata",
  8850. ".signature.p7s",
  8851. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.dll",
  8852. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.pdb",
  8853. "lib/net6.0/Volo.Abp.AspNetCore.Mvc.xml",
  8854. "volo.abp.aspnetcore.mvc.6.0.0.nupkg.sha512",
  8855. "volo.abp.aspnetcore.mvc.nuspec"
  8856. ]
  8857. },
  8858. "Volo.Abp.AspNetCore.Mvc.Contracts/6.0.0": {
  8859. "sha512": "cslFlSen58M6m33HwoIHgSffACX9eKhOS5/c9phCN1ZnCoXLd92jzpYrwRdaSPw5SabTmyTgA0Y8/SeEMW0vsg==",
  8860. "type": "package",
  8861. "path": "volo.abp.aspnetcore.mvc.contracts/6.0.0",
  8862. "files": [
  8863. ".nupkg.metadata",
  8864. ".signature.p7s",
  8865. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.dll",
  8866. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.pdb",
  8867. "lib/netstandard2.0/Volo.Abp.AspNetCore.Mvc.Contracts.xml",
  8868. "volo.abp.aspnetcore.mvc.contracts.6.0.0.nupkg.sha512",
  8869. "volo.abp.aspnetcore.mvc.contracts.nuspec"
  8870. ]
  8871. },
  8872. "Volo.Abp.AspNetCore.Serilog/6.0.0": {
  8873. "sha512": "n8Uz0JKfDjuMEoV+1s7vmjWOafVP3n9W/SyZdsvhmpTbZMscjOxJ64xeHbB7UyVfAW87oMRj1u3gHhrtLv/DZQ==",
  8874. "type": "package",
  8875. "path": "volo.abp.aspnetcore.serilog/6.0.0",
  8876. "files": [
  8877. ".nupkg.metadata",
  8878. ".signature.p7s",
  8879. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.dll",
  8880. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.pdb",
  8881. "lib/net6.0/Volo.Abp.AspNetCore.Serilog.xml",
  8882. "volo.abp.aspnetcore.serilog.6.0.0.nupkg.sha512",
  8883. "volo.abp.aspnetcore.serilog.nuspec"
  8884. ]
  8885. },
  8886. "Volo.Abp.Auditing/6.0.2": {
  8887. "sha512": "2vkUSnsKYa291+S8l/XPytd3z8eHJ3/3W4jGOliWs5cSiwR8evieJ6jrn4vvlebydOrjEL+t2hQraJKyyj5J6Q==",
  8888. "type": "package",
  8889. "path": "volo.abp.auditing/6.0.2",
  8890. "files": [
  8891. ".nupkg.metadata",
  8892. ".signature.p7s",
  8893. "lib/netstandard2.0/Volo.Abp.Auditing.dll",
  8894. "lib/netstandard2.0/Volo.Abp.Auditing.pdb",
  8895. "lib/netstandard2.0/Volo.Abp.Auditing.xml",
  8896. "volo.abp.auditing.6.0.2.nupkg.sha512",
  8897. "volo.abp.auditing.nuspec"
  8898. ]
  8899. },
  8900. "Volo.Abp.Auditing.Contracts/6.0.2": {
  8901. "sha512": "TNnCpKhIx2052j82Z3hgEpcoE1GQ0/4+NwJog5p7ntTw4T9vkN2zsepIKBxDOpVtAkhrF14p4sHORYMz1Cd0eg==",
  8902. "type": "package",
  8903. "path": "volo.abp.auditing.contracts/6.0.2",
  8904. "files": [
  8905. ".nupkg.metadata",
  8906. ".signature.p7s",
  8907. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.dll",
  8908. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.pdb",
  8909. "lib/netstandard2.0/Volo.Abp.Auditing.Contracts.xml",
  8910. "volo.abp.auditing.contracts.6.0.2.nupkg.sha512",
  8911. "volo.abp.auditing.contracts.nuspec"
  8912. ]
  8913. },
  8914. "Volo.Abp.Authorization/6.0.0": {
  8915. "sha512": "+ktQSujPTlA96lw8ih/iTTmncJXX3f1kTWsEWtjfmI0N3HeiVl2NFLk9g51PxHYuqOpbZpyt4y5498Q8OSpLWw==",
  8916. "type": "package",
  8917. "path": "volo.abp.authorization/6.0.0",
  8918. "files": [
  8919. ".nupkg.metadata",
  8920. ".signature.p7s",
  8921. "lib/netstandard2.0/Volo.Abp.Authorization.dll",
  8922. "lib/netstandard2.0/Volo.Abp.Authorization.pdb",
  8923. "lib/netstandard2.0/Volo.Abp.Authorization.xml",
  8924. "volo.abp.authorization.6.0.0.nupkg.sha512",
  8925. "volo.abp.authorization.nuspec"
  8926. ]
  8927. },
  8928. "Volo.Abp.Authorization.Abstractions/6.0.0": {
  8929. "sha512": "46NIPtnfHGPX12b79kp4uLnCI+zyybD3p1pIGBlpsdlSiNrGiMys5hnar8C7z8zv14I3SUaTeaQAS8hA3JoHxA==",
  8930. "type": "package",
  8931. "path": "volo.abp.authorization.abstractions/6.0.0",
  8932. "files": [
  8933. ".nupkg.metadata",
  8934. ".signature.p7s",
  8935. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.dll",
  8936. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.pdb",
  8937. "lib/netstandard2.0/Volo.Abp.Authorization.Abstractions.xml",
  8938. "volo.abp.authorization.abstractions.6.0.0.nupkg.sha512",
  8939. "volo.abp.authorization.abstractions.nuspec"
  8940. ]
  8941. },
  8942. "Volo.Abp.Autofac/6.0.0": {
  8943. "sha512": "F420kKNfTd2sg901bmDJM4moesADvn7qlVYN75eoODuYD3ur9PCKNrgdzJDl5dbpcoylQaagv6j6jZZREO/ycA==",
  8944. "type": "package",
  8945. "path": "volo.abp.autofac/6.0.0",
  8946. "files": [
  8947. ".nupkg.metadata",
  8948. ".signature.p7s",
  8949. "lib/netstandard2.0/Volo.Abp.Autofac.dll",
  8950. "lib/netstandard2.0/Volo.Abp.Autofac.pdb",
  8951. "lib/netstandard2.0/Volo.Abp.Autofac.xml",
  8952. "volo.abp.autofac.6.0.0.nupkg.sha512",
  8953. "volo.abp.autofac.nuspec"
  8954. ]
  8955. },
  8956. "Volo.Abp.AutoMapper/6.0.0": {
  8957. "sha512": "Vl10LTYky3bCPOBxi+EbHAi0ip5IzXFysMFDJquZyvOfJ55AZMJ0eXs43MMauFNVbz/pZgtjl23eQRLu5WFdpQ==",
  8958. "type": "package",
  8959. "path": "volo.abp.automapper/6.0.0",
  8960. "files": [
  8961. ".nupkg.metadata",
  8962. ".signature.p7s",
  8963. "lib/netstandard2.1/Volo.Abp.AutoMapper.dll",
  8964. "lib/netstandard2.1/Volo.Abp.AutoMapper.pdb",
  8965. "lib/netstandard2.1/Volo.Abp.AutoMapper.xml",
  8966. "volo.abp.automapper.6.0.0.nupkg.sha512",
  8967. "volo.abp.automapper.nuspec"
  8968. ]
  8969. },
  8970. "Volo.Abp.BackgroundWorkers/6.0.2": {
  8971. "sha512": "UIvmY1EEDnlT3jjZ92cDTWIsJncVLnntx32gLqqDWKILBAv2tAb/NQehW0yVYYcyezUULj2kJHPUaHr9uRAf9A==",
  8972. "type": "package",
  8973. "path": "volo.abp.backgroundworkers/6.0.2",
  8974. "files": [
  8975. ".nupkg.metadata",
  8976. ".signature.p7s",
  8977. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.dll",
  8978. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.pdb",
  8979. "lib/netstandard2.0/Volo.Abp.BackgroundWorkers.xml",
  8980. "volo.abp.backgroundworkers.6.0.2.nupkg.sha512",
  8981. "volo.abp.backgroundworkers.nuspec"
  8982. ]
  8983. },
  8984. "Volo.Abp.Caching/6.0.0": {
  8985. "sha512": "i+YHjH98KnmS2ohc+T3Gb5LvBLyfeB8M+zVib2LKm4hC/2hn/nFnV5Ss0YTwHgMErEcX1n8vWqBmDpWkcZl4Ug==",
  8986. "type": "package",
  8987. "path": "volo.abp.caching/6.0.0",
  8988. "files": [
  8989. ".nupkg.metadata",
  8990. ".signature.p7s",
  8991. "lib/netstandard2.0/Volo.Abp.Caching.dll",
  8992. "lib/netstandard2.0/Volo.Abp.Caching.pdb",
  8993. "lib/netstandard2.0/Volo.Abp.Caching.xml",
  8994. "volo.abp.caching.6.0.0.nupkg.sha512",
  8995. "volo.abp.caching.nuspec"
  8996. ]
  8997. },
  8998. "Volo.Abp.Castle.Core/6.0.0": {
  8999. "sha512": "rWyHJe7FNm4DunvMQ8y1MAZfiqRrIxEWnBWq1P7kTYy7ig9PKYj+HjSTX9uLc6d9ZScut6qM4hAltMDgFYwuEw==",
  9000. "type": "package",
  9001. "path": "volo.abp.castle.core/6.0.0",
  9002. "files": [
  9003. ".nupkg.metadata",
  9004. ".signature.p7s",
  9005. "lib/netstandard2.0/Volo.Abp.Castle.Core.dll",
  9006. "lib/netstandard2.0/Volo.Abp.Castle.Core.pdb",
  9007. "lib/netstandard2.0/Volo.Abp.Castle.Core.xml",
  9008. "volo.abp.castle.core.6.0.0.nupkg.sha512",
  9009. "volo.abp.castle.core.nuspec"
  9010. ]
  9011. },
  9012. "Volo.Abp.Core/6.0.2": {
  9013. "sha512": "wuY90hoFxowFD0jatwJ0SWJ+bDuwQD4C+Wb00EWJ7sfYDq9Xu0l4Hh7QmUKFQOKPMotLy5Lt8LGirmwE88D00w==",
  9014. "type": "package",
  9015. "path": "volo.abp.core/6.0.2",
  9016. "files": [
  9017. ".nupkg.metadata",
  9018. ".signature.p7s",
  9019. "lib/netstandard2.0/Volo.Abp.Core.dll",
  9020. "lib/netstandard2.0/Volo.Abp.Core.pdb",
  9021. "lib/netstandard2.0/Volo.Abp.Core.xml",
  9022. "volo.abp.core.6.0.2.nupkg.sha512",
  9023. "volo.abp.core.nuspec"
  9024. ]
  9025. },
  9026. "Volo.Abp.Data/6.0.2": {
  9027. "sha512": "JBWe8xpTKv9kUYCbwSL5OvviyWbldGWjkQ517SdmzqXiYbYhTIpBuEBv+XemxjMbgBG+jOxmtrXc/7/77uXd5w==",
  9028. "type": "package",
  9029. "path": "volo.abp.data/6.0.2",
  9030. "files": [
  9031. ".nupkg.metadata",
  9032. ".signature.p7s",
  9033. "lib/netstandard2.0/Volo.Abp.Data.dll",
  9034. "lib/netstandard2.0/Volo.Abp.Data.pdb",
  9035. "lib/netstandard2.0/Volo.Abp.Data.xml",
  9036. "volo.abp.data.6.0.2.nupkg.sha512",
  9037. "volo.abp.data.nuspec"
  9038. ]
  9039. },
  9040. "Volo.Abp.Ddd.Application/6.0.0": {
  9041. "sha512": "dib3NLy7bpgubyZqpZ/wht4mPoP490bBQuh/Kd4bTy0F9wjyT2Dp1St8Tc5N1kKt6C2R1w9bJMcnnJtwyPZcjw==",
  9042. "type": "package",
  9043. "path": "volo.abp.ddd.application/6.0.0",
  9044. "files": [
  9045. ".nupkg.metadata",
  9046. ".signature.p7s",
  9047. "lib/netstandard2.0/Volo.Abp.Ddd.Application.dll",
  9048. "lib/netstandard2.0/Volo.Abp.Ddd.Application.pdb",
  9049. "lib/netstandard2.0/Volo.Abp.Ddd.Application.xml",
  9050. "volo.abp.ddd.application.6.0.0.nupkg.sha512",
  9051. "volo.abp.ddd.application.nuspec"
  9052. ]
  9053. },
  9054. "Volo.Abp.Ddd.Application.Contracts/6.0.0": {
  9055. "sha512": "IriSv5WJikdFPxx2su2z8biSmjrJn1bboBN2lf1SCD1tQYDckvrEINwNQUJ7BN1CjaL6SqvN2XHHsGocSXgIvA==",
  9056. "type": "package",
  9057. "path": "volo.abp.ddd.application.contracts/6.0.0",
  9058. "files": [
  9059. ".nupkg.metadata",
  9060. ".signature.p7s",
  9061. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.dll",
  9062. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.pdb",
  9063. "lib/netstandard2.0/Volo.Abp.Ddd.Application.Contracts.xml",
  9064. "volo.abp.ddd.application.contracts.6.0.0.nupkg.sha512",
  9065. "volo.abp.ddd.application.contracts.nuspec"
  9066. ]
  9067. },
  9068. "Volo.Abp.Ddd.Domain/6.0.2": {
  9069. "sha512": "wxcpTFmoLgZ9/5vkdMaZFU1kcxOba5c1DrHQUIrV9KFDiWPguDd9hc3bPbpsCzq/oZgUUZVo42lj03gzbM4zGA==",
  9070. "type": "package",
  9071. "path": "volo.abp.ddd.domain/6.0.2",
  9072. "files": [
  9073. ".nupkg.metadata",
  9074. ".signature.p7s",
  9075. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.dll",
  9076. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.pdb",
  9077. "lib/netstandard2.0/Volo.Abp.Ddd.Domain.xml",
  9078. "volo.abp.ddd.domain.6.0.2.nupkg.sha512",
  9079. "volo.abp.ddd.domain.nuspec"
  9080. ]
  9081. },
  9082. "Volo.Abp.DistributedLocking.Abstractions/6.0.2": {
  9083. "sha512": "luIm9uqOsar7wRA65X3ItlM6O3Sy/iR8nfn6ifU1VoXaODVaqPM+NzUWOoMkxPiUNMfAaap8qbfzKSJ4+PkPug==",
  9084. "type": "package",
  9085. "path": "volo.abp.distributedlocking.abstractions/6.0.2",
  9086. "files": [
  9087. ".nupkg.metadata",
  9088. ".signature.p7s",
  9089. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.dll",
  9090. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.pdb",
  9091. "lib/netstandard2.0/Volo.Abp.DistributedLocking.Abstractions.xml",
  9092. "volo.abp.distributedlocking.abstractions.6.0.2.nupkg.sha512",
  9093. "volo.abp.distributedlocking.abstractions.nuspec"
  9094. ]
  9095. },
  9096. "Volo.Abp.EntityFrameworkCore/6.0.2": {
  9097. "sha512": "R0VOj2p5I+TYJ+oFI3WM6FeDGDZRBrXnX3QOqt4JxTBTnnE4oXCKx8I/k6JMrllmGbyKYD2dheRxxuTKpjr0Kg==",
  9098. "type": "package",
  9099. "path": "volo.abp.entityframeworkcore/6.0.2",
  9100. "files": [
  9101. ".nupkg.metadata",
  9102. ".signature.p7s",
  9103. "lib/net6.0/Volo.Abp.EntityFrameworkCore.dll",
  9104. "lib/net6.0/Volo.Abp.EntityFrameworkCore.pdb",
  9105. "lib/net6.0/Volo.Abp.EntityFrameworkCore.xml",
  9106. "volo.abp.entityframeworkcore.6.0.2.nupkg.sha512",
  9107. "volo.abp.entityframeworkcore.nuspec"
  9108. ]
  9109. },
  9110. "Volo.Abp.EntityFrameworkCore.MySQL/6.0.2": {
  9111. "sha512": "D/xcqgZlBhQyvTU2GInpThoebi2jKIrrVSNT2HdXUo3PihiBccdIBxSgdPSDDj6DBu/Hhy7A1CEmv7k8c+K/RA==",
  9112. "type": "package",
  9113. "path": "volo.abp.entityframeworkcore.mysql/6.0.2",
  9114. "files": [
  9115. ".nupkg.metadata",
  9116. ".signature.p7s",
  9117. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.dll",
  9118. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.pdb",
  9119. "lib/net6.0/Volo.Abp.EntityFrameworkCore.MySQL.xml",
  9120. "volo.abp.entityframeworkcore.mysql.6.0.2.nupkg.sha512",
  9121. "volo.abp.entityframeworkcore.mysql.nuspec"
  9122. ]
  9123. },
  9124. "Volo.Abp.EventBus/6.0.2": {
  9125. "sha512": "NaGgox4T4L7AzQijPtQERZAH2crWYtyWVLZEmhEqPhDOiyFeJHwzNoP4bCqaz2FqFG0f7SbWZwJV6vdWoHCY8Q==",
  9126. "type": "package",
  9127. "path": "volo.abp.eventbus/6.0.2",
  9128. "files": [
  9129. ".nupkg.metadata",
  9130. ".signature.p7s",
  9131. "lib/netstandard2.0/Volo.Abp.EventBus.dll",
  9132. "lib/netstandard2.0/Volo.Abp.EventBus.pdb",
  9133. "lib/netstandard2.0/Volo.Abp.EventBus.xml",
  9134. "volo.abp.eventbus.6.0.2.nupkg.sha512",
  9135. "volo.abp.eventbus.nuspec"
  9136. ]
  9137. },
  9138. "Volo.Abp.EventBus.Abstractions/6.0.2": {
  9139. "sha512": "9eHrajsiJYfSBf1/hKnF8Wjc8K9aANfS9HKbJIkVJUS1PgRSLiCbLrCuyesCkgORSt3a3VDDywAfP0RhgEJ/zQ==",
  9140. "type": "package",
  9141. "path": "volo.abp.eventbus.abstractions/6.0.2",
  9142. "files": [
  9143. ".nupkg.metadata",
  9144. ".signature.p7s",
  9145. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.dll",
  9146. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.pdb",
  9147. "lib/netstandard2.0/Volo.Abp.EventBus.Abstractions.xml",
  9148. "volo.abp.eventbus.abstractions.6.0.2.nupkg.sha512",
  9149. "volo.abp.eventbus.abstractions.nuspec"
  9150. ]
  9151. },
  9152. "Volo.Abp.ExceptionHandling/6.0.2": {
  9153. "sha512": "Gw9biTqWpDvz01dEuVO5KHKGX/po6TWSsAEQMb6XnxEicH9HU7AM6VDSHVduFszO/lhzLZ+3EUaU2rvRfP0b5w==",
  9154. "type": "package",
  9155. "path": "volo.abp.exceptionhandling/6.0.2",
  9156. "files": [
  9157. ".nupkg.metadata",
  9158. ".signature.p7s",
  9159. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.dll",
  9160. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.pdb",
  9161. "lib/netstandard2.0/Volo.Abp.ExceptionHandling.xml",
  9162. "volo.abp.exceptionhandling.6.0.2.nupkg.sha512",
  9163. "volo.abp.exceptionhandling.nuspec"
  9164. ]
  9165. },
  9166. "Volo.Abp.Features/6.0.0": {
  9167. "sha512": "VgRQwdzfTbS/L3iLP+czBrV+WFAodqvbgDWIq9H50S6rRlx5YGmoqCbP/gmQAjXloZ7Mi77Y0p98pahM2yhWqg==",
  9168. "type": "package",
  9169. "path": "volo.abp.features/6.0.0",
  9170. "files": [
  9171. ".nupkg.metadata",
  9172. ".signature.p7s",
  9173. "lib/netstandard2.0/Volo.Abp.Features.dll",
  9174. "lib/netstandard2.0/Volo.Abp.Features.pdb",
  9175. "lib/netstandard2.0/Volo.Abp.Features.xml",
  9176. "volo.abp.features.6.0.0.nupkg.sha512",
  9177. "volo.abp.features.nuspec"
  9178. ]
  9179. },
  9180. "Volo.Abp.GlobalFeatures/6.0.0": {
  9181. "sha512": "vC0RODYDbO9fX0FpmyOrWFT097um5NBQ4/SkVcrguwigj6Y8CvSA2b9POI06LMGUg6QVFEzEBCoG4hUwWFgq3Q==",
  9182. "type": "package",
  9183. "path": "volo.abp.globalfeatures/6.0.0",
  9184. "files": [
  9185. ".nupkg.metadata",
  9186. ".signature.p7s",
  9187. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.dll",
  9188. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.pdb",
  9189. "lib/netstandard2.0/Volo.Abp.GlobalFeatures.xml",
  9190. "volo.abp.globalfeatures.6.0.0.nupkg.sha512",
  9191. "volo.abp.globalfeatures.nuspec"
  9192. ]
  9193. },
  9194. "Volo.Abp.Guids/6.0.2": {
  9195. "sha512": "NZJVgg5h6l7WIVpxTIRc27Xkeu1GrsP+BgTXEEgD/+bdbyxwk3jvS1vZpCMTy3c1AxjKldJE+MDbFMSJ1P4QmQ==",
  9196. "type": "package",
  9197. "path": "volo.abp.guids/6.0.2",
  9198. "files": [
  9199. ".nupkg.metadata",
  9200. ".signature.p7s",
  9201. "lib/netstandard2.0/Volo.Abp.Guids.dll",
  9202. "lib/netstandard2.0/Volo.Abp.Guids.pdb",
  9203. "lib/netstandard2.0/Volo.Abp.Guids.xml",
  9204. "volo.abp.guids.6.0.2.nupkg.sha512",
  9205. "volo.abp.guids.nuspec"
  9206. ]
  9207. },
  9208. "Volo.Abp.Http/6.0.0": {
  9209. "sha512": "dBjC0mIbE5rHjCrF0dxbrTHj7Ep4As1LxCPTPgHqjpAGF+Q00Fuf0c7V7C/8mTAUAJ2d37tyPta2anKmYvcEtg==",
  9210. "type": "package",
  9211. "path": "volo.abp.http/6.0.0",
  9212. "files": [
  9213. ".nupkg.metadata",
  9214. ".signature.p7s",
  9215. "lib/netstandard2.0/Volo.Abp.Http.dll",
  9216. "lib/netstandard2.0/Volo.Abp.Http.pdb",
  9217. "lib/netstandard2.0/Volo.Abp.Http.xml",
  9218. "volo.abp.http.6.0.0.nupkg.sha512",
  9219. "volo.abp.http.nuspec"
  9220. ]
  9221. },
  9222. "Volo.Abp.Http.Abstractions/6.0.0": {
  9223. "sha512": "IWB9LuRmW4iuXxNVUqNXN5x1nwpdL1gcgKlwOuU3GVbbHpN5VN3irl/kONfP9buktjd5D0xo/lYaZXKaswi87w==",
  9224. "type": "package",
  9225. "path": "volo.abp.http.abstractions/6.0.0",
  9226. "files": [
  9227. ".nupkg.metadata",
  9228. ".signature.p7s",
  9229. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.dll",
  9230. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.pdb",
  9231. "lib/netstandard2.0/Volo.Abp.Http.Abstractions.xml",
  9232. "volo.abp.http.abstractions.6.0.0.nupkg.sha512",
  9233. "volo.abp.http.abstractions.nuspec"
  9234. ]
  9235. },
  9236. "Volo.Abp.Json/6.0.2": {
  9237. "sha512": "opT+u/teEACd2U/8OEYYNh4XHZ2JZgx+fdqPCOHcDyV0aJFn6friK8hc8d5dkUw/XY9lbnTX0VA7a5hMFhF+VQ==",
  9238. "type": "package",
  9239. "path": "volo.abp.json/6.0.2",
  9240. "files": [
  9241. ".nupkg.metadata",
  9242. ".signature.p7s",
  9243. "lib/netstandard2.0/Volo.Abp.Json.dll",
  9244. "lib/netstandard2.0/Volo.Abp.Json.pdb",
  9245. "lib/netstandard2.0/Volo.Abp.Json.xml",
  9246. "volo.abp.json.6.0.2.nupkg.sha512",
  9247. "volo.abp.json.nuspec"
  9248. ]
  9249. },
  9250. "Volo.Abp.Localization/6.0.2": {
  9251. "sha512": "YYUEzyfH3u/ILYm045fbPZQKh2asIEXiw1swsh3qyo7fPV1q5xxEsb5xBwfE5SC0F+lcUBy72cJjRmf8HqiQFw==",
  9252. "type": "package",
  9253. "path": "volo.abp.localization/6.0.2",
  9254. "files": [
  9255. ".nupkg.metadata",
  9256. ".signature.p7s",
  9257. "lib/netstandard2.0/Volo.Abp.Localization.dll",
  9258. "lib/netstandard2.0/Volo.Abp.Localization.pdb",
  9259. "lib/netstandard2.0/Volo.Abp.Localization.xml",
  9260. "volo.abp.localization.6.0.2.nupkg.sha512",
  9261. "volo.abp.localization.nuspec"
  9262. ]
  9263. },
  9264. "Volo.Abp.Localization.Abstractions/6.0.2": {
  9265. "sha512": "RE2tYmLJJ6W6BEm4LXiqJHBpY07JE9iiAj7djfYvQzrn3oSonCyLFxH+/UWIBzcGgOrjdhzI/UuF0Y9GHNRWTA==",
  9266. "type": "package",
  9267. "path": "volo.abp.localization.abstractions/6.0.2",
  9268. "files": [
  9269. ".nupkg.metadata",
  9270. ".signature.p7s",
  9271. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.dll",
  9272. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.pdb",
  9273. "lib/netstandard2.0/Volo.Abp.Localization.Abstractions.xml",
  9274. "volo.abp.localization.abstractions.6.0.2.nupkg.sha512",
  9275. "volo.abp.localization.abstractions.nuspec"
  9276. ]
  9277. },
  9278. "Volo.Abp.Minify/6.0.0": {
  9279. "sha512": "Gf7+HoBVQTATUs8okymMs30C/OpUQOtud2yn8mr8qJtWX8K7+qCjfZcpbN4g601qx/m2dzhhlVAqS2FO3fhVQQ==",
  9280. "type": "package",
  9281. "path": "volo.abp.minify/6.0.0",
  9282. "files": [
  9283. ".nupkg.metadata",
  9284. ".signature.p7s",
  9285. "lib/netstandard2.0/Volo.Abp.Minify.dll",
  9286. "lib/netstandard2.0/Volo.Abp.Minify.pdb",
  9287. "lib/netstandard2.0/Volo.Abp.Minify.xml",
  9288. "volo.abp.minify.6.0.0.nupkg.sha512",
  9289. "volo.abp.minify.nuspec"
  9290. ]
  9291. },
  9292. "Volo.Abp.MultiTenancy/6.0.2": {
  9293. "sha512": "1RU/gR260DELa1hZKmb8pwFu5yUzF3dv5ilSc3ICcu8CnStod1/wD1gwLl8WbLob2IZX/CqRRqUzawwc4lwY6w==",
  9294. "type": "package",
  9295. "path": "volo.abp.multitenancy/6.0.2",
  9296. "files": [
  9297. ".nupkg.metadata",
  9298. ".signature.p7s",
  9299. "lib/netstandard2.0/Volo.Abp.MultiTenancy.dll",
  9300. "lib/netstandard2.0/Volo.Abp.MultiTenancy.pdb",
  9301. "lib/netstandard2.0/Volo.Abp.MultiTenancy.xml",
  9302. "volo.abp.multitenancy.6.0.2.nupkg.sha512",
  9303. "volo.abp.multitenancy.nuspec"
  9304. ]
  9305. },
  9306. "Volo.Abp.ObjectExtending/6.0.2": {
  9307. "sha512": "KNAIAAoQIJg75TisdF6ZE8roeeqwlyjCMu9PAgnKbwraxwU12F390Rl3ObKhVI9aHAk31aMj4+EZpLTUbCmFpA==",
  9308. "type": "package",
  9309. "path": "volo.abp.objectextending/6.0.2",
  9310. "files": [
  9311. ".nupkg.metadata",
  9312. ".signature.p7s",
  9313. "lib/netstandard2.0/Volo.Abp.ObjectExtending.dll",
  9314. "lib/netstandard2.0/Volo.Abp.ObjectExtending.pdb",
  9315. "lib/netstandard2.0/Volo.Abp.ObjectExtending.xml",
  9316. "volo.abp.objectextending.6.0.2.nupkg.sha512",
  9317. "volo.abp.objectextending.nuspec"
  9318. ]
  9319. },
  9320. "Volo.Abp.ObjectMapping/6.0.2": {
  9321. "sha512": "reUOLtKea9//yOSNwfCno9tPIPrlLyaOFioeP4dDSlIfq6p0q8O45XHnZzv7LJ8SLpB26Xw9DuFZRZ59TVkahw==",
  9322. "type": "package",
  9323. "path": "volo.abp.objectmapping/6.0.2",
  9324. "files": [
  9325. ".nupkg.metadata",
  9326. ".signature.p7s",
  9327. "lib/netstandard2.0/Volo.Abp.ObjectMapping.dll",
  9328. "lib/netstandard2.0/Volo.Abp.ObjectMapping.pdb",
  9329. "lib/netstandard2.0/Volo.Abp.ObjectMapping.xml",
  9330. "volo.abp.objectmapping.6.0.2.nupkg.sha512",
  9331. "volo.abp.objectmapping.nuspec"
  9332. ]
  9333. },
  9334. "Volo.Abp.PermissionManagement.Application.Contracts/6.0.0": {
  9335. "sha512": "TkhbsorTogLAS20sACYSQ9B1O5t86QvxCvqodaLRzbLtraeGdrWwWTZ/dT96bp9f6hT+8KvuCrxu1mhXIgLoaw==",
  9336. "type": "package",
  9337. "path": "volo.abp.permissionmanagement.application.contracts/6.0.0",
  9338. "files": [
  9339. ".nupkg.metadata",
  9340. ".signature.p7s",
  9341. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.dll",
  9342. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.pdb",
  9343. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Application.Contracts.xml",
  9344. "volo.abp.permissionmanagement.application.contracts.6.0.0.nupkg.sha512",
  9345. "volo.abp.permissionmanagement.application.contracts.nuspec"
  9346. ]
  9347. },
  9348. "Volo.Abp.PermissionManagement.Domain/6.0.0": {
  9349. "sha512": "qtYyZ/z7Zh5fMfaJXEL06iAuSgtrxt98M2oHN52POuClOx1V0Jix0fejeWsfJvvGs/l1+EyDWb2ul2IiOkuksg==",
  9350. "type": "package",
  9351. "path": "volo.abp.permissionmanagement.domain/6.0.0",
  9352. "files": [
  9353. ".nupkg.metadata",
  9354. ".signature.p7s",
  9355. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.dll",
  9356. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.pdb",
  9357. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.xml",
  9358. "volo.abp.permissionmanagement.domain.6.0.0.nupkg.sha512",
  9359. "volo.abp.permissionmanagement.domain.nuspec"
  9360. ]
  9361. },
  9362. "Volo.Abp.PermissionManagement.Domain.Shared/6.0.0": {
  9363. "sha512": "BjLkzErtgq3LYzt4T16QwG7FJF/pe4DrjrWOsEZc852FliAzUF9MVOOPvcAADNgIHpCJQXBJqu6c+yf77g9wsA==",
  9364. "type": "package",
  9365. "path": "volo.abp.permissionmanagement.domain.shared/6.0.0",
  9366. "files": [
  9367. ".nupkg.metadata",
  9368. ".signature.p7s",
  9369. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.dll",
  9370. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.pdb",
  9371. "lib/netstandard2.0/Volo.Abp.PermissionManagement.Domain.Shared.xml",
  9372. "volo.abp.permissionmanagement.domain.shared.6.0.0.nupkg.sha512",
  9373. "volo.abp.permissionmanagement.domain.shared.nuspec"
  9374. ]
  9375. },
  9376. "Volo.Abp.PermissionManagement.EntityFrameworkCore/6.0.0": {
  9377. "sha512": "xS/RfnfEv49cHWpE90aFSPlg9ZdW2zeHwfSHtBxXdF1t24E0Bbouzc33iUATMPYnH02nwLGMy8n6QDRZht4+pA==",
  9378. "type": "package",
  9379. "path": "volo.abp.permissionmanagement.entityframeworkcore/6.0.0",
  9380. "files": [
  9381. ".nupkg.metadata",
  9382. ".signature.p7s",
  9383. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.dll",
  9384. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.pdb",
  9385. "lib/net6.0/Volo.Abp.PermissionManagement.EntityFrameworkCore.xml",
  9386. "volo.abp.permissionmanagement.entityframeworkcore.6.0.0.nupkg.sha512",
  9387. "volo.abp.permissionmanagement.entityframeworkcore.nuspec"
  9388. ]
  9389. },
  9390. "Volo.Abp.Security/6.0.2": {
  9391. "sha512": "+SxP7wxD+Auc4WXuPXZZ6Ra1VTy1H+UWbkvUBiKnjw8258tdTEsWBLBosOM74OzCcBMysj3uxiKVv/unNg3sWg==",
  9392. "type": "package",
  9393. "path": "volo.abp.security/6.0.2",
  9394. "files": [
  9395. ".nupkg.metadata",
  9396. ".signature.p7s",
  9397. "lib/netstandard2.0/Volo.Abp.Security.dll",
  9398. "lib/netstandard2.0/Volo.Abp.Security.pdb",
  9399. "lib/netstandard2.0/Volo.Abp.Security.xml",
  9400. "volo.abp.security.6.0.2.nupkg.sha512",
  9401. "volo.abp.security.nuspec"
  9402. ]
  9403. },
  9404. "Volo.Abp.Serialization/6.0.0": {
  9405. "sha512": "fQUBF1eyxxrw81UCAehHG/GDr9TqAPh5MzjsV8RW7PhDPwkpxzypKVx1MwR+SFhF+zY0Eml1olk5iJ8u8nxBqQ==",
  9406. "type": "package",
  9407. "path": "volo.abp.serialization/6.0.0",
  9408. "files": [
  9409. ".nupkg.metadata",
  9410. ".signature.p7s",
  9411. "lib/netstandard2.0/Volo.Abp.Serialization.dll",
  9412. "lib/netstandard2.0/Volo.Abp.Serialization.pdb",
  9413. "lib/netstandard2.0/Volo.Abp.Serialization.xml",
  9414. "volo.abp.serialization.6.0.0.nupkg.sha512",
  9415. "volo.abp.serialization.nuspec"
  9416. ]
  9417. },
  9418. "Volo.Abp.Settings/6.0.2": {
  9419. "sha512": "jRlV1GF/TjphMXIwBn/ldkweRdvZY4U/p5iNebVT2hhz8W896Y88jF5yS9JZtjWHT9vs0AitVIYWPs2ZNW8yrQ==",
  9420. "type": "package",
  9421. "path": "volo.abp.settings/6.0.2",
  9422. "files": [
  9423. ".nupkg.metadata",
  9424. ".signature.p7s",
  9425. "lib/netstandard2.0/Volo.Abp.Settings.dll",
  9426. "lib/netstandard2.0/Volo.Abp.Settings.pdb",
  9427. "lib/netstandard2.0/Volo.Abp.Settings.xml",
  9428. "volo.abp.settings.6.0.2.nupkg.sha512",
  9429. "volo.abp.settings.nuspec"
  9430. ]
  9431. },
  9432. "Volo.Abp.Specifications/6.0.2": {
  9433. "sha512": "SYc3Wjco9r9SaeP6+giUvx7x+3jU7ZwEi/AicGQ90oxqngPdL2dSLY86iVItKElM+ZY/JnW5cXwhF9IbJJ6wEw==",
  9434. "type": "package",
  9435. "path": "volo.abp.specifications/6.0.2",
  9436. "files": [
  9437. ".nupkg.metadata",
  9438. ".signature.p7s",
  9439. "lib/netstandard2.0/Volo.Abp.Specifications.dll",
  9440. "lib/netstandard2.0/Volo.Abp.Specifications.pdb",
  9441. "lib/netstandard2.0/Volo.Abp.Specifications.xml",
  9442. "volo.abp.specifications.6.0.2.nupkg.sha512",
  9443. "volo.abp.specifications.nuspec"
  9444. ]
  9445. },
  9446. "Volo.Abp.Threading/6.0.2": {
  9447. "sha512": "tgTehSlQbfNiUPNLMtw3sQRK2AxaCwLdFPf60aJNlwrWbsUTT17HrJ9Yeu9Mn+li8WARS0lvs9tnkk8blUFeuQ==",
  9448. "type": "package",
  9449. "path": "volo.abp.threading/6.0.2",
  9450. "files": [
  9451. ".nupkg.metadata",
  9452. ".signature.p7s",
  9453. "lib/netstandard2.0/Volo.Abp.Threading.dll",
  9454. "lib/netstandard2.0/Volo.Abp.Threading.pdb",
  9455. "lib/netstandard2.0/Volo.Abp.Threading.xml",
  9456. "volo.abp.threading.6.0.2.nupkg.sha512",
  9457. "volo.abp.threading.nuspec"
  9458. ]
  9459. },
  9460. "Volo.Abp.Timing/6.0.2": {
  9461. "sha512": "MbGt9ZJ9U01oHK5+bxUBGuq62w/uI++dFQdR/ghyA3M4r2k435+Snzs+oRoaRcUqvxaE97dPDd578yDwWLl3fQ==",
  9462. "type": "package",
  9463. "path": "volo.abp.timing/6.0.2",
  9464. "files": [
  9465. ".nupkg.metadata",
  9466. ".signature.p7s",
  9467. "lib/netstandard2.0/Volo.Abp.Timing.dll",
  9468. "lib/netstandard2.0/Volo.Abp.Timing.pdb",
  9469. "lib/netstandard2.0/Volo.Abp.Timing.xml",
  9470. "volo.abp.timing.6.0.2.nupkg.sha512",
  9471. "volo.abp.timing.nuspec"
  9472. ]
  9473. },
  9474. "Volo.Abp.UI/6.0.0": {
  9475. "sha512": "9jVrYqJ4eu8s1kcrWA1cQM8I0dJP175wtDUAC5aHbKzCq42P+sbikC8odevQ6t9Ok3GshJCNkIJORcUEt/nAEg==",
  9476. "type": "package",
  9477. "path": "volo.abp.ui/6.0.0",
  9478. "files": [
  9479. ".nupkg.metadata",
  9480. ".signature.p7s",
  9481. "lib/netstandard2.0/Volo.Abp.UI.dll",
  9482. "lib/netstandard2.0/Volo.Abp.UI.pdb",
  9483. "lib/netstandard2.0/Volo.Abp.UI.xml",
  9484. "volo.abp.ui.6.0.0.nupkg.sha512",
  9485. "volo.abp.ui.nuspec"
  9486. ]
  9487. },
  9488. "Volo.Abp.UI.Navigation/6.0.0": {
  9489. "sha512": "/wV50FzsHe6qJ3//dtC94ntX7S/dRHVVmpbGO+WUvlcFIAdXNCy0R5lQx10GyeO4TIYgA0mpu07HLni4A5yDyA==",
  9490. "type": "package",
  9491. "path": "volo.abp.ui.navigation/6.0.0",
  9492. "files": [
  9493. ".nupkg.metadata",
  9494. ".signature.p7s",
  9495. "lib/netstandard2.0/Volo.Abp.UI.Navigation.dll",
  9496. "lib/netstandard2.0/Volo.Abp.UI.Navigation.pdb",
  9497. "lib/netstandard2.0/Volo.Abp.UI.Navigation.xml",
  9498. "volo.abp.ui.navigation.6.0.0.nupkg.sha512",
  9499. "volo.abp.ui.navigation.nuspec"
  9500. ]
  9501. },
  9502. "Volo.Abp.Uow/6.0.2": {
  9503. "sha512": "frheu6miUaSeDzSaKpk4IUT1vZQ1a5Yji9s4pRmX7skd13bTeB6P45n+555qDBEf4/plpr4GPz+9Fd+u/EnVvQ==",
  9504. "type": "package",
  9505. "path": "volo.abp.uow/6.0.2",
  9506. "files": [
  9507. ".nupkg.metadata",
  9508. ".signature.p7s",
  9509. "lib/netstandard2.0/Volo.Abp.Uow.dll",
  9510. "lib/netstandard2.0/Volo.Abp.Uow.pdb",
  9511. "lib/netstandard2.0/Volo.Abp.Uow.xml",
  9512. "volo.abp.uow.6.0.2.nupkg.sha512",
  9513. "volo.abp.uow.nuspec"
  9514. ]
  9515. },
  9516. "Volo.Abp.Validation/6.0.0": {
  9517. "sha512": "Iza3FCoOaClOzHb+ue6q1UPd+MzfXjPfZ29YF8AUe6VfWx49EbquvSk0zjYVx3ikOBhnhffQiqv/QzzQtYmq6A==",
  9518. "type": "package",
  9519. "path": "volo.abp.validation/6.0.0",
  9520. "files": [
  9521. ".nupkg.metadata",
  9522. ".signature.p7s",
  9523. "lib/netstandard2.0/Volo.Abp.Validation.dll",
  9524. "lib/netstandard2.0/Volo.Abp.Validation.pdb",
  9525. "lib/netstandard2.0/Volo.Abp.Validation.xml",
  9526. "volo.abp.validation.6.0.0.nupkg.sha512",
  9527. "volo.abp.validation.nuspec"
  9528. ]
  9529. },
  9530. "Volo.Abp.Validation.Abstractions/6.0.2": {
  9531. "sha512": "LEeESHPMPHrrkf0sFjgUKiHayaStq4uTt7PTQyUvU3WaAJZWrENuC3aXkz4aHJhO2jjW2bRoRHNqfmoGjdzqRg==",
  9532. "type": "package",
  9533. "path": "volo.abp.validation.abstractions/6.0.2",
  9534. "files": [
  9535. ".nupkg.metadata",
  9536. ".signature.p7s",
  9537. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.dll",
  9538. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.pdb",
  9539. "lib/netstandard2.0/Volo.Abp.Validation.Abstractions.xml",
  9540. "volo.abp.validation.abstractions.6.0.2.nupkg.sha512",
  9541. "volo.abp.validation.abstractions.nuspec"
  9542. ]
  9543. },
  9544. "Volo.Abp.VirtualFileSystem/6.0.2": {
  9545. "sha512": "/uA+KzInBEgg31HRis/z7qDsK1rNT8vCEdgQ4cZzUujB6vV7j8cBJQfsXLVmctSEadt0DibFa/XLn7w51J1oXg==",
  9546. "type": "package",
  9547. "path": "volo.abp.virtualfilesystem/6.0.2",
  9548. "files": [
  9549. ".nupkg.metadata",
  9550. ".signature.p7s",
  9551. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.dll",
  9552. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.pdb",
  9553. "lib/netstandard2.0/Volo.Abp.VirtualFileSystem.xml",
  9554. "volo.abp.virtualfilesystem.6.0.2.nupkg.sha512",
  9555. "volo.abp.virtualfilesystem.nuspec"
  9556. ]
  9557. },
  9558. "Procurement.Application/1.0.0": {
  9559. "type": "project",
  9560. "path": "../Procurement.Application/Procurement.Application.csproj",
  9561. "msbuildProject": "../Procurement.Application/Procurement.Application.csproj"
  9562. },
  9563. "Procurement.Core/1.0.0": {
  9564. "type": "project",
  9565. "path": "../Procurement.Core/Procurement.Core.csproj",
  9566. "msbuildProject": "../Procurement.Core/Procurement.Core.csproj"
  9567. },
  9568. "Procurement.Domain/1.0.0": {
  9569. "type": "project",
  9570. "path": "../Procurement.Domain/Procurement.Domain.csproj",
  9571. "msbuildProject": "../Procurement.Domain/Procurement.Domain.csproj"
  9572. },
  9573. "Procurement.EntityFrameworkCore/1.0.0": {
  9574. "type": "project",
  9575. "path": "../Procurement.EntityFrameworkCore/Procurement.EntityFrameworkCore.csproj",
  9576. "msbuildProject": "../Procurement.EntityFrameworkCore/Procurement.EntityFrameworkCore.csproj"
  9577. },
  9578. "XCZ.Procurement.Application.Contracts/0.1.1": {
  9579. "type": "project",
  9580. "path": "../Procurement.Application.Contracts/Procurement.Application.Contracts.csproj",
  9581. "msbuildProject": "../Procurement.Application.Contracts/Procurement.Application.Contracts.csproj"
  9582. }
  9583. },
  9584. "projectFileDependencyGroups": {
  9585. "net6.0": [
  9586. "IdentityServer4.AccessTokenValidation >= 3.0.1",
  9587. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis >= 6.0.3",
  9588. "Microsoft.EntityFrameworkCore.Tools >= 6.0.5",
  9589. "Microsoft.Extensions.Caching.StackExchangeRedis >= 6.0.3",
  9590. "NLog.Database >= 5.1.2",
  9591. "NLog.Web.AspNetCore >= 5.2.2",
  9592. "Procurement.Application >= 1.0.0",
  9593. "Procurement.EntityFrameworkCore >= 1.0.0",
  9594. "Serilog.AspNetCore >= 5.0.0",
  9595. "Serilog.Sinks.Async >= 1.5.0",
  9596. "Swashbuckle.AspNetCore >= 6.3.0",
  9597. "Volo.Abp.AspNetCore.MultiTenancy >= 6.0.0",
  9598. "Volo.Abp.AspNetCore.Mvc >= 6.0.0",
  9599. "Volo.Abp.AspNetCore.Serilog >= 6.0.0",
  9600. "Volo.Abp.Autofac >= 6.0.0",
  9601. "Volo.Abp.Caching >= 6.0.0",
  9602. "Volo.Abp.EntityFrameworkCore.MySQL >= 6.0.2"
  9603. ]
  9604. },
  9605. "packageFolders": {
  9606. "C:\\Users\\fayimi\\.nuget\\packages\\": {},
  9607. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
  9608. "C:\\Microsoft\\Xamarin\\NuGet\\": {},
  9609. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
  9610. },
  9611. "project": {
  9612. "version": "1.0.0",
  9613. "restore": {
  9614. "projectUniqueName": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Host\\Procurement.Host.csproj",
  9615. "projectName": "Procurement.Host",
  9616. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Host\\Procurement.Host.csproj",
  9617. "packagesPath": "C:\\Users\\fayimi\\.nuget\\packages\\",
  9618. "outputPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Host\\obj\\",
  9619. "projectStyle": "PackageReference",
  9620. "fallbackFolders": [
  9621. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
  9622. "C:\\Microsoft\\Xamarin\\NuGet\\",
  9623. "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
  9624. ],
  9625. "configFilePaths": [
  9626. "C:\\Users\\fayimi\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9627. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9628. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  9629. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  9630. ],
  9631. "originalTargetFrameworks": [
  9632. "net6.0"
  9633. ],
  9634. "sources": {
  9635. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9636. "https://api.nuget.org/v3/index.json": {}
  9637. },
  9638. "frameworks": {
  9639. "net6.0": {
  9640. "targetAlias": "net6.0",
  9641. "projectReferences": {
  9642. "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Application\\Procurement.Application.csproj": {
  9643. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.Application\\Procurement.Application.csproj"
  9644. },
  9645. "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj": {
  9646. "projectPath": "E:\\ProjectsZZY\\DOPCore\\MicroServices\\Procurement\\Procurement.EntityFrameworkCore\\Procurement.EntityFrameworkCore.csproj"
  9647. }
  9648. }
  9649. }
  9650. },
  9651. "warningProperties": {
  9652. "warnAsError": [
  9653. "NU1605"
  9654. ]
  9655. }
  9656. },
  9657. "frameworks": {
  9658. "net6.0": {
  9659. "targetAlias": "net6.0",
  9660. "dependencies": {
  9661. "IdentityServer4.AccessTokenValidation": {
  9662. "target": "Package",
  9663. "version": "[3.0.1, )"
  9664. },
  9665. "Microsoft.AspNetCore.DataProtection.StackExchangeRedis": {
  9666. "target": "Package",
  9667. "version": "[6.0.3, )"
  9668. },
  9669. "Microsoft.EntityFrameworkCore.Tools": {
  9670. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  9671. "suppressParent": "All",
  9672. "target": "Package",
  9673. "version": "[6.0.5, )"
  9674. },
  9675. "Microsoft.Extensions.Caching.StackExchangeRedis": {
  9676. "target": "Package",
  9677. "version": "[6.0.3, )"
  9678. },
  9679. "NLog.Database": {
  9680. "target": "Package",
  9681. "version": "[5.1.2, )"
  9682. },
  9683. "NLog.Web.AspNetCore": {
  9684. "target": "Package",
  9685. "version": "[5.2.2, )"
  9686. },
  9687. "Serilog.AspNetCore": {
  9688. "target": "Package",
  9689. "version": "[5.0.0, )"
  9690. },
  9691. "Serilog.Sinks.Async": {
  9692. "target": "Package",
  9693. "version": "[1.5.0, )"
  9694. },
  9695. "Swashbuckle.AspNetCore": {
  9696. "target": "Package",
  9697. "version": "[6.3.0, )"
  9698. },
  9699. "Volo.Abp.AspNetCore.MultiTenancy": {
  9700. "target": "Package",
  9701. "version": "[6.0.0, )"
  9702. },
  9703. "Volo.Abp.AspNetCore.Mvc": {
  9704. "target": "Package",
  9705. "version": "[6.0.0, )"
  9706. },
  9707. "Volo.Abp.AspNetCore.Serilog": {
  9708. "target": "Package",
  9709. "version": "[6.0.0, )"
  9710. },
  9711. "Volo.Abp.Autofac": {
  9712. "target": "Package",
  9713. "version": "[6.0.0, )"
  9714. },
  9715. "Volo.Abp.Caching": {
  9716. "target": "Package",
  9717. "version": "[6.0.0, )"
  9718. },
  9719. "Volo.Abp.EntityFrameworkCore.MySQL": {
  9720. "target": "Package",
  9721. "version": "[6.0.2, )"
  9722. }
  9723. },
  9724. "imports": [
  9725. "net461",
  9726. "net462",
  9727. "net47",
  9728. "net471",
  9729. "net472",
  9730. "net48",
  9731. "net481"
  9732. ],
  9733. "assetTargetFallback": true,
  9734. "warn": true,
  9735. "frameworkReferences": {
  9736. "Microsoft.AspNetCore.App": {
  9737. "privateAssets": "none"
  9738. },
  9739. "Microsoft.NETCore.App": {
  9740. "privateAssets": "all"
  9741. }
  9742. },
  9743. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
  9744. }
  9745. }
  9746. }
  9747. }