project.assets.json 484 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "AutoMapper/12.0.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.CSharp": "4.7.0"
  9. },
  10. "compile": {
  11. "lib/netstandard2.1/AutoMapper.dll": {
  12. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/netstandard2.1/AutoMapper.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  22. "type": "package",
  23. "dependencies": {
  24. "AutoMapper": "[12.0.1]",
  25. "Microsoft.Extensions.Options": "6.0.0"
  26. },
  27. "compile": {
  28. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  29. },
  30. "runtime": {
  31. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  32. }
  33. },
  34. "BouncyCastle.NetCore/1.8.3": {
  35. "type": "package",
  36. "dependencies": {
  37. "NETStandard.Library": "1.6.0",
  38. "System.Reflection": "4.3.0",
  39. "System.Reflection.TypeExtensions": "4.1.0"
  40. },
  41. "compile": {
  42. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  43. "related": ".xml"
  44. }
  45. },
  46. "runtime": {
  47. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  48. "related": ".xml"
  49. }
  50. }
  51. },
  52. "Flurl/4.0.0": {
  53. "type": "package",
  54. "compile": {
  55. "lib/netstandard2.0/Flurl.dll": {
  56. "related": ".xml"
  57. }
  58. },
  59. "runtime": {
  60. "lib/netstandard2.0/Flurl.dll": {
  61. "related": ".xml"
  62. }
  63. }
  64. },
  65. "Flurl.Http/4.0.2": {
  66. "type": "package",
  67. "dependencies": {
  68. "Flurl": "4.0.0",
  69. "System.Text.Encoding.CodePages": "4.5.1",
  70. "System.Text.Json": "6.0.4"
  71. },
  72. "compile": {
  73. "lib/netstandard2.0/Flurl.Http.dll": {
  74. "related": ".xml"
  75. }
  76. },
  77. "runtime": {
  78. "lib/netstandard2.0/Flurl.Http.dll": {
  79. "related": ".xml"
  80. }
  81. }
  82. },
  83. "Google.Protobuf/3.11.4": {
  84. "type": "package",
  85. "dependencies": {
  86. "System.Memory": "4.5.2"
  87. },
  88. "compile": {
  89. "lib/netstandard2.0/Google.Protobuf.dll": {
  90. "related": ".pdb;.xml"
  91. }
  92. },
  93. "runtime": {
  94. "lib/netstandard2.0/Google.Protobuf.dll": {
  95. "related": ".pdb;.xml"
  96. }
  97. }
  98. },
  99. "K4os.Compression.LZ4/1.1.11": {
  100. "type": "package",
  101. "dependencies": {
  102. "System.Memory": "4.5.3"
  103. },
  104. "compile": {
  105. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  106. "related": ".xml"
  107. }
  108. },
  109. "runtime": {
  110. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  111. "related": ".xml"
  112. }
  113. }
  114. },
  115. "K4os.Compression.LZ4.Streams/1.1.11": {
  116. "type": "package",
  117. "dependencies": {
  118. "K4os.Compression.LZ4": "1.1.11",
  119. "K4os.Hash.xxHash": "1.0.6"
  120. },
  121. "compile": {
  122. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  123. "related": ".xml"
  124. }
  125. },
  126. "runtime": {
  127. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  128. "related": ".xml"
  129. }
  130. }
  131. },
  132. "K4os.Hash.xxHash/1.0.6": {
  133. "type": "package",
  134. "dependencies": {
  135. "System.Memory": "4.5.3"
  136. },
  137. "compile": {
  138. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  139. "related": ".xml"
  140. }
  141. },
  142. "runtime": {
  143. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  144. "related": ".xml"
  145. }
  146. }
  147. },
  148. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  149. "type": "package",
  150. "compile": {
  151. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  152. "related": ".xml"
  153. }
  154. },
  155. "runtime": {
  156. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  157. "related": ".xml"
  158. }
  159. }
  160. },
  161. "Microsoft.Bcl.HashCode/1.1.0": {
  162. "type": "package",
  163. "compile": {
  164. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  165. },
  166. "runtime": {
  167. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
  168. "related": ".xml"
  169. }
  170. }
  171. },
  172. "Microsoft.CSharp/4.7.0": {
  173. "type": "package",
  174. "compile": {
  175. "ref/netcoreapp2.0/_._": {}
  176. },
  177. "runtime": {
  178. "lib/netcoreapp2.0/_._": {}
  179. }
  180. },
  181. "Microsoft.EntityFrameworkCore/3.1.1": {
  182. "type": "package",
  183. "dependencies": {
  184. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  185. "Microsoft.Bcl.HashCode": "1.1.0",
  186. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  187. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  188. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  189. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  190. "Microsoft.Extensions.Logging": "3.1.1",
  191. "System.Collections.Immutable": "1.7.0",
  192. "System.ComponentModel.Annotations": "4.7.0",
  193. "System.Diagnostics.DiagnosticSource": "4.7.0"
  194. },
  195. "compile": {
  196. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  197. "related": ".xml"
  198. }
  199. },
  200. "runtime": {
  201. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  202. "related": ".xml"
  203. }
  204. }
  205. },
  206. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  207. "type": "package",
  208. "compile": {
  209. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  210. "related": ".xml"
  211. }
  212. },
  213. "runtime": {
  214. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  215. "related": ".xml"
  216. }
  217. }
  218. },
  219. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  220. "type": "package",
  221. "compile": {
  222. "lib/netstandard2.0/_._": {}
  223. },
  224. "runtime": {
  225. "lib/netstandard2.0/_._": {}
  226. }
  227. },
  228. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  229. "type": "package",
  230. "dependencies": {
  231. "Microsoft.EntityFrameworkCore": "3.1.1"
  232. },
  233. "compile": {
  234. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  235. "related": ".xml"
  236. }
  237. },
  238. "runtime": {
  239. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  240. "related": ".xml"
  241. }
  242. }
  243. },
  244. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  245. "type": "package",
  246. "build": {
  247. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  248. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  249. },
  250. "buildMultiTargeting": {
  251. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  252. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  253. }
  254. },
  255. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  256. "type": "package",
  257. "dependencies": {
  258. "Microsoft.Extensions.Primitives": "3.1.1"
  259. },
  260. "compile": {
  261. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  262. "related": ".xml"
  263. }
  264. },
  265. "runtime": {
  266. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  267. "related": ".xml"
  268. }
  269. }
  270. },
  271. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  272. "type": "package",
  273. "dependencies": {
  274. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  275. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  276. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  277. "Microsoft.Extensions.Options": "3.1.1"
  278. },
  279. "compile": {
  280. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  281. "related": ".xml"
  282. }
  283. },
  284. "runtime": {
  285. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  286. "related": ".xml"
  287. }
  288. }
  289. },
  290. "Microsoft.Extensions.Configuration/8.0.0": {
  291. "type": "package",
  292. "dependencies": {
  293. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  294. "Microsoft.Extensions.Primitives": "8.0.0"
  295. },
  296. "compile": {
  297. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  298. "related": ".xml"
  299. }
  300. },
  301. "runtime": {
  302. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  303. "related": ".xml"
  304. }
  305. },
  306. "build": {
  307. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets": {}
  308. }
  309. },
  310. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  311. "type": "package",
  312. "dependencies": {
  313. "Microsoft.Extensions.Primitives": "8.0.0"
  314. },
  315. "compile": {
  316. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  317. "related": ".xml"
  318. }
  319. },
  320. "runtime": {
  321. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  322. "related": ".xml"
  323. }
  324. },
  325. "build": {
  326. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets": {}
  327. }
  328. },
  329. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  330. "type": "package",
  331. "dependencies": {
  332. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  333. },
  334. "compile": {
  335. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  336. "related": ".xml"
  337. }
  338. },
  339. "runtime": {
  340. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  341. "related": ".xml"
  342. }
  343. },
  344. "build": {
  345. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
  346. }
  347. },
  348. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  349. "type": "package",
  350. "dependencies": {
  351. "Microsoft.Extensions.Configuration": "8.0.0",
  352. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  353. },
  354. "compile": {
  355. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  356. "related": ".xml"
  357. }
  358. },
  359. "runtime": {
  360. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  361. "related": ".xml"
  362. }
  363. },
  364. "build": {
  365. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets": {}
  366. }
  367. },
  368. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  369. "type": "package",
  370. "dependencies": {
  371. "Microsoft.Extensions.Configuration": "8.0.0",
  372. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  373. },
  374. "compile": {
  375. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  376. "related": ".xml"
  377. }
  378. },
  379. "runtime": {
  380. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  381. "related": ".xml"
  382. }
  383. },
  384. "build": {
  385. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets": {}
  386. }
  387. },
  388. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.Extensions.Configuration": "8.0.0",
  392. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  393. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  394. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  395. "Microsoft.Extensions.Primitives": "8.0.0"
  396. },
  397. "compile": {
  398. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  399. "related": ".xml"
  400. }
  401. },
  402. "runtime": {
  403. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  404. "related": ".xml"
  405. }
  406. },
  407. "build": {
  408. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets": {}
  409. }
  410. },
  411. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  412. "type": "package",
  413. "dependencies": {
  414. "Microsoft.Extensions.Configuration": "8.0.0",
  415. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  416. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  417. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  418. "System.Text.Json": "8.0.0"
  419. },
  420. "compile": {
  421. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  422. "related": ".xml"
  423. }
  424. },
  425. "runtime": {
  426. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  427. "related": ".xml"
  428. }
  429. },
  430. "build": {
  431. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets": {}
  432. }
  433. },
  434. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  435. "type": "package",
  436. "dependencies": {
  437. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  438. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  439. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  440. "Microsoft.Extensions.FileProviders.Physical": "8.0.0"
  441. },
  442. "compile": {
  443. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  444. "related": ".xml"
  445. }
  446. },
  447. "runtime": {
  448. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  449. "related": ".xml"
  450. }
  451. },
  452. "build": {
  453. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  454. }
  455. },
  456. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  457. "type": "package",
  458. "dependencies": {
  459. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  460. },
  461. "compile": {
  462. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  463. "related": ".xml"
  464. }
  465. },
  466. "runtime": {
  467. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  468. "related": ".xml"
  469. }
  470. },
  471. "build": {
  472. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets": {}
  473. }
  474. },
  475. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  476. "type": "package",
  477. "compile": {
  478. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  479. "related": ".xml"
  480. }
  481. },
  482. "runtime": {
  483. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  484. "related": ".xml"
  485. }
  486. },
  487. "build": {
  488. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets": {}
  489. }
  490. },
  491. "Microsoft.Extensions.DependencyModel/3.1.6": {
  492. "type": "package",
  493. "dependencies": {
  494. "System.Text.Json": "4.7.2"
  495. },
  496. "compile": {
  497. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  498. "related": ".xml"
  499. }
  500. },
  501. "runtime": {
  502. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  503. "related": ".xml"
  504. }
  505. }
  506. },
  507. "Microsoft.Extensions.Diagnostics/8.0.0": {
  508. "type": "package",
  509. "dependencies": {
  510. "Microsoft.Extensions.Configuration": "8.0.0",
  511. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  512. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  513. },
  514. "compile": {
  515. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  516. "related": ".xml"
  517. }
  518. },
  519. "runtime": {
  520. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  521. "related": ".xml"
  522. }
  523. },
  524. "build": {
  525. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets": {}
  526. }
  527. },
  528. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  529. "type": "package",
  530. "dependencies": {
  531. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  532. "Microsoft.Extensions.Options": "8.0.0",
  533. "System.Buffers": "4.5.1",
  534. "System.Diagnostics.DiagnosticSource": "8.0.0",
  535. "System.Memory": "4.5.5"
  536. },
  537. "compile": {
  538. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  539. "related": ".xml"
  540. }
  541. },
  542. "runtime": {
  543. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  544. "related": ".xml"
  545. }
  546. },
  547. "build": {
  548. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets": {}
  549. }
  550. },
  551. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  552. "type": "package",
  553. "dependencies": {
  554. "Microsoft.Extensions.Primitives": "8.0.0"
  555. },
  556. "compile": {
  557. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  558. "related": ".xml"
  559. }
  560. },
  561. "runtime": {
  562. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  563. "related": ".xml"
  564. }
  565. },
  566. "build": {
  567. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets": {}
  568. }
  569. },
  570. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  571. "type": "package",
  572. "dependencies": {
  573. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  574. "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
  575. "Microsoft.Extensions.Primitives": "8.0.0"
  576. },
  577. "compile": {
  578. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  579. "related": ".xml"
  580. }
  581. },
  582. "runtime": {
  583. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  584. "related": ".xml"
  585. }
  586. },
  587. "build": {
  588. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets": {}
  589. }
  590. },
  591. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  592. "type": "package",
  593. "compile": {
  594. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  595. "related": ".xml"
  596. }
  597. },
  598. "runtime": {
  599. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  600. "related": ".xml"
  601. }
  602. },
  603. "build": {
  604. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets": {}
  605. }
  606. },
  607. "Microsoft.Extensions.Hosting/8.0.0": {
  608. "type": "package",
  609. "dependencies": {
  610. "Microsoft.Extensions.Configuration": "8.0.0",
  611. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  612. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  613. "Microsoft.Extensions.Configuration.CommandLine": "8.0.0",
  614. "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0",
  615. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  616. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  617. "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0",
  618. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  619. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  620. "Microsoft.Extensions.Diagnostics": "8.0.0",
  621. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  622. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  623. "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
  624. "Microsoft.Extensions.Logging": "8.0.0",
  625. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  626. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  627. "Microsoft.Extensions.Logging.Console": "8.0.0",
  628. "Microsoft.Extensions.Logging.Debug": "8.0.0",
  629. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  630. "Microsoft.Extensions.Logging.EventSource": "8.0.0",
  631. "Microsoft.Extensions.Options": "8.0.0"
  632. },
  633. "compile": {
  634. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  635. "related": ".xml"
  636. }
  637. },
  638. "runtime": {
  639. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  640. "related": ".xml"
  641. }
  642. },
  643. "build": {
  644. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets": {}
  645. }
  646. },
  647. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  648. "type": "package",
  649. "dependencies": {
  650. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  651. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  652. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  653. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  654. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  655. },
  656. "compile": {
  657. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  658. "related": ".xml"
  659. }
  660. },
  661. "runtime": {
  662. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  663. "related": ".xml"
  664. }
  665. },
  666. "build": {
  667. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets": {}
  668. }
  669. },
  670. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  671. "type": "package",
  672. "dependencies": {
  673. "Microsoft.Extensions.Hosting": "8.0.0",
  674. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  675. "System.ServiceProcess.ServiceController": "8.0.0"
  676. },
  677. "compile": {
  678. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  679. "related": ".xml"
  680. }
  681. },
  682. "runtime": {
  683. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  684. "related": ".xml"
  685. }
  686. },
  687. "build": {
  688. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets": {}
  689. }
  690. },
  691. "Microsoft.Extensions.Logging/8.0.0": {
  692. "type": "package",
  693. "dependencies": {
  694. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  695. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  696. "Microsoft.Extensions.Options": "8.0.0",
  697. "System.Diagnostics.DiagnosticSource": "8.0.0"
  698. },
  699. "compile": {
  700. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  701. "related": ".xml"
  702. }
  703. },
  704. "runtime": {
  705. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  706. "related": ".xml"
  707. }
  708. },
  709. "build": {
  710. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets": {}
  711. }
  712. },
  713. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  714. "type": "package",
  715. "dependencies": {
  716. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  717. "System.Buffers": "4.5.1",
  718. "System.Memory": "4.5.5"
  719. },
  720. "compile": {
  721. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  722. "related": ".xml"
  723. }
  724. },
  725. "runtime": {
  726. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  727. "related": ".xml"
  728. }
  729. },
  730. "build": {
  731. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  732. }
  733. },
  734. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  735. "type": "package",
  736. "dependencies": {
  737. "Microsoft.Extensions.Configuration": "8.0.0",
  738. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  739. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  740. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  741. "Microsoft.Extensions.Logging": "8.0.0",
  742. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  743. "Microsoft.Extensions.Options": "8.0.0",
  744. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  745. },
  746. "compile": {
  747. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  748. "related": ".xml"
  749. }
  750. },
  751. "runtime": {
  752. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  753. "related": ".xml"
  754. }
  755. },
  756. "build": {
  757. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets": {}
  758. }
  759. },
  760. "Microsoft.Extensions.Logging.Console/8.0.0": {
  761. "type": "package",
  762. "dependencies": {
  763. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  764. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  765. "Microsoft.Extensions.Logging": "8.0.0",
  766. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  767. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  768. "Microsoft.Extensions.Options": "8.0.0",
  769. "System.Buffers": "4.5.1",
  770. "System.Text.Json": "8.0.0"
  771. },
  772. "compile": {
  773. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  774. "related": ".xml"
  775. }
  776. },
  777. "runtime": {
  778. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  779. "related": ".xml"
  780. }
  781. },
  782. "build": {
  783. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets": {}
  784. }
  785. },
  786. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  787. "type": "package",
  788. "dependencies": {
  789. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  790. "Microsoft.Extensions.Logging": "8.0.0",
  791. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  792. },
  793. "compile": {
  794. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  795. "related": ".xml"
  796. }
  797. },
  798. "runtime": {
  799. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  800. "related": ".xml"
  801. }
  802. },
  803. "build": {
  804. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets": {}
  805. }
  806. },
  807. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  808. "type": "package",
  809. "dependencies": {
  810. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  811. "Microsoft.Extensions.Logging": "8.0.0",
  812. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  813. "Microsoft.Extensions.Options": "8.0.0",
  814. "System.Diagnostics.EventLog": "8.0.0"
  815. },
  816. "compile": {
  817. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  818. "related": ".xml"
  819. }
  820. },
  821. "runtime": {
  822. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  823. "related": ".xml"
  824. }
  825. },
  826. "build": {
  827. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets": {}
  828. }
  829. },
  830. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  831. "type": "package",
  832. "dependencies": {
  833. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  834. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  835. "Microsoft.Extensions.Logging": "8.0.0",
  836. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  837. "Microsoft.Extensions.Options": "8.0.0",
  838. "Microsoft.Extensions.Primitives": "8.0.0",
  839. "System.Memory": "4.5.5",
  840. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  841. "System.Text.Json": "8.0.0"
  842. },
  843. "compile": {
  844. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  845. "related": ".xml"
  846. }
  847. },
  848. "runtime": {
  849. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  850. "related": ".xml"
  851. }
  852. },
  853. "build": {
  854. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets": {}
  855. }
  856. },
  857. "Microsoft.Extensions.Options/8.0.0": {
  858. "type": "package",
  859. "dependencies": {
  860. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  861. "Microsoft.Extensions.Primitives": "8.0.0",
  862. "System.ComponentModel.Annotations": "5.0.0"
  863. },
  864. "compile": {
  865. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  866. "related": ".xml"
  867. }
  868. },
  869. "runtime": {
  870. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  871. "related": ".xml"
  872. }
  873. },
  874. "build": {
  875. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets": {}
  876. }
  877. },
  878. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  879. "type": "package",
  880. "dependencies": {
  881. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  882. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  883. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  884. "Microsoft.Extensions.Options": "8.0.0",
  885. "Microsoft.Extensions.Primitives": "8.0.0"
  886. },
  887. "compile": {
  888. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  889. "related": ".xml"
  890. }
  891. },
  892. "runtime": {
  893. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  894. "related": ".xml"
  895. }
  896. },
  897. "build": {
  898. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets": {}
  899. }
  900. },
  901. "Microsoft.Extensions.Primitives/8.0.0": {
  902. "type": "package",
  903. "dependencies": {
  904. "System.Memory": "4.5.5",
  905. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  906. },
  907. "compile": {
  908. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  909. "related": ".xml"
  910. }
  911. },
  912. "runtime": {
  913. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  914. "related": ".xml"
  915. }
  916. },
  917. "build": {
  918. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets": {}
  919. }
  920. },
  921. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  922. "type": "package",
  923. "compile": {
  924. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  925. "related": ".xml"
  926. }
  927. },
  928. "runtime": {
  929. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  930. "related": ".xml"
  931. }
  932. }
  933. },
  934. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  935. "type": "package",
  936. "dependencies": {
  937. "Microsoft.IdentityModel.Tokens": "7.4.1",
  938. "System.Text.Encodings.Web": "4.7.2",
  939. "System.Text.Json": "4.7.2"
  940. },
  941. "compile": {
  942. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  943. "related": ".xml"
  944. }
  945. },
  946. "runtime": {
  947. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  948. "related": ".xml"
  949. }
  950. }
  951. },
  952. "Microsoft.IdentityModel.Logging/7.4.1": {
  953. "type": "package",
  954. "dependencies": {
  955. "Microsoft.IdentityModel.Abstractions": "7.4.1"
  956. },
  957. "compile": {
  958. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  959. "related": ".xml"
  960. }
  961. },
  962. "runtime": {
  963. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  964. "related": ".xml"
  965. }
  966. }
  967. },
  968. "Microsoft.IdentityModel.Tokens/7.4.1": {
  969. "type": "package",
  970. "dependencies": {
  971. "Microsoft.CSharp": "4.5.0",
  972. "Microsoft.IdentityModel.Logging": "7.4.1",
  973. "System.Security.Cryptography.Cng": "4.5.0",
  974. "System.Text.Encodings.Web": "4.7.2",
  975. "System.Text.Json": "4.7.2"
  976. },
  977. "compile": {
  978. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  979. "related": ".xml"
  980. }
  981. },
  982. "runtime": {
  983. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  984. "related": ".xml"
  985. }
  986. }
  987. },
  988. "Microsoft.NETCore.Platforms/2.1.2": {
  989. "type": "package",
  990. "compile": {
  991. "lib/netstandard1.0/_._": {}
  992. },
  993. "runtime": {
  994. "lib/netstandard1.0/_._": {}
  995. }
  996. },
  997. "Microsoft.NETCore.Targets/3.0.0": {
  998. "type": "package",
  999. "compile": {
  1000. "lib/netstandard1.0/_._": {}
  1001. },
  1002. "runtime": {
  1003. "lib/netstandard1.0/_._": {}
  1004. }
  1005. },
  1006. "Microsoft.OpenApi/1.3.1": {
  1007. "type": "package",
  1008. "compile": {
  1009. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1010. "related": ".pdb;.xml"
  1011. }
  1012. },
  1013. "runtime": {
  1014. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  1015. "related": ".pdb;.xml"
  1016. }
  1017. }
  1018. },
  1019. "Microsoft.Win32.Primitives/4.0.1": {
  1020. "type": "package",
  1021. "dependencies": {
  1022. "Microsoft.NETCore.Platforms": "1.0.1",
  1023. "Microsoft.NETCore.Targets": "1.0.1",
  1024. "System.Runtime": "4.1.0"
  1025. },
  1026. "compile": {
  1027. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1028. "related": ".xml"
  1029. }
  1030. }
  1031. },
  1032. "Microsoft.Win32.SystemEvents/6.0.0": {
  1033. "type": "package",
  1034. "compile": {
  1035. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1036. "related": ".xml"
  1037. }
  1038. },
  1039. "runtime": {
  1040. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1041. "related": ".xml"
  1042. }
  1043. },
  1044. "build": {
  1045. "buildTransitive/netcoreapp3.1/_._": {}
  1046. },
  1047. "runtimeTargets": {
  1048. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  1049. "assetType": "runtime",
  1050. "rid": "win"
  1051. }
  1052. }
  1053. },
  1054. "MySql.Data/8.0.22": {
  1055. "type": "package",
  1056. "dependencies": {
  1057. "BouncyCastle.NetCore": "1.8.3",
  1058. "Google.Protobuf": "3.11.4",
  1059. "K4os.Compression.LZ4": "1.1.11",
  1060. "K4os.Compression.LZ4.Streams": "1.1.11",
  1061. "K4os.Hash.xxHash": "1.0.6",
  1062. "SSH.NET": "2016.1.0",
  1063. "System.Buffers": "4.5.1",
  1064. "System.Configuration.ConfigurationManager": "4.4.1",
  1065. "System.Security.Permissions": "4.7.0",
  1066. "System.Text.Encoding.CodePages": "4.4.0"
  1067. },
  1068. "compile": {
  1069. "lib/netstandard2.1/MySql.Data.dll": {
  1070. "related": ".xml"
  1071. },
  1072. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  1073. "lib/netstandard2.1/Zstandard.Net.dll": {}
  1074. },
  1075. "runtime": {
  1076. "lib/netstandard2.1/MySql.Data.dll": {
  1077. "related": ".xml"
  1078. },
  1079. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  1080. "lib/netstandard2.1/Zstandard.Net.dll": {}
  1081. }
  1082. },
  1083. "MySql.Data.EntityFrameworkCore/8.0.22": {
  1084. "type": "package",
  1085. "dependencies": {
  1086. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  1087. "MySql.Data": "8.0.22"
  1088. },
  1089. "compile": {
  1090. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  1091. "related": ".xml"
  1092. }
  1093. },
  1094. "runtime": {
  1095. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  1096. "related": ".xml"
  1097. }
  1098. }
  1099. },
  1100. "NETStandard.Library/1.6.0": {
  1101. "type": "package",
  1102. "dependencies": {
  1103. "Microsoft.NETCore.Platforms": "1.0.1",
  1104. "Microsoft.Win32.Primitives": "4.0.1",
  1105. "System.AppContext": "4.1.0",
  1106. "System.Collections": "4.0.11",
  1107. "System.Collections.Concurrent": "4.0.12",
  1108. "System.Console": "4.0.0",
  1109. "System.Diagnostics.Debug": "4.0.11",
  1110. "System.Diagnostics.Tools": "4.0.1",
  1111. "System.Diagnostics.Tracing": "4.1.0",
  1112. "System.Globalization": "4.0.11",
  1113. "System.Globalization.Calendars": "4.0.1",
  1114. "System.IO": "4.1.0",
  1115. "System.IO.Compression": "4.1.0",
  1116. "System.IO.Compression.ZipFile": "4.0.1",
  1117. "System.IO.FileSystem": "4.0.1",
  1118. "System.IO.FileSystem.Primitives": "4.0.1",
  1119. "System.Linq": "4.1.0",
  1120. "System.Linq.Expressions": "4.1.0",
  1121. "System.Net.Http": "4.1.0",
  1122. "System.Net.Primitives": "4.0.11",
  1123. "System.Net.Sockets": "4.1.0",
  1124. "System.ObjectModel": "4.0.12",
  1125. "System.Reflection": "4.1.0",
  1126. "System.Reflection.Extensions": "4.0.1",
  1127. "System.Reflection.Primitives": "4.0.1",
  1128. "System.Resources.ResourceManager": "4.0.1",
  1129. "System.Runtime": "4.1.0",
  1130. "System.Runtime.Extensions": "4.1.0",
  1131. "System.Runtime.Handles": "4.0.1",
  1132. "System.Runtime.InteropServices": "4.1.0",
  1133. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  1134. "System.Runtime.Numerics": "4.0.1",
  1135. "System.Security.Cryptography.Algorithms": "4.2.0",
  1136. "System.Security.Cryptography.Encoding": "4.0.0",
  1137. "System.Security.Cryptography.Primitives": "4.0.0",
  1138. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1139. "System.Text.Encoding": "4.0.11",
  1140. "System.Text.Encoding.Extensions": "4.0.11",
  1141. "System.Text.RegularExpressions": "4.1.0",
  1142. "System.Threading": "4.0.11",
  1143. "System.Threading.Tasks": "4.0.11",
  1144. "System.Threading.Timer": "4.0.1",
  1145. "System.Xml.ReaderWriter": "4.0.11",
  1146. "System.Xml.XDocument": "4.0.11"
  1147. }
  1148. },
  1149. "Newtonsoft.Json/13.0.3": {
  1150. "type": "package",
  1151. "compile": {
  1152. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1153. "related": ".xml"
  1154. }
  1155. },
  1156. "runtime": {
  1157. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1158. "related": ".xml"
  1159. }
  1160. }
  1161. },
  1162. "NLog/5.2.8": {
  1163. "type": "package",
  1164. "compile": {
  1165. "lib/netstandard2.0/NLog.dll": {
  1166. "related": ".xml"
  1167. }
  1168. },
  1169. "runtime": {
  1170. "lib/netstandard2.0/NLog.dll": {
  1171. "related": ".xml"
  1172. }
  1173. }
  1174. },
  1175. "NLog.Extensions.Logging/5.3.8": {
  1176. "type": "package",
  1177. "dependencies": {
  1178. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  1179. "Microsoft.Extensions.Logging": "3.1.0",
  1180. "NLog": "5.2.8"
  1181. },
  1182. "compile": {
  1183. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  1184. "related": ".xml"
  1185. }
  1186. },
  1187. "runtime": {
  1188. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  1189. "related": ".xml"
  1190. }
  1191. }
  1192. },
  1193. "NLog.Web.AspNetCore/5.3.8": {
  1194. "type": "package",
  1195. "dependencies": {
  1196. "NLog.Extensions.Logging": "5.3.8"
  1197. },
  1198. "compile": {
  1199. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {
  1200. "related": ".xml"
  1201. }
  1202. },
  1203. "runtime": {
  1204. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {
  1205. "related": ".xml"
  1206. }
  1207. },
  1208. "frameworkReferences": [
  1209. "Microsoft.AspNetCore.App"
  1210. ]
  1211. },
  1212. "Pipelines.Sockets.Unofficial/2.2.8": {
  1213. "type": "package",
  1214. "dependencies": {
  1215. "System.IO.Pipelines": "5.0.1"
  1216. },
  1217. "compile": {
  1218. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {
  1219. "related": ".xml"
  1220. }
  1221. },
  1222. "runtime": {
  1223. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {
  1224. "related": ".xml"
  1225. }
  1226. }
  1227. },
  1228. "Quartz/3.8.1": {
  1229. "type": "package",
  1230. "dependencies": {
  1231. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  1232. "System.Configuration.ConfigurationManager": "6.0.1",
  1233. "System.Diagnostics.DiagnosticSource": "4.7.1"
  1234. },
  1235. "compile": {
  1236. "lib/netstandard2.0/Quartz.dll": {
  1237. "related": ".xml"
  1238. }
  1239. },
  1240. "runtime": {
  1241. "lib/netstandard2.0/Quartz.dll": {
  1242. "related": ".xml"
  1243. }
  1244. }
  1245. },
  1246. "runtime.native.System/4.0.0": {
  1247. "type": "package",
  1248. "dependencies": {
  1249. "Microsoft.NETCore.Platforms": "1.0.1",
  1250. "Microsoft.NETCore.Targets": "1.0.1"
  1251. },
  1252. "compile": {
  1253. "lib/netstandard1.0/_._": {}
  1254. },
  1255. "runtime": {
  1256. "lib/netstandard1.0/_._": {}
  1257. }
  1258. },
  1259. "runtime.native.System.IO.Compression/4.1.0": {
  1260. "type": "package",
  1261. "dependencies": {
  1262. "Microsoft.NETCore.Platforms": "1.0.1",
  1263. "Microsoft.NETCore.Targets": "1.0.1"
  1264. },
  1265. "compile": {
  1266. "lib/netstandard1.0/_._": {}
  1267. },
  1268. "runtime": {
  1269. "lib/netstandard1.0/_._": {}
  1270. }
  1271. },
  1272. "runtime.native.System.Net.Http/4.0.1": {
  1273. "type": "package",
  1274. "dependencies": {
  1275. "Microsoft.NETCore.Platforms": "1.0.1",
  1276. "Microsoft.NETCore.Targets": "1.0.1"
  1277. },
  1278. "compile": {
  1279. "lib/netstandard1.0/_._": {}
  1280. },
  1281. "runtime": {
  1282. "lib/netstandard1.0/_._": {}
  1283. }
  1284. },
  1285. "runtime.native.System.Security.Cryptography/4.0.0": {
  1286. "type": "package",
  1287. "dependencies": {
  1288. "Microsoft.NETCore.Platforms": "1.0.1",
  1289. "Microsoft.NETCore.Targets": "1.0.1"
  1290. },
  1291. "compile": {
  1292. "lib/netstandard1.0/_._": {}
  1293. },
  1294. "runtime": {
  1295. "lib/netstandard1.0/_._": {}
  1296. }
  1297. },
  1298. "Scrutor/3.3.0": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  1302. "Microsoft.Extensions.DependencyModel": "3.1.6"
  1303. },
  1304. "compile": {
  1305. "lib/netcoreapp3.1/Scrutor.dll": {
  1306. "related": ".pdb;.xml"
  1307. }
  1308. },
  1309. "runtime": {
  1310. "lib/netcoreapp3.1/Scrutor.dll": {
  1311. "related": ".pdb;.xml"
  1312. }
  1313. }
  1314. },
  1315. "SSH.NET/2016.1.0": {
  1316. "type": "package",
  1317. "dependencies": {
  1318. "Microsoft.CSharp": "4.0.1",
  1319. "SshNet.Security.Cryptography": "[1.2.0]",
  1320. "System.Diagnostics.Debug": "4.0.11",
  1321. "System.Diagnostics.Tools": "4.0.1",
  1322. "System.Diagnostics.TraceSource": "4.0.0",
  1323. "System.Globalization": "4.0.11",
  1324. "System.IO": "4.1.0",
  1325. "System.IO.FileSystem": "4.0.1",
  1326. "System.IO.FileSystem.Primitives": "4.0.1",
  1327. "System.Linq": "4.1.0",
  1328. "System.Net.NameResolution": "4.0.0",
  1329. "System.Net.Sockets": "4.1.0",
  1330. "System.Reflection.Extensions": "4.0.1",
  1331. "System.Runtime.Extensions": "4.1.0",
  1332. "System.Security.Cryptography.Algorithms": "4.2.0",
  1333. "System.Text.RegularExpressions": "4.1.0",
  1334. "System.Threading": "4.0.11",
  1335. "System.Threading.Thread": "4.0.0",
  1336. "System.Threading.ThreadPool": "4.0.10",
  1337. "System.Threading.Timer": "4.0.1",
  1338. "System.Xml.XPath.XmlDocument": "4.0.1",
  1339. "System.Xml.XmlDocument": "4.0.1"
  1340. },
  1341. "compile": {
  1342. "lib/netstandard1.3/Renci.SshNet.dll": {
  1343. "related": ".xml"
  1344. }
  1345. },
  1346. "runtime": {
  1347. "lib/netstandard1.3/Renci.SshNet.dll": {
  1348. "related": ".xml"
  1349. }
  1350. }
  1351. },
  1352. "SshNet.Security.Cryptography/1.2.0": {
  1353. "type": "package",
  1354. "dependencies": {
  1355. "System.IO": "4.1.0",
  1356. "System.Security.Cryptography.Primitives": "4.0.0"
  1357. },
  1358. "compile": {
  1359. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  1360. "related": ".xml"
  1361. }
  1362. },
  1363. "runtime": {
  1364. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  1365. "related": ".xml"
  1366. }
  1367. }
  1368. },
  1369. "StackExchange.Redis/2.7.33": {
  1370. "type": "package",
  1371. "dependencies": {
  1372. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1373. "Pipelines.Sockets.Unofficial": "2.2.8"
  1374. },
  1375. "compile": {
  1376. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  1377. "related": ".xml"
  1378. }
  1379. },
  1380. "runtime": {
  1381. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  1382. "related": ".xml"
  1383. }
  1384. }
  1385. },
  1386. "Swashbuckle.AspNetCore/6.5.0": {
  1387. "type": "package",
  1388. "dependencies": {
  1389. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  1390. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  1391. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  1392. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  1393. },
  1394. "build": {
  1395. "build/Swashbuckle.AspNetCore.props": {}
  1396. }
  1397. },
  1398. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  1399. "type": "package",
  1400. "dependencies": {
  1401. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  1402. "Microsoft.OpenApi": "1.3.1",
  1403. "Scrutor": "3.3.0",
  1404. "Swashbuckle.AspNetCore.Filters.Abstractions": "8.0.1",
  1405. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  1406. },
  1407. "compile": {
  1408. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1409. },
  1410. "runtime": {
  1411. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  1412. }
  1413. },
  1414. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  1415. "type": "package",
  1416. "compile": {
  1417. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1418. },
  1419. "runtime": {
  1420. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  1421. }
  1422. },
  1423. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  1424. "type": "package",
  1425. "dependencies": {
  1426. "Microsoft.OpenApi": "1.2.3"
  1427. },
  1428. "compile": {
  1429. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1430. "related": ".pdb;.xml"
  1431. }
  1432. },
  1433. "runtime": {
  1434. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  1435. "related": ".pdb;.xml"
  1436. }
  1437. },
  1438. "frameworkReferences": [
  1439. "Microsoft.AspNetCore.App"
  1440. ]
  1441. },
  1442. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  1443. "type": "package",
  1444. "dependencies": {
  1445. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  1446. },
  1447. "compile": {
  1448. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1449. "related": ".pdb;.xml"
  1450. }
  1451. },
  1452. "runtime": {
  1453. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  1454. "related": ".pdb;.xml"
  1455. }
  1456. }
  1457. },
  1458. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  1459. "type": "package",
  1460. "compile": {
  1461. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1462. "related": ".pdb;.xml"
  1463. }
  1464. },
  1465. "runtime": {
  1466. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  1467. "related": ".pdb;.xml"
  1468. }
  1469. },
  1470. "frameworkReferences": [
  1471. "Microsoft.AspNetCore.App"
  1472. ]
  1473. },
  1474. "System.AppContext/4.1.0": {
  1475. "type": "package",
  1476. "dependencies": {
  1477. "System.Runtime": "4.1.0"
  1478. },
  1479. "compile": {
  1480. "ref/netstandard1.6/System.AppContext.dll": {
  1481. "related": ".xml"
  1482. }
  1483. },
  1484. "runtime": {
  1485. "lib/netstandard1.6/System.AppContext.dll": {}
  1486. }
  1487. },
  1488. "System.Buffers/4.5.1": {
  1489. "type": "package",
  1490. "compile": {
  1491. "ref/netcoreapp2.0/_._": {}
  1492. },
  1493. "runtime": {
  1494. "lib/netcoreapp2.0/_._": {}
  1495. }
  1496. },
  1497. "System.Collections/4.0.11": {
  1498. "type": "package",
  1499. "dependencies": {
  1500. "Microsoft.NETCore.Platforms": "1.0.1",
  1501. "Microsoft.NETCore.Targets": "1.0.1",
  1502. "System.Runtime": "4.1.0"
  1503. },
  1504. "compile": {
  1505. "ref/netstandard1.3/System.Collections.dll": {
  1506. "related": ".xml"
  1507. }
  1508. }
  1509. },
  1510. "System.Collections.Concurrent/4.0.12": {
  1511. "type": "package",
  1512. "dependencies": {
  1513. "System.Collections": "4.0.11",
  1514. "System.Diagnostics.Debug": "4.0.11",
  1515. "System.Diagnostics.Tracing": "4.1.0",
  1516. "System.Globalization": "4.0.11",
  1517. "System.Reflection": "4.1.0",
  1518. "System.Resources.ResourceManager": "4.0.1",
  1519. "System.Runtime": "4.1.0",
  1520. "System.Runtime.Extensions": "4.1.0",
  1521. "System.Threading": "4.0.11",
  1522. "System.Threading.Tasks": "4.0.11"
  1523. },
  1524. "compile": {
  1525. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  1526. "related": ".xml"
  1527. }
  1528. },
  1529. "runtime": {
  1530. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1531. }
  1532. },
  1533. "System.Collections.Immutable/1.7.0": {
  1534. "type": "package",
  1535. "compile": {
  1536. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1537. "related": ".xml"
  1538. }
  1539. },
  1540. "runtime": {
  1541. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  1542. "related": ".xml"
  1543. }
  1544. }
  1545. },
  1546. "System.ComponentModel.Annotations/5.0.0": {
  1547. "type": "package",
  1548. "compile": {
  1549. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1550. "related": ".xml"
  1551. }
  1552. },
  1553. "runtime": {
  1554. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  1555. "related": ".xml"
  1556. }
  1557. }
  1558. },
  1559. "System.Configuration.ConfigurationManager/6.0.1": {
  1560. "type": "package",
  1561. "dependencies": {
  1562. "System.Security.Cryptography.ProtectedData": "6.0.0",
  1563. "System.Security.Permissions": "6.0.0"
  1564. },
  1565. "compile": {
  1566. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1567. "related": ".xml"
  1568. }
  1569. },
  1570. "runtime": {
  1571. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  1572. "related": ".xml"
  1573. }
  1574. },
  1575. "build": {
  1576. "buildTransitive/netcoreapp3.1/_._": {}
  1577. }
  1578. },
  1579. "System.Console/4.0.0": {
  1580. "type": "package",
  1581. "dependencies": {
  1582. "Microsoft.NETCore.Platforms": "1.0.1",
  1583. "Microsoft.NETCore.Targets": "1.0.1",
  1584. "System.IO": "4.1.0",
  1585. "System.Runtime": "4.1.0",
  1586. "System.Text.Encoding": "4.0.11"
  1587. },
  1588. "compile": {
  1589. "ref/netstandard1.3/System.Console.dll": {
  1590. "related": ".xml"
  1591. }
  1592. }
  1593. },
  1594. "System.Diagnostics.Debug/4.0.11": {
  1595. "type": "package",
  1596. "dependencies": {
  1597. "Microsoft.NETCore.Platforms": "1.0.1",
  1598. "Microsoft.NETCore.Targets": "1.0.1",
  1599. "System.Runtime": "4.1.0"
  1600. },
  1601. "compile": {
  1602. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  1603. "related": ".xml"
  1604. }
  1605. }
  1606. },
  1607. "System.Diagnostics.DiagnosticSource/8.0.0": {
  1608. "type": "package",
  1609. "dependencies": {
  1610. "System.Memory": "4.5.5",
  1611. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1612. },
  1613. "compile": {
  1614. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  1615. "related": ".xml"
  1616. }
  1617. },
  1618. "runtime": {
  1619. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  1620. "related": ".xml"
  1621. }
  1622. },
  1623. "build": {
  1624. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
  1625. }
  1626. },
  1627. "System.Diagnostics.EventLog/8.0.0": {
  1628. "type": "package",
  1629. "dependencies": {
  1630. "System.Security.Principal.Windows": "5.0.0"
  1631. },
  1632. "compile": {
  1633. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1634. "related": ".xml"
  1635. }
  1636. },
  1637. "runtime": {
  1638. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  1639. "related": ".xml"
  1640. }
  1641. },
  1642. "build": {
  1643. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets": {}
  1644. }
  1645. },
  1646. "System.Diagnostics.Tools/4.0.1": {
  1647. "type": "package",
  1648. "dependencies": {
  1649. "Microsoft.NETCore.Platforms": "1.0.1",
  1650. "Microsoft.NETCore.Targets": "1.0.1",
  1651. "System.Runtime": "4.1.0"
  1652. },
  1653. "compile": {
  1654. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  1655. "related": ".xml"
  1656. }
  1657. }
  1658. },
  1659. "System.Diagnostics.TraceSource/4.0.0": {
  1660. "type": "package",
  1661. "dependencies": {
  1662. "Microsoft.NETCore.Platforms": "1.0.1",
  1663. "System.Collections": "4.0.11",
  1664. "System.Diagnostics.Debug": "4.0.11",
  1665. "System.Globalization": "4.0.11",
  1666. "System.Resources.ResourceManager": "4.0.1",
  1667. "System.Runtime": "4.1.0",
  1668. "System.Runtime.Extensions": "4.1.0",
  1669. "System.Threading": "4.0.11",
  1670. "runtime.native.System": "4.0.0"
  1671. },
  1672. "compile": {
  1673. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1674. "related": ".xml"
  1675. }
  1676. },
  1677. "runtimeTargets": {
  1678. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1679. "assetType": "runtime",
  1680. "rid": "unix"
  1681. },
  1682. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  1683. "assetType": "runtime",
  1684. "rid": "win"
  1685. }
  1686. }
  1687. },
  1688. "System.Diagnostics.Tracing/4.1.0": {
  1689. "type": "package",
  1690. "dependencies": {
  1691. "Microsoft.NETCore.Platforms": "1.0.1",
  1692. "Microsoft.NETCore.Targets": "1.0.1",
  1693. "System.Runtime": "4.1.0"
  1694. },
  1695. "compile": {
  1696. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  1697. "related": ".xml"
  1698. }
  1699. }
  1700. },
  1701. "System.Drawing.Common/6.0.0": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "Microsoft.Win32.SystemEvents": "6.0.0"
  1705. },
  1706. "compile": {
  1707. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1708. "related": ".xml"
  1709. }
  1710. },
  1711. "runtime": {
  1712. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1713. "related": ".xml"
  1714. }
  1715. },
  1716. "build": {
  1717. "buildTransitive/netcoreapp3.1/_._": {}
  1718. },
  1719. "runtimeTargets": {
  1720. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1721. "assetType": "runtime",
  1722. "rid": "unix"
  1723. },
  1724. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  1725. "assetType": "runtime",
  1726. "rid": "win"
  1727. }
  1728. }
  1729. },
  1730. "System.Globalization/4.0.11": {
  1731. "type": "package",
  1732. "dependencies": {
  1733. "Microsoft.NETCore.Platforms": "1.0.1",
  1734. "Microsoft.NETCore.Targets": "1.0.1",
  1735. "System.Runtime": "4.1.0"
  1736. },
  1737. "compile": {
  1738. "ref/netstandard1.3/System.Globalization.dll": {
  1739. "related": ".xml"
  1740. }
  1741. }
  1742. },
  1743. "System.Globalization.Calendars/4.0.1": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "Microsoft.NETCore.Platforms": "1.0.1",
  1747. "Microsoft.NETCore.Targets": "1.0.1",
  1748. "System.Globalization": "4.0.11",
  1749. "System.Runtime": "4.1.0"
  1750. },
  1751. "compile": {
  1752. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  1753. "related": ".xml"
  1754. }
  1755. }
  1756. },
  1757. "System.Globalization.Extensions/4.0.1": {
  1758. "type": "package",
  1759. "dependencies": {
  1760. "Microsoft.NETCore.Platforms": "1.0.1",
  1761. "System.Globalization": "4.0.11",
  1762. "System.Resources.ResourceManager": "4.0.1",
  1763. "System.Runtime": "4.1.0",
  1764. "System.Runtime.Extensions": "4.1.0",
  1765. "System.Runtime.InteropServices": "4.1.0"
  1766. },
  1767. "compile": {
  1768. "ref/netstandard1.3/_._": {
  1769. "related": ".xml"
  1770. }
  1771. },
  1772. "runtimeTargets": {
  1773. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1774. "assetType": "runtime",
  1775. "rid": "unix"
  1776. },
  1777. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1778. "assetType": "runtime",
  1779. "rid": "win"
  1780. }
  1781. }
  1782. },
  1783. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "Microsoft.IdentityModel.JsonWebTokens": "7.4.1",
  1787. "Microsoft.IdentityModel.Tokens": "7.4.1"
  1788. },
  1789. "compile": {
  1790. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1791. "related": ".xml"
  1792. }
  1793. },
  1794. "runtime": {
  1795. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  1796. "related": ".xml"
  1797. }
  1798. }
  1799. },
  1800. "System.IO/4.3.0": {
  1801. "type": "package",
  1802. "dependencies": {
  1803. "Microsoft.NETCore.Platforms": "1.1.0",
  1804. "Microsoft.NETCore.Targets": "1.1.0",
  1805. "System.Runtime": "4.3.0",
  1806. "System.Text.Encoding": "4.3.0",
  1807. "System.Threading.Tasks": "4.3.0"
  1808. },
  1809. "compile": {
  1810. "ref/netstandard1.5/System.IO.dll": {
  1811. "related": ".xml"
  1812. }
  1813. }
  1814. },
  1815. "System.IO.Compression/4.1.0": {
  1816. "type": "package",
  1817. "dependencies": {
  1818. "Microsoft.NETCore.Platforms": "1.0.1",
  1819. "System.Collections": "4.0.11",
  1820. "System.Diagnostics.Debug": "4.0.11",
  1821. "System.IO": "4.1.0",
  1822. "System.Resources.ResourceManager": "4.0.1",
  1823. "System.Runtime": "4.1.0",
  1824. "System.Runtime.Extensions": "4.1.0",
  1825. "System.Runtime.Handles": "4.0.1",
  1826. "System.Runtime.InteropServices": "4.1.0",
  1827. "System.Text.Encoding": "4.0.11",
  1828. "System.Threading": "4.0.11",
  1829. "System.Threading.Tasks": "4.0.11",
  1830. "runtime.native.System": "4.0.0",
  1831. "runtime.native.System.IO.Compression": "4.1.0"
  1832. },
  1833. "compile": {
  1834. "ref/netstandard1.3/System.IO.Compression.dll": {
  1835. "related": ".xml"
  1836. }
  1837. },
  1838. "runtimeTargets": {
  1839. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1840. "assetType": "runtime",
  1841. "rid": "unix"
  1842. },
  1843. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1844. "assetType": "runtime",
  1845. "rid": "win"
  1846. }
  1847. }
  1848. },
  1849. "System.IO.Compression.ZipFile/4.0.1": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "System.Buffers": "4.0.0",
  1853. "System.IO": "4.1.0",
  1854. "System.IO.Compression": "4.1.0",
  1855. "System.IO.FileSystem": "4.0.1",
  1856. "System.IO.FileSystem.Primitives": "4.0.1",
  1857. "System.Resources.ResourceManager": "4.0.1",
  1858. "System.Runtime": "4.1.0",
  1859. "System.Runtime.Extensions": "4.1.0",
  1860. "System.Text.Encoding": "4.0.11"
  1861. },
  1862. "compile": {
  1863. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  1864. "related": ".xml"
  1865. }
  1866. },
  1867. "runtime": {
  1868. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1869. }
  1870. },
  1871. "System.IO.FileSystem/4.0.1": {
  1872. "type": "package",
  1873. "dependencies": {
  1874. "Microsoft.NETCore.Platforms": "1.0.1",
  1875. "Microsoft.NETCore.Targets": "1.0.1",
  1876. "System.IO": "4.1.0",
  1877. "System.IO.FileSystem.Primitives": "4.0.1",
  1878. "System.Runtime": "4.1.0",
  1879. "System.Runtime.Handles": "4.0.1",
  1880. "System.Text.Encoding": "4.0.11",
  1881. "System.Threading.Tasks": "4.0.11"
  1882. },
  1883. "compile": {
  1884. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  1885. "related": ".xml"
  1886. }
  1887. }
  1888. },
  1889. "System.IO.FileSystem.Primitives/4.0.1": {
  1890. "type": "package",
  1891. "dependencies": {
  1892. "System.Runtime": "4.1.0"
  1893. },
  1894. "compile": {
  1895. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  1896. "related": ".xml"
  1897. }
  1898. },
  1899. "runtime": {
  1900. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1901. }
  1902. },
  1903. "System.IO.Pipelines/5.0.1": {
  1904. "type": "package",
  1905. "compile": {
  1906. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  1907. "related": ".xml"
  1908. }
  1909. },
  1910. "runtime": {
  1911. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  1912. "related": ".xml"
  1913. }
  1914. }
  1915. },
  1916. "System.Linq/4.1.0": {
  1917. "type": "package",
  1918. "dependencies": {
  1919. "System.Collections": "4.0.11",
  1920. "System.Diagnostics.Debug": "4.0.11",
  1921. "System.Resources.ResourceManager": "4.0.1",
  1922. "System.Runtime": "4.1.0",
  1923. "System.Runtime.Extensions": "4.1.0"
  1924. },
  1925. "compile": {
  1926. "ref/netstandard1.6/System.Linq.dll": {
  1927. "related": ".xml"
  1928. }
  1929. },
  1930. "runtime": {
  1931. "lib/netstandard1.6/System.Linq.dll": {}
  1932. }
  1933. },
  1934. "System.Linq.Expressions/4.1.0": {
  1935. "type": "package",
  1936. "dependencies": {
  1937. "System.Collections": "4.0.11",
  1938. "System.Diagnostics.Debug": "4.0.11",
  1939. "System.Globalization": "4.0.11",
  1940. "System.IO": "4.1.0",
  1941. "System.Linq": "4.1.0",
  1942. "System.ObjectModel": "4.0.12",
  1943. "System.Reflection": "4.1.0",
  1944. "System.Reflection.Emit": "4.0.1",
  1945. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1946. "System.Reflection.Emit.Lightweight": "4.0.1",
  1947. "System.Reflection.Extensions": "4.0.1",
  1948. "System.Reflection.Primitives": "4.0.1",
  1949. "System.Reflection.TypeExtensions": "4.1.0",
  1950. "System.Resources.ResourceManager": "4.0.1",
  1951. "System.Runtime": "4.1.0",
  1952. "System.Runtime.Extensions": "4.1.0",
  1953. "System.Threading": "4.0.11"
  1954. },
  1955. "compile": {
  1956. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  1957. "related": ".xml"
  1958. }
  1959. },
  1960. "runtime": {
  1961. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1962. }
  1963. },
  1964. "System.Memory/4.5.5": {
  1965. "type": "package",
  1966. "compile": {
  1967. "ref/netcoreapp2.1/_._": {}
  1968. },
  1969. "runtime": {
  1970. "lib/netcoreapp2.1/_._": {}
  1971. }
  1972. },
  1973. "System.Net.Http/4.1.0": {
  1974. "type": "package",
  1975. "dependencies": {
  1976. "Microsoft.NETCore.Platforms": "1.0.1",
  1977. "System.Collections": "4.0.11",
  1978. "System.Diagnostics.Debug": "4.0.11",
  1979. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1980. "System.Diagnostics.Tracing": "4.1.0",
  1981. "System.Globalization": "4.0.11",
  1982. "System.Globalization.Extensions": "4.0.1",
  1983. "System.IO": "4.1.0",
  1984. "System.IO.FileSystem": "4.0.1",
  1985. "System.Net.Primitives": "4.0.11",
  1986. "System.Resources.ResourceManager": "4.0.1",
  1987. "System.Runtime": "4.1.0",
  1988. "System.Runtime.Extensions": "4.1.0",
  1989. "System.Runtime.Handles": "4.0.1",
  1990. "System.Runtime.InteropServices": "4.1.0",
  1991. "System.Security.Cryptography.Algorithms": "4.2.0",
  1992. "System.Security.Cryptography.Encoding": "4.0.0",
  1993. "System.Security.Cryptography.OpenSsl": "4.0.0",
  1994. "System.Security.Cryptography.Primitives": "4.0.0",
  1995. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1996. "System.Text.Encoding": "4.0.11",
  1997. "System.Threading": "4.0.11",
  1998. "System.Threading.Tasks": "4.0.11",
  1999. "runtime.native.System": "4.0.0",
  2000. "runtime.native.System.Net.Http": "4.0.1",
  2001. "runtime.native.System.Security.Cryptography": "4.0.0"
  2002. },
  2003. "compile": {
  2004. "ref/netstandard1.3/System.Net.Http.dll": {
  2005. "related": ".xml"
  2006. }
  2007. },
  2008. "runtimeTargets": {
  2009. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2010. "assetType": "runtime",
  2011. "rid": "unix"
  2012. },
  2013. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2014. "assetType": "runtime",
  2015. "rid": "win"
  2016. }
  2017. }
  2018. },
  2019. "System.Net.NameResolution/4.0.0": {
  2020. "type": "package",
  2021. "dependencies": {
  2022. "Microsoft.NETCore.Platforms": "1.0.1",
  2023. "System.Collections": "4.0.11",
  2024. "System.Diagnostics.Tracing": "4.1.0",
  2025. "System.Globalization": "4.0.11",
  2026. "System.Net.Primitives": "4.0.11",
  2027. "System.Resources.ResourceManager": "4.0.1",
  2028. "System.Runtime": "4.1.0",
  2029. "System.Runtime.Extensions": "4.1.0",
  2030. "System.Runtime.Handles": "4.0.1",
  2031. "System.Runtime.InteropServices": "4.1.0",
  2032. "System.Security.Principal.Windows": "4.0.0",
  2033. "System.Threading": "4.0.11",
  2034. "System.Threading.Tasks": "4.0.11",
  2035. "runtime.native.System": "4.0.0"
  2036. },
  2037. "compile": {
  2038. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  2039. "related": ".xml"
  2040. }
  2041. },
  2042. "runtimeTargets": {
  2043. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2044. "assetType": "runtime",
  2045. "rid": "unix"
  2046. },
  2047. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2048. "assetType": "runtime",
  2049. "rid": "win"
  2050. }
  2051. }
  2052. },
  2053. "System.Net.Primitives/4.0.11": {
  2054. "type": "package",
  2055. "dependencies": {
  2056. "Microsoft.NETCore.Platforms": "1.0.1",
  2057. "Microsoft.NETCore.Targets": "1.0.1",
  2058. "System.Runtime": "4.1.0",
  2059. "System.Runtime.Handles": "4.0.1"
  2060. },
  2061. "compile": {
  2062. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2063. "related": ".xml"
  2064. }
  2065. }
  2066. },
  2067. "System.Net.Sockets/4.1.0": {
  2068. "type": "package",
  2069. "dependencies": {
  2070. "Microsoft.NETCore.Platforms": "1.0.1",
  2071. "Microsoft.NETCore.Targets": "1.0.1",
  2072. "System.IO": "4.1.0",
  2073. "System.Net.Primitives": "4.0.11",
  2074. "System.Runtime": "4.1.0",
  2075. "System.Threading.Tasks": "4.0.11"
  2076. },
  2077. "compile": {
  2078. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2079. "related": ".xml"
  2080. }
  2081. }
  2082. },
  2083. "System.ObjectModel/4.0.12": {
  2084. "type": "package",
  2085. "dependencies": {
  2086. "System.Collections": "4.0.11",
  2087. "System.Diagnostics.Debug": "4.0.11",
  2088. "System.Resources.ResourceManager": "4.0.1",
  2089. "System.Runtime": "4.1.0",
  2090. "System.Threading": "4.0.11"
  2091. },
  2092. "compile": {
  2093. "ref/netstandard1.3/System.ObjectModel.dll": {
  2094. "related": ".xml"
  2095. }
  2096. },
  2097. "runtime": {
  2098. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2099. }
  2100. },
  2101. "System.Reflection/4.3.0": {
  2102. "type": "package",
  2103. "dependencies": {
  2104. "Microsoft.NETCore.Platforms": "1.1.0",
  2105. "Microsoft.NETCore.Targets": "1.1.0",
  2106. "System.IO": "4.3.0",
  2107. "System.Reflection.Primitives": "4.3.0",
  2108. "System.Runtime": "4.3.0"
  2109. },
  2110. "compile": {
  2111. "ref/netstandard1.5/System.Reflection.dll": {
  2112. "related": ".xml"
  2113. }
  2114. }
  2115. },
  2116. "System.Reflection.Emit/4.0.1": {
  2117. "type": "package",
  2118. "dependencies": {
  2119. "System.IO": "4.1.0",
  2120. "System.Reflection": "4.1.0",
  2121. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2122. "System.Reflection.Primitives": "4.0.1",
  2123. "System.Runtime": "4.1.0"
  2124. },
  2125. "compile": {
  2126. "ref/netstandard1.1/_._": {
  2127. "related": ".xml"
  2128. }
  2129. },
  2130. "runtime": {
  2131. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2132. }
  2133. },
  2134. "System.Reflection.Emit.ILGeneration/4.0.1": {
  2135. "type": "package",
  2136. "dependencies": {
  2137. "System.Reflection": "4.1.0",
  2138. "System.Reflection.Primitives": "4.0.1",
  2139. "System.Runtime": "4.1.0"
  2140. },
  2141. "compile": {
  2142. "ref/netstandard1.0/_._": {
  2143. "related": ".xml"
  2144. }
  2145. },
  2146. "runtime": {
  2147. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2148. }
  2149. },
  2150. "System.Reflection.Emit.Lightweight/4.0.1": {
  2151. "type": "package",
  2152. "dependencies": {
  2153. "System.Reflection": "4.1.0",
  2154. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2155. "System.Reflection.Primitives": "4.0.1",
  2156. "System.Runtime": "4.1.0"
  2157. },
  2158. "compile": {
  2159. "ref/netstandard1.0/_._": {
  2160. "related": ".xml"
  2161. }
  2162. },
  2163. "runtime": {
  2164. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2165. }
  2166. },
  2167. "System.Reflection.Extensions/4.0.1": {
  2168. "type": "package",
  2169. "dependencies": {
  2170. "Microsoft.NETCore.Platforms": "1.0.1",
  2171. "Microsoft.NETCore.Targets": "1.0.1",
  2172. "System.Reflection": "4.1.0",
  2173. "System.Runtime": "4.1.0"
  2174. },
  2175. "compile": {
  2176. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2177. "related": ".xml"
  2178. }
  2179. }
  2180. },
  2181. "System.Reflection.Primitives/4.3.0": {
  2182. "type": "package",
  2183. "dependencies": {
  2184. "Microsoft.NETCore.Platforms": "1.1.0",
  2185. "Microsoft.NETCore.Targets": "1.1.0",
  2186. "System.Runtime": "4.3.0"
  2187. },
  2188. "compile": {
  2189. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2190. "related": ".xml"
  2191. }
  2192. }
  2193. },
  2194. "System.Reflection.TypeExtensions/4.1.0": {
  2195. "type": "package",
  2196. "dependencies": {
  2197. "System.Reflection": "4.1.0",
  2198. "System.Runtime": "4.1.0"
  2199. },
  2200. "compile": {
  2201. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2202. "related": ".xml"
  2203. }
  2204. },
  2205. "runtime": {
  2206. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2207. }
  2208. },
  2209. "System.Resources.ResourceManager/4.0.1": {
  2210. "type": "package",
  2211. "dependencies": {
  2212. "Microsoft.NETCore.Platforms": "1.0.1",
  2213. "Microsoft.NETCore.Targets": "1.0.1",
  2214. "System.Globalization": "4.0.11",
  2215. "System.Reflection": "4.1.0",
  2216. "System.Runtime": "4.1.0"
  2217. },
  2218. "compile": {
  2219. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2220. "related": ".xml"
  2221. }
  2222. }
  2223. },
  2224. "System.Runtime/4.3.0": {
  2225. "type": "package",
  2226. "dependencies": {
  2227. "Microsoft.NETCore.Platforms": "1.1.0",
  2228. "Microsoft.NETCore.Targets": "1.1.0"
  2229. },
  2230. "compile": {
  2231. "ref/netstandard1.5/System.Runtime.dll": {
  2232. "related": ".xml"
  2233. }
  2234. }
  2235. },
  2236. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2237. "type": "package",
  2238. "compile": {
  2239. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2240. "related": ".xml"
  2241. }
  2242. },
  2243. "runtime": {
  2244. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  2245. "related": ".xml"
  2246. }
  2247. },
  2248. "build": {
  2249. "buildTransitive/netcoreapp3.1/_._": {}
  2250. }
  2251. },
  2252. "System.Runtime.Extensions/4.1.0": {
  2253. "type": "package",
  2254. "dependencies": {
  2255. "Microsoft.NETCore.Platforms": "1.0.1",
  2256. "Microsoft.NETCore.Targets": "1.0.1",
  2257. "System.Runtime": "4.1.0"
  2258. },
  2259. "compile": {
  2260. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  2261. "related": ".xml"
  2262. }
  2263. }
  2264. },
  2265. "System.Runtime.Handles/4.0.1": {
  2266. "type": "package",
  2267. "dependencies": {
  2268. "Microsoft.NETCore.Platforms": "1.0.1",
  2269. "Microsoft.NETCore.Targets": "1.0.1",
  2270. "System.Runtime": "4.1.0"
  2271. },
  2272. "compile": {
  2273. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  2274. "related": ".xml"
  2275. }
  2276. }
  2277. },
  2278. "System.Runtime.InteropServices/4.1.0": {
  2279. "type": "package",
  2280. "dependencies": {
  2281. "Microsoft.NETCore.Platforms": "1.0.1",
  2282. "Microsoft.NETCore.Targets": "1.0.1",
  2283. "System.Reflection": "4.1.0",
  2284. "System.Reflection.Primitives": "4.0.1",
  2285. "System.Runtime": "4.1.0",
  2286. "System.Runtime.Handles": "4.0.1"
  2287. },
  2288. "compile": {
  2289. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {
  2290. "related": ".xml"
  2291. }
  2292. }
  2293. },
  2294. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "Microsoft.NETCore.Platforms": "1.0.1",
  2298. "System.Reflection": "4.1.0",
  2299. "System.Resources.ResourceManager": "4.0.1",
  2300. "System.Runtime": "4.1.0",
  2301. "System.Runtime.InteropServices": "4.1.0",
  2302. "System.Threading": "4.0.11",
  2303. "runtime.native.System": "4.0.0"
  2304. },
  2305. "compile": {
  2306. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2307. },
  2308. "runtimeTargets": {
  2309. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2310. "assetType": "runtime",
  2311. "rid": "unix"
  2312. },
  2313. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2314. "assetType": "runtime",
  2315. "rid": "win"
  2316. }
  2317. }
  2318. },
  2319. "System.Runtime.Numerics/4.0.1": {
  2320. "type": "package",
  2321. "dependencies": {
  2322. "System.Globalization": "4.0.11",
  2323. "System.Resources.ResourceManager": "4.0.1",
  2324. "System.Runtime": "4.1.0",
  2325. "System.Runtime.Extensions": "4.1.0"
  2326. },
  2327. "compile": {
  2328. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  2329. "related": ".xml"
  2330. }
  2331. },
  2332. "runtime": {
  2333. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2334. }
  2335. },
  2336. "System.Security.AccessControl/6.0.0": {
  2337. "type": "package",
  2338. "dependencies": {
  2339. "System.Security.Principal.Windows": "5.0.0"
  2340. },
  2341. "compile": {
  2342. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2343. "related": ".xml"
  2344. }
  2345. },
  2346. "runtime": {
  2347. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  2348. "related": ".xml"
  2349. }
  2350. },
  2351. "build": {
  2352. "buildTransitive/netcoreapp3.1/_._": {}
  2353. },
  2354. "runtimeTargets": {
  2355. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  2356. "assetType": "runtime",
  2357. "rid": "win"
  2358. }
  2359. }
  2360. },
  2361. "System.Security.Cryptography.Algorithms/4.2.0": {
  2362. "type": "package",
  2363. "dependencies": {
  2364. "Microsoft.NETCore.Platforms": "1.0.1",
  2365. "System.Collections": "4.0.11",
  2366. "System.IO": "4.1.0",
  2367. "System.Resources.ResourceManager": "4.0.1",
  2368. "System.Runtime": "4.1.0",
  2369. "System.Runtime.Extensions": "4.1.0",
  2370. "System.Runtime.Handles": "4.0.1",
  2371. "System.Runtime.InteropServices": "4.1.0",
  2372. "System.Runtime.Numerics": "4.0.1",
  2373. "System.Security.Cryptography.Encoding": "4.0.0",
  2374. "System.Security.Cryptography.Primitives": "4.0.0",
  2375. "System.Text.Encoding": "4.0.11",
  2376. "runtime.native.System.Security.Cryptography": "4.0.0"
  2377. },
  2378. "compile": {
  2379. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2380. },
  2381. "runtimeTargets": {
  2382. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2383. "assetType": "runtime",
  2384. "rid": "unix"
  2385. },
  2386. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2387. "assetType": "runtime",
  2388. "rid": "win"
  2389. }
  2390. }
  2391. },
  2392. "System.Security.Cryptography.Cng/4.5.0": {
  2393. "type": "package",
  2394. "compile": {
  2395. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2396. "related": ".xml"
  2397. }
  2398. },
  2399. "runtime": {
  2400. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2401. },
  2402. "runtimeTargets": {
  2403. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2404. "assetType": "runtime",
  2405. "rid": "win"
  2406. }
  2407. }
  2408. },
  2409. "System.Security.Cryptography.Csp/4.0.0": {
  2410. "type": "package",
  2411. "dependencies": {
  2412. "Microsoft.NETCore.Platforms": "1.0.1",
  2413. "System.IO": "4.1.0",
  2414. "System.Reflection": "4.1.0",
  2415. "System.Resources.ResourceManager": "4.0.1",
  2416. "System.Runtime": "4.1.0",
  2417. "System.Runtime.Extensions": "4.1.0",
  2418. "System.Runtime.Handles": "4.0.1",
  2419. "System.Runtime.InteropServices": "4.1.0",
  2420. "System.Security.Cryptography.Algorithms": "4.2.0",
  2421. "System.Security.Cryptography.Encoding": "4.0.0",
  2422. "System.Security.Cryptography.Primitives": "4.0.0",
  2423. "System.Text.Encoding": "4.0.11",
  2424. "System.Threading": "4.0.11"
  2425. },
  2426. "compile": {
  2427. "ref/netstandard1.3/_._": {}
  2428. },
  2429. "runtimeTargets": {
  2430. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2431. "assetType": "runtime",
  2432. "rid": "unix"
  2433. },
  2434. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2435. "assetType": "runtime",
  2436. "rid": "win"
  2437. }
  2438. }
  2439. },
  2440. "System.Security.Cryptography.Encoding/4.0.0": {
  2441. "type": "package",
  2442. "dependencies": {
  2443. "Microsoft.NETCore.Platforms": "1.0.1",
  2444. "System.Collections": "4.0.11",
  2445. "System.Collections.Concurrent": "4.0.12",
  2446. "System.Linq": "4.1.0",
  2447. "System.Resources.ResourceManager": "4.0.1",
  2448. "System.Runtime": "4.1.0",
  2449. "System.Runtime.Extensions": "4.1.0",
  2450. "System.Runtime.Handles": "4.0.1",
  2451. "System.Runtime.InteropServices": "4.1.0",
  2452. "System.Security.Cryptography.Primitives": "4.0.0",
  2453. "System.Text.Encoding": "4.0.11",
  2454. "runtime.native.System.Security.Cryptography": "4.0.0"
  2455. },
  2456. "compile": {
  2457. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2458. "related": ".xml"
  2459. }
  2460. },
  2461. "runtimeTargets": {
  2462. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2463. "assetType": "runtime",
  2464. "rid": "unix"
  2465. },
  2466. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2467. "assetType": "runtime",
  2468. "rid": "win"
  2469. }
  2470. }
  2471. },
  2472. "System.Security.Cryptography.OpenSsl/4.0.0": {
  2473. "type": "package",
  2474. "dependencies": {
  2475. "System.Collections": "4.0.11",
  2476. "System.IO": "4.1.0",
  2477. "System.Resources.ResourceManager": "4.0.1",
  2478. "System.Runtime": "4.1.0",
  2479. "System.Runtime.Extensions": "4.1.0",
  2480. "System.Runtime.Handles": "4.0.1",
  2481. "System.Runtime.InteropServices": "4.1.0",
  2482. "System.Runtime.Numerics": "4.0.1",
  2483. "System.Security.Cryptography.Algorithms": "4.2.0",
  2484. "System.Security.Cryptography.Encoding": "4.0.0",
  2485. "System.Security.Cryptography.Primitives": "4.0.0",
  2486. "System.Text.Encoding": "4.0.11",
  2487. "runtime.native.System.Security.Cryptography": "4.0.0"
  2488. },
  2489. "compile": {
  2490. "ref/netstandard1.6/_._": {}
  2491. },
  2492. "runtime": {
  2493. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2494. },
  2495. "runtimeTargets": {
  2496. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2497. "assetType": "runtime",
  2498. "rid": "unix"
  2499. }
  2500. }
  2501. },
  2502. "System.Security.Cryptography.Primitives/4.0.0": {
  2503. "type": "package",
  2504. "dependencies": {
  2505. "System.Diagnostics.Debug": "4.0.11",
  2506. "System.Globalization": "4.0.11",
  2507. "System.IO": "4.1.0",
  2508. "System.Resources.ResourceManager": "4.0.1",
  2509. "System.Runtime": "4.1.0",
  2510. "System.Threading": "4.0.11",
  2511. "System.Threading.Tasks": "4.0.11"
  2512. },
  2513. "compile": {
  2514. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2515. },
  2516. "runtime": {
  2517. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2518. }
  2519. },
  2520. "System.Security.Cryptography.ProtectedData/6.0.0": {
  2521. "type": "package",
  2522. "dependencies": {
  2523. "System.Memory": "4.5.4"
  2524. },
  2525. "compile": {
  2526. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2527. "related": ".xml"
  2528. }
  2529. },
  2530. "runtime": {
  2531. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2532. "related": ".xml"
  2533. }
  2534. },
  2535. "build": {
  2536. "buildTransitive/netcoreapp3.1/_._": {}
  2537. },
  2538. "runtimeTargets": {
  2539. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2540. "assetType": "runtime",
  2541. "rid": "win"
  2542. }
  2543. }
  2544. },
  2545. "System.Security.Cryptography.X509Certificates/4.1.0": {
  2546. "type": "package",
  2547. "dependencies": {
  2548. "Microsoft.NETCore.Platforms": "1.0.1",
  2549. "System.Collections": "4.0.11",
  2550. "System.Diagnostics.Debug": "4.0.11",
  2551. "System.Globalization": "4.0.11",
  2552. "System.Globalization.Calendars": "4.0.1",
  2553. "System.IO": "4.1.0",
  2554. "System.IO.FileSystem": "4.0.1",
  2555. "System.IO.FileSystem.Primitives": "4.0.1",
  2556. "System.Resources.ResourceManager": "4.0.1",
  2557. "System.Runtime": "4.1.0",
  2558. "System.Runtime.Extensions": "4.1.0",
  2559. "System.Runtime.Handles": "4.0.1",
  2560. "System.Runtime.InteropServices": "4.1.0",
  2561. "System.Runtime.Numerics": "4.0.1",
  2562. "System.Security.Cryptography.Algorithms": "4.2.0",
  2563. "System.Security.Cryptography.Cng": "4.2.0",
  2564. "System.Security.Cryptography.Csp": "4.0.0",
  2565. "System.Security.Cryptography.Encoding": "4.0.0",
  2566. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2567. "System.Security.Cryptography.Primitives": "4.0.0",
  2568. "System.Text.Encoding": "4.0.11",
  2569. "System.Threading": "4.0.11",
  2570. "runtime.native.System": "4.0.0",
  2571. "runtime.native.System.Net.Http": "4.0.1",
  2572. "runtime.native.System.Security.Cryptography": "4.0.0"
  2573. },
  2574. "compile": {
  2575. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  2576. "related": ".xml"
  2577. }
  2578. },
  2579. "runtimeTargets": {
  2580. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2581. "assetType": "runtime",
  2582. "rid": "unix"
  2583. },
  2584. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2585. "assetType": "runtime",
  2586. "rid": "win"
  2587. }
  2588. }
  2589. },
  2590. "System.Security.Permissions/6.0.0": {
  2591. "type": "package",
  2592. "dependencies": {
  2593. "System.Security.AccessControl": "6.0.0",
  2594. "System.Windows.Extensions": "6.0.0"
  2595. },
  2596. "compile": {
  2597. "lib/netcoreapp3.1/System.Security.Permissions.dll": {
  2598. "related": ".xml"
  2599. }
  2600. },
  2601. "runtime": {
  2602. "lib/netcoreapp3.1/System.Security.Permissions.dll": {
  2603. "related": ".xml"
  2604. }
  2605. },
  2606. "build": {
  2607. "buildTransitive/netcoreapp3.1/_._": {}
  2608. }
  2609. },
  2610. "System.Security.Principal.Windows/5.0.0": {
  2611. "type": "package",
  2612. "compile": {
  2613. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  2614. "related": ".xml"
  2615. }
  2616. },
  2617. "runtime": {
  2618. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  2619. "related": ".xml"
  2620. }
  2621. },
  2622. "runtimeTargets": {
  2623. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2624. "assetType": "runtime",
  2625. "rid": "unix"
  2626. },
  2627. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2628. "assetType": "runtime",
  2629. "rid": "win"
  2630. }
  2631. }
  2632. },
  2633. "System.ServiceProcess.ServiceController/8.0.0": {
  2634. "type": "package",
  2635. "dependencies": {
  2636. "System.Diagnostics.EventLog": "8.0.0"
  2637. },
  2638. "compile": {
  2639. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  2640. "related": ".xml"
  2641. }
  2642. },
  2643. "runtime": {
  2644. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  2645. "related": ".xml"
  2646. }
  2647. },
  2648. "build": {
  2649. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets": {}
  2650. }
  2651. },
  2652. "System.Text.Encoding/4.3.0": {
  2653. "type": "package",
  2654. "dependencies": {
  2655. "Microsoft.NETCore.Platforms": "1.1.0",
  2656. "Microsoft.NETCore.Targets": "1.1.0",
  2657. "System.Runtime": "4.3.0"
  2658. },
  2659. "compile": {
  2660. "ref/netstandard1.3/System.Text.Encoding.dll": {
  2661. "related": ".xml"
  2662. }
  2663. }
  2664. },
  2665. "System.Text.Encoding.CodePages/4.5.1": {
  2666. "type": "package",
  2667. "dependencies": {
  2668. "Microsoft.NETCore.Platforms": "2.1.2",
  2669. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2670. },
  2671. "compile": {
  2672. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2673. },
  2674. "runtime": {
  2675. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2676. },
  2677. "runtimeTargets": {
  2678. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2679. "assetType": "runtime",
  2680. "rid": "win"
  2681. }
  2682. }
  2683. },
  2684. "System.Text.Encoding.Extensions/4.0.11": {
  2685. "type": "package",
  2686. "dependencies": {
  2687. "Microsoft.NETCore.Platforms": "1.0.1",
  2688. "Microsoft.NETCore.Targets": "1.0.1",
  2689. "System.Runtime": "4.1.0",
  2690. "System.Text.Encoding": "4.0.11"
  2691. },
  2692. "compile": {
  2693. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  2694. "related": ".xml"
  2695. }
  2696. }
  2697. },
  2698. "System.Text.Encodings.Web/8.0.0": {
  2699. "type": "package",
  2700. "dependencies": {
  2701. "System.Buffers": "4.5.1",
  2702. "System.Memory": "4.5.5",
  2703. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2704. },
  2705. "compile": {
  2706. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2707. "related": ".xml"
  2708. }
  2709. },
  2710. "runtime": {
  2711. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  2712. "related": ".xml"
  2713. }
  2714. },
  2715. "build": {
  2716. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  2717. }
  2718. },
  2719. "System.Text.Json/8.0.0": {
  2720. "type": "package",
  2721. "dependencies": {
  2722. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  2723. "System.Buffers": "4.5.1",
  2724. "System.Memory": "4.5.5",
  2725. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  2726. "System.Text.Encodings.Web": "8.0.0",
  2727. "System.Threading.Tasks.Extensions": "4.5.4"
  2728. },
  2729. "compile": {
  2730. "lib/netstandard2.0/System.Text.Json.dll": {
  2731. "related": ".xml"
  2732. }
  2733. },
  2734. "runtime": {
  2735. "lib/netstandard2.0/System.Text.Json.dll": {
  2736. "related": ".xml"
  2737. }
  2738. },
  2739. "build": {
  2740. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  2741. }
  2742. },
  2743. "System.Text.RegularExpressions/4.1.0": {
  2744. "type": "package",
  2745. "dependencies": {
  2746. "System.Collections": "4.0.11",
  2747. "System.Globalization": "4.0.11",
  2748. "System.Resources.ResourceManager": "4.0.1",
  2749. "System.Runtime": "4.1.0",
  2750. "System.Runtime.Extensions": "4.1.0",
  2751. "System.Threading": "4.0.11"
  2752. },
  2753. "compile": {
  2754. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {
  2755. "related": ".xml"
  2756. }
  2757. },
  2758. "runtime": {
  2759. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2760. }
  2761. },
  2762. "System.Threading/4.0.11": {
  2763. "type": "package",
  2764. "dependencies": {
  2765. "System.Runtime": "4.1.0",
  2766. "System.Threading.Tasks": "4.0.11"
  2767. },
  2768. "compile": {
  2769. "ref/netstandard1.3/System.Threading.dll": {
  2770. "related": ".xml"
  2771. }
  2772. },
  2773. "runtime": {
  2774. "lib/netstandard1.3/System.Threading.dll": {}
  2775. }
  2776. },
  2777. "System.Threading.Tasks/4.3.0": {
  2778. "type": "package",
  2779. "dependencies": {
  2780. "Microsoft.NETCore.Platforms": "1.1.0",
  2781. "Microsoft.NETCore.Targets": "1.1.0",
  2782. "System.Runtime": "4.3.0"
  2783. },
  2784. "compile": {
  2785. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  2786. "related": ".xml"
  2787. }
  2788. }
  2789. },
  2790. "System.Threading.Tasks.Extensions/4.5.4": {
  2791. "type": "package",
  2792. "compile": {
  2793. "ref/netcoreapp2.1/_._": {}
  2794. },
  2795. "runtime": {
  2796. "lib/netcoreapp2.1/_._": {}
  2797. }
  2798. },
  2799. "System.Threading.Thread/4.0.0": {
  2800. "type": "package",
  2801. "dependencies": {
  2802. "System.Runtime": "4.1.0"
  2803. },
  2804. "compile": {
  2805. "ref/netstandard1.3/System.Threading.Thread.dll": {
  2806. "related": ".xml"
  2807. }
  2808. },
  2809. "runtime": {
  2810. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  2811. }
  2812. },
  2813. "System.Threading.ThreadPool/4.0.10": {
  2814. "type": "package",
  2815. "dependencies": {
  2816. "System.Runtime": "4.1.0",
  2817. "System.Runtime.Handles": "4.0.1"
  2818. },
  2819. "compile": {
  2820. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  2821. "related": ".xml"
  2822. }
  2823. },
  2824. "runtime": {
  2825. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  2826. }
  2827. },
  2828. "System.Threading.Timer/4.0.1": {
  2829. "type": "package",
  2830. "dependencies": {
  2831. "Microsoft.NETCore.Platforms": "1.0.1",
  2832. "Microsoft.NETCore.Targets": "1.0.1",
  2833. "System.Runtime": "4.1.0"
  2834. },
  2835. "compile": {
  2836. "ref/netstandard1.2/System.Threading.Timer.dll": {
  2837. "related": ".xml"
  2838. }
  2839. }
  2840. },
  2841. "System.Windows.Extensions/6.0.0": {
  2842. "type": "package",
  2843. "dependencies": {
  2844. "System.Drawing.Common": "6.0.0"
  2845. },
  2846. "compile": {
  2847. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2848. "related": ".xml"
  2849. }
  2850. },
  2851. "runtime": {
  2852. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2853. "related": ".xml"
  2854. }
  2855. },
  2856. "runtimeTargets": {
  2857. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  2858. "assetType": "runtime",
  2859. "rid": "win"
  2860. }
  2861. }
  2862. },
  2863. "System.Xml.ReaderWriter/4.0.11": {
  2864. "type": "package",
  2865. "dependencies": {
  2866. "System.Collections": "4.0.11",
  2867. "System.Diagnostics.Debug": "4.0.11",
  2868. "System.Globalization": "4.0.11",
  2869. "System.IO": "4.1.0",
  2870. "System.IO.FileSystem": "4.0.1",
  2871. "System.IO.FileSystem.Primitives": "4.0.1",
  2872. "System.Resources.ResourceManager": "4.0.1",
  2873. "System.Runtime": "4.1.0",
  2874. "System.Runtime.Extensions": "4.1.0",
  2875. "System.Runtime.InteropServices": "4.1.0",
  2876. "System.Text.Encoding": "4.0.11",
  2877. "System.Text.Encoding.Extensions": "4.0.11",
  2878. "System.Text.RegularExpressions": "4.1.0",
  2879. "System.Threading.Tasks": "4.0.11",
  2880. "System.Threading.Tasks.Extensions": "4.0.0"
  2881. },
  2882. "compile": {
  2883. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  2884. "related": ".xml"
  2885. }
  2886. },
  2887. "runtime": {
  2888. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2889. }
  2890. },
  2891. "System.Xml.XDocument/4.0.11": {
  2892. "type": "package",
  2893. "dependencies": {
  2894. "System.Collections": "4.0.11",
  2895. "System.Diagnostics.Debug": "4.0.11",
  2896. "System.Diagnostics.Tools": "4.0.1",
  2897. "System.Globalization": "4.0.11",
  2898. "System.IO": "4.1.0",
  2899. "System.Reflection": "4.1.0",
  2900. "System.Resources.ResourceManager": "4.0.1",
  2901. "System.Runtime": "4.1.0",
  2902. "System.Runtime.Extensions": "4.1.0",
  2903. "System.Text.Encoding": "4.0.11",
  2904. "System.Threading": "4.0.11",
  2905. "System.Xml.ReaderWriter": "4.0.11"
  2906. },
  2907. "compile": {
  2908. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  2909. "related": ".xml"
  2910. }
  2911. },
  2912. "runtime": {
  2913. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2914. }
  2915. },
  2916. "System.Xml.XmlDocument/4.0.1": {
  2917. "type": "package",
  2918. "dependencies": {
  2919. "System.Collections": "4.0.11",
  2920. "System.Diagnostics.Debug": "4.0.11",
  2921. "System.Globalization": "4.0.11",
  2922. "System.IO": "4.1.0",
  2923. "System.Resources.ResourceManager": "4.0.1",
  2924. "System.Runtime": "4.1.0",
  2925. "System.Runtime.Extensions": "4.1.0",
  2926. "System.Text.Encoding": "4.0.11",
  2927. "System.Threading": "4.0.11",
  2928. "System.Xml.ReaderWriter": "4.0.11"
  2929. },
  2930. "compile": {
  2931. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  2932. "related": ".xml"
  2933. }
  2934. },
  2935. "runtime": {
  2936. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2937. }
  2938. },
  2939. "System.Xml.XPath/4.0.1": {
  2940. "type": "package",
  2941. "dependencies": {
  2942. "System.Collections": "4.0.11",
  2943. "System.Diagnostics.Debug": "4.0.11",
  2944. "System.Globalization": "4.0.11",
  2945. "System.IO": "4.1.0",
  2946. "System.Resources.ResourceManager": "4.0.1",
  2947. "System.Runtime": "4.1.0",
  2948. "System.Runtime.Extensions": "4.1.0",
  2949. "System.Threading": "4.0.11",
  2950. "System.Xml.ReaderWriter": "4.0.11"
  2951. },
  2952. "compile": {
  2953. "ref/netstandard1.3/System.Xml.XPath.dll": {
  2954. "related": ".xml"
  2955. }
  2956. },
  2957. "runtime": {
  2958. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  2959. }
  2960. },
  2961. "System.Xml.XPath.XmlDocument/4.0.1": {
  2962. "type": "package",
  2963. "dependencies": {
  2964. "System.Collections": "4.0.11",
  2965. "System.Globalization": "4.0.11",
  2966. "System.IO": "4.1.0",
  2967. "System.Resources.ResourceManager": "4.0.1",
  2968. "System.Runtime": "4.1.0",
  2969. "System.Runtime.Extensions": "4.1.0",
  2970. "System.Threading": "4.0.11",
  2971. "System.Xml.ReaderWriter": "4.0.11",
  2972. "System.Xml.XPath": "4.0.1",
  2973. "System.Xml.XmlDocument": "4.0.1"
  2974. },
  2975. "compile": {
  2976. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  2977. "related": ".xml"
  2978. }
  2979. },
  2980. "runtime": {
  2981. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  2982. }
  2983. }
  2984. },
  2985. ".NETCoreApp,Version=v3.1/win-x64": {
  2986. "AutoMapper/12.0.1": {
  2987. "type": "package",
  2988. "dependencies": {
  2989. "Microsoft.CSharp": "4.7.0"
  2990. },
  2991. "compile": {
  2992. "lib/netstandard2.1/AutoMapper.dll": {
  2993. "related": ".xml"
  2994. }
  2995. },
  2996. "runtime": {
  2997. "lib/netstandard2.1/AutoMapper.dll": {
  2998. "related": ".xml"
  2999. }
  3000. }
  3001. },
  3002. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  3003. "type": "package",
  3004. "dependencies": {
  3005. "AutoMapper": "[12.0.1]",
  3006. "Microsoft.Extensions.Options": "6.0.0"
  3007. },
  3008. "compile": {
  3009. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  3010. },
  3011. "runtime": {
  3012. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {}
  3013. }
  3014. },
  3015. "BouncyCastle.NetCore/1.8.3": {
  3016. "type": "package",
  3017. "dependencies": {
  3018. "NETStandard.Library": "1.6.0",
  3019. "System.Reflection": "4.3.0",
  3020. "System.Reflection.TypeExtensions": "4.1.0"
  3021. },
  3022. "compile": {
  3023. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  3024. "related": ".xml"
  3025. }
  3026. },
  3027. "runtime": {
  3028. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  3029. "related": ".xml"
  3030. }
  3031. }
  3032. },
  3033. "Flurl/4.0.0": {
  3034. "type": "package",
  3035. "compile": {
  3036. "lib/netstandard2.0/Flurl.dll": {
  3037. "related": ".xml"
  3038. }
  3039. },
  3040. "runtime": {
  3041. "lib/netstandard2.0/Flurl.dll": {
  3042. "related": ".xml"
  3043. }
  3044. }
  3045. },
  3046. "Flurl.Http/4.0.2": {
  3047. "type": "package",
  3048. "dependencies": {
  3049. "Flurl": "4.0.0",
  3050. "System.Text.Encoding.CodePages": "4.5.1",
  3051. "System.Text.Json": "6.0.4"
  3052. },
  3053. "compile": {
  3054. "lib/netstandard2.0/Flurl.Http.dll": {
  3055. "related": ".xml"
  3056. }
  3057. },
  3058. "runtime": {
  3059. "lib/netstandard2.0/Flurl.Http.dll": {
  3060. "related": ".xml"
  3061. }
  3062. }
  3063. },
  3064. "Google.Protobuf/3.11.4": {
  3065. "type": "package",
  3066. "dependencies": {
  3067. "System.Memory": "4.5.2"
  3068. },
  3069. "compile": {
  3070. "lib/netstandard2.0/Google.Protobuf.dll": {
  3071. "related": ".pdb;.xml"
  3072. }
  3073. },
  3074. "runtime": {
  3075. "lib/netstandard2.0/Google.Protobuf.dll": {
  3076. "related": ".pdb;.xml"
  3077. }
  3078. }
  3079. },
  3080. "K4os.Compression.LZ4/1.1.11": {
  3081. "type": "package",
  3082. "dependencies": {
  3083. "System.Memory": "4.5.3"
  3084. },
  3085. "compile": {
  3086. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  3087. "related": ".xml"
  3088. }
  3089. },
  3090. "runtime": {
  3091. "lib/netstandard2.0/K4os.Compression.LZ4.dll": {
  3092. "related": ".xml"
  3093. }
  3094. }
  3095. },
  3096. "K4os.Compression.LZ4.Streams/1.1.11": {
  3097. "type": "package",
  3098. "dependencies": {
  3099. "K4os.Compression.LZ4": "1.1.11",
  3100. "K4os.Hash.xxHash": "1.0.6"
  3101. },
  3102. "compile": {
  3103. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  3104. "related": ".xml"
  3105. }
  3106. },
  3107. "runtime": {
  3108. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll": {
  3109. "related": ".xml"
  3110. }
  3111. }
  3112. },
  3113. "K4os.Hash.xxHash/1.0.6": {
  3114. "type": "package",
  3115. "dependencies": {
  3116. "System.Memory": "4.5.3"
  3117. },
  3118. "compile": {
  3119. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  3120. "related": ".xml"
  3121. }
  3122. },
  3123. "runtime": {
  3124. "lib/netstandard2.0/K4os.Hash.xxHash.dll": {
  3125. "related": ".xml"
  3126. }
  3127. }
  3128. },
  3129. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  3130. "type": "package",
  3131. "compile": {
  3132. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  3133. "related": ".xml"
  3134. }
  3135. },
  3136. "runtime": {
  3137. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  3138. "related": ".xml"
  3139. }
  3140. }
  3141. },
  3142. "Microsoft.Bcl.HashCode/1.1.0": {
  3143. "type": "package",
  3144. "compile": {
  3145. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  3146. },
  3147. "runtime": {
  3148. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {
  3149. "related": ".xml"
  3150. }
  3151. }
  3152. },
  3153. "Microsoft.CSharp/4.7.0": {
  3154. "type": "package",
  3155. "compile": {
  3156. "ref/netcoreapp2.0/_._": {}
  3157. },
  3158. "runtime": {
  3159. "lib/netcoreapp2.0/_._": {}
  3160. }
  3161. },
  3162. "Microsoft.EntityFrameworkCore/3.1.1": {
  3163. "type": "package",
  3164. "dependencies": {
  3165. "Microsoft.Bcl.AsyncInterfaces": "1.1.0",
  3166. "Microsoft.Bcl.HashCode": "1.1.0",
  3167. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.1",
  3168. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.1",
  3169. "Microsoft.Extensions.Caching.Memory": "3.1.1",
  3170. "Microsoft.Extensions.DependencyInjection": "3.1.1",
  3171. "Microsoft.Extensions.Logging": "3.1.1",
  3172. "System.Collections.Immutable": "1.7.0",
  3173. "System.ComponentModel.Annotations": "4.7.0",
  3174. "System.Diagnostics.DiagnosticSource": "4.7.0"
  3175. },
  3176. "compile": {
  3177. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  3178. "related": ".xml"
  3179. }
  3180. },
  3181. "runtime": {
  3182. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
  3183. "related": ".xml"
  3184. }
  3185. }
  3186. },
  3187. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  3188. "type": "package",
  3189. "compile": {
  3190. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  3191. "related": ".xml"
  3192. }
  3193. },
  3194. "runtime": {
  3195. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  3196. "related": ".xml"
  3197. }
  3198. }
  3199. },
  3200. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  3201. "type": "package",
  3202. "compile": {
  3203. "lib/netstandard2.0/_._": {}
  3204. },
  3205. "runtime": {
  3206. "lib/netstandard2.0/_._": {}
  3207. }
  3208. },
  3209. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  3210. "type": "package",
  3211. "dependencies": {
  3212. "Microsoft.EntityFrameworkCore": "3.1.1"
  3213. },
  3214. "compile": {
  3215. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  3216. "related": ".xml"
  3217. }
  3218. },
  3219. "runtime": {
  3220. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  3221. "related": ".xml"
  3222. }
  3223. }
  3224. },
  3225. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  3226. "type": "package",
  3227. "build": {
  3228. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  3229. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  3230. },
  3231. "buildMultiTargeting": {
  3232. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  3233. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  3234. }
  3235. },
  3236. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  3237. "type": "package",
  3238. "dependencies": {
  3239. "Microsoft.Extensions.Primitives": "3.1.1"
  3240. },
  3241. "compile": {
  3242. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  3243. "related": ".xml"
  3244. }
  3245. },
  3246. "runtime": {
  3247. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {
  3248. "related": ".xml"
  3249. }
  3250. }
  3251. },
  3252. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  3253. "type": "package",
  3254. "dependencies": {
  3255. "Microsoft.Extensions.Caching.Abstractions": "3.1.1",
  3256. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.1",
  3257. "Microsoft.Extensions.Logging.Abstractions": "3.1.1",
  3258. "Microsoft.Extensions.Options": "3.1.1"
  3259. },
  3260. "compile": {
  3261. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  3262. "related": ".xml"
  3263. }
  3264. },
  3265. "runtime": {
  3266. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {
  3267. "related": ".xml"
  3268. }
  3269. }
  3270. },
  3271. "Microsoft.Extensions.Configuration/8.0.0": {
  3272. "type": "package",
  3273. "dependencies": {
  3274. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3275. "Microsoft.Extensions.Primitives": "8.0.0"
  3276. },
  3277. "compile": {
  3278. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  3279. "related": ".xml"
  3280. }
  3281. },
  3282. "runtime": {
  3283. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  3284. "related": ".xml"
  3285. }
  3286. },
  3287. "build": {
  3288. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets": {}
  3289. }
  3290. },
  3291. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  3292. "type": "package",
  3293. "dependencies": {
  3294. "Microsoft.Extensions.Primitives": "8.0.0"
  3295. },
  3296. "compile": {
  3297. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  3298. "related": ".xml"
  3299. }
  3300. },
  3301. "runtime": {
  3302. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  3303. "related": ".xml"
  3304. }
  3305. },
  3306. "build": {
  3307. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets": {}
  3308. }
  3309. },
  3310. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  3311. "type": "package",
  3312. "dependencies": {
  3313. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  3314. },
  3315. "compile": {
  3316. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  3317. "related": ".xml"
  3318. }
  3319. },
  3320. "runtime": {
  3321. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  3322. "related": ".xml"
  3323. }
  3324. },
  3325. "build": {
  3326. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {}
  3327. }
  3328. },
  3329. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  3330. "type": "package",
  3331. "dependencies": {
  3332. "Microsoft.Extensions.Configuration": "8.0.0",
  3333. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  3334. },
  3335. "compile": {
  3336. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  3337. "related": ".xml"
  3338. }
  3339. },
  3340. "runtime": {
  3341. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll": {
  3342. "related": ".xml"
  3343. }
  3344. },
  3345. "build": {
  3346. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets": {}
  3347. }
  3348. },
  3349. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  3350. "type": "package",
  3351. "dependencies": {
  3352. "Microsoft.Extensions.Configuration": "8.0.0",
  3353. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
  3354. },
  3355. "compile": {
  3356. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  3357. "related": ".xml"
  3358. }
  3359. },
  3360. "runtime": {
  3361. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {
  3362. "related": ".xml"
  3363. }
  3364. },
  3365. "build": {
  3366. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets": {}
  3367. }
  3368. },
  3369. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  3370. "type": "package",
  3371. "dependencies": {
  3372. "Microsoft.Extensions.Configuration": "8.0.0",
  3373. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3374. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3375. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  3376. "Microsoft.Extensions.Primitives": "8.0.0"
  3377. },
  3378. "compile": {
  3379. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  3380. "related": ".xml"
  3381. }
  3382. },
  3383. "runtime": {
  3384. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  3385. "related": ".xml"
  3386. }
  3387. },
  3388. "build": {
  3389. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets": {}
  3390. }
  3391. },
  3392. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  3393. "type": "package",
  3394. "dependencies": {
  3395. "Microsoft.Extensions.Configuration": "8.0.0",
  3396. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3397. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  3398. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3399. "System.Text.Json": "8.0.0"
  3400. },
  3401. "compile": {
  3402. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  3403. "related": ".xml"
  3404. }
  3405. },
  3406. "runtime": {
  3407. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  3408. "related": ".xml"
  3409. }
  3410. },
  3411. "build": {
  3412. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets": {}
  3413. }
  3414. },
  3415. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  3416. "type": "package",
  3417. "dependencies": {
  3418. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3419. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  3420. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3421. "Microsoft.Extensions.FileProviders.Physical": "8.0.0"
  3422. },
  3423. "compile": {
  3424. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  3425. "related": ".xml"
  3426. }
  3427. },
  3428. "runtime": {
  3429. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll": {
  3430. "related": ".xml"
  3431. }
  3432. },
  3433. "build": {
  3434. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {}
  3435. }
  3436. },
  3437. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  3438. "type": "package",
  3439. "dependencies": {
  3440. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
  3441. },
  3442. "compile": {
  3443. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  3444. "related": ".xml"
  3445. }
  3446. },
  3447. "runtime": {
  3448. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {
  3449. "related": ".xml"
  3450. }
  3451. },
  3452. "build": {
  3453. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets": {}
  3454. }
  3455. },
  3456. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  3457. "type": "package",
  3458. "compile": {
  3459. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  3460. "related": ".xml"
  3461. }
  3462. },
  3463. "runtime": {
  3464. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  3465. "related": ".xml"
  3466. }
  3467. },
  3468. "build": {
  3469. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets": {}
  3470. }
  3471. },
  3472. "Microsoft.Extensions.DependencyModel/3.1.6": {
  3473. "type": "package",
  3474. "dependencies": {
  3475. "System.Text.Json": "4.7.2"
  3476. },
  3477. "compile": {
  3478. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  3479. "related": ".xml"
  3480. }
  3481. },
  3482. "runtime": {
  3483. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  3484. "related": ".xml"
  3485. }
  3486. }
  3487. },
  3488. "Microsoft.Extensions.Diagnostics/8.0.0": {
  3489. "type": "package",
  3490. "dependencies": {
  3491. "Microsoft.Extensions.Configuration": "8.0.0",
  3492. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  3493. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  3494. },
  3495. "compile": {
  3496. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  3497. "related": ".xml"
  3498. }
  3499. },
  3500. "runtime": {
  3501. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll": {
  3502. "related": ".xml"
  3503. }
  3504. },
  3505. "build": {
  3506. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets": {}
  3507. }
  3508. },
  3509. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  3510. "type": "package",
  3511. "dependencies": {
  3512. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3513. "Microsoft.Extensions.Options": "8.0.0",
  3514. "System.Buffers": "4.5.1",
  3515. "System.Diagnostics.DiagnosticSource": "8.0.0",
  3516. "System.Memory": "4.5.5"
  3517. },
  3518. "compile": {
  3519. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  3520. "related": ".xml"
  3521. }
  3522. },
  3523. "runtime": {
  3524. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": {
  3525. "related": ".xml"
  3526. }
  3527. },
  3528. "build": {
  3529. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets": {}
  3530. }
  3531. },
  3532. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  3533. "type": "package",
  3534. "dependencies": {
  3535. "Microsoft.Extensions.Primitives": "8.0.0"
  3536. },
  3537. "compile": {
  3538. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  3539. "related": ".xml"
  3540. }
  3541. },
  3542. "runtime": {
  3543. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  3544. "related": ".xml"
  3545. }
  3546. },
  3547. "build": {
  3548. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets": {}
  3549. }
  3550. },
  3551. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  3552. "type": "package",
  3553. "dependencies": {
  3554. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3555. "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
  3556. "Microsoft.Extensions.Primitives": "8.0.0"
  3557. },
  3558. "compile": {
  3559. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  3560. "related": ".xml"
  3561. }
  3562. },
  3563. "runtime": {
  3564. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  3565. "related": ".xml"
  3566. }
  3567. },
  3568. "build": {
  3569. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets": {}
  3570. }
  3571. },
  3572. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  3573. "type": "package",
  3574. "compile": {
  3575. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  3576. "related": ".xml"
  3577. }
  3578. },
  3579. "runtime": {
  3580. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  3581. "related": ".xml"
  3582. }
  3583. },
  3584. "build": {
  3585. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets": {}
  3586. }
  3587. },
  3588. "Microsoft.Extensions.Hosting/8.0.0": {
  3589. "type": "package",
  3590. "dependencies": {
  3591. "Microsoft.Extensions.Configuration": "8.0.0",
  3592. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3593. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  3594. "Microsoft.Extensions.Configuration.CommandLine": "8.0.0",
  3595. "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0",
  3596. "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
  3597. "Microsoft.Extensions.Configuration.Json": "8.0.0",
  3598. "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0",
  3599. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  3600. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3601. "Microsoft.Extensions.Diagnostics": "8.0.0",
  3602. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3603. "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
  3604. "Microsoft.Extensions.Hosting.Abstractions": "8.0.0",
  3605. "Microsoft.Extensions.Logging": "8.0.0",
  3606. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3607. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  3608. "Microsoft.Extensions.Logging.Console": "8.0.0",
  3609. "Microsoft.Extensions.Logging.Debug": "8.0.0",
  3610. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  3611. "Microsoft.Extensions.Logging.EventSource": "8.0.0",
  3612. "Microsoft.Extensions.Options": "8.0.0"
  3613. },
  3614. "compile": {
  3615. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  3616. "related": ".xml"
  3617. }
  3618. },
  3619. "runtime": {
  3620. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll": {
  3621. "related": ".xml"
  3622. }
  3623. },
  3624. "build": {
  3625. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets": {}
  3626. }
  3627. },
  3628. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  3629. "type": "package",
  3630. "dependencies": {
  3631. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3632. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3633. "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0",
  3634. "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
  3635. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  3636. },
  3637. "compile": {
  3638. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  3639. "related": ".xml"
  3640. }
  3641. },
  3642. "runtime": {
  3643. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  3644. "related": ".xml"
  3645. }
  3646. },
  3647. "build": {
  3648. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets": {}
  3649. }
  3650. },
  3651. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  3652. "type": "package",
  3653. "dependencies": {
  3654. "Microsoft.Extensions.Hosting": "8.0.0",
  3655. "Microsoft.Extensions.Logging.EventLog": "8.0.0",
  3656. "System.ServiceProcess.ServiceController": "8.0.0"
  3657. },
  3658. "compile": {
  3659. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  3660. "related": ".xml"
  3661. }
  3662. },
  3663. "runtime": {
  3664. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll": {
  3665. "related": ".xml"
  3666. }
  3667. },
  3668. "build": {
  3669. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets": {}
  3670. }
  3671. },
  3672. "Microsoft.Extensions.Logging/8.0.0": {
  3673. "type": "package",
  3674. "dependencies": {
  3675. "Microsoft.Extensions.DependencyInjection": "8.0.0",
  3676. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3677. "Microsoft.Extensions.Options": "8.0.0",
  3678. "System.Diagnostics.DiagnosticSource": "8.0.0"
  3679. },
  3680. "compile": {
  3681. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  3682. "related": ".xml"
  3683. }
  3684. },
  3685. "runtime": {
  3686. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  3687. "related": ".xml"
  3688. }
  3689. },
  3690. "build": {
  3691. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets": {}
  3692. }
  3693. },
  3694. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  3695. "type": "package",
  3696. "dependencies": {
  3697. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3698. "System.Buffers": "4.5.1",
  3699. "System.Memory": "4.5.5"
  3700. },
  3701. "compile": {
  3702. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  3703. "related": ".xml"
  3704. }
  3705. },
  3706. "runtime": {
  3707. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  3708. "related": ".xml"
  3709. }
  3710. },
  3711. "build": {
  3712. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
  3713. }
  3714. },
  3715. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  3716. "type": "package",
  3717. "dependencies": {
  3718. "Microsoft.Extensions.Configuration": "8.0.0",
  3719. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3720. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  3721. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3722. "Microsoft.Extensions.Logging": "8.0.0",
  3723. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3724. "Microsoft.Extensions.Options": "8.0.0",
  3725. "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0"
  3726. },
  3727. "compile": {
  3728. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  3729. "related": ".xml"
  3730. }
  3731. },
  3732. "runtime": {
  3733. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {
  3734. "related": ".xml"
  3735. }
  3736. },
  3737. "build": {
  3738. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets": {}
  3739. }
  3740. },
  3741. "Microsoft.Extensions.Logging.Console/8.0.0": {
  3742. "type": "package",
  3743. "dependencies": {
  3744. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  3745. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3746. "Microsoft.Extensions.Logging": "8.0.0",
  3747. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3748. "Microsoft.Extensions.Logging.Configuration": "8.0.0",
  3749. "Microsoft.Extensions.Options": "8.0.0",
  3750. "System.Buffers": "4.5.1",
  3751. "System.Text.Json": "8.0.0"
  3752. },
  3753. "compile": {
  3754. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  3755. "related": ".xml"
  3756. }
  3757. },
  3758. "runtime": {
  3759. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll": {
  3760. "related": ".xml"
  3761. }
  3762. },
  3763. "build": {
  3764. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets": {}
  3765. }
  3766. },
  3767. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  3768. "type": "package",
  3769. "dependencies": {
  3770. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3771. "Microsoft.Extensions.Logging": "8.0.0",
  3772. "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
  3773. },
  3774. "compile": {
  3775. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  3776. "related": ".xml"
  3777. }
  3778. },
  3779. "runtime": {
  3780. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {
  3781. "related": ".xml"
  3782. }
  3783. },
  3784. "build": {
  3785. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets": {}
  3786. }
  3787. },
  3788. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  3789. "type": "package",
  3790. "dependencies": {
  3791. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3792. "Microsoft.Extensions.Logging": "8.0.0",
  3793. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3794. "Microsoft.Extensions.Options": "8.0.0",
  3795. "System.Diagnostics.EventLog": "8.0.0"
  3796. },
  3797. "compile": {
  3798. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  3799. "related": ".xml"
  3800. }
  3801. },
  3802. "runtime": {
  3803. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll": {
  3804. "related": ".xml"
  3805. }
  3806. },
  3807. "build": {
  3808. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets": {}
  3809. }
  3810. },
  3811. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  3812. "type": "package",
  3813. "dependencies": {
  3814. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  3815. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3816. "Microsoft.Extensions.Logging": "8.0.0",
  3817. "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
  3818. "Microsoft.Extensions.Options": "8.0.0",
  3819. "Microsoft.Extensions.Primitives": "8.0.0",
  3820. "System.Memory": "4.5.5",
  3821. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  3822. "System.Text.Json": "8.0.0"
  3823. },
  3824. "compile": {
  3825. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  3826. "related": ".xml"
  3827. }
  3828. },
  3829. "runtime": {
  3830. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll": {
  3831. "related": ".xml"
  3832. }
  3833. },
  3834. "build": {
  3835. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets": {}
  3836. }
  3837. },
  3838. "Microsoft.Extensions.Options/8.0.0": {
  3839. "type": "package",
  3840. "dependencies": {
  3841. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3842. "Microsoft.Extensions.Primitives": "8.0.0",
  3843. "System.ComponentModel.Annotations": "5.0.0"
  3844. },
  3845. "compile": {
  3846. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  3847. "related": ".xml"
  3848. }
  3849. },
  3850. "runtime": {
  3851. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  3852. "related": ".xml"
  3853. }
  3854. },
  3855. "build": {
  3856. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets": {}
  3857. }
  3858. },
  3859. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  3860. "type": "package",
  3861. "dependencies": {
  3862. "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
  3863. "Microsoft.Extensions.Configuration.Binder": "8.0.0",
  3864. "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
  3865. "Microsoft.Extensions.Options": "8.0.0",
  3866. "Microsoft.Extensions.Primitives": "8.0.0"
  3867. },
  3868. "compile": {
  3869. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  3870. "related": ".xml"
  3871. }
  3872. },
  3873. "runtime": {
  3874. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  3875. "related": ".xml"
  3876. }
  3877. },
  3878. "build": {
  3879. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets": {}
  3880. }
  3881. },
  3882. "Microsoft.Extensions.Primitives/8.0.0": {
  3883. "type": "package",
  3884. "dependencies": {
  3885. "System.Memory": "4.5.5",
  3886. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  3887. },
  3888. "compile": {
  3889. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  3890. "related": ".xml"
  3891. }
  3892. },
  3893. "runtime": {
  3894. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
  3895. "related": ".xml"
  3896. }
  3897. },
  3898. "build": {
  3899. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets": {}
  3900. }
  3901. },
  3902. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  3903. "type": "package",
  3904. "compile": {
  3905. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  3906. "related": ".xml"
  3907. }
  3908. },
  3909. "runtime": {
  3910. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll": {
  3911. "related": ".xml"
  3912. }
  3913. }
  3914. },
  3915. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  3916. "type": "package",
  3917. "dependencies": {
  3918. "Microsoft.IdentityModel.Tokens": "7.4.1",
  3919. "System.Text.Encodings.Web": "4.7.2",
  3920. "System.Text.Json": "4.7.2"
  3921. },
  3922. "compile": {
  3923. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  3924. "related": ".xml"
  3925. }
  3926. },
  3927. "runtime": {
  3928. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  3929. "related": ".xml"
  3930. }
  3931. }
  3932. },
  3933. "Microsoft.IdentityModel.Logging/7.4.1": {
  3934. "type": "package",
  3935. "dependencies": {
  3936. "Microsoft.IdentityModel.Abstractions": "7.4.1"
  3937. },
  3938. "compile": {
  3939. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  3940. "related": ".xml"
  3941. }
  3942. },
  3943. "runtime": {
  3944. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  3945. "related": ".xml"
  3946. }
  3947. }
  3948. },
  3949. "Microsoft.IdentityModel.Tokens/7.4.1": {
  3950. "type": "package",
  3951. "dependencies": {
  3952. "Microsoft.CSharp": "4.5.0",
  3953. "Microsoft.IdentityModel.Logging": "7.4.1",
  3954. "System.Security.Cryptography.Cng": "4.5.0",
  3955. "System.Text.Encodings.Web": "4.7.2",
  3956. "System.Text.Json": "4.7.2"
  3957. },
  3958. "compile": {
  3959. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  3960. "related": ".xml"
  3961. }
  3962. },
  3963. "runtime": {
  3964. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  3965. "related": ".xml"
  3966. }
  3967. }
  3968. },
  3969. "Microsoft.NETCore.Platforms/2.1.2": {
  3970. "type": "package",
  3971. "compile": {
  3972. "lib/netstandard1.0/_._": {}
  3973. },
  3974. "runtime": {
  3975. "lib/netstandard1.0/_._": {}
  3976. }
  3977. },
  3978. "Microsoft.NETCore.Targets/3.0.0": {
  3979. "type": "package",
  3980. "compile": {
  3981. "lib/netstandard1.0/_._": {}
  3982. },
  3983. "runtime": {
  3984. "lib/netstandard1.0/_._": {}
  3985. }
  3986. },
  3987. "Microsoft.OpenApi/1.3.1": {
  3988. "type": "package",
  3989. "compile": {
  3990. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  3991. "related": ".pdb;.xml"
  3992. }
  3993. },
  3994. "runtime": {
  3995. "lib/netstandard2.0/Microsoft.OpenApi.dll": {
  3996. "related": ".pdb;.xml"
  3997. }
  3998. }
  3999. },
  4000. "Microsoft.Win32.Primitives/4.0.1": {
  4001. "type": "package",
  4002. "dependencies": {
  4003. "Microsoft.NETCore.Platforms": "1.0.1",
  4004. "Microsoft.NETCore.Targets": "1.0.1",
  4005. "System.Runtime": "4.1.0"
  4006. },
  4007. "compile": {
  4008. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  4009. "related": ".xml"
  4010. }
  4011. }
  4012. },
  4013. "Microsoft.Win32.SystemEvents/6.0.0": {
  4014. "type": "package",
  4015. "compile": {
  4016. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  4017. "related": ".xml"
  4018. }
  4019. },
  4020. "runtime": {
  4021. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll": {
  4022. "related": ".xml"
  4023. }
  4024. },
  4025. "build": {
  4026. "buildTransitive/netcoreapp3.1/_._": {}
  4027. }
  4028. },
  4029. "MySql.Data/8.0.22": {
  4030. "type": "package",
  4031. "dependencies": {
  4032. "BouncyCastle.NetCore": "1.8.3",
  4033. "Google.Protobuf": "3.11.4",
  4034. "K4os.Compression.LZ4": "1.1.11",
  4035. "K4os.Compression.LZ4.Streams": "1.1.11",
  4036. "K4os.Hash.xxHash": "1.0.6",
  4037. "SSH.NET": "2016.1.0",
  4038. "System.Buffers": "4.5.1",
  4039. "System.Configuration.ConfigurationManager": "4.4.1",
  4040. "System.Security.Permissions": "4.7.0",
  4041. "System.Text.Encoding.CodePages": "4.4.0"
  4042. },
  4043. "compile": {
  4044. "lib/netstandard2.1/MySql.Data.dll": {
  4045. "related": ".xml"
  4046. },
  4047. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  4048. "lib/netstandard2.1/Zstandard.Net.dll": {}
  4049. },
  4050. "runtime": {
  4051. "lib/netstandard2.1/MySql.Data.dll": {
  4052. "related": ".xml"
  4053. },
  4054. "lib/netstandard2.1/Ubiety.Dns.Core.dll": {},
  4055. "lib/netstandard2.1/Zstandard.Net.dll": {}
  4056. }
  4057. },
  4058. "MySql.Data.EntityFrameworkCore/8.0.22": {
  4059. "type": "package",
  4060. "dependencies": {
  4061. "Microsoft.EntityFrameworkCore.Relational": "3.1.1",
  4062. "MySql.Data": "8.0.22"
  4063. },
  4064. "compile": {
  4065. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  4066. "related": ".xml"
  4067. }
  4068. },
  4069. "runtime": {
  4070. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll": {
  4071. "related": ".xml"
  4072. }
  4073. }
  4074. },
  4075. "NETStandard.Library/1.6.0": {
  4076. "type": "package",
  4077. "dependencies": {
  4078. "Microsoft.NETCore.Platforms": "1.0.1",
  4079. "Microsoft.Win32.Primitives": "4.0.1",
  4080. "System.AppContext": "4.1.0",
  4081. "System.Collections": "4.0.11",
  4082. "System.Collections.Concurrent": "4.0.12",
  4083. "System.Console": "4.0.0",
  4084. "System.Diagnostics.Debug": "4.0.11",
  4085. "System.Diagnostics.Tools": "4.0.1",
  4086. "System.Diagnostics.Tracing": "4.1.0",
  4087. "System.Globalization": "4.0.11",
  4088. "System.Globalization.Calendars": "4.0.1",
  4089. "System.IO": "4.1.0",
  4090. "System.IO.Compression": "4.1.0",
  4091. "System.IO.Compression.ZipFile": "4.0.1",
  4092. "System.IO.FileSystem": "4.0.1",
  4093. "System.IO.FileSystem.Primitives": "4.0.1",
  4094. "System.Linq": "4.1.0",
  4095. "System.Linq.Expressions": "4.1.0",
  4096. "System.Net.Http": "4.1.0",
  4097. "System.Net.Primitives": "4.0.11",
  4098. "System.Net.Sockets": "4.1.0",
  4099. "System.ObjectModel": "4.0.12",
  4100. "System.Reflection": "4.1.0",
  4101. "System.Reflection.Extensions": "4.0.1",
  4102. "System.Reflection.Primitives": "4.0.1",
  4103. "System.Resources.ResourceManager": "4.0.1",
  4104. "System.Runtime": "4.1.0",
  4105. "System.Runtime.Extensions": "4.1.0",
  4106. "System.Runtime.Handles": "4.0.1",
  4107. "System.Runtime.InteropServices": "4.1.0",
  4108. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  4109. "System.Runtime.Numerics": "4.0.1",
  4110. "System.Security.Cryptography.Algorithms": "4.2.0",
  4111. "System.Security.Cryptography.Encoding": "4.0.0",
  4112. "System.Security.Cryptography.Primitives": "4.0.0",
  4113. "System.Security.Cryptography.X509Certificates": "4.1.0",
  4114. "System.Text.Encoding": "4.0.11",
  4115. "System.Text.Encoding.Extensions": "4.0.11",
  4116. "System.Text.RegularExpressions": "4.1.0",
  4117. "System.Threading": "4.0.11",
  4118. "System.Threading.Tasks": "4.0.11",
  4119. "System.Threading.Timer": "4.0.1",
  4120. "System.Xml.ReaderWriter": "4.0.11",
  4121. "System.Xml.XDocument": "4.0.11"
  4122. }
  4123. },
  4124. "Newtonsoft.Json/13.0.3": {
  4125. "type": "package",
  4126. "compile": {
  4127. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  4128. "related": ".xml"
  4129. }
  4130. },
  4131. "runtime": {
  4132. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  4133. "related": ".xml"
  4134. }
  4135. }
  4136. },
  4137. "NLog/5.2.8": {
  4138. "type": "package",
  4139. "compile": {
  4140. "lib/netstandard2.0/NLog.dll": {
  4141. "related": ".xml"
  4142. }
  4143. },
  4144. "runtime": {
  4145. "lib/netstandard2.0/NLog.dll": {
  4146. "related": ".xml"
  4147. }
  4148. }
  4149. },
  4150. "NLog.Extensions.Logging/5.3.8": {
  4151. "type": "package",
  4152. "dependencies": {
  4153. "Microsoft.Extensions.Configuration.Abstractions": "3.1.0",
  4154. "Microsoft.Extensions.Logging": "3.1.0",
  4155. "NLog": "5.2.8"
  4156. },
  4157. "compile": {
  4158. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  4159. "related": ".xml"
  4160. }
  4161. },
  4162. "runtime": {
  4163. "lib/netstandard2.1/NLog.Extensions.Logging.dll": {
  4164. "related": ".xml"
  4165. }
  4166. }
  4167. },
  4168. "NLog.Web.AspNetCore/5.3.8": {
  4169. "type": "package",
  4170. "dependencies": {
  4171. "NLog.Extensions.Logging": "5.3.8"
  4172. },
  4173. "compile": {
  4174. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {
  4175. "related": ".xml"
  4176. }
  4177. },
  4178. "runtime": {
  4179. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll": {
  4180. "related": ".xml"
  4181. }
  4182. },
  4183. "frameworkReferences": [
  4184. "Microsoft.AspNetCore.App"
  4185. ]
  4186. },
  4187. "Pipelines.Sockets.Unofficial/2.2.8": {
  4188. "type": "package",
  4189. "dependencies": {
  4190. "System.IO.Pipelines": "5.0.1"
  4191. },
  4192. "compile": {
  4193. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {
  4194. "related": ".xml"
  4195. }
  4196. },
  4197. "runtime": {
  4198. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll": {
  4199. "related": ".xml"
  4200. }
  4201. }
  4202. },
  4203. "Quartz/3.8.1": {
  4204. "type": "package",
  4205. "dependencies": {
  4206. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  4207. "System.Configuration.ConfigurationManager": "6.0.1",
  4208. "System.Diagnostics.DiagnosticSource": "4.7.1"
  4209. },
  4210. "compile": {
  4211. "lib/netstandard2.0/Quartz.dll": {
  4212. "related": ".xml"
  4213. }
  4214. },
  4215. "runtime": {
  4216. "lib/netstandard2.0/Quartz.dll": {
  4217. "related": ".xml"
  4218. }
  4219. }
  4220. },
  4221. "runtime.native.System/4.0.0": {
  4222. "type": "package",
  4223. "dependencies": {
  4224. "Microsoft.NETCore.Platforms": "1.0.1",
  4225. "Microsoft.NETCore.Targets": "1.0.1"
  4226. },
  4227. "compile": {
  4228. "lib/netstandard1.0/_._": {}
  4229. },
  4230. "runtime": {
  4231. "lib/netstandard1.0/_._": {}
  4232. }
  4233. },
  4234. "runtime.native.System.IO.Compression/4.1.0": {
  4235. "type": "package",
  4236. "dependencies": {
  4237. "Microsoft.NETCore.Platforms": "1.0.1",
  4238. "Microsoft.NETCore.Targets": "1.0.1"
  4239. },
  4240. "compile": {
  4241. "lib/netstandard1.0/_._": {}
  4242. },
  4243. "runtime": {
  4244. "lib/netstandard1.0/_._": {}
  4245. }
  4246. },
  4247. "runtime.native.System.Net.Http/4.0.1": {
  4248. "type": "package",
  4249. "dependencies": {
  4250. "Microsoft.NETCore.Platforms": "1.0.1",
  4251. "Microsoft.NETCore.Targets": "1.0.1"
  4252. },
  4253. "compile": {
  4254. "lib/netstandard1.0/_._": {}
  4255. },
  4256. "runtime": {
  4257. "lib/netstandard1.0/_._": {}
  4258. }
  4259. },
  4260. "runtime.native.System.Security.Cryptography/4.0.0": {
  4261. "type": "package",
  4262. "dependencies": {
  4263. "Microsoft.NETCore.Platforms": "1.0.1",
  4264. "Microsoft.NETCore.Targets": "1.0.1"
  4265. },
  4266. "compile": {
  4267. "lib/netstandard1.0/_._": {}
  4268. },
  4269. "runtime": {
  4270. "lib/netstandard1.0/_._": {}
  4271. }
  4272. },
  4273. "Scrutor/3.3.0": {
  4274. "type": "package",
  4275. "dependencies": {
  4276. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.9",
  4277. "Microsoft.Extensions.DependencyModel": "3.1.6"
  4278. },
  4279. "compile": {
  4280. "lib/netcoreapp3.1/Scrutor.dll": {
  4281. "related": ".pdb;.xml"
  4282. }
  4283. },
  4284. "runtime": {
  4285. "lib/netcoreapp3.1/Scrutor.dll": {
  4286. "related": ".pdb;.xml"
  4287. }
  4288. }
  4289. },
  4290. "SSH.NET/2016.1.0": {
  4291. "type": "package",
  4292. "dependencies": {
  4293. "Microsoft.CSharp": "4.0.1",
  4294. "SshNet.Security.Cryptography": "[1.2.0]",
  4295. "System.Diagnostics.Debug": "4.0.11",
  4296. "System.Diagnostics.Tools": "4.0.1",
  4297. "System.Diagnostics.TraceSource": "4.0.0",
  4298. "System.Globalization": "4.0.11",
  4299. "System.IO": "4.1.0",
  4300. "System.IO.FileSystem": "4.0.1",
  4301. "System.IO.FileSystem.Primitives": "4.0.1",
  4302. "System.Linq": "4.1.0",
  4303. "System.Net.NameResolution": "4.0.0",
  4304. "System.Net.Sockets": "4.1.0",
  4305. "System.Reflection.Extensions": "4.0.1",
  4306. "System.Runtime.Extensions": "4.1.0",
  4307. "System.Security.Cryptography.Algorithms": "4.2.0",
  4308. "System.Text.RegularExpressions": "4.1.0",
  4309. "System.Threading": "4.0.11",
  4310. "System.Threading.Thread": "4.0.0",
  4311. "System.Threading.ThreadPool": "4.0.10",
  4312. "System.Threading.Timer": "4.0.1",
  4313. "System.Xml.XPath.XmlDocument": "4.0.1",
  4314. "System.Xml.XmlDocument": "4.0.1"
  4315. },
  4316. "compile": {
  4317. "lib/netstandard1.3/Renci.SshNet.dll": {
  4318. "related": ".xml"
  4319. }
  4320. },
  4321. "runtime": {
  4322. "lib/netstandard1.3/Renci.SshNet.dll": {
  4323. "related": ".xml"
  4324. }
  4325. }
  4326. },
  4327. "SshNet.Security.Cryptography/1.2.0": {
  4328. "type": "package",
  4329. "dependencies": {
  4330. "System.IO": "4.1.0",
  4331. "System.Security.Cryptography.Primitives": "4.0.0"
  4332. },
  4333. "compile": {
  4334. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  4335. "related": ".xml"
  4336. }
  4337. },
  4338. "runtime": {
  4339. "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {
  4340. "related": ".xml"
  4341. }
  4342. }
  4343. },
  4344. "StackExchange.Redis/2.7.33": {
  4345. "type": "package",
  4346. "dependencies": {
  4347. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  4348. "Pipelines.Sockets.Unofficial": "2.2.8"
  4349. },
  4350. "compile": {
  4351. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  4352. "related": ".xml"
  4353. }
  4354. },
  4355. "runtime": {
  4356. "lib/netcoreapp3.1/StackExchange.Redis.dll": {
  4357. "related": ".xml"
  4358. }
  4359. }
  4360. },
  4361. "Swashbuckle.AspNetCore/6.5.0": {
  4362. "type": "package",
  4363. "dependencies": {
  4364. "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
  4365. "Swashbuckle.AspNetCore.Swagger": "6.5.0",
  4366. "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
  4367. "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
  4368. },
  4369. "build": {
  4370. "build/Swashbuckle.AspNetCore.props": {}
  4371. }
  4372. },
  4373. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  4374. "type": "package",
  4375. "dependencies": {
  4376. "Microsoft.Extensions.DependencyInjection": "2.1.0",
  4377. "Microsoft.OpenApi": "1.3.1",
  4378. "Scrutor": "3.3.0",
  4379. "Swashbuckle.AspNetCore.Filters.Abstractions": "8.0.1",
  4380. "Swashbuckle.AspNetCore.SwaggerGen": "5.0.0"
  4381. },
  4382. "compile": {
  4383. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  4384. },
  4385. "runtime": {
  4386. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll": {}
  4387. }
  4388. },
  4389. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  4390. "type": "package",
  4391. "compile": {
  4392. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  4393. },
  4394. "runtime": {
  4395. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll": {}
  4396. }
  4397. },
  4398. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  4399. "type": "package",
  4400. "dependencies": {
  4401. "Microsoft.OpenApi": "1.2.3"
  4402. },
  4403. "compile": {
  4404. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  4405. "related": ".pdb;.xml"
  4406. }
  4407. },
  4408. "runtime": {
  4409. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {
  4410. "related": ".pdb;.xml"
  4411. }
  4412. },
  4413. "frameworkReferences": [
  4414. "Microsoft.AspNetCore.App"
  4415. ]
  4416. },
  4417. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  4418. "type": "package",
  4419. "dependencies": {
  4420. "Swashbuckle.AspNetCore.Swagger": "6.5.0"
  4421. },
  4422. "compile": {
  4423. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  4424. "related": ".pdb;.xml"
  4425. }
  4426. },
  4427. "runtime": {
  4428. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
  4429. "related": ".pdb;.xml"
  4430. }
  4431. }
  4432. },
  4433. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  4434. "type": "package",
  4435. "compile": {
  4436. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  4437. "related": ".pdb;.xml"
  4438. }
  4439. },
  4440. "runtime": {
  4441. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
  4442. "related": ".pdb;.xml"
  4443. }
  4444. },
  4445. "frameworkReferences": [
  4446. "Microsoft.AspNetCore.App"
  4447. ]
  4448. },
  4449. "System.AppContext/4.1.0": {
  4450. "type": "package",
  4451. "dependencies": {
  4452. "System.Runtime": "4.1.0"
  4453. },
  4454. "compile": {
  4455. "ref/netstandard1.6/System.AppContext.dll": {
  4456. "related": ".xml"
  4457. }
  4458. },
  4459. "runtime": {
  4460. "lib/netstandard1.6/System.AppContext.dll": {}
  4461. }
  4462. },
  4463. "System.Buffers/4.5.1": {
  4464. "type": "package",
  4465. "compile": {
  4466. "ref/netcoreapp2.0/_._": {}
  4467. },
  4468. "runtime": {
  4469. "lib/netcoreapp2.0/_._": {}
  4470. }
  4471. },
  4472. "System.Collections/4.0.11": {
  4473. "type": "package",
  4474. "dependencies": {
  4475. "Microsoft.NETCore.Platforms": "1.0.1",
  4476. "Microsoft.NETCore.Targets": "1.0.1",
  4477. "System.Runtime": "4.1.0"
  4478. },
  4479. "compile": {
  4480. "ref/netstandard1.3/System.Collections.dll": {
  4481. "related": ".xml"
  4482. }
  4483. }
  4484. },
  4485. "System.Collections.Concurrent/4.0.12": {
  4486. "type": "package",
  4487. "dependencies": {
  4488. "System.Collections": "4.0.11",
  4489. "System.Diagnostics.Debug": "4.0.11",
  4490. "System.Diagnostics.Tracing": "4.1.0",
  4491. "System.Globalization": "4.0.11",
  4492. "System.Reflection": "4.1.0",
  4493. "System.Resources.ResourceManager": "4.0.1",
  4494. "System.Runtime": "4.1.0",
  4495. "System.Runtime.Extensions": "4.1.0",
  4496. "System.Threading": "4.0.11",
  4497. "System.Threading.Tasks": "4.0.11"
  4498. },
  4499. "compile": {
  4500. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  4501. "related": ".xml"
  4502. }
  4503. },
  4504. "runtime": {
  4505. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  4506. }
  4507. },
  4508. "System.Collections.Immutable/1.7.0": {
  4509. "type": "package",
  4510. "compile": {
  4511. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  4512. "related": ".xml"
  4513. }
  4514. },
  4515. "runtime": {
  4516. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  4517. "related": ".xml"
  4518. }
  4519. }
  4520. },
  4521. "System.ComponentModel.Annotations/5.0.0": {
  4522. "type": "package",
  4523. "compile": {
  4524. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  4525. "related": ".xml"
  4526. }
  4527. },
  4528. "runtime": {
  4529. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  4530. "related": ".xml"
  4531. }
  4532. }
  4533. },
  4534. "System.Configuration.ConfigurationManager/6.0.1": {
  4535. "type": "package",
  4536. "dependencies": {
  4537. "System.Security.Cryptography.ProtectedData": "6.0.0",
  4538. "System.Security.Permissions": "6.0.0"
  4539. },
  4540. "compile": {
  4541. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  4542. "related": ".xml"
  4543. }
  4544. },
  4545. "runtime": {
  4546. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  4547. "related": ".xml"
  4548. }
  4549. },
  4550. "build": {
  4551. "buildTransitive/netcoreapp3.1/_._": {}
  4552. }
  4553. },
  4554. "System.Console/4.0.0": {
  4555. "type": "package",
  4556. "dependencies": {
  4557. "Microsoft.NETCore.Platforms": "1.0.1",
  4558. "Microsoft.NETCore.Targets": "1.0.1",
  4559. "System.IO": "4.1.0",
  4560. "System.Runtime": "4.1.0",
  4561. "System.Text.Encoding": "4.0.11"
  4562. },
  4563. "compile": {
  4564. "ref/netstandard1.3/System.Console.dll": {
  4565. "related": ".xml"
  4566. }
  4567. }
  4568. },
  4569. "System.Diagnostics.Debug/4.0.11": {
  4570. "type": "package",
  4571. "dependencies": {
  4572. "Microsoft.NETCore.Platforms": "1.0.1",
  4573. "Microsoft.NETCore.Targets": "1.0.1",
  4574. "System.Runtime": "4.1.0"
  4575. },
  4576. "compile": {
  4577. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  4578. "related": ".xml"
  4579. }
  4580. }
  4581. },
  4582. "System.Diagnostics.DiagnosticSource/8.0.0": {
  4583. "type": "package",
  4584. "dependencies": {
  4585. "System.Memory": "4.5.5",
  4586. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  4587. },
  4588. "compile": {
  4589. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  4590. "related": ".xml"
  4591. }
  4592. },
  4593. "runtime": {
  4594. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll": {
  4595. "related": ".xml"
  4596. }
  4597. },
  4598. "build": {
  4599. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets": {}
  4600. }
  4601. },
  4602. "System.Diagnostics.EventLog/8.0.0": {
  4603. "type": "package",
  4604. "dependencies": {
  4605. "System.Security.Principal.Windows": "5.0.0"
  4606. },
  4607. "compile": {
  4608. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  4609. "related": ".xml"
  4610. }
  4611. },
  4612. "runtime": {
  4613. "lib/netstandard2.0/System.Diagnostics.EventLog.dll": {
  4614. "related": ".xml"
  4615. }
  4616. },
  4617. "build": {
  4618. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets": {}
  4619. }
  4620. },
  4621. "System.Diagnostics.Tools/4.0.1": {
  4622. "type": "package",
  4623. "dependencies": {
  4624. "Microsoft.NETCore.Platforms": "1.0.1",
  4625. "Microsoft.NETCore.Targets": "1.0.1",
  4626. "System.Runtime": "4.1.0"
  4627. },
  4628. "compile": {
  4629. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  4630. "related": ".xml"
  4631. }
  4632. }
  4633. },
  4634. "System.Diagnostics.TraceSource/4.0.0": {
  4635. "type": "package",
  4636. "dependencies": {
  4637. "Microsoft.NETCore.Platforms": "1.0.1",
  4638. "System.Collections": "4.0.11",
  4639. "System.Diagnostics.Debug": "4.0.11",
  4640. "System.Globalization": "4.0.11",
  4641. "System.Resources.ResourceManager": "4.0.1",
  4642. "System.Runtime": "4.1.0",
  4643. "System.Runtime.Extensions": "4.1.0",
  4644. "System.Threading": "4.0.11",
  4645. "runtime.native.System": "4.0.0"
  4646. },
  4647. "compile": {
  4648. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  4649. "related": ".xml"
  4650. }
  4651. },
  4652. "runtime": {
  4653. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  4654. }
  4655. },
  4656. "System.Diagnostics.Tracing/4.1.0": {
  4657. "type": "package",
  4658. "dependencies": {
  4659. "Microsoft.NETCore.Platforms": "1.0.1",
  4660. "Microsoft.NETCore.Targets": "1.0.1",
  4661. "System.Runtime": "4.1.0"
  4662. },
  4663. "compile": {
  4664. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  4665. "related": ".xml"
  4666. }
  4667. }
  4668. },
  4669. "System.Drawing.Common/6.0.0": {
  4670. "type": "package",
  4671. "dependencies": {
  4672. "Microsoft.Win32.SystemEvents": "6.0.0"
  4673. },
  4674. "compile": {
  4675. "lib/netcoreapp3.1/System.Drawing.Common.dll": {
  4676. "related": ".xml"
  4677. }
  4678. },
  4679. "runtime": {
  4680. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll": {
  4681. "related": ".xml"
  4682. }
  4683. },
  4684. "build": {
  4685. "buildTransitive/netcoreapp3.1/_._": {}
  4686. }
  4687. },
  4688. "System.Globalization/4.0.11": {
  4689. "type": "package",
  4690. "dependencies": {
  4691. "Microsoft.NETCore.Platforms": "1.0.1",
  4692. "Microsoft.NETCore.Targets": "1.0.1",
  4693. "System.Runtime": "4.1.0"
  4694. },
  4695. "compile": {
  4696. "ref/netstandard1.3/System.Globalization.dll": {
  4697. "related": ".xml"
  4698. }
  4699. }
  4700. },
  4701. "System.Globalization.Calendars/4.0.1": {
  4702. "type": "package",
  4703. "dependencies": {
  4704. "Microsoft.NETCore.Platforms": "1.0.1",
  4705. "Microsoft.NETCore.Targets": "1.0.1",
  4706. "System.Globalization": "4.0.11",
  4707. "System.Runtime": "4.1.0"
  4708. },
  4709. "compile": {
  4710. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  4711. "related": ".xml"
  4712. }
  4713. }
  4714. },
  4715. "System.Globalization.Extensions/4.0.1": {
  4716. "type": "package",
  4717. "dependencies": {
  4718. "Microsoft.NETCore.Platforms": "1.0.1",
  4719. "System.Globalization": "4.0.11",
  4720. "System.Resources.ResourceManager": "4.0.1",
  4721. "System.Runtime": "4.1.0",
  4722. "System.Runtime.Extensions": "4.1.0",
  4723. "System.Runtime.InteropServices": "4.1.0"
  4724. },
  4725. "compile": {
  4726. "ref/netstandard1.3/_._": {
  4727. "related": ".xml"
  4728. }
  4729. },
  4730. "runtime": {
  4731. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {}
  4732. }
  4733. },
  4734. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  4735. "type": "package",
  4736. "dependencies": {
  4737. "Microsoft.IdentityModel.JsonWebTokens": "7.4.1",
  4738. "Microsoft.IdentityModel.Tokens": "7.4.1"
  4739. },
  4740. "compile": {
  4741. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  4742. "related": ".xml"
  4743. }
  4744. },
  4745. "runtime": {
  4746. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  4747. "related": ".xml"
  4748. }
  4749. }
  4750. },
  4751. "System.IO/4.3.0": {
  4752. "type": "package",
  4753. "dependencies": {
  4754. "Microsoft.NETCore.Platforms": "1.1.0",
  4755. "Microsoft.NETCore.Targets": "1.1.0",
  4756. "System.Runtime": "4.3.0",
  4757. "System.Text.Encoding": "4.3.0",
  4758. "System.Threading.Tasks": "4.3.0"
  4759. },
  4760. "compile": {
  4761. "ref/netstandard1.5/System.IO.dll": {
  4762. "related": ".xml"
  4763. }
  4764. }
  4765. },
  4766. "System.IO.Compression/4.1.0": {
  4767. "type": "package",
  4768. "dependencies": {
  4769. "Microsoft.NETCore.Platforms": "1.0.1",
  4770. "System.Collections": "4.0.11",
  4771. "System.Diagnostics.Debug": "4.0.11",
  4772. "System.IO": "4.1.0",
  4773. "System.Resources.ResourceManager": "4.0.1",
  4774. "System.Runtime": "4.1.0",
  4775. "System.Runtime.Extensions": "4.1.0",
  4776. "System.Runtime.Handles": "4.0.1",
  4777. "System.Runtime.InteropServices": "4.1.0",
  4778. "System.Text.Encoding": "4.0.11",
  4779. "System.Threading": "4.0.11",
  4780. "System.Threading.Tasks": "4.0.11",
  4781. "runtime.native.System": "4.0.0",
  4782. "runtime.native.System.IO.Compression": "4.1.0"
  4783. },
  4784. "compile": {
  4785. "ref/netstandard1.3/System.IO.Compression.dll": {
  4786. "related": ".xml"
  4787. }
  4788. },
  4789. "runtime": {
  4790. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {}
  4791. }
  4792. },
  4793. "System.IO.Compression.ZipFile/4.0.1": {
  4794. "type": "package",
  4795. "dependencies": {
  4796. "System.Buffers": "4.0.0",
  4797. "System.IO": "4.1.0",
  4798. "System.IO.Compression": "4.1.0",
  4799. "System.IO.FileSystem": "4.0.1",
  4800. "System.IO.FileSystem.Primitives": "4.0.1",
  4801. "System.Resources.ResourceManager": "4.0.1",
  4802. "System.Runtime": "4.1.0",
  4803. "System.Runtime.Extensions": "4.1.0",
  4804. "System.Text.Encoding": "4.0.11"
  4805. },
  4806. "compile": {
  4807. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  4808. "related": ".xml"
  4809. }
  4810. },
  4811. "runtime": {
  4812. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  4813. }
  4814. },
  4815. "System.IO.FileSystem/4.0.1": {
  4816. "type": "package",
  4817. "dependencies": {
  4818. "Microsoft.NETCore.Platforms": "1.0.1",
  4819. "Microsoft.NETCore.Targets": "1.0.1",
  4820. "System.IO": "4.1.0",
  4821. "System.IO.FileSystem.Primitives": "4.0.1",
  4822. "System.Runtime": "4.1.0",
  4823. "System.Runtime.Handles": "4.0.1",
  4824. "System.Text.Encoding": "4.0.11",
  4825. "System.Threading.Tasks": "4.0.11"
  4826. },
  4827. "compile": {
  4828. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  4829. "related": ".xml"
  4830. }
  4831. }
  4832. },
  4833. "System.IO.FileSystem.Primitives/4.0.1": {
  4834. "type": "package",
  4835. "dependencies": {
  4836. "System.Runtime": "4.1.0"
  4837. },
  4838. "compile": {
  4839. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  4840. "related": ".xml"
  4841. }
  4842. },
  4843. "runtime": {
  4844. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  4845. }
  4846. },
  4847. "System.IO.Pipelines/5.0.1": {
  4848. "type": "package",
  4849. "compile": {
  4850. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  4851. "related": ".xml"
  4852. }
  4853. },
  4854. "runtime": {
  4855. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  4856. "related": ".xml"
  4857. }
  4858. }
  4859. },
  4860. "System.Linq/4.1.0": {
  4861. "type": "package",
  4862. "dependencies": {
  4863. "System.Collections": "4.0.11",
  4864. "System.Diagnostics.Debug": "4.0.11",
  4865. "System.Resources.ResourceManager": "4.0.1",
  4866. "System.Runtime": "4.1.0",
  4867. "System.Runtime.Extensions": "4.1.0"
  4868. },
  4869. "compile": {
  4870. "ref/netstandard1.6/System.Linq.dll": {
  4871. "related": ".xml"
  4872. }
  4873. },
  4874. "runtime": {
  4875. "lib/netstandard1.6/System.Linq.dll": {}
  4876. }
  4877. },
  4878. "System.Linq.Expressions/4.1.0": {
  4879. "type": "package",
  4880. "dependencies": {
  4881. "System.Collections": "4.0.11",
  4882. "System.Diagnostics.Debug": "4.0.11",
  4883. "System.Globalization": "4.0.11",
  4884. "System.IO": "4.1.0",
  4885. "System.Linq": "4.1.0",
  4886. "System.ObjectModel": "4.0.12",
  4887. "System.Reflection": "4.1.0",
  4888. "System.Reflection.Emit": "4.0.1",
  4889. "System.Reflection.Emit.ILGeneration": "4.0.1",
  4890. "System.Reflection.Emit.Lightweight": "4.0.1",
  4891. "System.Reflection.Extensions": "4.0.1",
  4892. "System.Reflection.Primitives": "4.0.1",
  4893. "System.Reflection.TypeExtensions": "4.1.0",
  4894. "System.Resources.ResourceManager": "4.0.1",
  4895. "System.Runtime": "4.1.0",
  4896. "System.Runtime.Extensions": "4.1.0",
  4897. "System.Threading": "4.0.11"
  4898. },
  4899. "compile": {
  4900. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  4901. "related": ".xml"
  4902. }
  4903. },
  4904. "runtime": {
  4905. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  4906. }
  4907. },
  4908. "System.Memory/4.5.5": {
  4909. "type": "package",
  4910. "compile": {
  4911. "ref/netcoreapp2.1/_._": {}
  4912. },
  4913. "runtime": {
  4914. "lib/netcoreapp2.1/_._": {}
  4915. }
  4916. },
  4917. "System.Net.Http/4.1.0": {
  4918. "type": "package",
  4919. "dependencies": {
  4920. "Microsoft.NETCore.Platforms": "1.0.1",
  4921. "System.Collections": "4.0.11",
  4922. "System.Diagnostics.Debug": "4.0.11",
  4923. "System.Diagnostics.DiagnosticSource": "4.0.0",
  4924. "System.Diagnostics.Tracing": "4.1.0",
  4925. "System.Globalization": "4.0.11",
  4926. "System.Globalization.Extensions": "4.0.1",
  4927. "System.IO": "4.1.0",
  4928. "System.IO.FileSystem": "4.0.1",
  4929. "System.Net.Primitives": "4.0.11",
  4930. "System.Resources.ResourceManager": "4.0.1",
  4931. "System.Runtime": "4.1.0",
  4932. "System.Runtime.Extensions": "4.1.0",
  4933. "System.Runtime.Handles": "4.0.1",
  4934. "System.Runtime.InteropServices": "4.1.0",
  4935. "System.Security.Cryptography.Algorithms": "4.2.0",
  4936. "System.Security.Cryptography.Encoding": "4.0.0",
  4937. "System.Security.Cryptography.OpenSsl": "4.0.0",
  4938. "System.Security.Cryptography.Primitives": "4.0.0",
  4939. "System.Security.Cryptography.X509Certificates": "4.1.0",
  4940. "System.Text.Encoding": "4.0.11",
  4941. "System.Threading": "4.0.11",
  4942. "System.Threading.Tasks": "4.0.11",
  4943. "runtime.native.System": "4.0.0",
  4944. "runtime.native.System.Net.Http": "4.0.1",
  4945. "runtime.native.System.Security.Cryptography": "4.0.0"
  4946. },
  4947. "compile": {
  4948. "ref/netstandard1.3/System.Net.Http.dll": {
  4949. "related": ".xml"
  4950. }
  4951. },
  4952. "runtime": {
  4953. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {}
  4954. }
  4955. },
  4956. "System.Net.NameResolution/4.0.0": {
  4957. "type": "package",
  4958. "dependencies": {
  4959. "Microsoft.NETCore.Platforms": "1.0.1",
  4960. "System.Collections": "4.0.11",
  4961. "System.Diagnostics.Tracing": "4.1.0",
  4962. "System.Globalization": "4.0.11",
  4963. "System.Net.Primitives": "4.0.11",
  4964. "System.Resources.ResourceManager": "4.0.1",
  4965. "System.Runtime": "4.1.0",
  4966. "System.Runtime.Extensions": "4.1.0",
  4967. "System.Runtime.Handles": "4.0.1",
  4968. "System.Runtime.InteropServices": "4.1.0",
  4969. "System.Security.Principal.Windows": "4.0.0",
  4970. "System.Threading": "4.0.11",
  4971. "System.Threading.Tasks": "4.0.11",
  4972. "runtime.native.System": "4.0.0"
  4973. },
  4974. "compile": {
  4975. "ref/netstandard1.3/System.Net.NameResolution.dll": {
  4976. "related": ".xml"
  4977. }
  4978. },
  4979. "runtime": {
  4980. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {}
  4981. }
  4982. },
  4983. "System.Net.Primitives/4.0.11": {
  4984. "type": "package",
  4985. "dependencies": {
  4986. "Microsoft.NETCore.Platforms": "1.0.1",
  4987. "Microsoft.NETCore.Targets": "1.0.1",
  4988. "System.Runtime": "4.1.0",
  4989. "System.Runtime.Handles": "4.0.1"
  4990. },
  4991. "compile": {
  4992. "ref/netstandard1.3/System.Net.Primitives.dll": {
  4993. "related": ".xml"
  4994. }
  4995. }
  4996. },
  4997. "System.Net.Sockets/4.1.0": {
  4998. "type": "package",
  4999. "dependencies": {
  5000. "Microsoft.NETCore.Platforms": "1.0.1",
  5001. "Microsoft.NETCore.Targets": "1.0.1",
  5002. "System.IO": "4.1.0",
  5003. "System.Net.Primitives": "4.0.11",
  5004. "System.Runtime": "4.1.0",
  5005. "System.Threading.Tasks": "4.0.11"
  5006. },
  5007. "compile": {
  5008. "ref/netstandard1.3/System.Net.Sockets.dll": {
  5009. "related": ".xml"
  5010. }
  5011. }
  5012. },
  5013. "System.ObjectModel/4.0.12": {
  5014. "type": "package",
  5015. "dependencies": {
  5016. "System.Collections": "4.0.11",
  5017. "System.Diagnostics.Debug": "4.0.11",
  5018. "System.Resources.ResourceManager": "4.0.1",
  5019. "System.Runtime": "4.1.0",
  5020. "System.Threading": "4.0.11"
  5021. },
  5022. "compile": {
  5023. "ref/netstandard1.3/System.ObjectModel.dll": {
  5024. "related": ".xml"
  5025. }
  5026. },
  5027. "runtime": {
  5028. "lib/netstandard1.3/System.ObjectModel.dll": {}
  5029. }
  5030. },
  5031. "System.Reflection/4.3.0": {
  5032. "type": "package",
  5033. "dependencies": {
  5034. "Microsoft.NETCore.Platforms": "1.1.0",
  5035. "Microsoft.NETCore.Targets": "1.1.0",
  5036. "System.IO": "4.3.0",
  5037. "System.Reflection.Primitives": "4.3.0",
  5038. "System.Runtime": "4.3.0"
  5039. },
  5040. "compile": {
  5041. "ref/netstandard1.5/System.Reflection.dll": {
  5042. "related": ".xml"
  5043. }
  5044. }
  5045. },
  5046. "System.Reflection.Emit/4.0.1": {
  5047. "type": "package",
  5048. "dependencies": {
  5049. "System.IO": "4.1.0",
  5050. "System.Reflection": "4.1.0",
  5051. "System.Reflection.Emit.ILGeneration": "4.0.1",
  5052. "System.Reflection.Primitives": "4.0.1",
  5053. "System.Runtime": "4.1.0"
  5054. },
  5055. "compile": {
  5056. "ref/netstandard1.1/_._": {
  5057. "related": ".xml"
  5058. }
  5059. },
  5060. "runtime": {
  5061. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  5062. }
  5063. },
  5064. "System.Reflection.Emit.ILGeneration/4.0.1": {
  5065. "type": "package",
  5066. "dependencies": {
  5067. "System.Reflection": "4.1.0",
  5068. "System.Reflection.Primitives": "4.0.1",
  5069. "System.Runtime": "4.1.0"
  5070. },
  5071. "compile": {
  5072. "ref/netstandard1.0/_._": {
  5073. "related": ".xml"
  5074. }
  5075. },
  5076. "runtime": {
  5077. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  5078. }
  5079. },
  5080. "System.Reflection.Emit.Lightweight/4.0.1": {
  5081. "type": "package",
  5082. "dependencies": {
  5083. "System.Reflection": "4.1.0",
  5084. "System.Reflection.Emit.ILGeneration": "4.0.1",
  5085. "System.Reflection.Primitives": "4.0.1",
  5086. "System.Runtime": "4.1.0"
  5087. },
  5088. "compile": {
  5089. "ref/netstandard1.0/_._": {
  5090. "related": ".xml"
  5091. }
  5092. },
  5093. "runtime": {
  5094. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  5095. }
  5096. },
  5097. "System.Reflection.Extensions/4.0.1": {
  5098. "type": "package",
  5099. "dependencies": {
  5100. "Microsoft.NETCore.Platforms": "1.0.1",
  5101. "Microsoft.NETCore.Targets": "1.0.1",
  5102. "System.Reflection": "4.1.0",
  5103. "System.Runtime": "4.1.0"
  5104. },
  5105. "compile": {
  5106. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  5107. "related": ".xml"
  5108. }
  5109. }
  5110. },
  5111. "System.Reflection.Primitives/4.3.0": {
  5112. "type": "package",
  5113. "dependencies": {
  5114. "Microsoft.NETCore.Platforms": "1.1.0",
  5115. "Microsoft.NETCore.Targets": "1.1.0",
  5116. "System.Runtime": "4.3.0"
  5117. },
  5118. "compile": {
  5119. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  5120. "related": ".xml"
  5121. }
  5122. }
  5123. },
  5124. "System.Reflection.TypeExtensions/4.1.0": {
  5125. "type": "package",
  5126. "dependencies": {
  5127. "System.Reflection": "4.1.0",
  5128. "System.Runtime": "4.1.0"
  5129. },
  5130. "compile": {
  5131. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  5132. "related": ".xml"
  5133. }
  5134. },
  5135. "runtime": {
  5136. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  5137. }
  5138. },
  5139. "System.Resources.ResourceManager/4.0.1": {
  5140. "type": "package",
  5141. "dependencies": {
  5142. "Microsoft.NETCore.Platforms": "1.0.1",
  5143. "Microsoft.NETCore.Targets": "1.0.1",
  5144. "System.Globalization": "4.0.11",
  5145. "System.Reflection": "4.1.0",
  5146. "System.Runtime": "4.1.0"
  5147. },
  5148. "compile": {
  5149. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  5150. "related": ".xml"
  5151. }
  5152. }
  5153. },
  5154. "System.Runtime/4.3.0": {
  5155. "type": "package",
  5156. "dependencies": {
  5157. "Microsoft.NETCore.Platforms": "1.1.0",
  5158. "Microsoft.NETCore.Targets": "1.1.0"
  5159. },
  5160. "compile": {
  5161. "ref/netstandard1.5/System.Runtime.dll": {
  5162. "related": ".xml"
  5163. }
  5164. }
  5165. },
  5166. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  5167. "type": "package",
  5168. "compile": {
  5169. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  5170. "related": ".xml"
  5171. }
  5172. },
  5173. "runtime": {
  5174. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {
  5175. "related": ".xml"
  5176. }
  5177. },
  5178. "build": {
  5179. "buildTransitive/netcoreapp3.1/_._": {}
  5180. }
  5181. },
  5182. "System.Runtime.Extensions/4.1.0": {
  5183. "type": "package",
  5184. "dependencies": {
  5185. "Microsoft.NETCore.Platforms": "1.0.1",
  5186. "Microsoft.NETCore.Targets": "1.0.1",
  5187. "System.Runtime": "4.1.0"
  5188. },
  5189. "compile": {
  5190. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  5191. "related": ".xml"
  5192. }
  5193. }
  5194. },
  5195. "System.Runtime.Handles/4.0.1": {
  5196. "type": "package",
  5197. "dependencies": {
  5198. "Microsoft.NETCore.Platforms": "1.0.1",
  5199. "Microsoft.NETCore.Targets": "1.0.1",
  5200. "System.Runtime": "4.1.0"
  5201. },
  5202. "compile": {
  5203. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  5204. "related": ".xml"
  5205. }
  5206. }
  5207. },
  5208. "System.Runtime.InteropServices/4.1.0": {
  5209. "type": "package",
  5210. "dependencies": {
  5211. "Microsoft.NETCore.Platforms": "1.0.1",
  5212. "Microsoft.NETCore.Targets": "1.0.1",
  5213. "System.Reflection": "4.1.0",
  5214. "System.Reflection.Primitives": "4.0.1",
  5215. "System.Runtime": "4.1.0",
  5216. "System.Runtime.Handles": "4.0.1"
  5217. },
  5218. "compile": {
  5219. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {
  5220. "related": ".xml"
  5221. }
  5222. }
  5223. },
  5224. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  5225. "type": "package",
  5226. "dependencies": {
  5227. "Microsoft.NETCore.Platforms": "1.0.1",
  5228. "System.Reflection": "4.1.0",
  5229. "System.Resources.ResourceManager": "4.0.1",
  5230. "System.Runtime": "4.1.0",
  5231. "System.Runtime.InteropServices": "4.1.0",
  5232. "System.Threading": "4.0.11",
  5233. "runtime.native.System": "4.0.0"
  5234. },
  5235. "compile": {
  5236. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  5237. },
  5238. "runtime": {
  5239. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  5240. }
  5241. },
  5242. "System.Runtime.Numerics/4.0.1": {
  5243. "type": "package",
  5244. "dependencies": {
  5245. "System.Globalization": "4.0.11",
  5246. "System.Resources.ResourceManager": "4.0.1",
  5247. "System.Runtime": "4.1.0",
  5248. "System.Runtime.Extensions": "4.1.0"
  5249. },
  5250. "compile": {
  5251. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  5252. "related": ".xml"
  5253. }
  5254. },
  5255. "runtime": {
  5256. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  5257. }
  5258. },
  5259. "System.Security.AccessControl/6.0.0": {
  5260. "type": "package",
  5261. "dependencies": {
  5262. "System.Security.Principal.Windows": "5.0.0"
  5263. },
  5264. "compile": {
  5265. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  5266. "related": ".xml"
  5267. }
  5268. },
  5269. "runtime": {
  5270. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll": {
  5271. "related": ".xml"
  5272. }
  5273. },
  5274. "build": {
  5275. "buildTransitive/netcoreapp3.1/_._": {}
  5276. }
  5277. },
  5278. "System.Security.Cryptography.Algorithms/4.2.0": {
  5279. "type": "package",
  5280. "dependencies": {
  5281. "Microsoft.NETCore.Platforms": "1.0.1",
  5282. "System.Collections": "4.0.11",
  5283. "System.IO": "4.1.0",
  5284. "System.Resources.ResourceManager": "4.0.1",
  5285. "System.Runtime": "4.1.0",
  5286. "System.Runtime.Extensions": "4.1.0",
  5287. "System.Runtime.Handles": "4.0.1",
  5288. "System.Runtime.InteropServices": "4.1.0",
  5289. "System.Runtime.Numerics": "4.0.1",
  5290. "System.Security.Cryptography.Encoding": "4.0.0",
  5291. "System.Security.Cryptography.Primitives": "4.0.0",
  5292. "System.Text.Encoding": "4.0.11",
  5293. "runtime.native.System.Security.Cryptography": "4.0.0"
  5294. },
  5295. "compile": {
  5296. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  5297. },
  5298. "runtime": {
  5299. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  5300. }
  5301. },
  5302. "System.Security.Cryptography.Cng/4.5.0": {
  5303. "type": "package",
  5304. "compile": {
  5305. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  5306. "related": ".xml"
  5307. }
  5308. },
  5309. "runtime": {
  5310. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  5311. }
  5312. },
  5313. "System.Security.Cryptography.Csp/4.0.0": {
  5314. "type": "package",
  5315. "dependencies": {
  5316. "Microsoft.NETCore.Platforms": "1.0.1",
  5317. "System.IO": "4.1.0",
  5318. "System.Reflection": "4.1.0",
  5319. "System.Resources.ResourceManager": "4.0.1",
  5320. "System.Runtime": "4.1.0",
  5321. "System.Runtime.Extensions": "4.1.0",
  5322. "System.Runtime.Handles": "4.0.1",
  5323. "System.Runtime.InteropServices": "4.1.0",
  5324. "System.Security.Cryptography.Algorithms": "4.2.0",
  5325. "System.Security.Cryptography.Encoding": "4.0.0",
  5326. "System.Security.Cryptography.Primitives": "4.0.0",
  5327. "System.Text.Encoding": "4.0.11",
  5328. "System.Threading": "4.0.11"
  5329. },
  5330. "compile": {
  5331. "ref/netstandard1.3/_._": {}
  5332. },
  5333. "runtime": {
  5334. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {}
  5335. }
  5336. },
  5337. "System.Security.Cryptography.Encoding/4.0.0": {
  5338. "type": "package",
  5339. "dependencies": {
  5340. "Microsoft.NETCore.Platforms": "1.0.1",
  5341. "System.Collections": "4.0.11",
  5342. "System.Collections.Concurrent": "4.0.12",
  5343. "System.Linq": "4.1.0",
  5344. "System.Resources.ResourceManager": "4.0.1",
  5345. "System.Runtime": "4.1.0",
  5346. "System.Runtime.Extensions": "4.1.0",
  5347. "System.Runtime.Handles": "4.0.1",
  5348. "System.Runtime.InteropServices": "4.1.0",
  5349. "System.Security.Cryptography.Primitives": "4.0.0",
  5350. "System.Text.Encoding": "4.0.11",
  5351. "runtime.native.System.Security.Cryptography": "4.0.0"
  5352. },
  5353. "compile": {
  5354. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  5355. "related": ".xml"
  5356. }
  5357. },
  5358. "runtime": {
  5359. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  5360. }
  5361. },
  5362. "System.Security.Cryptography.OpenSsl/4.0.0": {
  5363. "type": "package",
  5364. "dependencies": {
  5365. "System.Collections": "4.0.11",
  5366. "System.IO": "4.1.0",
  5367. "System.Resources.ResourceManager": "4.0.1",
  5368. "System.Runtime": "4.1.0",
  5369. "System.Runtime.Extensions": "4.1.0",
  5370. "System.Runtime.Handles": "4.0.1",
  5371. "System.Runtime.InteropServices": "4.1.0",
  5372. "System.Runtime.Numerics": "4.0.1",
  5373. "System.Security.Cryptography.Algorithms": "4.2.0",
  5374. "System.Security.Cryptography.Encoding": "4.0.0",
  5375. "System.Security.Cryptography.Primitives": "4.0.0",
  5376. "System.Text.Encoding": "4.0.11",
  5377. "runtime.native.System.Security.Cryptography": "4.0.0"
  5378. },
  5379. "compile": {
  5380. "ref/netstandard1.6/_._": {}
  5381. },
  5382. "runtime": {
  5383. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  5384. }
  5385. },
  5386. "System.Security.Cryptography.Primitives/4.0.0": {
  5387. "type": "package",
  5388. "dependencies": {
  5389. "System.Diagnostics.Debug": "4.0.11",
  5390. "System.Globalization": "4.0.11",
  5391. "System.IO": "4.1.0",
  5392. "System.Resources.ResourceManager": "4.0.1",
  5393. "System.Runtime": "4.1.0",
  5394. "System.Threading": "4.0.11",
  5395. "System.Threading.Tasks": "4.0.11"
  5396. },
  5397. "compile": {
  5398. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  5399. },
  5400. "runtime": {
  5401. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  5402. }
  5403. },
  5404. "System.Security.Cryptography.ProtectedData/6.0.0": {
  5405. "type": "package",
  5406. "dependencies": {
  5407. "System.Memory": "4.5.4"
  5408. },
  5409. "compile": {
  5410. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  5411. "related": ".xml"
  5412. }
  5413. },
  5414. "runtime": {
  5415. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  5416. "related": ".xml"
  5417. }
  5418. },
  5419. "build": {
  5420. "buildTransitive/netcoreapp3.1/_._": {}
  5421. }
  5422. },
  5423. "System.Security.Cryptography.X509Certificates/4.1.0": {
  5424. "type": "package",
  5425. "dependencies": {
  5426. "Microsoft.NETCore.Platforms": "1.0.1",
  5427. "System.Collections": "4.0.11",
  5428. "System.Diagnostics.Debug": "4.0.11",
  5429. "System.Globalization": "4.0.11",
  5430. "System.Globalization.Calendars": "4.0.1",
  5431. "System.IO": "4.1.0",
  5432. "System.IO.FileSystem": "4.0.1",
  5433. "System.IO.FileSystem.Primitives": "4.0.1",
  5434. "System.Resources.ResourceManager": "4.0.1",
  5435. "System.Runtime": "4.1.0",
  5436. "System.Runtime.Extensions": "4.1.0",
  5437. "System.Runtime.Handles": "4.0.1",
  5438. "System.Runtime.InteropServices": "4.1.0",
  5439. "System.Runtime.Numerics": "4.0.1",
  5440. "System.Security.Cryptography.Algorithms": "4.2.0",
  5441. "System.Security.Cryptography.Cng": "4.2.0",
  5442. "System.Security.Cryptography.Csp": "4.0.0",
  5443. "System.Security.Cryptography.Encoding": "4.0.0",
  5444. "System.Security.Cryptography.OpenSsl": "4.0.0",
  5445. "System.Security.Cryptography.Primitives": "4.0.0",
  5446. "System.Text.Encoding": "4.0.11",
  5447. "System.Threading": "4.0.11",
  5448. "runtime.native.System": "4.0.0",
  5449. "runtime.native.System.Net.Http": "4.0.1",
  5450. "runtime.native.System.Security.Cryptography": "4.0.0"
  5451. },
  5452. "compile": {
  5453. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  5454. "related": ".xml"
  5455. }
  5456. },
  5457. "runtime": {
  5458. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {}
  5459. }
  5460. },
  5461. "System.Security.Permissions/6.0.0": {
  5462. "type": "package",
  5463. "dependencies": {
  5464. "System.Security.AccessControl": "6.0.0",
  5465. "System.Windows.Extensions": "6.0.0"
  5466. },
  5467. "compile": {
  5468. "lib/netcoreapp3.1/System.Security.Permissions.dll": {
  5469. "related": ".xml"
  5470. }
  5471. },
  5472. "runtime": {
  5473. "lib/netcoreapp3.1/System.Security.Permissions.dll": {
  5474. "related": ".xml"
  5475. }
  5476. },
  5477. "build": {
  5478. "buildTransitive/netcoreapp3.1/_._": {}
  5479. }
  5480. },
  5481. "System.Security.Principal.Windows/5.0.0": {
  5482. "type": "package",
  5483. "compile": {
  5484. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  5485. "related": ".xml"
  5486. }
  5487. },
  5488. "runtime": {
  5489. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  5490. "related": ".xml"
  5491. }
  5492. }
  5493. },
  5494. "System.ServiceProcess.ServiceController/8.0.0": {
  5495. "type": "package",
  5496. "dependencies": {
  5497. "System.Diagnostics.EventLog": "8.0.0"
  5498. },
  5499. "compile": {
  5500. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  5501. "related": ".xml"
  5502. }
  5503. },
  5504. "runtime": {
  5505. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll": {
  5506. "related": ".xml"
  5507. }
  5508. },
  5509. "build": {
  5510. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets": {}
  5511. }
  5512. },
  5513. "System.Text.Encoding/4.3.0": {
  5514. "type": "package",
  5515. "dependencies": {
  5516. "Microsoft.NETCore.Platforms": "1.1.0",
  5517. "Microsoft.NETCore.Targets": "1.1.0",
  5518. "System.Runtime": "4.3.0"
  5519. },
  5520. "compile": {
  5521. "ref/netstandard1.3/System.Text.Encoding.dll": {
  5522. "related": ".xml"
  5523. }
  5524. }
  5525. },
  5526. "System.Text.Encoding.CodePages/4.5.1": {
  5527. "type": "package",
  5528. "dependencies": {
  5529. "Microsoft.NETCore.Platforms": "2.1.2",
  5530. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  5531. },
  5532. "compile": {
  5533. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  5534. },
  5535. "runtime": {
  5536. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {}
  5537. }
  5538. },
  5539. "System.Text.Encoding.Extensions/4.0.11": {
  5540. "type": "package",
  5541. "dependencies": {
  5542. "Microsoft.NETCore.Platforms": "1.0.1",
  5543. "Microsoft.NETCore.Targets": "1.0.1",
  5544. "System.Runtime": "4.1.0",
  5545. "System.Text.Encoding": "4.0.11"
  5546. },
  5547. "compile": {
  5548. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  5549. "related": ".xml"
  5550. }
  5551. }
  5552. },
  5553. "System.Text.Encodings.Web/8.0.0": {
  5554. "type": "package",
  5555. "dependencies": {
  5556. "System.Buffers": "4.5.1",
  5557. "System.Memory": "4.5.5",
  5558. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  5559. },
  5560. "compile": {
  5561. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  5562. "related": ".xml"
  5563. }
  5564. },
  5565. "runtime": {
  5566. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  5567. "related": ".xml"
  5568. }
  5569. },
  5570. "build": {
  5571. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets": {}
  5572. }
  5573. },
  5574. "System.Text.Json/8.0.0": {
  5575. "type": "package",
  5576. "dependencies": {
  5577. "Microsoft.Bcl.AsyncInterfaces": "8.0.0",
  5578. "System.Buffers": "4.5.1",
  5579. "System.Memory": "4.5.5",
  5580. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  5581. "System.Text.Encodings.Web": "8.0.0",
  5582. "System.Threading.Tasks.Extensions": "4.5.4"
  5583. },
  5584. "compile": {
  5585. "lib/netstandard2.0/System.Text.Json.dll": {
  5586. "related": ".xml"
  5587. }
  5588. },
  5589. "runtime": {
  5590. "lib/netstandard2.0/System.Text.Json.dll": {
  5591. "related": ".xml"
  5592. }
  5593. },
  5594. "build": {
  5595. "buildTransitive/netcoreapp2.0/System.Text.Json.targets": {}
  5596. }
  5597. },
  5598. "System.Text.RegularExpressions/4.1.0": {
  5599. "type": "package",
  5600. "dependencies": {
  5601. "System.Collections": "4.0.11",
  5602. "System.Globalization": "4.0.11",
  5603. "System.Resources.ResourceManager": "4.0.1",
  5604. "System.Runtime": "4.1.0",
  5605. "System.Runtime.Extensions": "4.1.0",
  5606. "System.Threading": "4.0.11"
  5607. },
  5608. "compile": {
  5609. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {
  5610. "related": ".xml"
  5611. }
  5612. },
  5613. "runtime": {
  5614. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  5615. }
  5616. },
  5617. "System.Threading/4.0.11": {
  5618. "type": "package",
  5619. "dependencies": {
  5620. "System.Runtime": "4.1.0",
  5621. "System.Threading.Tasks": "4.0.11"
  5622. },
  5623. "compile": {
  5624. "ref/netstandard1.3/System.Threading.dll": {
  5625. "related": ".xml"
  5626. }
  5627. },
  5628. "runtime": {
  5629. "lib/netstandard1.3/System.Threading.dll": {}
  5630. }
  5631. },
  5632. "System.Threading.Tasks/4.3.0": {
  5633. "type": "package",
  5634. "dependencies": {
  5635. "Microsoft.NETCore.Platforms": "1.1.0",
  5636. "Microsoft.NETCore.Targets": "1.1.0",
  5637. "System.Runtime": "4.3.0"
  5638. },
  5639. "compile": {
  5640. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  5641. "related": ".xml"
  5642. }
  5643. }
  5644. },
  5645. "System.Threading.Tasks.Extensions/4.5.4": {
  5646. "type": "package",
  5647. "compile": {
  5648. "ref/netcoreapp2.1/_._": {}
  5649. },
  5650. "runtime": {
  5651. "lib/netcoreapp2.1/_._": {}
  5652. }
  5653. },
  5654. "System.Threading.Thread/4.0.0": {
  5655. "type": "package",
  5656. "dependencies": {
  5657. "System.Runtime": "4.1.0"
  5658. },
  5659. "compile": {
  5660. "ref/netstandard1.3/System.Threading.Thread.dll": {
  5661. "related": ".xml"
  5662. }
  5663. },
  5664. "runtime": {
  5665. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  5666. }
  5667. },
  5668. "System.Threading.ThreadPool/4.0.10": {
  5669. "type": "package",
  5670. "dependencies": {
  5671. "System.Runtime": "4.1.0",
  5672. "System.Runtime.Handles": "4.0.1"
  5673. },
  5674. "compile": {
  5675. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {
  5676. "related": ".xml"
  5677. }
  5678. },
  5679. "runtime": {
  5680. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  5681. }
  5682. },
  5683. "System.Threading.Timer/4.0.1": {
  5684. "type": "package",
  5685. "dependencies": {
  5686. "Microsoft.NETCore.Platforms": "1.0.1",
  5687. "Microsoft.NETCore.Targets": "1.0.1",
  5688. "System.Runtime": "4.1.0"
  5689. },
  5690. "compile": {
  5691. "ref/netstandard1.2/System.Threading.Timer.dll": {
  5692. "related": ".xml"
  5693. }
  5694. }
  5695. },
  5696. "System.Windows.Extensions/6.0.0": {
  5697. "type": "package",
  5698. "dependencies": {
  5699. "System.Drawing.Common": "6.0.0"
  5700. },
  5701. "compile": {
  5702. "lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  5703. "related": ".xml"
  5704. }
  5705. },
  5706. "runtime": {
  5707. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll": {
  5708. "related": ".xml"
  5709. }
  5710. }
  5711. },
  5712. "System.Xml.ReaderWriter/4.0.11": {
  5713. "type": "package",
  5714. "dependencies": {
  5715. "System.Collections": "4.0.11",
  5716. "System.Diagnostics.Debug": "4.0.11",
  5717. "System.Globalization": "4.0.11",
  5718. "System.IO": "4.1.0",
  5719. "System.IO.FileSystem": "4.0.1",
  5720. "System.IO.FileSystem.Primitives": "4.0.1",
  5721. "System.Resources.ResourceManager": "4.0.1",
  5722. "System.Runtime": "4.1.0",
  5723. "System.Runtime.Extensions": "4.1.0",
  5724. "System.Runtime.InteropServices": "4.1.0",
  5725. "System.Text.Encoding": "4.0.11",
  5726. "System.Text.Encoding.Extensions": "4.0.11",
  5727. "System.Text.RegularExpressions": "4.1.0",
  5728. "System.Threading.Tasks": "4.0.11",
  5729. "System.Threading.Tasks.Extensions": "4.0.0"
  5730. },
  5731. "compile": {
  5732. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  5733. "related": ".xml"
  5734. }
  5735. },
  5736. "runtime": {
  5737. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  5738. }
  5739. },
  5740. "System.Xml.XDocument/4.0.11": {
  5741. "type": "package",
  5742. "dependencies": {
  5743. "System.Collections": "4.0.11",
  5744. "System.Diagnostics.Debug": "4.0.11",
  5745. "System.Diagnostics.Tools": "4.0.1",
  5746. "System.Globalization": "4.0.11",
  5747. "System.IO": "4.1.0",
  5748. "System.Reflection": "4.1.0",
  5749. "System.Resources.ResourceManager": "4.0.1",
  5750. "System.Runtime": "4.1.0",
  5751. "System.Runtime.Extensions": "4.1.0",
  5752. "System.Text.Encoding": "4.0.11",
  5753. "System.Threading": "4.0.11",
  5754. "System.Xml.ReaderWriter": "4.0.11"
  5755. },
  5756. "compile": {
  5757. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  5758. "related": ".xml"
  5759. }
  5760. },
  5761. "runtime": {
  5762. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  5763. }
  5764. },
  5765. "System.Xml.XmlDocument/4.0.1": {
  5766. "type": "package",
  5767. "dependencies": {
  5768. "System.Collections": "4.0.11",
  5769. "System.Diagnostics.Debug": "4.0.11",
  5770. "System.Globalization": "4.0.11",
  5771. "System.IO": "4.1.0",
  5772. "System.Resources.ResourceManager": "4.0.1",
  5773. "System.Runtime": "4.1.0",
  5774. "System.Runtime.Extensions": "4.1.0",
  5775. "System.Text.Encoding": "4.0.11",
  5776. "System.Threading": "4.0.11",
  5777. "System.Xml.ReaderWriter": "4.0.11"
  5778. },
  5779. "compile": {
  5780. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {
  5781. "related": ".xml"
  5782. }
  5783. },
  5784. "runtime": {
  5785. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  5786. }
  5787. },
  5788. "System.Xml.XPath/4.0.1": {
  5789. "type": "package",
  5790. "dependencies": {
  5791. "System.Collections": "4.0.11",
  5792. "System.Diagnostics.Debug": "4.0.11",
  5793. "System.Globalization": "4.0.11",
  5794. "System.IO": "4.1.0",
  5795. "System.Resources.ResourceManager": "4.0.1",
  5796. "System.Runtime": "4.1.0",
  5797. "System.Runtime.Extensions": "4.1.0",
  5798. "System.Threading": "4.0.11",
  5799. "System.Xml.ReaderWriter": "4.0.11"
  5800. },
  5801. "compile": {
  5802. "ref/netstandard1.3/System.Xml.XPath.dll": {
  5803. "related": ".xml"
  5804. }
  5805. },
  5806. "runtime": {
  5807. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  5808. }
  5809. },
  5810. "System.Xml.XPath.XmlDocument/4.0.1": {
  5811. "type": "package",
  5812. "dependencies": {
  5813. "System.Collections": "4.0.11",
  5814. "System.Globalization": "4.0.11",
  5815. "System.IO": "4.1.0",
  5816. "System.Resources.ResourceManager": "4.0.1",
  5817. "System.Runtime": "4.1.0",
  5818. "System.Runtime.Extensions": "4.1.0",
  5819. "System.Threading": "4.0.11",
  5820. "System.Xml.ReaderWriter": "4.0.11",
  5821. "System.Xml.XPath": "4.0.1",
  5822. "System.Xml.XmlDocument": "4.0.1"
  5823. },
  5824. "compile": {
  5825. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {
  5826. "related": ".xml"
  5827. }
  5828. },
  5829. "runtime": {
  5830. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": {}
  5831. }
  5832. }
  5833. }
  5834. },
  5835. "libraries": {
  5836. "AutoMapper/12.0.1": {
  5837. "sha512": "hvV62vl6Hp/WfQ24yzo3Co9+OPl8wH8hApwVtgWpiAynVJkUcs7xvehnSftawL8Pe8FrPffBRM3hwzLQqWDNjA==",
  5838. "type": "package",
  5839. "path": "automapper/12.0.1",
  5840. "files": [
  5841. ".nupkg.metadata",
  5842. ".signature.p7s",
  5843. "README.md",
  5844. "automapper.12.0.1.nupkg.sha512",
  5845. "automapper.nuspec",
  5846. "icon.png",
  5847. "lib/netstandard2.1/AutoMapper.dll",
  5848. "lib/netstandard2.1/AutoMapper.xml"
  5849. ]
  5850. },
  5851. "AutoMapper.Extensions.Microsoft.DependencyInjection/12.0.1": {
  5852. "sha512": "+g/K+Vpe3gGMKGzjslMOdqNlkikScDjWfVvmWTayrDHaG/n2pPmFBMa+jKX1r/h6BDGFdkyRjAuhFE3ykW+r1g==",
  5853. "type": "package",
  5854. "path": "automapper.extensions.microsoft.dependencyinjection/12.0.1",
  5855. "files": [
  5856. ".nupkg.metadata",
  5857. ".signature.p7s",
  5858. "README.md",
  5859. "automapper.extensions.microsoft.dependencyinjection.12.0.1.nupkg.sha512",
  5860. "automapper.extensions.microsoft.dependencyinjection.nuspec",
  5861. "icon.png",
  5862. "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll"
  5863. ]
  5864. },
  5865. "BouncyCastle.NetCore/1.8.3": {
  5866. "sha512": "jAy3uHN1U9DpoT/TgLqDTEhlccn/4doOVxhSmmNsnoSsGfHT9Lwr634ac9D0YFujAhNw61nWF4UIpHyzv0aQww==",
  5867. "type": "package",
  5868. "path": "bouncycastle.netcore/1.8.3",
  5869. "files": [
  5870. ".nupkg.metadata",
  5871. ".signature.p7s",
  5872. "bouncycastle.netcore.1.8.3.nupkg.sha512",
  5873. "bouncycastle.netcore.nuspec",
  5874. "lib/Mono/BouncyCastle.Crypto.dll",
  5875. "lib/Mono/BouncyCastle.Crypto.xml",
  5876. "lib/MonoAndroid/BouncyCastle.Crypto.dll",
  5877. "lib/MonoAndroid/BouncyCastle.Crypto.xml",
  5878. "lib/MonoMac/BouncyCastle.Crypto.dll",
  5879. "lib/MonoMac/BouncyCastle.Crypto.xml",
  5880. "lib/MonoTouch/BouncyCastle.Crypto.dll",
  5881. "lib/MonoTouch/BouncyCastle.Crypto.xml",
  5882. "lib/net20/BouncyCastle.Crypto.dll",
  5883. "lib/net20/BouncyCastle.Crypto.xml",
  5884. "lib/netstandard1.3/BouncyCastle.Crypto.dll",
  5885. "lib/netstandard1.3/BouncyCastle.Crypto.xml",
  5886. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  5887. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  5888. "lib/xamarinios/BouncyCastle.Crypto.dll",
  5889. "lib/xamarinios/BouncyCastle.Crypto.xml"
  5890. ]
  5891. },
  5892. "Flurl/4.0.0": {
  5893. "sha512": "rpts69yYgvJqg6PPgqShBQEZ4aNzWQqWpWppcT0oDWxDCIsBqiod4pj6LQZdhk+1OozLFagemldMRACdHF3CsA==",
  5894. "type": "package",
  5895. "path": "flurl/4.0.0",
  5896. "files": [
  5897. ".nupkg.metadata",
  5898. ".signature.p7s",
  5899. "flurl.4.0.0.nupkg.sha512",
  5900. "flurl.nuspec",
  5901. "icon.png",
  5902. "lib/net461/Flurl.dll",
  5903. "lib/net461/Flurl.xml",
  5904. "lib/net472/Flurl.dll",
  5905. "lib/net472/Flurl.xml",
  5906. "lib/netstandard2.0/Flurl.dll",
  5907. "lib/netstandard2.0/Flurl.xml"
  5908. ]
  5909. },
  5910. "Flurl.Http/4.0.2": {
  5911. "sha512": "9vCqFFyceA11yplkFD8AbCFFTvG1Lrw3tpsgOpL5sLUc28p6zcvGszNleuT6nDymRvtt5eS+rqUX+bRztg1fhA==",
  5912. "type": "package",
  5913. "path": "flurl.http/4.0.2",
  5914. "files": [
  5915. ".nupkg.metadata",
  5916. ".signature.p7s",
  5917. "README.md",
  5918. "flurl.http.4.0.2.nupkg.sha512",
  5919. "flurl.http.nuspec",
  5920. "icon.png",
  5921. "lib/net461/Flurl.Http.dll",
  5922. "lib/net461/Flurl.Http.xml",
  5923. "lib/net6.0/Flurl.Http.dll",
  5924. "lib/net6.0/Flurl.Http.xml",
  5925. "lib/netstandard2.0/Flurl.Http.dll",
  5926. "lib/netstandard2.0/Flurl.Http.xml"
  5927. ]
  5928. },
  5929. "Google.Protobuf/3.11.4": {
  5930. "sha512": "dajCxjDCiPyZuqwZCkFJTwhn/0TJ5VesIs4fXvs56ez1VUi68JjhYMMsPjnJ9gcPqJwTMtXMU1WqUdXYiG1x4w==",
  5931. "type": "package",
  5932. "path": "google.protobuf/3.11.4",
  5933. "files": [
  5934. ".nupkg.metadata",
  5935. ".signature.p7s",
  5936. "google.protobuf.3.11.4.nupkg.sha512",
  5937. "google.protobuf.nuspec",
  5938. "lib/net45/Google.Protobuf.dll",
  5939. "lib/net45/Google.Protobuf.pdb",
  5940. "lib/net45/Google.Protobuf.xml",
  5941. "lib/netstandard1.0/Google.Protobuf.dll",
  5942. "lib/netstandard1.0/Google.Protobuf.pdb",
  5943. "lib/netstandard1.0/Google.Protobuf.xml",
  5944. "lib/netstandard2.0/Google.Protobuf.dll",
  5945. "lib/netstandard2.0/Google.Protobuf.pdb",
  5946. "lib/netstandard2.0/Google.Protobuf.xml"
  5947. ]
  5948. },
  5949. "K4os.Compression.LZ4/1.1.11": {
  5950. "sha512": "RNvJw0UGkedPhCqVBNIogtfQebY+bQt0PN7xDbVe5LWLra0ZEqPfjPSl7iStj3rgDnkqkkTTpm+vCX3hU1qKmA==",
  5951. "type": "package",
  5952. "path": "k4os.compression.lz4/1.1.11",
  5953. "files": [
  5954. ".nupkg.metadata",
  5955. ".signature.p7s",
  5956. "k4os.compression.lz4.1.1.11.nupkg.sha512",
  5957. "k4os.compression.lz4.nuspec",
  5958. "lib/net45/K4os.Compression.LZ4.dll",
  5959. "lib/net45/K4os.Compression.LZ4.xml",
  5960. "lib/net46/K4os.Compression.LZ4.dll",
  5961. "lib/net46/K4os.Compression.LZ4.xml",
  5962. "lib/netstandard1.6/K4os.Compression.LZ4.dll",
  5963. "lib/netstandard1.6/K4os.Compression.LZ4.xml",
  5964. "lib/netstandard2.0/K4os.Compression.LZ4.dll",
  5965. "lib/netstandard2.0/K4os.Compression.LZ4.xml"
  5966. ]
  5967. },
  5968. "K4os.Compression.LZ4.Streams/1.1.11": {
  5969. "sha512": "x+BidXriYsNP4HNTHKx+5cVQguHHwbfs6nM79fDHOCOrcNwnaBms4dwzAV/ZALmKsNKcHmY74PeUZiCC4qLKwQ==",
  5970. "type": "package",
  5971. "path": "k4os.compression.lz4.streams/1.1.11",
  5972. "files": [
  5973. ".nupkg.metadata",
  5974. ".signature.p7s",
  5975. "k4os.compression.lz4.streams.1.1.11.nupkg.sha512",
  5976. "k4os.compression.lz4.streams.nuspec",
  5977. "lib/net45/K4os.Compression.LZ4.Streams.dll",
  5978. "lib/net45/K4os.Compression.LZ4.Streams.xml",
  5979. "lib/net46/K4os.Compression.LZ4.Streams.dll",
  5980. "lib/net46/K4os.Compression.LZ4.Streams.xml",
  5981. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll",
  5982. "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml",
  5983. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll",
  5984. "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml"
  5985. ]
  5986. },
  5987. "K4os.Hash.xxHash/1.0.6": {
  5988. "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==",
  5989. "type": "package",
  5990. "path": "k4os.hash.xxhash/1.0.6",
  5991. "files": [
  5992. ".nupkg.metadata",
  5993. ".signature.p7s",
  5994. "k4os.hash.xxhash.1.0.6.nupkg.sha512",
  5995. "k4os.hash.xxhash.nuspec",
  5996. "lib/net45/K4os.Hash.xxHash.dll",
  5997. "lib/net45/K4os.Hash.xxHash.xml",
  5998. "lib/net46/K4os.Hash.xxHash.dll",
  5999. "lib/net46/K4os.Hash.xxHash.xml",
  6000. "lib/netstandard1.6/K4os.Hash.xxHash.dll",
  6001. "lib/netstandard1.6/K4os.Hash.xxHash.xml",
  6002. "lib/netstandard2.0/K4os.Hash.xxHash.dll",
  6003. "lib/netstandard2.0/K4os.Hash.xxHash.xml"
  6004. ]
  6005. },
  6006. "Microsoft.Bcl.AsyncInterfaces/8.0.0": {
  6007. "sha512": "3WA9q9yVqJp222P3x1wYIGDAkpjAku0TMUaaQV22g6L67AI0LdOIrVS7Ht2vJfLHGSPVuqN94vIr15qn+HEkHw==",
  6008. "type": "package",
  6009. "path": "microsoft.bcl.asyncinterfaces/8.0.0",
  6010. "files": [
  6011. ".nupkg.metadata",
  6012. ".signature.p7s",
  6013. "Icon.png",
  6014. "LICENSE.TXT",
  6015. "PACKAGE.md",
  6016. "THIRD-PARTY-NOTICES.TXT",
  6017. "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets",
  6018. "buildTransitive/net462/_._",
  6019. "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll",
  6020. "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml",
  6021. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  6022. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  6023. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  6024. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  6025. "microsoft.bcl.asyncinterfaces.8.0.0.nupkg.sha512",
  6026. "microsoft.bcl.asyncinterfaces.nuspec",
  6027. "useSharedDesignerContext.txt"
  6028. ]
  6029. },
  6030. "Microsoft.Bcl.HashCode/1.1.0": {
  6031. "sha512": "J2G1k+u5unBV+aYcwxo94ip16Rkp65pgWFb0R6zwJipzWNMgvqlWeuI7/+R+e8bob66LnSG+llLJ+z8wI94cHg==",
  6032. "type": "package",
  6033. "path": "microsoft.bcl.hashcode/1.1.0",
  6034. "files": [
  6035. ".nupkg.metadata",
  6036. ".signature.p7s",
  6037. "LICENSE.TXT",
  6038. "THIRD-PARTY-NOTICES.TXT",
  6039. "lib/net461/Microsoft.Bcl.HashCode.dll",
  6040. "lib/net461/Microsoft.Bcl.HashCode.xml",
  6041. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  6042. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  6043. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  6044. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  6045. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  6046. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  6047. "microsoft.bcl.hashcode.1.1.0.nupkg.sha512",
  6048. "microsoft.bcl.hashcode.nuspec",
  6049. "ref/net461/Microsoft.Bcl.HashCode.dll",
  6050. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  6051. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  6052. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  6053. "useSharedDesignerContext.txt",
  6054. "version.txt"
  6055. ]
  6056. },
  6057. "Microsoft.CSharp/4.7.0": {
  6058. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  6059. "type": "package",
  6060. "path": "microsoft.csharp/4.7.0",
  6061. "files": [
  6062. ".nupkg.metadata",
  6063. ".signature.p7s",
  6064. "LICENSE.TXT",
  6065. "THIRD-PARTY-NOTICES.TXT",
  6066. "lib/MonoAndroid10/_._",
  6067. "lib/MonoTouch10/_._",
  6068. "lib/net45/_._",
  6069. "lib/netcore50/Microsoft.CSharp.dll",
  6070. "lib/netcoreapp2.0/_._",
  6071. "lib/netstandard1.3/Microsoft.CSharp.dll",
  6072. "lib/netstandard2.0/Microsoft.CSharp.dll",
  6073. "lib/netstandard2.0/Microsoft.CSharp.xml",
  6074. "lib/portable-net45+win8+wp8+wpa81/_._",
  6075. "lib/uap10.0.16299/_._",
  6076. "lib/win8/_._",
  6077. "lib/wp80/_._",
  6078. "lib/wpa81/_._",
  6079. "lib/xamarinios10/_._",
  6080. "lib/xamarinmac20/_._",
  6081. "lib/xamarintvos10/_._",
  6082. "lib/xamarinwatchos10/_._",
  6083. "microsoft.csharp.4.7.0.nupkg.sha512",
  6084. "microsoft.csharp.nuspec",
  6085. "ref/MonoAndroid10/_._",
  6086. "ref/MonoTouch10/_._",
  6087. "ref/net45/_._",
  6088. "ref/netcore50/Microsoft.CSharp.dll",
  6089. "ref/netcore50/Microsoft.CSharp.xml",
  6090. "ref/netcore50/de/Microsoft.CSharp.xml",
  6091. "ref/netcore50/es/Microsoft.CSharp.xml",
  6092. "ref/netcore50/fr/Microsoft.CSharp.xml",
  6093. "ref/netcore50/it/Microsoft.CSharp.xml",
  6094. "ref/netcore50/ja/Microsoft.CSharp.xml",
  6095. "ref/netcore50/ko/Microsoft.CSharp.xml",
  6096. "ref/netcore50/ru/Microsoft.CSharp.xml",
  6097. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  6098. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  6099. "ref/netcoreapp2.0/_._",
  6100. "ref/netstandard1.0/Microsoft.CSharp.dll",
  6101. "ref/netstandard1.0/Microsoft.CSharp.xml",
  6102. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  6103. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  6104. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  6105. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  6106. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  6107. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  6108. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  6109. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  6110. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  6111. "ref/netstandard2.0/Microsoft.CSharp.dll",
  6112. "ref/netstandard2.0/Microsoft.CSharp.xml",
  6113. "ref/portable-net45+win8+wp8+wpa81/_._",
  6114. "ref/uap10.0.16299/_._",
  6115. "ref/win8/_._",
  6116. "ref/wp80/_._",
  6117. "ref/wpa81/_._",
  6118. "ref/xamarinios10/_._",
  6119. "ref/xamarinmac20/_._",
  6120. "ref/xamarintvos10/_._",
  6121. "ref/xamarinwatchos10/_._",
  6122. "useSharedDesignerContext.txt",
  6123. "version.txt"
  6124. ]
  6125. },
  6126. "Microsoft.EntityFrameworkCore/3.1.1": {
  6127. "sha512": "RtDC52x7p57sG5ajCisHSRXjqQvtJgR0wUufXWNPDZCjvoqgQcbftWdh2+ogDJ5V58Qf9uhfJQSNXr0qQ597xQ==",
  6128. "type": "package",
  6129. "path": "microsoft.entityframeworkcore/3.1.1",
  6130. "files": [
  6131. ".nupkg.metadata",
  6132. ".signature.p7s",
  6133. "Icon.png",
  6134. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  6135. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  6136. "microsoft.entityframeworkcore.3.1.1.nupkg.sha512",
  6137. "microsoft.entityframeworkcore.nuspec"
  6138. ]
  6139. },
  6140. "Microsoft.EntityFrameworkCore.Abstractions/3.1.1": {
  6141. "sha512": "X7aqgBUGmEOhDa/PKiyTGW8NDvuMk/nbxclGsZcWbrNgwanprNq4ZZOSEL4yCNFhUY4pYFnWSwnsZcKZlEttzQ==",
  6142. "type": "package",
  6143. "path": "microsoft.entityframeworkcore.abstractions/3.1.1",
  6144. "files": [
  6145. ".nupkg.metadata",
  6146. ".signature.p7s",
  6147. "Icon.png",
  6148. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  6149. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  6150. "microsoft.entityframeworkcore.abstractions.3.1.1.nupkg.sha512",
  6151. "microsoft.entityframeworkcore.abstractions.nuspec"
  6152. ]
  6153. },
  6154. "Microsoft.EntityFrameworkCore.Analyzers/3.1.1": {
  6155. "sha512": "PrB8QZih5QMRhVjXZnwpFtgm14KU2M0ewilUIQ6W/qS7ugFBSlr1vaug2XnSdd2ODyZioc7Yypp4WNfaBIQg5Q==",
  6156. "type": "package",
  6157. "path": "microsoft.entityframeworkcore.analyzers/3.1.1",
  6158. "files": [
  6159. ".nupkg.metadata",
  6160. ".signature.p7s",
  6161. "Icon.png",
  6162. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  6163. "lib/netstandard2.0/_._",
  6164. "microsoft.entityframeworkcore.analyzers.3.1.1.nupkg.sha512",
  6165. "microsoft.entityframeworkcore.analyzers.nuspec"
  6166. ]
  6167. },
  6168. "Microsoft.EntityFrameworkCore.Relational/3.1.1": {
  6169. "sha512": "iBt59oeV97kqI6ZkdSpnUV1cC+hCGf5xqot331waiF5d5sxksLJZghkUZOLpe4yuPg3mnngXD6bPqMsLa4II5g==",
  6170. "type": "package",
  6171. "path": "microsoft.entityframeworkcore.relational/3.1.1",
  6172. "files": [
  6173. ".nupkg.metadata",
  6174. ".signature.p7s",
  6175. "Icon.png",
  6176. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  6177. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  6178. "microsoft.entityframeworkcore.relational.3.1.1.nupkg.sha512",
  6179. "microsoft.entityframeworkcore.relational.nuspec"
  6180. ]
  6181. },
  6182. "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
  6183. "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
  6184. "type": "package",
  6185. "path": "microsoft.extensions.apidescription.server/6.0.5",
  6186. "hasTools": true,
  6187. "files": [
  6188. ".nupkg.metadata",
  6189. ".signature.p7s",
  6190. "Icon.png",
  6191. "build/Microsoft.Extensions.ApiDescription.Server.props",
  6192. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  6193. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  6194. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  6195. "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
  6196. "microsoft.extensions.apidescription.server.nuspec",
  6197. "tools/Newtonsoft.Json.dll",
  6198. "tools/dotnet-getdocument.deps.json",
  6199. "tools/dotnet-getdocument.dll",
  6200. "tools/dotnet-getdocument.runtimeconfig.json",
  6201. "tools/net461-x86/GetDocument.Insider.exe",
  6202. "tools/net461-x86/GetDocument.Insider.exe.config",
  6203. "tools/net461-x86/Microsoft.Win32.Primitives.dll",
  6204. "tools/net461-x86/System.AppContext.dll",
  6205. "tools/net461-x86/System.Buffers.dll",
  6206. "tools/net461-x86/System.Collections.Concurrent.dll",
  6207. "tools/net461-x86/System.Collections.NonGeneric.dll",
  6208. "tools/net461-x86/System.Collections.Specialized.dll",
  6209. "tools/net461-x86/System.Collections.dll",
  6210. "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll",
  6211. "tools/net461-x86/System.ComponentModel.Primitives.dll",
  6212. "tools/net461-x86/System.ComponentModel.TypeConverter.dll",
  6213. "tools/net461-x86/System.ComponentModel.dll",
  6214. "tools/net461-x86/System.Console.dll",
  6215. "tools/net461-x86/System.Data.Common.dll",
  6216. "tools/net461-x86/System.Diagnostics.Contracts.dll",
  6217. "tools/net461-x86/System.Diagnostics.Debug.dll",
  6218. "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll",
  6219. "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll",
  6220. "tools/net461-x86/System.Diagnostics.Process.dll",
  6221. "tools/net461-x86/System.Diagnostics.StackTrace.dll",
  6222. "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll",
  6223. "tools/net461-x86/System.Diagnostics.Tools.dll",
  6224. "tools/net461-x86/System.Diagnostics.TraceSource.dll",
  6225. "tools/net461-x86/System.Diagnostics.Tracing.dll",
  6226. "tools/net461-x86/System.Drawing.Primitives.dll",
  6227. "tools/net461-x86/System.Dynamic.Runtime.dll",
  6228. "tools/net461-x86/System.Globalization.Calendars.dll",
  6229. "tools/net461-x86/System.Globalization.Extensions.dll",
  6230. "tools/net461-x86/System.Globalization.dll",
  6231. "tools/net461-x86/System.IO.Compression.ZipFile.dll",
  6232. "tools/net461-x86/System.IO.Compression.dll",
  6233. "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll",
  6234. "tools/net461-x86/System.IO.FileSystem.Primitives.dll",
  6235. "tools/net461-x86/System.IO.FileSystem.Watcher.dll",
  6236. "tools/net461-x86/System.IO.FileSystem.dll",
  6237. "tools/net461-x86/System.IO.IsolatedStorage.dll",
  6238. "tools/net461-x86/System.IO.MemoryMappedFiles.dll",
  6239. "tools/net461-x86/System.IO.Pipes.dll",
  6240. "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll",
  6241. "tools/net461-x86/System.IO.dll",
  6242. "tools/net461-x86/System.Linq.Expressions.dll",
  6243. "tools/net461-x86/System.Linq.Parallel.dll",
  6244. "tools/net461-x86/System.Linq.Queryable.dll",
  6245. "tools/net461-x86/System.Linq.dll",
  6246. "tools/net461-x86/System.Memory.dll",
  6247. "tools/net461-x86/System.Net.Http.dll",
  6248. "tools/net461-x86/System.Net.NameResolution.dll",
  6249. "tools/net461-x86/System.Net.NetworkInformation.dll",
  6250. "tools/net461-x86/System.Net.Ping.dll",
  6251. "tools/net461-x86/System.Net.Primitives.dll",
  6252. "tools/net461-x86/System.Net.Requests.dll",
  6253. "tools/net461-x86/System.Net.Security.dll",
  6254. "tools/net461-x86/System.Net.Sockets.dll",
  6255. "tools/net461-x86/System.Net.WebHeaderCollection.dll",
  6256. "tools/net461-x86/System.Net.WebSockets.Client.dll",
  6257. "tools/net461-x86/System.Net.WebSockets.dll",
  6258. "tools/net461-x86/System.Numerics.Vectors.dll",
  6259. "tools/net461-x86/System.ObjectModel.dll",
  6260. "tools/net461-x86/System.Reflection.Extensions.dll",
  6261. "tools/net461-x86/System.Reflection.Primitives.dll",
  6262. "tools/net461-x86/System.Reflection.dll",
  6263. "tools/net461-x86/System.Resources.Reader.dll",
  6264. "tools/net461-x86/System.Resources.ResourceManager.dll",
  6265. "tools/net461-x86/System.Resources.Writer.dll",
  6266. "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll",
  6267. "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll",
  6268. "tools/net461-x86/System.Runtime.Extensions.dll",
  6269. "tools/net461-x86/System.Runtime.Handles.dll",
  6270. "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll",
  6271. "tools/net461-x86/System.Runtime.InteropServices.dll",
  6272. "tools/net461-x86/System.Runtime.Numerics.dll",
  6273. "tools/net461-x86/System.Runtime.Serialization.Formatters.dll",
  6274. "tools/net461-x86/System.Runtime.Serialization.Json.dll",
  6275. "tools/net461-x86/System.Runtime.Serialization.Primitives.dll",
  6276. "tools/net461-x86/System.Runtime.Serialization.Xml.dll",
  6277. "tools/net461-x86/System.Runtime.dll",
  6278. "tools/net461-x86/System.Security.Claims.dll",
  6279. "tools/net461-x86/System.Security.Cryptography.Algorithms.dll",
  6280. "tools/net461-x86/System.Security.Cryptography.Csp.dll",
  6281. "tools/net461-x86/System.Security.Cryptography.Encoding.dll",
  6282. "tools/net461-x86/System.Security.Cryptography.Primitives.dll",
  6283. "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll",
  6284. "tools/net461-x86/System.Security.Principal.dll",
  6285. "tools/net461-x86/System.Security.SecureString.dll",
  6286. "tools/net461-x86/System.Text.Encoding.Extensions.dll",
  6287. "tools/net461-x86/System.Text.Encoding.dll",
  6288. "tools/net461-x86/System.Text.RegularExpressions.dll",
  6289. "tools/net461-x86/System.Threading.Overlapped.dll",
  6290. "tools/net461-x86/System.Threading.Tasks.Parallel.dll",
  6291. "tools/net461-x86/System.Threading.Tasks.dll",
  6292. "tools/net461-x86/System.Threading.Thread.dll",
  6293. "tools/net461-x86/System.Threading.ThreadPool.dll",
  6294. "tools/net461-x86/System.Threading.Timer.dll",
  6295. "tools/net461-x86/System.Threading.dll",
  6296. "tools/net461-x86/System.ValueTuple.dll",
  6297. "tools/net461-x86/System.Xml.ReaderWriter.dll",
  6298. "tools/net461-x86/System.Xml.XDocument.dll",
  6299. "tools/net461-x86/System.Xml.XPath.XDocument.dll",
  6300. "tools/net461-x86/System.Xml.XPath.dll",
  6301. "tools/net461-x86/System.Xml.XmlDocument.dll",
  6302. "tools/net461-x86/System.Xml.XmlSerializer.dll",
  6303. "tools/net461-x86/netstandard.dll",
  6304. "tools/net461/GetDocument.Insider.exe",
  6305. "tools/net461/GetDocument.Insider.exe.config",
  6306. "tools/net461/Microsoft.Win32.Primitives.dll",
  6307. "tools/net461/System.AppContext.dll",
  6308. "tools/net461/System.Buffers.dll",
  6309. "tools/net461/System.Collections.Concurrent.dll",
  6310. "tools/net461/System.Collections.NonGeneric.dll",
  6311. "tools/net461/System.Collections.Specialized.dll",
  6312. "tools/net461/System.Collections.dll",
  6313. "tools/net461/System.ComponentModel.EventBasedAsync.dll",
  6314. "tools/net461/System.ComponentModel.Primitives.dll",
  6315. "tools/net461/System.ComponentModel.TypeConverter.dll",
  6316. "tools/net461/System.ComponentModel.dll",
  6317. "tools/net461/System.Console.dll",
  6318. "tools/net461/System.Data.Common.dll",
  6319. "tools/net461/System.Diagnostics.Contracts.dll",
  6320. "tools/net461/System.Diagnostics.Debug.dll",
  6321. "tools/net461/System.Diagnostics.DiagnosticSource.dll",
  6322. "tools/net461/System.Diagnostics.FileVersionInfo.dll",
  6323. "tools/net461/System.Diagnostics.Process.dll",
  6324. "tools/net461/System.Diagnostics.StackTrace.dll",
  6325. "tools/net461/System.Diagnostics.TextWriterTraceListener.dll",
  6326. "tools/net461/System.Diagnostics.Tools.dll",
  6327. "tools/net461/System.Diagnostics.TraceSource.dll",
  6328. "tools/net461/System.Diagnostics.Tracing.dll",
  6329. "tools/net461/System.Drawing.Primitives.dll",
  6330. "tools/net461/System.Dynamic.Runtime.dll",
  6331. "tools/net461/System.Globalization.Calendars.dll",
  6332. "tools/net461/System.Globalization.Extensions.dll",
  6333. "tools/net461/System.Globalization.dll",
  6334. "tools/net461/System.IO.Compression.ZipFile.dll",
  6335. "tools/net461/System.IO.Compression.dll",
  6336. "tools/net461/System.IO.FileSystem.DriveInfo.dll",
  6337. "tools/net461/System.IO.FileSystem.Primitives.dll",
  6338. "tools/net461/System.IO.FileSystem.Watcher.dll",
  6339. "tools/net461/System.IO.FileSystem.dll",
  6340. "tools/net461/System.IO.IsolatedStorage.dll",
  6341. "tools/net461/System.IO.MemoryMappedFiles.dll",
  6342. "tools/net461/System.IO.Pipes.dll",
  6343. "tools/net461/System.IO.UnmanagedMemoryStream.dll",
  6344. "tools/net461/System.IO.dll",
  6345. "tools/net461/System.Linq.Expressions.dll",
  6346. "tools/net461/System.Linq.Parallel.dll",
  6347. "tools/net461/System.Linq.Queryable.dll",
  6348. "tools/net461/System.Linq.dll",
  6349. "tools/net461/System.Memory.dll",
  6350. "tools/net461/System.Net.Http.dll",
  6351. "tools/net461/System.Net.NameResolution.dll",
  6352. "tools/net461/System.Net.NetworkInformation.dll",
  6353. "tools/net461/System.Net.Ping.dll",
  6354. "tools/net461/System.Net.Primitives.dll",
  6355. "tools/net461/System.Net.Requests.dll",
  6356. "tools/net461/System.Net.Security.dll",
  6357. "tools/net461/System.Net.Sockets.dll",
  6358. "tools/net461/System.Net.WebHeaderCollection.dll",
  6359. "tools/net461/System.Net.WebSockets.Client.dll",
  6360. "tools/net461/System.Net.WebSockets.dll",
  6361. "tools/net461/System.Numerics.Vectors.dll",
  6362. "tools/net461/System.ObjectModel.dll",
  6363. "tools/net461/System.Reflection.Extensions.dll",
  6364. "tools/net461/System.Reflection.Primitives.dll",
  6365. "tools/net461/System.Reflection.dll",
  6366. "tools/net461/System.Resources.Reader.dll",
  6367. "tools/net461/System.Resources.ResourceManager.dll",
  6368. "tools/net461/System.Resources.Writer.dll",
  6369. "tools/net461/System.Runtime.CompilerServices.Unsafe.dll",
  6370. "tools/net461/System.Runtime.CompilerServices.VisualC.dll",
  6371. "tools/net461/System.Runtime.Extensions.dll",
  6372. "tools/net461/System.Runtime.Handles.dll",
  6373. "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll",
  6374. "tools/net461/System.Runtime.InteropServices.dll",
  6375. "tools/net461/System.Runtime.Numerics.dll",
  6376. "tools/net461/System.Runtime.Serialization.Formatters.dll",
  6377. "tools/net461/System.Runtime.Serialization.Json.dll",
  6378. "tools/net461/System.Runtime.Serialization.Primitives.dll",
  6379. "tools/net461/System.Runtime.Serialization.Xml.dll",
  6380. "tools/net461/System.Runtime.dll",
  6381. "tools/net461/System.Security.Claims.dll",
  6382. "tools/net461/System.Security.Cryptography.Algorithms.dll",
  6383. "tools/net461/System.Security.Cryptography.Csp.dll",
  6384. "tools/net461/System.Security.Cryptography.Encoding.dll",
  6385. "tools/net461/System.Security.Cryptography.Primitives.dll",
  6386. "tools/net461/System.Security.Cryptography.X509Certificates.dll",
  6387. "tools/net461/System.Security.Principal.dll",
  6388. "tools/net461/System.Security.SecureString.dll",
  6389. "tools/net461/System.Text.Encoding.Extensions.dll",
  6390. "tools/net461/System.Text.Encoding.dll",
  6391. "tools/net461/System.Text.RegularExpressions.dll",
  6392. "tools/net461/System.Threading.Overlapped.dll",
  6393. "tools/net461/System.Threading.Tasks.Parallel.dll",
  6394. "tools/net461/System.Threading.Tasks.dll",
  6395. "tools/net461/System.Threading.Thread.dll",
  6396. "tools/net461/System.Threading.ThreadPool.dll",
  6397. "tools/net461/System.Threading.Timer.dll",
  6398. "tools/net461/System.Threading.dll",
  6399. "tools/net461/System.ValueTuple.dll",
  6400. "tools/net461/System.Xml.ReaderWriter.dll",
  6401. "tools/net461/System.Xml.XDocument.dll",
  6402. "tools/net461/System.Xml.XPath.XDocument.dll",
  6403. "tools/net461/System.Xml.XPath.dll",
  6404. "tools/net461/System.Xml.XmlDocument.dll",
  6405. "tools/net461/System.Xml.XmlSerializer.dll",
  6406. "tools/net461/netstandard.dll",
  6407. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  6408. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  6409. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json",
  6410. "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
  6411. ]
  6412. },
  6413. "Microsoft.Extensions.Caching.Abstractions/3.1.1": {
  6414. "sha512": "lG9qfc7Sx8KsYSmqeEV0WleGTUrzMhNuBdmkwLCOfN/IQRb3ZorullTeoaTNIgYuYM+HQsnKa0N22Lv2BpGG/Q==",
  6415. "type": "package",
  6416. "path": "microsoft.extensions.caching.abstractions/3.1.1",
  6417. "files": [
  6418. ".nupkg.metadata",
  6419. ".signature.p7s",
  6420. "Icon.png",
  6421. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  6422. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  6423. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  6424. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  6425. "microsoft.extensions.caching.abstractions.3.1.1.nupkg.sha512",
  6426. "microsoft.extensions.caching.abstractions.nuspec"
  6427. ]
  6428. },
  6429. "Microsoft.Extensions.Caching.Memory/3.1.1": {
  6430. "sha512": "eXKFU6dmz+0EzhlGkVnIJsG8yUIMgSdWRqSN2zLO5IhATJu4JWgUU5vYuRO/HYMCwq8aodK6lVWN7itQXwonkQ==",
  6431. "type": "package",
  6432. "path": "microsoft.extensions.caching.memory/3.1.1",
  6433. "files": [
  6434. ".nupkg.metadata",
  6435. ".signature.p7s",
  6436. "Icon.png",
  6437. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  6438. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  6439. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  6440. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  6441. "microsoft.extensions.caching.memory.3.1.1.nupkg.sha512",
  6442. "microsoft.extensions.caching.memory.nuspec"
  6443. ]
  6444. },
  6445. "Microsoft.Extensions.Configuration/8.0.0": {
  6446. "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
  6447. "type": "package",
  6448. "path": "microsoft.extensions.configuration/8.0.0",
  6449. "files": [
  6450. ".nupkg.metadata",
  6451. ".signature.p7s",
  6452. "Icon.png",
  6453. "LICENSE.TXT",
  6454. "PACKAGE.md",
  6455. "THIRD-PARTY-NOTICES.TXT",
  6456. "buildTransitive/net461/Microsoft.Extensions.Configuration.targets",
  6457. "buildTransitive/net462/_._",
  6458. "buildTransitive/net6.0/_._",
  6459. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets",
  6460. "lib/net462/Microsoft.Extensions.Configuration.dll",
  6461. "lib/net462/Microsoft.Extensions.Configuration.xml",
  6462. "lib/net6.0/Microsoft.Extensions.Configuration.dll",
  6463. "lib/net6.0/Microsoft.Extensions.Configuration.xml",
  6464. "lib/net7.0/Microsoft.Extensions.Configuration.dll",
  6465. "lib/net7.0/Microsoft.Extensions.Configuration.xml",
  6466. "lib/net8.0/Microsoft.Extensions.Configuration.dll",
  6467. "lib/net8.0/Microsoft.Extensions.Configuration.xml",
  6468. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  6469. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  6470. "microsoft.extensions.configuration.8.0.0.nupkg.sha512",
  6471. "microsoft.extensions.configuration.nuspec",
  6472. "useSharedDesignerContext.txt"
  6473. ]
  6474. },
  6475. "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
  6476. "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
  6477. "type": "package",
  6478. "path": "microsoft.extensions.configuration.abstractions/8.0.0",
  6479. "files": [
  6480. ".nupkg.metadata",
  6481. ".signature.p7s",
  6482. "Icon.png",
  6483. "LICENSE.TXT",
  6484. "PACKAGE.md",
  6485. "THIRD-PARTY-NOTICES.TXT",
  6486. "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
  6487. "buildTransitive/net462/_._",
  6488. "buildTransitive/net6.0/_._",
  6489. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
  6490. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
  6491. "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
  6492. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  6493. "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  6494. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  6495. "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  6496. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  6497. "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  6498. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  6499. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  6500. "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
  6501. "microsoft.extensions.configuration.abstractions.nuspec",
  6502. "useSharedDesignerContext.txt"
  6503. ]
  6504. },
  6505. "Microsoft.Extensions.Configuration.Binder/8.0.0": {
  6506. "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
  6507. "type": "package",
  6508. "path": "microsoft.extensions.configuration.binder/8.0.0",
  6509. "files": [
  6510. ".nupkg.metadata",
  6511. ".signature.p7s",
  6512. "Icon.png",
  6513. "LICENSE.TXT",
  6514. "PACKAGE.md",
  6515. "THIRD-PARTY-NOTICES.TXT",
  6516. "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll",
  6517. "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6518. "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6519. "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6520. "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6521. "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6522. "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6523. "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6524. "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6525. "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6526. "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6527. "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6528. "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6529. "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll",
  6530. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets",
  6531. "lib/net462/Microsoft.Extensions.Configuration.Binder.dll",
  6532. "lib/net462/Microsoft.Extensions.Configuration.Binder.xml",
  6533. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll",
  6534. "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml",
  6535. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll",
  6536. "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml",
  6537. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll",
  6538. "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml",
  6539. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  6540. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  6541. "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
  6542. "microsoft.extensions.configuration.binder.nuspec",
  6543. "useSharedDesignerContext.txt"
  6544. ]
  6545. },
  6546. "Microsoft.Extensions.Configuration.CommandLine/8.0.0": {
  6547. "sha512": "NZuZMz3Q8Z780nKX3ifV1fE7lS+6pynDHK71OfU4OZ1ItgvDOhyOC7E6z+JMZrAj63zRpwbdldYFk499t3+1dQ==",
  6548. "type": "package",
  6549. "path": "microsoft.extensions.configuration.commandline/8.0.0",
  6550. "files": [
  6551. ".nupkg.metadata",
  6552. ".signature.p7s",
  6553. "Icon.png",
  6554. "LICENSE.TXT",
  6555. "PACKAGE.md",
  6556. "THIRD-PARTY-NOTICES.TXT",
  6557. "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets",
  6558. "buildTransitive/net462/_._",
  6559. "buildTransitive/net6.0/_._",
  6560. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets",
  6561. "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll",
  6562. "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml",
  6563. "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  6564. "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  6565. "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  6566. "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  6567. "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  6568. "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  6569. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll",
  6570. "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml",
  6571. "microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512",
  6572. "microsoft.extensions.configuration.commandline.nuspec",
  6573. "useSharedDesignerContext.txt"
  6574. ]
  6575. },
  6576. "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": {
  6577. "sha512": "plvZ0ZIpq+97gdPNNvhwvrEZ92kNml9hd1pe3idMA7svR0PztdzVLkoWLcRFgySYXUJc3kSM3Xw3mNFMo/bxRA==",
  6578. "type": "package",
  6579. "path": "microsoft.extensions.configuration.environmentvariables/8.0.0",
  6580. "files": [
  6581. ".nupkg.metadata",
  6582. ".signature.p7s",
  6583. "Icon.png",
  6584. "LICENSE.TXT",
  6585. "PACKAGE.md",
  6586. "THIRD-PARTY-NOTICES.TXT",
  6587. "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
  6588. "buildTransitive/net462/_._",
  6589. "buildTransitive/net6.0/_._",
  6590. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets",
  6591. "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6592. "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6593. "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6594. "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6595. "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6596. "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6597. "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6598. "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6599. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll",
  6600. "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml",
  6601. "microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512",
  6602. "microsoft.extensions.configuration.environmentvariables.nuspec",
  6603. "useSharedDesignerContext.txt"
  6604. ]
  6605. },
  6606. "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
  6607. "sha512": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
  6608. "type": "package",
  6609. "path": "microsoft.extensions.configuration.fileextensions/8.0.0",
  6610. "files": [
  6611. ".nupkg.metadata",
  6612. ".signature.p7s",
  6613. "Icon.png",
  6614. "LICENSE.TXT",
  6615. "PACKAGE.md",
  6616. "THIRD-PARTY-NOTICES.TXT",
  6617. "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets",
  6618. "buildTransitive/net462/_._",
  6619. "buildTransitive/net6.0/_._",
  6620. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets",
  6621. "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6622. "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6623. "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6624. "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6625. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6626. "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6627. "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6628. "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6629. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  6630. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  6631. "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
  6632. "microsoft.extensions.configuration.fileextensions.nuspec",
  6633. "useSharedDesignerContext.txt"
  6634. ]
  6635. },
  6636. "Microsoft.Extensions.Configuration.Json/8.0.0": {
  6637. "sha512": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
  6638. "type": "package",
  6639. "path": "microsoft.extensions.configuration.json/8.0.0",
  6640. "files": [
  6641. ".nupkg.metadata",
  6642. ".signature.p7s",
  6643. "Icon.png",
  6644. "LICENSE.TXT",
  6645. "PACKAGE.md",
  6646. "THIRD-PARTY-NOTICES.TXT",
  6647. "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets",
  6648. "buildTransitive/net462/_._",
  6649. "buildTransitive/net6.0/_._",
  6650. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets",
  6651. "lib/net462/Microsoft.Extensions.Configuration.Json.dll",
  6652. "lib/net462/Microsoft.Extensions.Configuration.Json.xml",
  6653. "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll",
  6654. "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml",
  6655. "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll",
  6656. "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml",
  6657. "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll",
  6658. "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml",
  6659. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  6660. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  6661. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  6662. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  6663. "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
  6664. "microsoft.extensions.configuration.json.nuspec",
  6665. "useSharedDesignerContext.txt"
  6666. ]
  6667. },
  6668. "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": {
  6669. "sha512": "ihDHu2dJYQird9pl2CbdwuNDfvCZdOS0S7SPlNfhPt0B81UTT+yyZKz2pimFZGUp3AfuBRnqUCxB2SjsZKHVUw==",
  6670. "type": "package",
  6671. "path": "microsoft.extensions.configuration.usersecrets/8.0.0",
  6672. "files": [
  6673. ".nupkg.metadata",
  6674. ".signature.p7s",
  6675. "Icon.png",
  6676. "LICENSE.TXT",
  6677. "PACKAGE.md",
  6678. "THIRD-PARTY-NOTICES.TXT",
  6679. "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6680. "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props",
  6681. "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6682. "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  6683. "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6684. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6685. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props",
  6686. "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets",
  6687. "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6688. "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6689. "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6690. "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6691. "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6692. "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6693. "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6694. "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6695. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll",
  6696. "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml",
  6697. "microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512",
  6698. "microsoft.extensions.configuration.usersecrets.nuspec",
  6699. "useSharedDesignerContext.txt"
  6700. ]
  6701. },
  6702. "Microsoft.Extensions.DependencyInjection/8.0.0": {
  6703. "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
  6704. "type": "package",
  6705. "path": "microsoft.extensions.dependencyinjection/8.0.0",
  6706. "files": [
  6707. ".nupkg.metadata",
  6708. ".signature.p7s",
  6709. "Icon.png",
  6710. "LICENSE.TXT",
  6711. "PACKAGE.md",
  6712. "THIRD-PARTY-NOTICES.TXT",
  6713. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
  6714. "buildTransitive/net462/_._",
  6715. "buildTransitive/net6.0/_._",
  6716. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  6717. "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
  6718. "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
  6719. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  6720. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  6721. "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
  6722. "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
  6723. "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll",
  6724. "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml",
  6725. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  6726. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  6727. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  6728. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  6729. "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
  6730. "microsoft.extensions.dependencyinjection.nuspec",
  6731. "useSharedDesignerContext.txt"
  6732. ]
  6733. },
  6734. "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
  6735. "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
  6736. "type": "package",
  6737. "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
  6738. "files": [
  6739. ".nupkg.metadata",
  6740. ".signature.p7s",
  6741. "Icon.png",
  6742. "LICENSE.TXT",
  6743. "PACKAGE.md",
  6744. "THIRD-PARTY-NOTICES.TXT",
  6745. "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  6746. "buildTransitive/net462/_._",
  6747. "buildTransitive/net6.0/_._",
  6748. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  6749. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6750. "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6751. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6752. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6753. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6754. "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6755. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6756. "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6757. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6758. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6759. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  6760. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  6761. "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
  6762. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  6763. "useSharedDesignerContext.txt"
  6764. ]
  6765. },
  6766. "Microsoft.Extensions.DependencyModel/3.1.6": {
  6767. "sha512": "/UlDKULIVkLQYn1BaHcy/rc91ApDxJb7T75HcCbGdqwvxhnRQRKM2di1E70iCPMF9zsr6f4EgQTotBGxFIfXmw==",
  6768. "type": "package",
  6769. "path": "microsoft.extensions.dependencymodel/3.1.6",
  6770. "files": [
  6771. ".nupkg.metadata",
  6772. ".signature.p7s",
  6773. "Icon.png",
  6774. "LICENSE.TXT",
  6775. "THIRD-PARTY-NOTICES.TXT",
  6776. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  6777. "lib/net451/Microsoft.Extensions.DependencyModel.xml",
  6778. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  6779. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.xml",
  6780. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  6781. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.xml",
  6782. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  6783. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  6784. "microsoft.extensions.dependencymodel.3.1.6.nupkg.sha512",
  6785. "microsoft.extensions.dependencymodel.nuspec"
  6786. ]
  6787. },
  6788. "Microsoft.Extensions.Diagnostics/8.0.0": {
  6789. "sha512": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==",
  6790. "type": "package",
  6791. "path": "microsoft.extensions.diagnostics/8.0.0",
  6792. "files": [
  6793. ".nupkg.metadata",
  6794. ".signature.p7s",
  6795. "Icon.png",
  6796. "LICENSE.TXT",
  6797. "THIRD-PARTY-NOTICES.TXT",
  6798. "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets",
  6799. "buildTransitive/net462/_._",
  6800. "buildTransitive/net6.0/_._",
  6801. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets",
  6802. "lib/net462/Microsoft.Extensions.Diagnostics.dll",
  6803. "lib/net462/Microsoft.Extensions.Diagnostics.xml",
  6804. "lib/net6.0/Microsoft.Extensions.Diagnostics.dll",
  6805. "lib/net6.0/Microsoft.Extensions.Diagnostics.xml",
  6806. "lib/net7.0/Microsoft.Extensions.Diagnostics.dll",
  6807. "lib/net7.0/Microsoft.Extensions.Diagnostics.xml",
  6808. "lib/net8.0/Microsoft.Extensions.Diagnostics.dll",
  6809. "lib/net8.0/Microsoft.Extensions.Diagnostics.xml",
  6810. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll",
  6811. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml",
  6812. "microsoft.extensions.diagnostics.8.0.0.nupkg.sha512",
  6813. "microsoft.extensions.diagnostics.nuspec",
  6814. "useSharedDesignerContext.txt"
  6815. ]
  6816. },
  6817. "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": {
  6818. "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==",
  6819. "type": "package",
  6820. "path": "microsoft.extensions.diagnostics.abstractions/8.0.0",
  6821. "files": [
  6822. ".nupkg.metadata",
  6823. ".signature.p7s",
  6824. "Icon.png",
  6825. "LICENSE.TXT",
  6826. "THIRD-PARTY-NOTICES.TXT",
  6827. "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  6828. "buildTransitive/net462/_._",
  6829. "buildTransitive/net6.0/_._",
  6830. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets",
  6831. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6832. "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6833. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6834. "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6835. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6836. "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6837. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6838. "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6839. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll",
  6840. "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml",
  6841. "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512",
  6842. "microsoft.extensions.diagnostics.abstractions.nuspec",
  6843. "useSharedDesignerContext.txt"
  6844. ]
  6845. },
  6846. "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
  6847. "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
  6848. "type": "package",
  6849. "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
  6850. "files": [
  6851. ".nupkg.metadata",
  6852. ".signature.p7s",
  6853. "Icon.png",
  6854. "LICENSE.TXT",
  6855. "PACKAGE.md",
  6856. "THIRD-PARTY-NOTICES.TXT",
  6857. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets",
  6858. "buildTransitive/net462/_._",
  6859. "buildTransitive/net6.0/_._",
  6860. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  6861. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6862. "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6863. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6864. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6865. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6866. "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6867. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  6868. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  6869. "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
  6870. "microsoft.extensions.fileproviders.abstractions.nuspec",
  6871. "useSharedDesignerContext.txt"
  6872. ]
  6873. },
  6874. "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
  6875. "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
  6876. "type": "package",
  6877. "path": "microsoft.extensions.fileproviders.physical/8.0.0",
  6878. "files": [
  6879. ".nupkg.metadata",
  6880. ".signature.p7s",
  6881. "Icon.png",
  6882. "LICENSE.TXT",
  6883. "PACKAGE.md",
  6884. "THIRD-PARTY-NOTICES.TXT",
  6885. "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets",
  6886. "buildTransitive/net462/_._",
  6887. "buildTransitive/net6.0/_._",
  6888. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  6889. "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll",
  6890. "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml",
  6891. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6892. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6893. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6894. "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6895. "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6896. "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6897. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  6898. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  6899. "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
  6900. "microsoft.extensions.fileproviders.physical.nuspec",
  6901. "useSharedDesignerContext.txt"
  6902. ]
  6903. },
  6904. "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
  6905. "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
  6906. "type": "package",
  6907. "path": "microsoft.extensions.filesystemglobbing/8.0.0",
  6908. "files": [
  6909. ".nupkg.metadata",
  6910. ".signature.p7s",
  6911. "Icon.png",
  6912. "LICENSE.TXT",
  6913. "PACKAGE.md",
  6914. "THIRD-PARTY-NOTICES.TXT",
  6915. "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets",
  6916. "buildTransitive/net462/_._",
  6917. "buildTransitive/net6.0/_._",
  6918. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  6919. "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll",
  6920. "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml",
  6921. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6922. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6923. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6924. "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6925. "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6926. "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6927. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  6928. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  6929. "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
  6930. "microsoft.extensions.filesystemglobbing.nuspec",
  6931. "useSharedDesignerContext.txt"
  6932. ]
  6933. },
  6934. "Microsoft.Extensions.Hosting/8.0.0": {
  6935. "sha512": "ItYHpdqVp5/oFLT5QqbopnkKlyFG9EW/9nhM6/yfObeKt6Su0wkBio6AizgRHGNwhJuAtlE5VIjow5JOTrip6w==",
  6936. "type": "package",
  6937. "path": "microsoft.extensions.hosting/8.0.0",
  6938. "files": [
  6939. ".nupkg.metadata",
  6940. ".signature.p7s",
  6941. "Icon.png",
  6942. "LICENSE.TXT",
  6943. "PACKAGE.md",
  6944. "THIRD-PARTY-NOTICES.TXT",
  6945. "buildTransitive/net461/Microsoft.Extensions.Hosting.targets",
  6946. "buildTransitive/net462/_._",
  6947. "buildTransitive/net6.0/_._",
  6948. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets",
  6949. "lib/net462/Microsoft.Extensions.Hosting.dll",
  6950. "lib/net462/Microsoft.Extensions.Hosting.xml",
  6951. "lib/net6.0/Microsoft.Extensions.Hosting.dll",
  6952. "lib/net6.0/Microsoft.Extensions.Hosting.xml",
  6953. "lib/net7.0/Microsoft.Extensions.Hosting.dll",
  6954. "lib/net7.0/Microsoft.Extensions.Hosting.xml",
  6955. "lib/net8.0/Microsoft.Extensions.Hosting.dll",
  6956. "lib/net8.0/Microsoft.Extensions.Hosting.xml",
  6957. "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll",
  6958. "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml",
  6959. "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll",
  6960. "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml",
  6961. "microsoft.extensions.hosting.8.0.0.nupkg.sha512",
  6962. "microsoft.extensions.hosting.nuspec",
  6963. "useSharedDesignerContext.txt"
  6964. ]
  6965. },
  6966. "Microsoft.Extensions.Hosting.Abstractions/8.0.0": {
  6967. "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==",
  6968. "type": "package",
  6969. "path": "microsoft.extensions.hosting.abstractions/8.0.0",
  6970. "files": [
  6971. ".nupkg.metadata",
  6972. ".signature.p7s",
  6973. "Icon.png",
  6974. "LICENSE.TXT",
  6975. "PACKAGE.md",
  6976. "THIRD-PARTY-NOTICES.TXT",
  6977. "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets",
  6978. "buildTransitive/net462/_._",
  6979. "buildTransitive/net6.0/_._",
  6980. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets",
  6981. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll",
  6982. "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml",
  6983. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6984. "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6985. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6986. "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6987. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6988. "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6989. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  6990. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  6991. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  6992. "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  6993. "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512",
  6994. "microsoft.extensions.hosting.abstractions.nuspec",
  6995. "useSharedDesignerContext.txt"
  6996. ]
  6997. },
  6998. "Microsoft.Extensions.Hosting.WindowsServices/8.0.0": {
  6999. "sha512": "8JIvU6R9fejZj/p6QATeDaNEPtIvLuwE5Uh7qyPx7tp+Fc9FqYaAe6ylU2dM839IUpmsU4ZVev956slZyrYEhQ==",
  7000. "type": "package",
  7001. "path": "microsoft.extensions.hosting.windowsservices/8.0.0",
  7002. "files": [
  7003. ".nupkg.metadata",
  7004. ".signature.p7s",
  7005. "Icon.png",
  7006. "LICENSE.TXT",
  7007. "PACKAGE.md",
  7008. "THIRD-PARTY-NOTICES.TXT",
  7009. "buildTransitive/net461/Microsoft.Extensions.Hosting.WindowsServices.targets",
  7010. "buildTransitive/net462/_._",
  7011. "buildTransitive/net6.0/_._",
  7012. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.WindowsServices.targets",
  7013. "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7014. "lib/net462/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7015. "lib/net6.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7016. "lib/net6.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7017. "lib/net7.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7018. "lib/net7.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7019. "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7020. "lib/net8.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7021. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7022. "lib/netstandard2.0/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7023. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.dll",
  7024. "lib/netstandard2.1/Microsoft.Extensions.Hosting.WindowsServices.xml",
  7025. "microsoft.extensions.hosting.windowsservices.8.0.0.nupkg.sha512",
  7026. "microsoft.extensions.hosting.windowsservices.nuspec",
  7027. "useSharedDesignerContext.txt"
  7028. ]
  7029. },
  7030. "Microsoft.Extensions.Logging/8.0.0": {
  7031. "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
  7032. "type": "package",
  7033. "path": "microsoft.extensions.logging/8.0.0",
  7034. "files": [
  7035. ".nupkg.metadata",
  7036. ".signature.p7s",
  7037. "Icon.png",
  7038. "LICENSE.TXT",
  7039. "PACKAGE.md",
  7040. "THIRD-PARTY-NOTICES.TXT",
  7041. "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
  7042. "buildTransitive/net462/_._",
  7043. "buildTransitive/net6.0/_._",
  7044. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
  7045. "lib/net462/Microsoft.Extensions.Logging.dll",
  7046. "lib/net462/Microsoft.Extensions.Logging.xml",
  7047. "lib/net6.0/Microsoft.Extensions.Logging.dll",
  7048. "lib/net6.0/Microsoft.Extensions.Logging.xml",
  7049. "lib/net7.0/Microsoft.Extensions.Logging.dll",
  7050. "lib/net7.0/Microsoft.Extensions.Logging.xml",
  7051. "lib/net8.0/Microsoft.Extensions.Logging.dll",
  7052. "lib/net8.0/Microsoft.Extensions.Logging.xml",
  7053. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  7054. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  7055. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  7056. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  7057. "microsoft.extensions.logging.8.0.0.nupkg.sha512",
  7058. "microsoft.extensions.logging.nuspec",
  7059. "useSharedDesignerContext.txt"
  7060. ]
  7061. },
  7062. "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
  7063. "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
  7064. "type": "package",
  7065. "path": "microsoft.extensions.logging.abstractions/8.0.0",
  7066. "files": [
  7067. ".nupkg.metadata",
  7068. ".signature.p7s",
  7069. "Icon.png",
  7070. "LICENSE.TXT",
  7071. "PACKAGE.md",
  7072. "THIRD-PARTY-NOTICES.TXT",
  7073. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  7074. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  7075. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  7076. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  7077. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7078. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  7079. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  7080. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  7081. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  7082. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  7083. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  7084. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7085. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  7086. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  7087. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  7088. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  7089. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  7090. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  7091. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7092. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  7093. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  7094. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  7095. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  7096. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  7097. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  7098. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7099. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  7100. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  7101. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
  7102. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  7103. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  7104. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  7105. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7106. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  7107. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  7108. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  7109. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  7110. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  7111. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  7112. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  7113. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  7114. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  7115. "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
  7116. "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
  7117. "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
  7118. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  7119. "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  7120. "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
  7121. "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
  7122. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  7123. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  7124. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
  7125. "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
  7126. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
  7127. "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
  7128. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  7129. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  7130. "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
  7131. "microsoft.extensions.logging.abstractions.nuspec",
  7132. "useSharedDesignerContext.txt"
  7133. ]
  7134. },
  7135. "Microsoft.Extensions.Logging.Configuration/8.0.0": {
  7136. "sha512": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==",
  7137. "type": "package",
  7138. "path": "microsoft.extensions.logging.configuration/8.0.0",
  7139. "files": [
  7140. ".nupkg.metadata",
  7141. ".signature.p7s",
  7142. "Icon.png",
  7143. "LICENSE.TXT",
  7144. "THIRD-PARTY-NOTICES.TXT",
  7145. "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets",
  7146. "buildTransitive/net462/_._",
  7147. "buildTransitive/net6.0/_._",
  7148. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets",
  7149. "lib/net462/Microsoft.Extensions.Logging.Configuration.dll",
  7150. "lib/net462/Microsoft.Extensions.Logging.Configuration.xml",
  7151. "lib/net6.0/Microsoft.Extensions.Logging.Configuration.dll",
  7152. "lib/net6.0/Microsoft.Extensions.Logging.Configuration.xml",
  7153. "lib/net7.0/Microsoft.Extensions.Logging.Configuration.dll",
  7154. "lib/net7.0/Microsoft.Extensions.Logging.Configuration.xml",
  7155. "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll",
  7156. "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml",
  7157. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll",
  7158. "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml",
  7159. "microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512",
  7160. "microsoft.extensions.logging.configuration.nuspec",
  7161. "useSharedDesignerContext.txt"
  7162. ]
  7163. },
  7164. "Microsoft.Extensions.Logging.Console/8.0.0": {
  7165. "sha512": "e+48o7DztoYog+PY430lPxrM4mm3PbA6qucvQtUDDwVo4MO+ejMw7YGc/o2rnxbxj4isPxdfKFzTxvXMwAz83A==",
  7166. "type": "package",
  7167. "path": "microsoft.extensions.logging.console/8.0.0",
  7168. "files": [
  7169. ".nupkg.metadata",
  7170. ".signature.p7s",
  7171. "Icon.png",
  7172. "LICENSE.TXT",
  7173. "PACKAGE.md",
  7174. "THIRD-PARTY-NOTICES.TXT",
  7175. "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets",
  7176. "buildTransitive/net462/_._",
  7177. "buildTransitive/net6.0/_._",
  7178. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets",
  7179. "lib/net462/Microsoft.Extensions.Logging.Console.dll",
  7180. "lib/net462/Microsoft.Extensions.Logging.Console.xml",
  7181. "lib/net6.0/Microsoft.Extensions.Logging.Console.dll",
  7182. "lib/net6.0/Microsoft.Extensions.Logging.Console.xml",
  7183. "lib/net7.0/Microsoft.Extensions.Logging.Console.dll",
  7184. "lib/net7.0/Microsoft.Extensions.Logging.Console.xml",
  7185. "lib/net8.0/Microsoft.Extensions.Logging.Console.dll",
  7186. "lib/net8.0/Microsoft.Extensions.Logging.Console.xml",
  7187. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll",
  7188. "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml",
  7189. "microsoft.extensions.logging.console.8.0.0.nupkg.sha512",
  7190. "microsoft.extensions.logging.console.nuspec",
  7191. "useSharedDesignerContext.txt"
  7192. ]
  7193. },
  7194. "Microsoft.Extensions.Logging.Debug/8.0.0": {
  7195. "sha512": "dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==",
  7196. "type": "package",
  7197. "path": "microsoft.extensions.logging.debug/8.0.0",
  7198. "files": [
  7199. ".nupkg.metadata",
  7200. ".signature.p7s",
  7201. "Icon.png",
  7202. "LICENSE.TXT",
  7203. "PACKAGE.md",
  7204. "THIRD-PARTY-NOTICES.TXT",
  7205. "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets",
  7206. "buildTransitive/net462/_._",
  7207. "buildTransitive/net6.0/_._",
  7208. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets",
  7209. "lib/net462/Microsoft.Extensions.Logging.Debug.dll",
  7210. "lib/net462/Microsoft.Extensions.Logging.Debug.xml",
  7211. "lib/net6.0/Microsoft.Extensions.Logging.Debug.dll",
  7212. "lib/net6.0/Microsoft.Extensions.Logging.Debug.xml",
  7213. "lib/net7.0/Microsoft.Extensions.Logging.Debug.dll",
  7214. "lib/net7.0/Microsoft.Extensions.Logging.Debug.xml",
  7215. "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll",
  7216. "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml",
  7217. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll",
  7218. "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml",
  7219. "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512",
  7220. "microsoft.extensions.logging.debug.nuspec",
  7221. "useSharedDesignerContext.txt"
  7222. ]
  7223. },
  7224. "Microsoft.Extensions.Logging.EventLog/8.0.0": {
  7225. "sha512": "3X9D3sl7EmOu7vQp5MJrmIJBl5XSdOhZPYXUeFfYa6Nnm9+tok8x3t3IVPLhm7UJtPOU61ohFchw8rNm9tIYOQ==",
  7226. "type": "package",
  7227. "path": "microsoft.extensions.logging.eventlog/8.0.0",
  7228. "files": [
  7229. ".nupkg.metadata",
  7230. ".signature.p7s",
  7231. "Icon.png",
  7232. "LICENSE.TXT",
  7233. "THIRD-PARTY-NOTICES.TXT",
  7234. "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets",
  7235. "buildTransitive/net462/_._",
  7236. "buildTransitive/net6.0/_._",
  7237. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets",
  7238. "lib/net462/Microsoft.Extensions.Logging.EventLog.dll",
  7239. "lib/net462/Microsoft.Extensions.Logging.EventLog.xml",
  7240. "lib/net6.0/Microsoft.Extensions.Logging.EventLog.dll",
  7241. "lib/net6.0/Microsoft.Extensions.Logging.EventLog.xml",
  7242. "lib/net7.0/Microsoft.Extensions.Logging.EventLog.dll",
  7243. "lib/net7.0/Microsoft.Extensions.Logging.EventLog.xml",
  7244. "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll",
  7245. "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml",
  7246. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll",
  7247. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml",
  7248. "microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512",
  7249. "microsoft.extensions.logging.eventlog.nuspec",
  7250. "useSharedDesignerContext.txt"
  7251. ]
  7252. },
  7253. "Microsoft.Extensions.Logging.EventSource/8.0.0": {
  7254. "sha512": "oKcPMrw+luz2DUAKhwFXrmFikZWnyc8l2RKoQwqU3KIZZjcfoJE0zRHAnqATfhRZhtcbjl/QkiY2Xjxp0xu+6w==",
  7255. "type": "package",
  7256. "path": "microsoft.extensions.logging.eventsource/8.0.0",
  7257. "files": [
  7258. ".nupkg.metadata",
  7259. ".signature.p7s",
  7260. "Icon.png",
  7261. "LICENSE.TXT",
  7262. "THIRD-PARTY-NOTICES.TXT",
  7263. "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets",
  7264. "buildTransitive/net462/_._",
  7265. "buildTransitive/net6.0/_._",
  7266. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets",
  7267. "lib/net462/Microsoft.Extensions.Logging.EventSource.dll",
  7268. "lib/net462/Microsoft.Extensions.Logging.EventSource.xml",
  7269. "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll",
  7270. "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml",
  7271. "lib/net7.0/Microsoft.Extensions.Logging.EventSource.dll",
  7272. "lib/net7.0/Microsoft.Extensions.Logging.EventSource.xml",
  7273. "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll",
  7274. "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml",
  7275. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll",
  7276. "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml",
  7277. "microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512",
  7278. "microsoft.extensions.logging.eventsource.nuspec",
  7279. "useSharedDesignerContext.txt"
  7280. ]
  7281. },
  7282. "Microsoft.Extensions.Options/8.0.0": {
  7283. "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
  7284. "type": "package",
  7285. "path": "microsoft.extensions.options/8.0.0",
  7286. "files": [
  7287. ".nupkg.metadata",
  7288. ".signature.p7s",
  7289. "Icon.png",
  7290. "LICENSE.TXT",
  7291. "PACKAGE.md",
  7292. "THIRD-PARTY-NOTICES.TXT",
  7293. "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll",
  7294. "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7295. "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7296. "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7297. "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7298. "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7299. "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7300. "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7301. "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7302. "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7303. "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7304. "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7305. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7306. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll",
  7307. "buildTransitive/net461/Microsoft.Extensions.Options.targets",
  7308. "buildTransitive/net462/Microsoft.Extensions.Options.targets",
  7309. "buildTransitive/net6.0/Microsoft.Extensions.Options.targets",
  7310. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
  7311. "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets",
  7312. "lib/net462/Microsoft.Extensions.Options.dll",
  7313. "lib/net462/Microsoft.Extensions.Options.xml",
  7314. "lib/net6.0/Microsoft.Extensions.Options.dll",
  7315. "lib/net6.0/Microsoft.Extensions.Options.xml",
  7316. "lib/net7.0/Microsoft.Extensions.Options.dll",
  7317. "lib/net7.0/Microsoft.Extensions.Options.xml",
  7318. "lib/net8.0/Microsoft.Extensions.Options.dll",
  7319. "lib/net8.0/Microsoft.Extensions.Options.xml",
  7320. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  7321. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  7322. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  7323. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  7324. "microsoft.extensions.options.8.0.0.nupkg.sha512",
  7325. "microsoft.extensions.options.nuspec",
  7326. "useSharedDesignerContext.txt"
  7327. ]
  7328. },
  7329. "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
  7330. "sha512": "0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==",
  7331. "type": "package",
  7332. "path": "microsoft.extensions.options.configurationextensions/8.0.0",
  7333. "files": [
  7334. ".nupkg.metadata",
  7335. ".signature.p7s",
  7336. "Icon.png",
  7337. "LICENSE.TXT",
  7338. "PACKAGE.md",
  7339. "THIRD-PARTY-NOTICES.TXT",
  7340. "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
  7341. "buildTransitive/net462/_._",
  7342. "buildTransitive/net6.0/_._",
  7343. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets",
  7344. "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7345. "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7346. "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7347. "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7348. "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7349. "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7350. "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7351. "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7352. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  7353. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  7354. "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
  7355. "microsoft.extensions.options.configurationextensions.nuspec",
  7356. "useSharedDesignerContext.txt"
  7357. ]
  7358. },
  7359. "Microsoft.Extensions.Primitives/8.0.0": {
  7360. "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
  7361. "type": "package",
  7362. "path": "microsoft.extensions.primitives/8.0.0",
  7363. "files": [
  7364. ".nupkg.metadata",
  7365. ".signature.p7s",
  7366. "Icon.png",
  7367. "LICENSE.TXT",
  7368. "PACKAGE.md",
  7369. "THIRD-PARTY-NOTICES.TXT",
  7370. "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
  7371. "buildTransitive/net462/_._",
  7372. "buildTransitive/net6.0/_._",
  7373. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  7374. "lib/net462/Microsoft.Extensions.Primitives.dll",
  7375. "lib/net462/Microsoft.Extensions.Primitives.xml",
  7376. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  7377. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  7378. "lib/net7.0/Microsoft.Extensions.Primitives.dll",
  7379. "lib/net7.0/Microsoft.Extensions.Primitives.xml",
  7380. "lib/net8.0/Microsoft.Extensions.Primitives.dll",
  7381. "lib/net8.0/Microsoft.Extensions.Primitives.xml",
  7382. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  7383. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  7384. "microsoft.extensions.primitives.8.0.0.nupkg.sha512",
  7385. "microsoft.extensions.primitives.nuspec",
  7386. "useSharedDesignerContext.txt"
  7387. ]
  7388. },
  7389. "Microsoft.IdentityModel.Abstractions/7.4.1": {
  7390. "sha512": "GiQzMSzHQWPhnjpn/xy6SGcjtN8ZJbhB9ZEg3RglJ64QwH+VGp7xEpIN674UgjSDF+jJSrAY4/7/2S6F7Nh0hw==",
  7391. "type": "package",
  7392. "path": "microsoft.identitymodel.abstractions/7.4.1",
  7393. "files": [
  7394. ".nupkg.metadata",
  7395. ".signature.p7s",
  7396. "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
  7397. "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
  7398. "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
  7399. "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
  7400. "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
  7401. "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
  7402. "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
  7403. "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
  7404. "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
  7405. "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
  7406. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
  7407. "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
  7408. "microsoft.identitymodel.abstractions.7.4.1.nupkg.sha512",
  7409. "microsoft.identitymodel.abstractions.nuspec"
  7410. ]
  7411. },
  7412. "Microsoft.IdentityModel.JsonWebTokens/7.4.1": {
  7413. "sha512": "RnrQO8IniImY6qrC9qYDc7UBcbPF7+Dp14ee9TqKnlB2/oyIKq8Q3tJ/65zgYvfV4p6iMYLpi+W8C/36J58cIg==",
  7414. "type": "package",
  7415. "path": "microsoft.identitymodel.jsonwebtokens/7.4.1",
  7416. "files": [
  7417. ".nupkg.metadata",
  7418. ".signature.p7s",
  7419. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  7420. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  7421. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll",
  7422. "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml",
  7423. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll",
  7424. "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml",
  7425. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  7426. "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  7427. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  7428. "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  7429. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  7430. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  7431. "microsoft.identitymodel.jsonwebtokens.7.4.1.nupkg.sha512",
  7432. "microsoft.identitymodel.jsonwebtokens.nuspec"
  7433. ]
  7434. },
  7435. "Microsoft.IdentityModel.Logging/7.4.1": {
  7436. "sha512": "QsNBNAdoTP+JxBqqMw3isVeV86z2b+ka94Pue3eRRz8O15mfHhcSnb10IM+aqavAaxCO+EwNu5F/yyRlQ0usWg==",
  7437. "type": "package",
  7438. "path": "microsoft.identitymodel.logging/7.4.1",
  7439. "files": [
  7440. ".nupkg.metadata",
  7441. ".signature.p7s",
  7442. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  7443. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  7444. "lib/net462/Microsoft.IdentityModel.Logging.dll",
  7445. "lib/net462/Microsoft.IdentityModel.Logging.xml",
  7446. "lib/net472/Microsoft.IdentityModel.Logging.dll",
  7447. "lib/net472/Microsoft.IdentityModel.Logging.xml",
  7448. "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
  7449. "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
  7450. "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
  7451. "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
  7452. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  7453. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  7454. "microsoft.identitymodel.logging.7.4.1.nupkg.sha512",
  7455. "microsoft.identitymodel.logging.nuspec"
  7456. ]
  7457. },
  7458. "Microsoft.IdentityModel.Tokens/7.4.1": {
  7459. "sha512": "akl3hQWdj87XkSRahwhrmx9ZfchF97RZoKr9v9fwjrpQz3t0x8lnsjcOfButSS6cvyY/EX0HJuXb5hgkqFjP/g==",
  7460. "type": "package",
  7461. "path": "microsoft.identitymodel.tokens/7.4.1",
  7462. "files": [
  7463. ".nupkg.metadata",
  7464. ".signature.p7s",
  7465. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  7466. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  7467. "lib/net462/Microsoft.IdentityModel.Tokens.dll",
  7468. "lib/net462/Microsoft.IdentityModel.Tokens.xml",
  7469. "lib/net472/Microsoft.IdentityModel.Tokens.dll",
  7470. "lib/net472/Microsoft.IdentityModel.Tokens.xml",
  7471. "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
  7472. "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
  7473. "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
  7474. "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
  7475. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  7476. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  7477. "microsoft.identitymodel.tokens.7.4.1.nupkg.sha512",
  7478. "microsoft.identitymodel.tokens.nuspec"
  7479. ]
  7480. },
  7481. "Microsoft.NETCore.Platforms/2.1.2": {
  7482. "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
  7483. "type": "package",
  7484. "path": "microsoft.netcore.platforms/2.1.2",
  7485. "files": [
  7486. ".nupkg.metadata",
  7487. ".signature.p7s",
  7488. "LICENSE.TXT",
  7489. "THIRD-PARTY-NOTICES.TXT",
  7490. "lib/netstandard1.0/_._",
  7491. "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
  7492. "microsoft.netcore.platforms.nuspec",
  7493. "runtime.json",
  7494. "useSharedDesignerContext.txt",
  7495. "version.txt"
  7496. ]
  7497. },
  7498. "Microsoft.NETCore.Targets/3.0.0": {
  7499. "sha512": "WOwoFoWQ+/njjM0pKbnkKTBo8q3NphEOtu1zMXbqRoWsI07JSXWSycgN3cdM+NlhkXxH4TNEFtI5Pjm94N6DLw==",
  7500. "type": "package",
  7501. "path": "microsoft.netcore.targets/3.0.0",
  7502. "files": [
  7503. ".nupkg.metadata",
  7504. ".signature.p7s",
  7505. "LICENSE.TXT",
  7506. "THIRD-PARTY-NOTICES.TXT",
  7507. "lib/netstandard1.0/_._",
  7508. "microsoft.netcore.targets.3.0.0.nupkg.sha512",
  7509. "microsoft.netcore.targets.nuspec",
  7510. "useSharedDesignerContext.txt",
  7511. "version.txt"
  7512. ]
  7513. },
  7514. "Microsoft.OpenApi/1.3.1": {
  7515. "sha512": "2X5CCFJCnx6v86fnpOg4TKlU1ba7MSf1yakeT7VI4846s7i6fOkERwStX94Rcq8wJsLyQYsUitd6vR38viePeA==",
  7516. "type": "package",
  7517. "path": "microsoft.openapi/1.3.1",
  7518. "files": [
  7519. ".nupkg.metadata",
  7520. ".signature.p7s",
  7521. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  7522. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  7523. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  7524. "microsoft.openapi.1.3.1.nupkg.sha512",
  7525. "microsoft.openapi.nuspec"
  7526. ]
  7527. },
  7528. "Microsoft.Win32.Primitives/4.0.1": {
  7529. "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==",
  7530. "type": "package",
  7531. "path": "microsoft.win32.primitives/4.0.1",
  7532. "files": [
  7533. ".nupkg.metadata",
  7534. ".signature.p7s",
  7535. "ThirdPartyNotices.txt",
  7536. "dotnet_library_license.txt",
  7537. "lib/MonoAndroid10/_._",
  7538. "lib/MonoTouch10/_._",
  7539. "lib/net46/Microsoft.Win32.Primitives.dll",
  7540. "lib/xamarinios10/_._",
  7541. "lib/xamarinmac20/_._",
  7542. "lib/xamarintvos10/_._",
  7543. "lib/xamarinwatchos10/_._",
  7544. "microsoft.win32.primitives.4.0.1.nupkg.sha512",
  7545. "microsoft.win32.primitives.nuspec",
  7546. "ref/MonoAndroid10/_._",
  7547. "ref/MonoTouch10/_._",
  7548. "ref/net46/Microsoft.Win32.Primitives.dll",
  7549. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  7550. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  7551. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  7552. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  7553. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  7554. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  7555. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  7556. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  7557. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  7558. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  7559. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  7560. "ref/xamarinios10/_._",
  7561. "ref/xamarinmac20/_._",
  7562. "ref/xamarintvos10/_._",
  7563. "ref/xamarinwatchos10/_._"
  7564. ]
  7565. },
  7566. "Microsoft.Win32.SystemEvents/6.0.0": {
  7567. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  7568. "type": "package",
  7569. "path": "microsoft.win32.systemevents/6.0.0",
  7570. "files": [
  7571. ".nupkg.metadata",
  7572. ".signature.p7s",
  7573. "Icon.png",
  7574. "LICENSE.TXT",
  7575. "THIRD-PARTY-NOTICES.TXT",
  7576. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  7577. "buildTransitive/netcoreapp3.1/_._",
  7578. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  7579. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  7580. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  7581. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  7582. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  7583. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  7584. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  7585. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  7586. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  7587. "microsoft.win32.systemevents.nuspec",
  7588. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  7589. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  7590. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  7591. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  7592. "useSharedDesignerContext.txt"
  7593. ]
  7594. },
  7595. "MySql.Data/8.0.22": {
  7596. "sha512": "DTKXORgTwQLbAjl8g5+YhvrAB+peQLfAZQ7gbm5Ejma37f/vBtZqP5aTnqZoJUzaQQgj4Psgdcnlo6IwYedyCg==",
  7597. "type": "package",
  7598. "path": "mysql.data/8.0.22",
  7599. "files": [
  7600. ".nupkg.metadata",
  7601. ".signature.p7s",
  7602. "lib/net452/MySql.Data.dll",
  7603. "lib/net452/MySql.Data.xml",
  7604. "lib/net452/Ubiety.Dns.Core.dll",
  7605. "lib/net452/Zstandard.Net.dll",
  7606. "lib/net48/MySql.Data.dll",
  7607. "lib/net48/MySql.Data.xml",
  7608. "lib/net48/Ubiety.Dns.Core.dll",
  7609. "lib/net48/Zstandard.Net.dll",
  7610. "lib/net5.0/MySql.Data.dll",
  7611. "lib/net5.0/MySql.Data.xml",
  7612. "lib/net5.0/Ubiety.Dns.Core.dll",
  7613. "lib/net5.0/Zstandard.Net.dll",
  7614. "lib/netstandard2.0/MySql.Data.dll",
  7615. "lib/netstandard2.0/MySql.Data.xml",
  7616. "lib/netstandard2.0/Ubiety.Dns.Core.dll",
  7617. "lib/netstandard2.0/Zstandard.Net.dll",
  7618. "lib/netstandard2.1/MySql.Data.dll",
  7619. "lib/netstandard2.1/MySql.Data.xml",
  7620. "lib/netstandard2.1/Ubiety.Dns.Core.dll",
  7621. "lib/netstandard2.1/Zstandard.Net.dll",
  7622. "mysql.data.8.0.22.nupkg.sha512",
  7623. "mysql.data.nuspec"
  7624. ]
  7625. },
  7626. "MySql.Data.EntityFrameworkCore/8.0.22": {
  7627. "sha512": "o/+OMqQ0fw4f6COfRrbwqP0CKcqoFkCfb1Rl3mfgUcae3XqAkiA6t8rsjA1wnkxUvwfNYX+YM2w2Xa6u4QEUkA==",
  7628. "type": "package",
  7629. "path": "mysql.data.entityframeworkcore/8.0.22",
  7630. "files": [
  7631. ".nupkg.metadata",
  7632. ".signature.p7s",
  7633. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.dll",
  7634. "lib/netstandard2.0/MySql.Data.EntityFrameworkCore.xml",
  7635. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.dll",
  7636. "lib/netstandard2.1/MySql.Data.EntityFrameworkCore.xml",
  7637. "mysql.data.entityframeworkcore.8.0.22.nupkg.sha512",
  7638. "mysql.data.entityframeworkcore.nuspec"
  7639. ]
  7640. },
  7641. "NETStandard.Library/1.6.0": {
  7642. "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==",
  7643. "type": "package",
  7644. "path": "netstandard.library/1.6.0",
  7645. "files": [
  7646. ".nupkg.metadata",
  7647. "ThirdPartyNotices.txt",
  7648. "dotnet_library_license.txt",
  7649. "netstandard.library.1.6.0.nupkg.sha512",
  7650. "netstandard.library.nuspec"
  7651. ]
  7652. },
  7653. "Newtonsoft.Json/13.0.3": {
  7654. "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
  7655. "type": "package",
  7656. "path": "newtonsoft.json/13.0.3",
  7657. "files": [
  7658. ".nupkg.metadata",
  7659. ".signature.p7s",
  7660. "LICENSE.md",
  7661. "README.md",
  7662. "lib/net20/Newtonsoft.Json.dll",
  7663. "lib/net20/Newtonsoft.Json.xml",
  7664. "lib/net35/Newtonsoft.Json.dll",
  7665. "lib/net35/Newtonsoft.Json.xml",
  7666. "lib/net40/Newtonsoft.Json.dll",
  7667. "lib/net40/Newtonsoft.Json.xml",
  7668. "lib/net45/Newtonsoft.Json.dll",
  7669. "lib/net45/Newtonsoft.Json.xml",
  7670. "lib/net6.0/Newtonsoft.Json.dll",
  7671. "lib/net6.0/Newtonsoft.Json.xml",
  7672. "lib/netstandard1.0/Newtonsoft.Json.dll",
  7673. "lib/netstandard1.0/Newtonsoft.Json.xml",
  7674. "lib/netstandard1.3/Newtonsoft.Json.dll",
  7675. "lib/netstandard1.3/Newtonsoft.Json.xml",
  7676. "lib/netstandard2.0/Newtonsoft.Json.dll",
  7677. "lib/netstandard2.0/Newtonsoft.Json.xml",
  7678. "newtonsoft.json.13.0.3.nupkg.sha512",
  7679. "newtonsoft.json.nuspec",
  7680. "packageIcon.png"
  7681. ]
  7682. },
  7683. "NLog/5.2.8": {
  7684. "sha512": "jAIELkWBs1CXFPp986KSGpDFQZHCFccO+LMbKBTTNm42KifaI1mYzFMFQQfuGmGMTrCx0TFPhDjHDE4cLAZWiQ==",
  7685. "type": "package",
  7686. "path": "nlog/5.2.8",
  7687. "files": [
  7688. ".nupkg.metadata",
  7689. ".signature.p7s",
  7690. "N.png",
  7691. "lib/net35/NLog.dll",
  7692. "lib/net35/NLog.xml",
  7693. "lib/net45/NLog.dll",
  7694. "lib/net45/NLog.xml",
  7695. "lib/net46/NLog.dll",
  7696. "lib/net46/NLog.xml",
  7697. "lib/netstandard1.3/NLog.dll",
  7698. "lib/netstandard1.3/NLog.xml",
  7699. "lib/netstandard1.5/NLog.dll",
  7700. "lib/netstandard1.5/NLog.xml",
  7701. "lib/netstandard2.0/NLog.dll",
  7702. "lib/netstandard2.0/NLog.xml",
  7703. "nlog.5.2.8.nupkg.sha512",
  7704. "nlog.nuspec"
  7705. ]
  7706. },
  7707. "NLog.Extensions.Logging/5.3.8": {
  7708. "sha512": "6VD0lyeokWltL6j8lO7mS7v7lbuO/qn0F7kdvhKhEx1JvFyD39nzohOK3JvkVh4Nn3mrcMDCyDxvTvmiW55jQg==",
  7709. "type": "package",
  7710. "path": "nlog.extensions.logging/5.3.8",
  7711. "files": [
  7712. ".nupkg.metadata",
  7713. ".signature.p7s",
  7714. "N.png",
  7715. "README.md",
  7716. "lib/net461/NLog.Extensions.Logging.dll",
  7717. "lib/net461/NLog.Extensions.Logging.xml",
  7718. "lib/net6.0/NLog.Extensions.Logging.dll",
  7719. "lib/net6.0/NLog.Extensions.Logging.xml",
  7720. "lib/net8.0/NLog.Extensions.Logging.dll",
  7721. "lib/net8.0/NLog.Extensions.Logging.xml",
  7722. "lib/netstandard1.3/NLog.Extensions.Logging.dll",
  7723. "lib/netstandard1.3/NLog.Extensions.Logging.xml",
  7724. "lib/netstandard1.5/NLog.Extensions.Logging.dll",
  7725. "lib/netstandard1.5/NLog.Extensions.Logging.xml",
  7726. "lib/netstandard2.0/NLog.Extensions.Logging.dll",
  7727. "lib/netstandard2.0/NLog.Extensions.Logging.xml",
  7728. "lib/netstandard2.1/NLog.Extensions.Logging.dll",
  7729. "lib/netstandard2.1/NLog.Extensions.Logging.xml",
  7730. "nlog.extensions.logging.5.3.8.nupkg.sha512",
  7731. "nlog.extensions.logging.nuspec"
  7732. ]
  7733. },
  7734. "NLog.Web.AspNetCore/5.3.8": {
  7735. "sha512": "Rt2OCulpAF6rSrZWZzPgHikAI8SDKkq3/52xA/uJ4JtmNjoizULN/IBYtYlZojbPbXiFm3uadOO2rOvvMhjXBQ==",
  7736. "type": "package",
  7737. "path": "nlog.web.aspnetcore/5.3.8",
  7738. "files": [
  7739. ".nupkg.metadata",
  7740. ".signature.p7s",
  7741. "N.png",
  7742. "README.md",
  7743. "lib/net461/NLog.Web.AspNetCore.dll",
  7744. "lib/net461/NLog.Web.AspNetCore.xml",
  7745. "lib/net5.0/NLog.Web.AspNetCore.dll",
  7746. "lib/net5.0/NLog.Web.AspNetCore.xml",
  7747. "lib/net6.0/NLog.Web.AspNetCore.dll",
  7748. "lib/net6.0/NLog.Web.AspNetCore.xml",
  7749. "lib/net8.0/NLog.Web.AspNetCore.dll",
  7750. "lib/net8.0/NLog.Web.AspNetCore.xml",
  7751. "lib/netcoreapp3.1/NLog.Web.AspNetCore.dll",
  7752. "lib/netcoreapp3.1/NLog.Web.AspNetCore.xml",
  7753. "lib/netstandard2.0/NLog.Web.AspNetCore.dll",
  7754. "lib/netstandard2.0/NLog.Web.AspNetCore.xml",
  7755. "nlog.web.aspnetcore.5.3.8.nupkg.sha512",
  7756. "nlog.web.aspnetcore.nuspec"
  7757. ]
  7758. },
  7759. "Pipelines.Sockets.Unofficial/2.2.8": {
  7760. "sha512": "zG2FApP5zxSx6OcdJQLbZDk2AVlN2BNQD6MorwIfV6gVj0RRxWPEp2LXAxqDGZqeNV1Zp0BNPcNaey/GXmTdvQ==",
  7761. "type": "package",
  7762. "path": "pipelines.sockets.unofficial/2.2.8",
  7763. "files": [
  7764. ".nupkg.metadata",
  7765. ".signature.p7s",
  7766. "lib/net461/Pipelines.Sockets.Unofficial.dll",
  7767. "lib/net461/Pipelines.Sockets.Unofficial.xml",
  7768. "lib/net472/Pipelines.Sockets.Unofficial.dll",
  7769. "lib/net472/Pipelines.Sockets.Unofficial.xml",
  7770. "lib/net5.0/Pipelines.Sockets.Unofficial.dll",
  7771. "lib/net5.0/Pipelines.Sockets.Unofficial.xml",
  7772. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.dll",
  7773. "lib/netcoreapp3.1/Pipelines.Sockets.Unofficial.xml",
  7774. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.dll",
  7775. "lib/netstandard2.0/Pipelines.Sockets.Unofficial.xml",
  7776. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.dll",
  7777. "lib/netstandard2.1/Pipelines.Sockets.Unofficial.xml",
  7778. "pipelines.sockets.unofficial.2.2.8.nupkg.sha512",
  7779. "pipelines.sockets.unofficial.nuspec"
  7780. ]
  7781. },
  7782. "Quartz/3.8.1": {
  7783. "sha512": "HlKm+43iG8LmXfejL1kIijO107x8ozEShLT2PFIkOWNSHUj7O7yTl6icFrn6DocPvigudQ90a6h2gdFShOwyXw==",
  7784. "type": "package",
  7785. "path": "quartz/3.8.1",
  7786. "files": [
  7787. ".nupkg.metadata",
  7788. ".signature.p7s",
  7789. "lib/net462/Quartz.dll",
  7790. "lib/net462/Quartz.xml",
  7791. "lib/net472/Quartz.dll",
  7792. "lib/net472/Quartz.xml",
  7793. "lib/net6.0/Quartz.dll",
  7794. "lib/net6.0/Quartz.xml",
  7795. "lib/netstandard2.0/Quartz.dll",
  7796. "lib/netstandard2.0/Quartz.xml",
  7797. "quartz-logo-small.png",
  7798. "quartz.3.8.1.nupkg.sha512",
  7799. "quartz.nuspec",
  7800. "quick-start.md"
  7801. ]
  7802. },
  7803. "runtime.native.System/4.0.0": {
  7804. "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==",
  7805. "type": "package",
  7806. "path": "runtime.native.system/4.0.0",
  7807. "files": [
  7808. ".nupkg.metadata",
  7809. "ThirdPartyNotices.txt",
  7810. "dotnet_library_license.txt",
  7811. "lib/netstandard1.0/_._",
  7812. "runtime.native.system.4.0.0.nupkg.sha512",
  7813. "runtime.native.system.nuspec"
  7814. ]
  7815. },
  7816. "runtime.native.System.IO.Compression/4.1.0": {
  7817. "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==",
  7818. "type": "package",
  7819. "path": "runtime.native.system.io.compression/4.1.0",
  7820. "files": [
  7821. ".nupkg.metadata",
  7822. ".signature.p7s",
  7823. "ThirdPartyNotices.txt",
  7824. "dotnet_library_license.txt",
  7825. "lib/netstandard1.0/_._",
  7826. "runtime.native.system.io.compression.4.1.0.nupkg.sha512",
  7827. "runtime.native.system.io.compression.nuspec"
  7828. ]
  7829. },
  7830. "runtime.native.System.Net.Http/4.0.1": {
  7831. "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==",
  7832. "type": "package",
  7833. "path": "runtime.native.system.net.http/4.0.1",
  7834. "files": [
  7835. ".nupkg.metadata",
  7836. "ThirdPartyNotices.txt",
  7837. "dotnet_library_license.txt",
  7838. "lib/netstandard1.0/_._",
  7839. "runtime.native.system.net.http.4.0.1.nupkg.sha512",
  7840. "runtime.native.system.net.http.nuspec"
  7841. ]
  7842. },
  7843. "runtime.native.System.Security.Cryptography/4.0.0": {
  7844. "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==",
  7845. "type": "package",
  7846. "path": "runtime.native.system.security.cryptography/4.0.0",
  7847. "files": [
  7848. ".nupkg.metadata",
  7849. ".signature.p7s",
  7850. "ThirdPartyNotices.txt",
  7851. "dotnet_library_license.txt",
  7852. "lib/netstandard1.0/_._",
  7853. "runtime.native.system.security.cryptography.4.0.0.nupkg.sha512",
  7854. "runtime.native.system.security.cryptography.nuspec"
  7855. ]
  7856. },
  7857. "Scrutor/3.3.0": {
  7858. "sha512": "BwqCnFzp2/Z+pq17iztxlIkR/ZANyPRR4PdE57WL1w/JW4AM/2imoxBWTL3+G+YXA46ce4s9OUgwWqTXYrtI8A==",
  7859. "type": "package",
  7860. "path": "scrutor/3.3.0",
  7861. "files": [
  7862. ".nupkg.metadata",
  7863. ".signature.p7s",
  7864. "lib/net461/Scrutor.dll",
  7865. "lib/net461/Scrutor.pdb",
  7866. "lib/net461/Scrutor.xml",
  7867. "lib/netcoreapp3.1/Scrutor.dll",
  7868. "lib/netcoreapp3.1/Scrutor.pdb",
  7869. "lib/netcoreapp3.1/Scrutor.xml",
  7870. "lib/netstandard2.0/Scrutor.dll",
  7871. "lib/netstandard2.0/Scrutor.pdb",
  7872. "lib/netstandard2.0/Scrutor.xml",
  7873. "scrutor.3.3.0.nupkg.sha512",
  7874. "scrutor.nuspec"
  7875. ]
  7876. },
  7877. "SSH.NET/2016.1.0": {
  7878. "sha512": "b0fcFFOE044KNRhq1uGujmK04ab+OzA9xARdeVCoZrY6I4D1IIaR6dn6qBIa+er4bJapGBhznDitwcRQpSRC0w==",
  7879. "type": "package",
  7880. "path": "ssh.net/2016.1.0",
  7881. "files": [
  7882. ".nupkg.metadata",
  7883. ".signature.p7s",
  7884. "lib/net35/Renci.SshNet.dll",
  7885. "lib/net35/Renci.SshNet.xml",
  7886. "lib/net40/Renci.SshNet.dll",
  7887. "lib/net40/Renci.SshNet.xml",
  7888. "lib/netstandard1.3/Renci.SshNet.dll",
  7889. "lib/netstandard1.3/Renci.SshNet.xml",
  7890. "lib/sl4/Renci.SshNet.dll",
  7891. "lib/sl4/Renci.SshNet.xml",
  7892. "lib/sl5/Renci.SshNet.dll",
  7893. "lib/sl5/Renci.SshNet.xml",
  7894. "lib/uap10/Renci.SshNet.dll",
  7895. "lib/uap10/Renci.SshNet.xml",
  7896. "lib/wp71/Renci.SshNet.dll",
  7897. "lib/wp71/Renci.SshNet.xml",
  7898. "lib/wp8/Renci.SshNet.dll",
  7899. "lib/wp8/Renci.SshNet.xml",
  7900. "ssh.net.2016.1.0.nupkg.sha512",
  7901. "ssh.net.nuspec"
  7902. ]
  7903. },
  7904. "SshNet.Security.Cryptography/1.2.0": {
  7905. "sha512": "EeFsirrrkIK+cdlYsxukNjBN98cbU7eHfTYZEwxsbOa3dvgR/OhOD06C0sTxvNPhe4UQ6yM0p1sKcT69jqgjTw==",
  7906. "type": "package",
  7907. "path": "sshnet.security.cryptography/1.2.0",
  7908. "files": [
  7909. ".nupkg.metadata",
  7910. ".signature.p7s",
  7911. "lib/net20/SshNet.Security.Cryptography.dll",
  7912. "lib/net20/SshNet.Security.Cryptography.xml",
  7913. "lib/net40/SshNet.Security.Cryptography.dll",
  7914. "lib/net40/SshNet.Security.Cryptography.xml",
  7915. "lib/net45/SshNet.Security.Cryptography.dll",
  7916. "lib/net45/SshNet.Security.Cryptography.xml",
  7917. "lib/netstandard1.0/SshNet.Security.Cryptography.dll",
  7918. "lib/netstandard1.0/SshNet.Security.Cryptography.xml",
  7919. "lib/netstandard1.3/SshNet.Security.Cryptography.dll",
  7920. "lib/netstandard1.3/SshNet.Security.Cryptography.xml",
  7921. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.dll",
  7922. "lib/portable-net45+win8+wpa81/SshNet.Security.Cryptography.xml",
  7923. "lib/sl4/SshNet.Security.Cryptography.dll",
  7924. "lib/sl4/SshNet.Security.Cryptography.xml",
  7925. "lib/sl5/SshNet.Security.Cryptography.dll",
  7926. "lib/sl5/SshNet.Security.Cryptography.xml",
  7927. "lib/uap10.0/SshNet.Security.Cryptography.dll",
  7928. "lib/uap10.0/SshNet.Security.Cryptography.xml",
  7929. "lib/wp71/SshNet.Security.Cryptography.dll",
  7930. "lib/wp71/SshNet.Security.Cryptography.xml",
  7931. "lib/wp8/SshNet.Security.Cryptography.dll",
  7932. "lib/wp8/SshNet.Security.Cryptography.xml",
  7933. "sshnet.security.cryptography.1.2.0.nupkg.sha512",
  7934. "sshnet.security.cryptography.nuspec"
  7935. ]
  7936. },
  7937. "StackExchange.Redis/2.7.33": {
  7938. "sha512": "2kCX5fvhEE824a4Ab5Imyi8DRuGuTxyklXV01kegkRpsWJcPmO6+GAQ+HegKxvXAxlXZ8yaRspvWJ8t3mMClfQ==",
  7939. "type": "package",
  7940. "path": "stackexchange.redis/2.7.33",
  7941. "files": [
  7942. ".nupkg.metadata",
  7943. ".signature.p7s",
  7944. "lib/net461/StackExchange.Redis.dll",
  7945. "lib/net461/StackExchange.Redis.xml",
  7946. "lib/net472/StackExchange.Redis.dll",
  7947. "lib/net472/StackExchange.Redis.xml",
  7948. "lib/net6.0/StackExchange.Redis.dll",
  7949. "lib/net6.0/StackExchange.Redis.xml",
  7950. "lib/netcoreapp3.1/StackExchange.Redis.dll",
  7951. "lib/netcoreapp3.1/StackExchange.Redis.xml",
  7952. "lib/netstandard2.0/StackExchange.Redis.dll",
  7953. "lib/netstandard2.0/StackExchange.Redis.xml",
  7954. "stackexchange.redis.2.7.33.nupkg.sha512",
  7955. "stackexchange.redis.nuspec"
  7956. ]
  7957. },
  7958. "Swashbuckle.AspNetCore/6.5.0": {
  7959. "sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
  7960. "type": "package",
  7961. "path": "swashbuckle.aspnetcore/6.5.0",
  7962. "files": [
  7963. ".nupkg.metadata",
  7964. ".signature.p7s",
  7965. "build/Swashbuckle.AspNetCore.props",
  7966. "swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
  7967. "swashbuckle.aspnetcore.nuspec"
  7968. ]
  7969. },
  7970. "Swashbuckle.AspNetCore.Filters/8.0.1": {
  7971. "sha512": "CQbJaQdelQGmgZR48FmITGYdfjXTG//hGpSEOwv3cLU5md8c6+YRY23KydX44IXRmHGAYwXrBlnuy98Daoa0zw==",
  7972. "type": "package",
  7973. "path": "swashbuckle.aspnetcore.filters/8.0.1",
  7974. "files": [
  7975. ".nupkg.metadata",
  7976. ".signature.p7s",
  7977. "README.md",
  7978. "lib/net5.0/Swashbuckle.AspNetCore.Filters.dll",
  7979. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.dll",
  7980. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.dll",
  7981. "swashbuckle.aspnetcore.filters.8.0.1.nupkg.sha512",
  7982. "swashbuckle.aspnetcore.filters.nuspec"
  7983. ]
  7984. },
  7985. "Swashbuckle.AspNetCore.Filters.Abstractions/8.0.1": {
  7986. "sha512": "HaMNzwz544xccQ0vn1jYK6UY9XZcgZRYYI4NaBAdow2oj0UycN6zdryoaaCa2S9D9Cu1qjsbdjp2FthYqM/wpQ==",
  7987. "type": "package",
  7988. "path": "swashbuckle.aspnetcore.filters.abstractions/8.0.1",
  7989. "files": [
  7990. ".nupkg.metadata",
  7991. ".signature.p7s",
  7992. "README.md",
  7993. "lib/net5.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  7994. "lib/netcoreapp3.1/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  7995. "lib/netstandard2.0/Swashbuckle.AspNetCore.Filters.Abstractions.dll",
  7996. "swashbuckle.aspnetcore.filters.abstractions.8.0.1.nupkg.sha512",
  7997. "swashbuckle.aspnetcore.filters.abstractions.nuspec"
  7998. ]
  7999. },
  8000. "Swashbuckle.AspNetCore.Swagger/6.5.0": {
  8001. "sha512": "XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
  8002. "type": "package",
  8003. "path": "swashbuckle.aspnetcore.swagger/6.5.0",
  8004. "files": [
  8005. ".nupkg.metadata",
  8006. ".signature.p7s",
  8007. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  8008. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8009. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  8010. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  8011. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8012. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  8013. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll",
  8014. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8015. "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml",
  8016. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  8017. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8018. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  8019. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  8020. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  8021. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  8022. "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
  8023. "swashbuckle.aspnetcore.swagger.nuspec"
  8024. ]
  8025. },
  8026. "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
  8027. "sha512": "Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
  8028. "type": "package",
  8029. "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
  8030. "files": [
  8031. ".nupkg.metadata",
  8032. ".signature.p7s",
  8033. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8034. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8035. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8036. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8037. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8038. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8039. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8040. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8041. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8042. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8043. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8044. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8045. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  8046. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  8047. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  8048. "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
  8049. "swashbuckle.aspnetcore.swaggergen.nuspec"
  8050. ]
  8051. },
  8052. "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
  8053. "sha512": "OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
  8054. "type": "package",
  8055. "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
  8056. "files": [
  8057. ".nupkg.metadata",
  8058. ".signature.p7s",
  8059. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8060. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8061. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8062. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8063. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8064. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8065. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8066. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8067. "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8068. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8069. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8070. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8071. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  8072. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  8073. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  8074. "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
  8075. "swashbuckle.aspnetcore.swaggerui.nuspec"
  8076. ]
  8077. },
  8078. "System.AppContext/4.1.0": {
  8079. "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==",
  8080. "type": "package",
  8081. "path": "system.appcontext/4.1.0",
  8082. "files": [
  8083. ".nupkg.metadata",
  8084. ".signature.p7s",
  8085. "ThirdPartyNotices.txt",
  8086. "dotnet_library_license.txt",
  8087. "lib/MonoAndroid10/_._",
  8088. "lib/MonoTouch10/_._",
  8089. "lib/net46/System.AppContext.dll",
  8090. "lib/net463/System.AppContext.dll",
  8091. "lib/netcore50/System.AppContext.dll",
  8092. "lib/netstandard1.6/System.AppContext.dll",
  8093. "lib/xamarinios10/_._",
  8094. "lib/xamarinmac20/_._",
  8095. "lib/xamarintvos10/_._",
  8096. "lib/xamarinwatchos10/_._",
  8097. "ref/MonoAndroid10/_._",
  8098. "ref/MonoTouch10/_._",
  8099. "ref/net46/System.AppContext.dll",
  8100. "ref/net463/System.AppContext.dll",
  8101. "ref/netstandard/_._",
  8102. "ref/netstandard1.3/System.AppContext.dll",
  8103. "ref/netstandard1.3/System.AppContext.xml",
  8104. "ref/netstandard1.3/de/System.AppContext.xml",
  8105. "ref/netstandard1.3/es/System.AppContext.xml",
  8106. "ref/netstandard1.3/fr/System.AppContext.xml",
  8107. "ref/netstandard1.3/it/System.AppContext.xml",
  8108. "ref/netstandard1.3/ja/System.AppContext.xml",
  8109. "ref/netstandard1.3/ko/System.AppContext.xml",
  8110. "ref/netstandard1.3/ru/System.AppContext.xml",
  8111. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  8112. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  8113. "ref/netstandard1.6/System.AppContext.dll",
  8114. "ref/netstandard1.6/System.AppContext.xml",
  8115. "ref/netstandard1.6/de/System.AppContext.xml",
  8116. "ref/netstandard1.6/es/System.AppContext.xml",
  8117. "ref/netstandard1.6/fr/System.AppContext.xml",
  8118. "ref/netstandard1.6/it/System.AppContext.xml",
  8119. "ref/netstandard1.6/ja/System.AppContext.xml",
  8120. "ref/netstandard1.6/ko/System.AppContext.xml",
  8121. "ref/netstandard1.6/ru/System.AppContext.xml",
  8122. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  8123. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  8124. "ref/xamarinios10/_._",
  8125. "ref/xamarinmac20/_._",
  8126. "ref/xamarintvos10/_._",
  8127. "ref/xamarinwatchos10/_._",
  8128. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  8129. "system.appcontext.4.1.0.nupkg.sha512",
  8130. "system.appcontext.nuspec"
  8131. ]
  8132. },
  8133. "System.Buffers/4.5.1": {
  8134. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  8135. "type": "package",
  8136. "path": "system.buffers/4.5.1",
  8137. "files": [
  8138. ".nupkg.metadata",
  8139. ".signature.p7s",
  8140. "LICENSE.TXT",
  8141. "THIRD-PARTY-NOTICES.TXT",
  8142. "lib/net461/System.Buffers.dll",
  8143. "lib/net461/System.Buffers.xml",
  8144. "lib/netcoreapp2.0/_._",
  8145. "lib/netstandard1.1/System.Buffers.dll",
  8146. "lib/netstandard1.1/System.Buffers.xml",
  8147. "lib/netstandard2.0/System.Buffers.dll",
  8148. "lib/netstandard2.0/System.Buffers.xml",
  8149. "lib/uap10.0.16299/_._",
  8150. "ref/net45/System.Buffers.dll",
  8151. "ref/net45/System.Buffers.xml",
  8152. "ref/netcoreapp2.0/_._",
  8153. "ref/netstandard1.1/System.Buffers.dll",
  8154. "ref/netstandard1.1/System.Buffers.xml",
  8155. "ref/netstandard2.0/System.Buffers.dll",
  8156. "ref/netstandard2.0/System.Buffers.xml",
  8157. "ref/uap10.0.16299/_._",
  8158. "system.buffers.4.5.1.nupkg.sha512",
  8159. "system.buffers.nuspec",
  8160. "useSharedDesignerContext.txt",
  8161. "version.txt"
  8162. ]
  8163. },
  8164. "System.Collections/4.0.11": {
  8165. "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
  8166. "type": "package",
  8167. "path": "system.collections/4.0.11",
  8168. "files": [
  8169. ".nupkg.metadata",
  8170. ".signature.p7s",
  8171. "ThirdPartyNotices.txt",
  8172. "dotnet_library_license.txt",
  8173. "lib/MonoAndroid10/_._",
  8174. "lib/MonoTouch10/_._",
  8175. "lib/net45/_._",
  8176. "lib/portable-net45+win8+wp8+wpa81/_._",
  8177. "lib/win8/_._",
  8178. "lib/wp80/_._",
  8179. "lib/wpa81/_._",
  8180. "lib/xamarinios10/_._",
  8181. "lib/xamarinmac20/_._",
  8182. "lib/xamarintvos10/_._",
  8183. "lib/xamarinwatchos10/_._",
  8184. "ref/MonoAndroid10/_._",
  8185. "ref/MonoTouch10/_._",
  8186. "ref/net45/_._",
  8187. "ref/netcore50/System.Collections.dll",
  8188. "ref/netcore50/System.Collections.xml",
  8189. "ref/netcore50/de/System.Collections.xml",
  8190. "ref/netcore50/es/System.Collections.xml",
  8191. "ref/netcore50/fr/System.Collections.xml",
  8192. "ref/netcore50/it/System.Collections.xml",
  8193. "ref/netcore50/ja/System.Collections.xml",
  8194. "ref/netcore50/ko/System.Collections.xml",
  8195. "ref/netcore50/ru/System.Collections.xml",
  8196. "ref/netcore50/zh-hans/System.Collections.xml",
  8197. "ref/netcore50/zh-hant/System.Collections.xml",
  8198. "ref/netstandard1.0/System.Collections.dll",
  8199. "ref/netstandard1.0/System.Collections.xml",
  8200. "ref/netstandard1.0/de/System.Collections.xml",
  8201. "ref/netstandard1.0/es/System.Collections.xml",
  8202. "ref/netstandard1.0/fr/System.Collections.xml",
  8203. "ref/netstandard1.0/it/System.Collections.xml",
  8204. "ref/netstandard1.0/ja/System.Collections.xml",
  8205. "ref/netstandard1.0/ko/System.Collections.xml",
  8206. "ref/netstandard1.0/ru/System.Collections.xml",
  8207. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  8208. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  8209. "ref/netstandard1.3/System.Collections.dll",
  8210. "ref/netstandard1.3/System.Collections.xml",
  8211. "ref/netstandard1.3/de/System.Collections.xml",
  8212. "ref/netstandard1.3/es/System.Collections.xml",
  8213. "ref/netstandard1.3/fr/System.Collections.xml",
  8214. "ref/netstandard1.3/it/System.Collections.xml",
  8215. "ref/netstandard1.3/ja/System.Collections.xml",
  8216. "ref/netstandard1.3/ko/System.Collections.xml",
  8217. "ref/netstandard1.3/ru/System.Collections.xml",
  8218. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  8219. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  8220. "ref/portable-net45+win8+wp8+wpa81/_._",
  8221. "ref/win8/_._",
  8222. "ref/wp80/_._",
  8223. "ref/wpa81/_._",
  8224. "ref/xamarinios10/_._",
  8225. "ref/xamarinmac20/_._",
  8226. "ref/xamarintvos10/_._",
  8227. "ref/xamarinwatchos10/_._",
  8228. "system.collections.4.0.11.nupkg.sha512",
  8229. "system.collections.nuspec"
  8230. ]
  8231. },
  8232. "System.Collections.Concurrent/4.0.12": {
  8233. "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==",
  8234. "type": "package",
  8235. "path": "system.collections.concurrent/4.0.12",
  8236. "files": [
  8237. ".nupkg.metadata",
  8238. ".signature.p7s",
  8239. "ThirdPartyNotices.txt",
  8240. "dotnet_library_license.txt",
  8241. "lib/MonoAndroid10/_._",
  8242. "lib/MonoTouch10/_._",
  8243. "lib/net45/_._",
  8244. "lib/netcore50/System.Collections.Concurrent.dll",
  8245. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  8246. "lib/portable-net45+win8+wpa81/_._",
  8247. "lib/win8/_._",
  8248. "lib/wpa81/_._",
  8249. "lib/xamarinios10/_._",
  8250. "lib/xamarinmac20/_._",
  8251. "lib/xamarintvos10/_._",
  8252. "lib/xamarinwatchos10/_._",
  8253. "ref/MonoAndroid10/_._",
  8254. "ref/MonoTouch10/_._",
  8255. "ref/net45/_._",
  8256. "ref/netcore50/System.Collections.Concurrent.dll",
  8257. "ref/netcore50/System.Collections.Concurrent.xml",
  8258. "ref/netcore50/de/System.Collections.Concurrent.xml",
  8259. "ref/netcore50/es/System.Collections.Concurrent.xml",
  8260. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  8261. "ref/netcore50/it/System.Collections.Concurrent.xml",
  8262. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  8263. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  8264. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  8265. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  8266. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  8267. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  8268. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  8269. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  8270. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  8271. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  8272. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  8273. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  8274. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  8275. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  8276. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  8277. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  8278. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  8279. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  8280. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  8281. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  8282. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  8283. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  8284. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  8285. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  8286. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  8287. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  8288. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  8289. "ref/portable-net45+win8+wpa81/_._",
  8290. "ref/win8/_._",
  8291. "ref/wpa81/_._",
  8292. "ref/xamarinios10/_._",
  8293. "ref/xamarinmac20/_._",
  8294. "ref/xamarintvos10/_._",
  8295. "ref/xamarinwatchos10/_._",
  8296. "system.collections.concurrent.4.0.12.nupkg.sha512",
  8297. "system.collections.concurrent.nuspec"
  8298. ]
  8299. },
  8300. "System.Collections.Immutable/1.7.0": {
  8301. "sha512": "RVSM6wZUo6L2y6P3vN6gjUtyJ2IF2RVtrepF3J7nrDKfFQd5u/SnSUFclchYQis8/k5scHy9E+fVeKVQLnnkzw==",
  8302. "type": "package",
  8303. "path": "system.collections.immutable/1.7.0",
  8304. "files": [
  8305. ".nupkg.metadata",
  8306. ".signature.p7s",
  8307. "LICENSE.TXT",
  8308. "THIRD-PARTY-NOTICES.TXT",
  8309. "lib/netstandard1.0/System.Collections.Immutable.dll",
  8310. "lib/netstandard1.0/System.Collections.Immutable.xml",
  8311. "lib/netstandard1.3/System.Collections.Immutable.dll",
  8312. "lib/netstandard1.3/System.Collections.Immutable.xml",
  8313. "lib/netstandard2.0/System.Collections.Immutable.dll",
  8314. "lib/netstandard2.0/System.Collections.Immutable.xml",
  8315. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  8316. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  8317. "system.collections.immutable.1.7.0.nupkg.sha512",
  8318. "system.collections.immutable.nuspec",
  8319. "useSharedDesignerContext.txt",
  8320. "version.txt"
  8321. ]
  8322. },
  8323. "System.ComponentModel.Annotations/5.0.0": {
  8324. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  8325. "type": "package",
  8326. "path": "system.componentmodel.annotations/5.0.0",
  8327. "files": [
  8328. ".nupkg.metadata",
  8329. ".signature.p7s",
  8330. "Icon.png",
  8331. "LICENSE.TXT",
  8332. "THIRD-PARTY-NOTICES.TXT",
  8333. "lib/MonoAndroid10/_._",
  8334. "lib/MonoTouch10/_._",
  8335. "lib/net45/_._",
  8336. "lib/net461/System.ComponentModel.Annotations.dll",
  8337. "lib/netcore50/System.ComponentModel.Annotations.dll",
  8338. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  8339. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  8340. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  8341. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  8342. "lib/portable-net45+win8/_._",
  8343. "lib/win8/_._",
  8344. "lib/xamarinios10/_._",
  8345. "lib/xamarinmac20/_._",
  8346. "lib/xamarintvos10/_._",
  8347. "lib/xamarinwatchos10/_._",
  8348. "ref/MonoAndroid10/_._",
  8349. "ref/MonoTouch10/_._",
  8350. "ref/net45/_._",
  8351. "ref/net461/System.ComponentModel.Annotations.dll",
  8352. "ref/net461/System.ComponentModel.Annotations.xml",
  8353. "ref/netcore50/System.ComponentModel.Annotations.dll",
  8354. "ref/netcore50/System.ComponentModel.Annotations.xml",
  8355. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  8356. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  8357. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  8358. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  8359. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  8360. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  8361. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  8362. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  8363. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  8364. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  8365. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  8366. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  8367. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  8368. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  8369. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  8370. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  8371. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  8372. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  8373. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  8374. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  8375. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  8376. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  8377. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  8378. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  8379. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  8380. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  8381. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  8382. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  8383. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  8384. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  8385. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  8386. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  8387. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  8388. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  8389. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  8390. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  8391. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  8392. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  8393. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  8394. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  8395. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  8396. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  8397. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  8398. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  8399. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  8400. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  8401. "ref/portable-net45+win8/_._",
  8402. "ref/win8/_._",
  8403. "ref/xamarinios10/_._",
  8404. "ref/xamarinmac20/_._",
  8405. "ref/xamarintvos10/_._",
  8406. "ref/xamarinwatchos10/_._",
  8407. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  8408. "system.componentmodel.annotations.nuspec",
  8409. "useSharedDesignerContext.txt",
  8410. "version.txt"
  8411. ]
  8412. },
  8413. "System.Configuration.ConfigurationManager/6.0.1": {
  8414. "sha512": "jXw9MlUu/kRfEU0WyTptAVueupqIeE3/rl0EZDMlf8pcvJnitQ8HeVEp69rZdaStXwTV72boi/Bhw8lOeO+U2w==",
  8415. "type": "package",
  8416. "path": "system.configuration.configurationmanager/6.0.1",
  8417. "files": [
  8418. ".nupkg.metadata",
  8419. ".signature.p7s",
  8420. "Icon.png",
  8421. "LICENSE.TXT",
  8422. "THIRD-PARTY-NOTICES.TXT",
  8423. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  8424. "buildTransitive/netcoreapp3.1/_._",
  8425. "lib/net461/System.Configuration.ConfigurationManager.dll",
  8426. "lib/net461/System.Configuration.ConfigurationManager.xml",
  8427. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  8428. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  8429. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  8430. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  8431. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  8432. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  8433. "system.configuration.configurationmanager.6.0.1.nupkg.sha512",
  8434. "system.configuration.configurationmanager.nuspec",
  8435. "useSharedDesignerContext.txt"
  8436. ]
  8437. },
  8438. "System.Console/4.0.0": {
  8439. "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==",
  8440. "type": "package",
  8441. "path": "system.console/4.0.0",
  8442. "files": [
  8443. ".nupkg.metadata",
  8444. "ThirdPartyNotices.txt",
  8445. "dotnet_library_license.txt",
  8446. "lib/MonoAndroid10/_._",
  8447. "lib/MonoTouch10/_._",
  8448. "lib/net46/System.Console.dll",
  8449. "lib/xamarinios10/_._",
  8450. "lib/xamarinmac20/_._",
  8451. "lib/xamarintvos10/_._",
  8452. "lib/xamarinwatchos10/_._",
  8453. "ref/MonoAndroid10/_._",
  8454. "ref/MonoTouch10/_._",
  8455. "ref/net46/System.Console.dll",
  8456. "ref/netstandard1.3/System.Console.dll",
  8457. "ref/netstandard1.3/System.Console.xml",
  8458. "ref/netstandard1.3/de/System.Console.xml",
  8459. "ref/netstandard1.3/es/System.Console.xml",
  8460. "ref/netstandard1.3/fr/System.Console.xml",
  8461. "ref/netstandard1.3/it/System.Console.xml",
  8462. "ref/netstandard1.3/ja/System.Console.xml",
  8463. "ref/netstandard1.3/ko/System.Console.xml",
  8464. "ref/netstandard1.3/ru/System.Console.xml",
  8465. "ref/netstandard1.3/zh-hans/System.Console.xml",
  8466. "ref/netstandard1.3/zh-hant/System.Console.xml",
  8467. "ref/xamarinios10/_._",
  8468. "ref/xamarinmac20/_._",
  8469. "ref/xamarintvos10/_._",
  8470. "ref/xamarinwatchos10/_._",
  8471. "system.console.4.0.0.nupkg.sha512",
  8472. "system.console.nuspec"
  8473. ]
  8474. },
  8475. "System.Diagnostics.Debug/4.0.11": {
  8476. "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
  8477. "type": "package",
  8478. "path": "system.diagnostics.debug/4.0.11",
  8479. "files": [
  8480. ".nupkg.metadata",
  8481. ".signature.p7s",
  8482. "ThirdPartyNotices.txt",
  8483. "dotnet_library_license.txt",
  8484. "lib/MonoAndroid10/_._",
  8485. "lib/MonoTouch10/_._",
  8486. "lib/net45/_._",
  8487. "lib/portable-net45+win8+wp8+wpa81/_._",
  8488. "lib/win8/_._",
  8489. "lib/wp80/_._",
  8490. "lib/wpa81/_._",
  8491. "lib/xamarinios10/_._",
  8492. "lib/xamarinmac20/_._",
  8493. "lib/xamarintvos10/_._",
  8494. "lib/xamarinwatchos10/_._",
  8495. "ref/MonoAndroid10/_._",
  8496. "ref/MonoTouch10/_._",
  8497. "ref/net45/_._",
  8498. "ref/netcore50/System.Diagnostics.Debug.dll",
  8499. "ref/netcore50/System.Diagnostics.Debug.xml",
  8500. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  8501. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  8502. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  8503. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  8504. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  8505. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  8506. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  8507. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  8508. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  8509. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  8510. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  8511. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  8512. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  8513. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  8514. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  8515. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  8516. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  8517. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  8518. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  8519. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  8520. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  8521. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  8522. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  8523. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  8524. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  8525. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  8526. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  8527. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  8528. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  8529. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  8530. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  8531. "ref/portable-net45+win8+wp8+wpa81/_._",
  8532. "ref/win8/_._",
  8533. "ref/wp80/_._",
  8534. "ref/wpa81/_._",
  8535. "ref/xamarinios10/_._",
  8536. "ref/xamarinmac20/_._",
  8537. "ref/xamarintvos10/_._",
  8538. "ref/xamarinwatchos10/_._",
  8539. "system.diagnostics.debug.4.0.11.nupkg.sha512",
  8540. "system.diagnostics.debug.nuspec"
  8541. ]
  8542. },
  8543. "System.Diagnostics.DiagnosticSource/8.0.0": {
  8544. "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==",
  8545. "type": "package",
  8546. "path": "system.diagnostics.diagnosticsource/8.0.0",
  8547. "files": [
  8548. ".nupkg.metadata",
  8549. ".signature.p7s",
  8550. "Icon.png",
  8551. "LICENSE.TXT",
  8552. "THIRD-PARTY-NOTICES.TXT",
  8553. "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets",
  8554. "buildTransitive/net462/_._",
  8555. "buildTransitive/net6.0/_._",
  8556. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  8557. "lib/net462/System.Diagnostics.DiagnosticSource.dll",
  8558. "lib/net462/System.Diagnostics.DiagnosticSource.xml",
  8559. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  8560. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  8561. "lib/net7.0/System.Diagnostics.DiagnosticSource.dll",
  8562. "lib/net7.0/System.Diagnostics.DiagnosticSource.xml",
  8563. "lib/net8.0/System.Diagnostics.DiagnosticSource.dll",
  8564. "lib/net8.0/System.Diagnostics.DiagnosticSource.xml",
  8565. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  8566. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  8567. "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512",
  8568. "system.diagnostics.diagnosticsource.nuspec",
  8569. "useSharedDesignerContext.txt"
  8570. ]
  8571. },
  8572. "System.Diagnostics.EventLog/8.0.0": {
  8573. "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
  8574. "type": "package",
  8575. "path": "system.diagnostics.eventlog/8.0.0",
  8576. "files": [
  8577. ".nupkg.metadata",
  8578. ".signature.p7s",
  8579. "Icon.png",
  8580. "LICENSE.TXT",
  8581. "PACKAGE.md",
  8582. "THIRD-PARTY-NOTICES.TXT",
  8583. "buildTransitive/net461/System.Diagnostics.EventLog.targets",
  8584. "buildTransitive/net462/_._",
  8585. "buildTransitive/net6.0/_._",
  8586. "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
  8587. "lib/net462/System.Diagnostics.EventLog.dll",
  8588. "lib/net462/System.Diagnostics.EventLog.xml",
  8589. "lib/net6.0/System.Diagnostics.EventLog.dll",
  8590. "lib/net6.0/System.Diagnostics.EventLog.xml",
  8591. "lib/net7.0/System.Diagnostics.EventLog.dll",
  8592. "lib/net7.0/System.Diagnostics.EventLog.xml",
  8593. "lib/net8.0/System.Diagnostics.EventLog.dll",
  8594. "lib/net8.0/System.Diagnostics.EventLog.xml",
  8595. "lib/netstandard2.0/System.Diagnostics.EventLog.dll",
  8596. "lib/netstandard2.0/System.Diagnostics.EventLog.xml",
  8597. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
  8598. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
  8599. "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
  8600. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
  8601. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
  8602. "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
  8603. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll",
  8604. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll",
  8605. "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml",
  8606. "system.diagnostics.eventlog.8.0.0.nupkg.sha512",
  8607. "system.diagnostics.eventlog.nuspec",
  8608. "useSharedDesignerContext.txt"
  8609. ]
  8610. },
  8611. "System.Diagnostics.Tools/4.0.1": {
  8612. "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==",
  8613. "type": "package",
  8614. "path": "system.diagnostics.tools/4.0.1",
  8615. "files": [
  8616. ".nupkg.metadata",
  8617. ".signature.p7s",
  8618. "ThirdPartyNotices.txt",
  8619. "dotnet_library_license.txt",
  8620. "lib/MonoAndroid10/_._",
  8621. "lib/MonoTouch10/_._",
  8622. "lib/net45/_._",
  8623. "lib/portable-net45+win8+wp8+wpa81/_._",
  8624. "lib/win8/_._",
  8625. "lib/wp80/_._",
  8626. "lib/wpa81/_._",
  8627. "lib/xamarinios10/_._",
  8628. "lib/xamarinmac20/_._",
  8629. "lib/xamarintvos10/_._",
  8630. "lib/xamarinwatchos10/_._",
  8631. "ref/MonoAndroid10/_._",
  8632. "ref/MonoTouch10/_._",
  8633. "ref/net45/_._",
  8634. "ref/netcore50/System.Diagnostics.Tools.dll",
  8635. "ref/netcore50/System.Diagnostics.Tools.xml",
  8636. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  8637. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  8638. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  8639. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  8640. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  8641. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  8642. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  8643. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  8644. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  8645. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  8646. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  8647. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  8648. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  8649. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  8650. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  8651. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  8652. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  8653. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  8654. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  8655. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  8656. "ref/portable-net45+win8+wp8+wpa81/_._",
  8657. "ref/win8/_._",
  8658. "ref/wp80/_._",
  8659. "ref/wpa81/_._",
  8660. "ref/xamarinios10/_._",
  8661. "ref/xamarinmac20/_._",
  8662. "ref/xamarintvos10/_._",
  8663. "ref/xamarinwatchos10/_._",
  8664. "system.diagnostics.tools.4.0.1.nupkg.sha512",
  8665. "system.diagnostics.tools.nuspec"
  8666. ]
  8667. },
  8668. "System.Diagnostics.TraceSource/4.0.0": {
  8669. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  8670. "type": "package",
  8671. "path": "system.diagnostics.tracesource/4.0.0",
  8672. "files": [
  8673. ".nupkg.metadata",
  8674. ".signature.p7s",
  8675. "ThirdPartyNotices.txt",
  8676. "dotnet_library_license.txt",
  8677. "lib/MonoAndroid10/_._",
  8678. "lib/MonoTouch10/_._",
  8679. "lib/net46/System.Diagnostics.TraceSource.dll",
  8680. "lib/xamarinios10/_._",
  8681. "lib/xamarinmac20/_._",
  8682. "lib/xamarintvos10/_._",
  8683. "lib/xamarinwatchos10/_._",
  8684. "ref/MonoAndroid10/_._",
  8685. "ref/MonoTouch10/_._",
  8686. "ref/net46/System.Diagnostics.TraceSource.dll",
  8687. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  8688. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  8689. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  8690. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  8691. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  8692. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  8693. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  8694. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  8695. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  8696. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  8697. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  8698. "ref/xamarinios10/_._",
  8699. "ref/xamarinmac20/_._",
  8700. "ref/xamarintvos10/_._",
  8701. "ref/xamarinwatchos10/_._",
  8702. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  8703. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  8704. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  8705. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  8706. "system.diagnostics.tracesource.nuspec"
  8707. ]
  8708. },
  8709. "System.Diagnostics.Tracing/4.1.0": {
  8710. "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==",
  8711. "type": "package",
  8712. "path": "system.diagnostics.tracing/4.1.0",
  8713. "files": [
  8714. ".nupkg.metadata",
  8715. ".signature.p7s",
  8716. "ThirdPartyNotices.txt",
  8717. "dotnet_library_license.txt",
  8718. "lib/MonoAndroid10/_._",
  8719. "lib/MonoTouch10/_._",
  8720. "lib/net45/_._",
  8721. "lib/net462/System.Diagnostics.Tracing.dll",
  8722. "lib/portable-net45+win8+wpa81/_._",
  8723. "lib/win8/_._",
  8724. "lib/wpa81/_._",
  8725. "lib/xamarinios10/_._",
  8726. "lib/xamarinmac20/_._",
  8727. "lib/xamarintvos10/_._",
  8728. "lib/xamarinwatchos10/_._",
  8729. "ref/MonoAndroid10/_._",
  8730. "ref/MonoTouch10/_._",
  8731. "ref/net45/_._",
  8732. "ref/net462/System.Diagnostics.Tracing.dll",
  8733. "ref/netcore50/System.Diagnostics.Tracing.dll",
  8734. "ref/netcore50/System.Diagnostics.Tracing.xml",
  8735. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  8736. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  8737. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  8738. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  8739. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  8740. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  8741. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  8742. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  8743. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  8744. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  8745. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  8746. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  8747. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  8748. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  8749. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  8750. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  8751. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  8752. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  8753. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  8754. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  8755. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  8756. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  8757. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  8758. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  8759. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  8760. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  8761. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  8762. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  8763. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  8764. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  8765. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  8766. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  8767. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  8768. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  8769. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  8770. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  8771. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  8772. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  8773. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  8774. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  8775. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  8776. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  8777. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  8778. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  8779. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  8780. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  8781. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  8782. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  8783. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  8784. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  8785. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  8786. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  8787. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  8788. "ref/portable-net45+win8+wpa81/_._",
  8789. "ref/win8/_._",
  8790. "ref/wpa81/_._",
  8791. "ref/xamarinios10/_._",
  8792. "ref/xamarinmac20/_._",
  8793. "ref/xamarintvos10/_._",
  8794. "ref/xamarinwatchos10/_._",
  8795. "system.diagnostics.tracing.4.1.0.nupkg.sha512",
  8796. "system.diagnostics.tracing.nuspec"
  8797. ]
  8798. },
  8799. "System.Drawing.Common/6.0.0": {
  8800. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  8801. "type": "package",
  8802. "path": "system.drawing.common/6.0.0",
  8803. "files": [
  8804. ".nupkg.metadata",
  8805. ".signature.p7s",
  8806. "Icon.png",
  8807. "LICENSE.TXT",
  8808. "THIRD-PARTY-NOTICES.TXT",
  8809. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  8810. "buildTransitive/netcoreapp3.1/_._",
  8811. "lib/MonoAndroid10/_._",
  8812. "lib/MonoTouch10/_._",
  8813. "lib/net461/System.Drawing.Common.dll",
  8814. "lib/net461/System.Drawing.Common.xml",
  8815. "lib/net6.0/System.Drawing.Common.dll",
  8816. "lib/net6.0/System.Drawing.Common.xml",
  8817. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  8818. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  8819. "lib/netstandard2.0/System.Drawing.Common.dll",
  8820. "lib/netstandard2.0/System.Drawing.Common.xml",
  8821. "lib/xamarinios10/_._",
  8822. "lib/xamarinmac20/_._",
  8823. "lib/xamarintvos10/_._",
  8824. "lib/xamarinwatchos10/_._",
  8825. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  8826. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  8827. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  8828. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  8829. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  8830. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  8831. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  8832. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  8833. "system.drawing.common.6.0.0.nupkg.sha512",
  8834. "system.drawing.common.nuspec",
  8835. "useSharedDesignerContext.txt"
  8836. ]
  8837. },
  8838. "System.Globalization/4.0.11": {
  8839. "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
  8840. "type": "package",
  8841. "path": "system.globalization/4.0.11",
  8842. "files": [
  8843. ".nupkg.metadata",
  8844. ".signature.p7s",
  8845. "ThirdPartyNotices.txt",
  8846. "dotnet_library_license.txt",
  8847. "lib/MonoAndroid10/_._",
  8848. "lib/MonoTouch10/_._",
  8849. "lib/net45/_._",
  8850. "lib/portable-net45+win8+wp8+wpa81/_._",
  8851. "lib/win8/_._",
  8852. "lib/wp80/_._",
  8853. "lib/wpa81/_._",
  8854. "lib/xamarinios10/_._",
  8855. "lib/xamarinmac20/_._",
  8856. "lib/xamarintvos10/_._",
  8857. "lib/xamarinwatchos10/_._",
  8858. "ref/MonoAndroid10/_._",
  8859. "ref/MonoTouch10/_._",
  8860. "ref/net45/_._",
  8861. "ref/netcore50/System.Globalization.dll",
  8862. "ref/netcore50/System.Globalization.xml",
  8863. "ref/netcore50/de/System.Globalization.xml",
  8864. "ref/netcore50/es/System.Globalization.xml",
  8865. "ref/netcore50/fr/System.Globalization.xml",
  8866. "ref/netcore50/it/System.Globalization.xml",
  8867. "ref/netcore50/ja/System.Globalization.xml",
  8868. "ref/netcore50/ko/System.Globalization.xml",
  8869. "ref/netcore50/ru/System.Globalization.xml",
  8870. "ref/netcore50/zh-hans/System.Globalization.xml",
  8871. "ref/netcore50/zh-hant/System.Globalization.xml",
  8872. "ref/netstandard1.0/System.Globalization.dll",
  8873. "ref/netstandard1.0/System.Globalization.xml",
  8874. "ref/netstandard1.0/de/System.Globalization.xml",
  8875. "ref/netstandard1.0/es/System.Globalization.xml",
  8876. "ref/netstandard1.0/fr/System.Globalization.xml",
  8877. "ref/netstandard1.0/it/System.Globalization.xml",
  8878. "ref/netstandard1.0/ja/System.Globalization.xml",
  8879. "ref/netstandard1.0/ko/System.Globalization.xml",
  8880. "ref/netstandard1.0/ru/System.Globalization.xml",
  8881. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  8882. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  8883. "ref/netstandard1.3/System.Globalization.dll",
  8884. "ref/netstandard1.3/System.Globalization.xml",
  8885. "ref/netstandard1.3/de/System.Globalization.xml",
  8886. "ref/netstandard1.3/es/System.Globalization.xml",
  8887. "ref/netstandard1.3/fr/System.Globalization.xml",
  8888. "ref/netstandard1.3/it/System.Globalization.xml",
  8889. "ref/netstandard1.3/ja/System.Globalization.xml",
  8890. "ref/netstandard1.3/ko/System.Globalization.xml",
  8891. "ref/netstandard1.3/ru/System.Globalization.xml",
  8892. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  8893. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  8894. "ref/portable-net45+win8+wp8+wpa81/_._",
  8895. "ref/win8/_._",
  8896. "ref/wp80/_._",
  8897. "ref/wpa81/_._",
  8898. "ref/xamarinios10/_._",
  8899. "ref/xamarinmac20/_._",
  8900. "ref/xamarintvos10/_._",
  8901. "ref/xamarinwatchos10/_._",
  8902. "system.globalization.4.0.11.nupkg.sha512",
  8903. "system.globalization.nuspec"
  8904. ]
  8905. },
  8906. "System.Globalization.Calendars/4.0.1": {
  8907. "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==",
  8908. "type": "package",
  8909. "path": "system.globalization.calendars/4.0.1",
  8910. "files": [
  8911. ".nupkg.metadata",
  8912. ".signature.p7s",
  8913. "ThirdPartyNotices.txt",
  8914. "dotnet_library_license.txt",
  8915. "lib/MonoAndroid10/_._",
  8916. "lib/MonoTouch10/_._",
  8917. "lib/net46/System.Globalization.Calendars.dll",
  8918. "lib/xamarinios10/_._",
  8919. "lib/xamarinmac20/_._",
  8920. "lib/xamarintvos10/_._",
  8921. "lib/xamarinwatchos10/_._",
  8922. "ref/MonoAndroid10/_._",
  8923. "ref/MonoTouch10/_._",
  8924. "ref/net46/System.Globalization.Calendars.dll",
  8925. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  8926. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  8927. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  8928. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  8929. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  8930. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  8931. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  8932. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  8933. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  8934. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  8935. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  8936. "ref/xamarinios10/_._",
  8937. "ref/xamarinmac20/_._",
  8938. "ref/xamarintvos10/_._",
  8939. "ref/xamarinwatchos10/_._",
  8940. "system.globalization.calendars.4.0.1.nupkg.sha512",
  8941. "system.globalization.calendars.nuspec"
  8942. ]
  8943. },
  8944. "System.Globalization.Extensions/4.0.1": {
  8945. "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==",
  8946. "type": "package",
  8947. "path": "system.globalization.extensions/4.0.1",
  8948. "files": [
  8949. ".nupkg.metadata",
  8950. ".signature.p7s",
  8951. "ThirdPartyNotices.txt",
  8952. "dotnet_library_license.txt",
  8953. "lib/MonoAndroid10/_._",
  8954. "lib/MonoTouch10/_._",
  8955. "lib/net46/System.Globalization.Extensions.dll",
  8956. "lib/xamarinios10/_._",
  8957. "lib/xamarinmac20/_._",
  8958. "lib/xamarintvos10/_._",
  8959. "lib/xamarinwatchos10/_._",
  8960. "ref/MonoAndroid10/_._",
  8961. "ref/MonoTouch10/_._",
  8962. "ref/net46/System.Globalization.Extensions.dll",
  8963. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  8964. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  8965. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  8966. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  8967. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  8968. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  8969. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  8970. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  8971. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  8972. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  8973. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  8974. "ref/xamarinios10/_._",
  8975. "ref/xamarinmac20/_._",
  8976. "ref/xamarintvos10/_._",
  8977. "ref/xamarinwatchos10/_._",
  8978. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8979. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  8980. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8981. "system.globalization.extensions.4.0.1.nupkg.sha512",
  8982. "system.globalization.extensions.nuspec"
  8983. ]
  8984. },
  8985. "System.IdentityModel.Tokens.Jwt/7.4.1": {
  8986. "sha512": "V8T6qCdNI5OEUafOhyOnyuwHlTs56hPE6nQLNDXDNI7MIQO8MGRQVuWOruzEscURXpGbNuRz+m8qFrT8SDeEQA==",
  8987. "type": "package",
  8988. "path": "system.identitymodel.tokens.jwt/7.4.1",
  8989. "files": [
  8990. ".nupkg.metadata",
  8991. ".signature.p7s",
  8992. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  8993. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  8994. "lib/net462/System.IdentityModel.Tokens.Jwt.dll",
  8995. "lib/net462/System.IdentityModel.Tokens.Jwt.xml",
  8996. "lib/net472/System.IdentityModel.Tokens.Jwt.dll",
  8997. "lib/net472/System.IdentityModel.Tokens.Jwt.xml",
  8998. "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll",
  8999. "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml",
  9000. "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll",
  9001. "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml",
  9002. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  9003. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  9004. "system.identitymodel.tokens.jwt.7.4.1.nupkg.sha512",
  9005. "system.identitymodel.tokens.jwt.nuspec"
  9006. ]
  9007. },
  9008. "System.IO/4.3.0": {
  9009. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  9010. "type": "package",
  9011. "path": "system.io/4.3.0",
  9012. "files": [
  9013. ".nupkg.metadata",
  9014. ".signature.p7s",
  9015. "ThirdPartyNotices.txt",
  9016. "dotnet_library_license.txt",
  9017. "lib/MonoAndroid10/_._",
  9018. "lib/MonoTouch10/_._",
  9019. "lib/net45/_._",
  9020. "lib/net462/System.IO.dll",
  9021. "lib/portable-net45+win8+wp8+wpa81/_._",
  9022. "lib/win8/_._",
  9023. "lib/wp80/_._",
  9024. "lib/wpa81/_._",
  9025. "lib/xamarinios10/_._",
  9026. "lib/xamarinmac20/_._",
  9027. "lib/xamarintvos10/_._",
  9028. "lib/xamarinwatchos10/_._",
  9029. "ref/MonoAndroid10/_._",
  9030. "ref/MonoTouch10/_._",
  9031. "ref/net45/_._",
  9032. "ref/net462/System.IO.dll",
  9033. "ref/netcore50/System.IO.dll",
  9034. "ref/netcore50/System.IO.xml",
  9035. "ref/netcore50/de/System.IO.xml",
  9036. "ref/netcore50/es/System.IO.xml",
  9037. "ref/netcore50/fr/System.IO.xml",
  9038. "ref/netcore50/it/System.IO.xml",
  9039. "ref/netcore50/ja/System.IO.xml",
  9040. "ref/netcore50/ko/System.IO.xml",
  9041. "ref/netcore50/ru/System.IO.xml",
  9042. "ref/netcore50/zh-hans/System.IO.xml",
  9043. "ref/netcore50/zh-hant/System.IO.xml",
  9044. "ref/netstandard1.0/System.IO.dll",
  9045. "ref/netstandard1.0/System.IO.xml",
  9046. "ref/netstandard1.0/de/System.IO.xml",
  9047. "ref/netstandard1.0/es/System.IO.xml",
  9048. "ref/netstandard1.0/fr/System.IO.xml",
  9049. "ref/netstandard1.0/it/System.IO.xml",
  9050. "ref/netstandard1.0/ja/System.IO.xml",
  9051. "ref/netstandard1.0/ko/System.IO.xml",
  9052. "ref/netstandard1.0/ru/System.IO.xml",
  9053. "ref/netstandard1.0/zh-hans/System.IO.xml",
  9054. "ref/netstandard1.0/zh-hant/System.IO.xml",
  9055. "ref/netstandard1.3/System.IO.dll",
  9056. "ref/netstandard1.3/System.IO.xml",
  9057. "ref/netstandard1.3/de/System.IO.xml",
  9058. "ref/netstandard1.3/es/System.IO.xml",
  9059. "ref/netstandard1.3/fr/System.IO.xml",
  9060. "ref/netstandard1.3/it/System.IO.xml",
  9061. "ref/netstandard1.3/ja/System.IO.xml",
  9062. "ref/netstandard1.3/ko/System.IO.xml",
  9063. "ref/netstandard1.3/ru/System.IO.xml",
  9064. "ref/netstandard1.3/zh-hans/System.IO.xml",
  9065. "ref/netstandard1.3/zh-hant/System.IO.xml",
  9066. "ref/netstandard1.5/System.IO.dll",
  9067. "ref/netstandard1.5/System.IO.xml",
  9068. "ref/netstandard1.5/de/System.IO.xml",
  9069. "ref/netstandard1.5/es/System.IO.xml",
  9070. "ref/netstandard1.5/fr/System.IO.xml",
  9071. "ref/netstandard1.5/it/System.IO.xml",
  9072. "ref/netstandard1.5/ja/System.IO.xml",
  9073. "ref/netstandard1.5/ko/System.IO.xml",
  9074. "ref/netstandard1.5/ru/System.IO.xml",
  9075. "ref/netstandard1.5/zh-hans/System.IO.xml",
  9076. "ref/netstandard1.5/zh-hant/System.IO.xml",
  9077. "ref/portable-net45+win8+wp8+wpa81/_._",
  9078. "ref/win8/_._",
  9079. "ref/wp80/_._",
  9080. "ref/wpa81/_._",
  9081. "ref/xamarinios10/_._",
  9082. "ref/xamarinmac20/_._",
  9083. "ref/xamarintvos10/_._",
  9084. "ref/xamarinwatchos10/_._",
  9085. "system.io.4.3.0.nupkg.sha512",
  9086. "system.io.nuspec"
  9087. ]
  9088. },
  9089. "System.IO.Compression/4.1.0": {
  9090. "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==",
  9091. "type": "package",
  9092. "path": "system.io.compression/4.1.0",
  9093. "files": [
  9094. ".nupkg.metadata",
  9095. ".signature.p7s",
  9096. "ThirdPartyNotices.txt",
  9097. "dotnet_library_license.txt",
  9098. "lib/MonoAndroid10/_._",
  9099. "lib/MonoTouch10/_._",
  9100. "lib/net45/_._",
  9101. "lib/net46/System.IO.Compression.dll",
  9102. "lib/portable-net45+win8+wpa81/_._",
  9103. "lib/win8/_._",
  9104. "lib/wpa81/_._",
  9105. "lib/xamarinios10/_._",
  9106. "lib/xamarinmac20/_._",
  9107. "lib/xamarintvos10/_._",
  9108. "lib/xamarinwatchos10/_._",
  9109. "ref/MonoAndroid10/_._",
  9110. "ref/MonoTouch10/_._",
  9111. "ref/net45/_._",
  9112. "ref/net46/System.IO.Compression.dll",
  9113. "ref/netcore50/System.IO.Compression.dll",
  9114. "ref/netcore50/System.IO.Compression.xml",
  9115. "ref/netcore50/de/System.IO.Compression.xml",
  9116. "ref/netcore50/es/System.IO.Compression.xml",
  9117. "ref/netcore50/fr/System.IO.Compression.xml",
  9118. "ref/netcore50/it/System.IO.Compression.xml",
  9119. "ref/netcore50/ja/System.IO.Compression.xml",
  9120. "ref/netcore50/ko/System.IO.Compression.xml",
  9121. "ref/netcore50/ru/System.IO.Compression.xml",
  9122. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  9123. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  9124. "ref/netstandard1.1/System.IO.Compression.dll",
  9125. "ref/netstandard1.1/System.IO.Compression.xml",
  9126. "ref/netstandard1.1/de/System.IO.Compression.xml",
  9127. "ref/netstandard1.1/es/System.IO.Compression.xml",
  9128. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  9129. "ref/netstandard1.1/it/System.IO.Compression.xml",
  9130. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  9131. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  9132. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  9133. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  9134. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  9135. "ref/netstandard1.3/System.IO.Compression.dll",
  9136. "ref/netstandard1.3/System.IO.Compression.xml",
  9137. "ref/netstandard1.3/de/System.IO.Compression.xml",
  9138. "ref/netstandard1.3/es/System.IO.Compression.xml",
  9139. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  9140. "ref/netstandard1.3/it/System.IO.Compression.xml",
  9141. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  9142. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  9143. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  9144. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  9145. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  9146. "ref/portable-net45+win8+wpa81/_._",
  9147. "ref/win8/_._",
  9148. "ref/wpa81/_._",
  9149. "ref/xamarinios10/_._",
  9150. "ref/xamarinmac20/_._",
  9151. "ref/xamarintvos10/_._",
  9152. "ref/xamarinwatchos10/_._",
  9153. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  9154. "runtimes/win/lib/net46/System.IO.Compression.dll",
  9155. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  9156. "system.io.compression.4.1.0.nupkg.sha512",
  9157. "system.io.compression.nuspec"
  9158. ]
  9159. },
  9160. "System.IO.Compression.ZipFile/4.0.1": {
  9161. "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==",
  9162. "type": "package",
  9163. "path": "system.io.compression.zipfile/4.0.1",
  9164. "files": [
  9165. ".nupkg.metadata",
  9166. ".signature.p7s",
  9167. "ThirdPartyNotices.txt",
  9168. "dotnet_library_license.txt",
  9169. "lib/MonoAndroid10/_._",
  9170. "lib/MonoTouch10/_._",
  9171. "lib/net46/System.IO.Compression.ZipFile.dll",
  9172. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  9173. "lib/xamarinios10/_._",
  9174. "lib/xamarinmac20/_._",
  9175. "lib/xamarintvos10/_._",
  9176. "lib/xamarinwatchos10/_._",
  9177. "ref/MonoAndroid10/_._",
  9178. "ref/MonoTouch10/_._",
  9179. "ref/net46/System.IO.Compression.ZipFile.dll",
  9180. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  9181. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  9182. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  9183. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  9184. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  9185. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  9186. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  9187. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  9188. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  9189. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  9190. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  9191. "ref/xamarinios10/_._",
  9192. "ref/xamarinmac20/_._",
  9193. "ref/xamarintvos10/_._",
  9194. "ref/xamarinwatchos10/_._",
  9195. "system.io.compression.zipfile.4.0.1.nupkg.sha512",
  9196. "system.io.compression.zipfile.nuspec"
  9197. ]
  9198. },
  9199. "System.IO.FileSystem/4.0.1": {
  9200. "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==",
  9201. "type": "package",
  9202. "path": "system.io.filesystem/4.0.1",
  9203. "files": [
  9204. ".nupkg.metadata",
  9205. ".signature.p7s",
  9206. "ThirdPartyNotices.txt",
  9207. "dotnet_library_license.txt",
  9208. "lib/MonoAndroid10/_._",
  9209. "lib/MonoTouch10/_._",
  9210. "lib/net46/System.IO.FileSystem.dll",
  9211. "lib/xamarinios10/_._",
  9212. "lib/xamarinmac20/_._",
  9213. "lib/xamarintvos10/_._",
  9214. "lib/xamarinwatchos10/_._",
  9215. "ref/MonoAndroid10/_._",
  9216. "ref/MonoTouch10/_._",
  9217. "ref/net46/System.IO.FileSystem.dll",
  9218. "ref/netstandard1.3/System.IO.FileSystem.dll",
  9219. "ref/netstandard1.3/System.IO.FileSystem.xml",
  9220. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  9221. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  9222. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  9223. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  9224. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  9225. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  9226. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  9227. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  9228. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  9229. "ref/xamarinios10/_._",
  9230. "ref/xamarinmac20/_._",
  9231. "ref/xamarintvos10/_._",
  9232. "ref/xamarinwatchos10/_._",
  9233. "system.io.filesystem.4.0.1.nupkg.sha512",
  9234. "system.io.filesystem.nuspec"
  9235. ]
  9236. },
  9237. "System.IO.FileSystem.Primitives/4.0.1": {
  9238. "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==",
  9239. "type": "package",
  9240. "path": "system.io.filesystem.primitives/4.0.1",
  9241. "files": [
  9242. ".nupkg.metadata",
  9243. ".signature.p7s",
  9244. "ThirdPartyNotices.txt",
  9245. "dotnet_library_license.txt",
  9246. "lib/MonoAndroid10/_._",
  9247. "lib/MonoTouch10/_._",
  9248. "lib/net46/System.IO.FileSystem.Primitives.dll",
  9249. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  9250. "lib/xamarinios10/_._",
  9251. "lib/xamarinmac20/_._",
  9252. "lib/xamarintvos10/_._",
  9253. "lib/xamarinwatchos10/_._",
  9254. "ref/MonoAndroid10/_._",
  9255. "ref/MonoTouch10/_._",
  9256. "ref/net46/System.IO.FileSystem.Primitives.dll",
  9257. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  9258. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  9259. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  9260. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  9261. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  9262. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  9263. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  9264. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  9265. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  9266. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  9267. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  9268. "ref/xamarinios10/_._",
  9269. "ref/xamarinmac20/_._",
  9270. "ref/xamarintvos10/_._",
  9271. "ref/xamarinwatchos10/_._",
  9272. "system.io.filesystem.primitives.4.0.1.nupkg.sha512",
  9273. "system.io.filesystem.primitives.nuspec"
  9274. ]
  9275. },
  9276. "System.IO.Pipelines/5.0.1": {
  9277. "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  9278. "type": "package",
  9279. "path": "system.io.pipelines/5.0.1",
  9280. "files": [
  9281. ".nupkg.metadata",
  9282. ".signature.p7s",
  9283. "Icon.png",
  9284. "LICENSE.TXT",
  9285. "THIRD-PARTY-NOTICES.TXT",
  9286. "lib/net461/System.IO.Pipelines.dll",
  9287. "lib/net461/System.IO.Pipelines.xml",
  9288. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  9289. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  9290. "lib/netstandard1.3/System.IO.Pipelines.dll",
  9291. "lib/netstandard1.3/System.IO.Pipelines.xml",
  9292. "lib/netstandard2.0/System.IO.Pipelines.dll",
  9293. "lib/netstandard2.0/System.IO.Pipelines.xml",
  9294. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  9295. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  9296. "system.io.pipelines.5.0.1.nupkg.sha512",
  9297. "system.io.pipelines.nuspec",
  9298. "useSharedDesignerContext.txt",
  9299. "version.txt"
  9300. ]
  9301. },
  9302. "System.Linq/4.1.0": {
  9303. "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
  9304. "type": "package",
  9305. "path": "system.linq/4.1.0",
  9306. "files": [
  9307. ".nupkg.metadata",
  9308. ".signature.p7s",
  9309. "ThirdPartyNotices.txt",
  9310. "dotnet_library_license.txt",
  9311. "lib/MonoAndroid10/_._",
  9312. "lib/MonoTouch10/_._",
  9313. "lib/net45/_._",
  9314. "lib/net463/System.Linq.dll",
  9315. "lib/netcore50/System.Linq.dll",
  9316. "lib/netstandard1.6/System.Linq.dll",
  9317. "lib/portable-net45+win8+wp8+wpa81/_._",
  9318. "lib/win8/_._",
  9319. "lib/wp80/_._",
  9320. "lib/wpa81/_._",
  9321. "lib/xamarinios10/_._",
  9322. "lib/xamarinmac20/_._",
  9323. "lib/xamarintvos10/_._",
  9324. "lib/xamarinwatchos10/_._",
  9325. "ref/MonoAndroid10/_._",
  9326. "ref/MonoTouch10/_._",
  9327. "ref/net45/_._",
  9328. "ref/net463/System.Linq.dll",
  9329. "ref/netcore50/System.Linq.dll",
  9330. "ref/netcore50/System.Linq.xml",
  9331. "ref/netcore50/de/System.Linq.xml",
  9332. "ref/netcore50/es/System.Linq.xml",
  9333. "ref/netcore50/fr/System.Linq.xml",
  9334. "ref/netcore50/it/System.Linq.xml",
  9335. "ref/netcore50/ja/System.Linq.xml",
  9336. "ref/netcore50/ko/System.Linq.xml",
  9337. "ref/netcore50/ru/System.Linq.xml",
  9338. "ref/netcore50/zh-hans/System.Linq.xml",
  9339. "ref/netcore50/zh-hant/System.Linq.xml",
  9340. "ref/netstandard1.0/System.Linq.dll",
  9341. "ref/netstandard1.0/System.Linq.xml",
  9342. "ref/netstandard1.0/de/System.Linq.xml",
  9343. "ref/netstandard1.0/es/System.Linq.xml",
  9344. "ref/netstandard1.0/fr/System.Linq.xml",
  9345. "ref/netstandard1.0/it/System.Linq.xml",
  9346. "ref/netstandard1.0/ja/System.Linq.xml",
  9347. "ref/netstandard1.0/ko/System.Linq.xml",
  9348. "ref/netstandard1.0/ru/System.Linq.xml",
  9349. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  9350. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  9351. "ref/netstandard1.6/System.Linq.dll",
  9352. "ref/netstandard1.6/System.Linq.xml",
  9353. "ref/netstandard1.6/de/System.Linq.xml",
  9354. "ref/netstandard1.6/es/System.Linq.xml",
  9355. "ref/netstandard1.6/fr/System.Linq.xml",
  9356. "ref/netstandard1.6/it/System.Linq.xml",
  9357. "ref/netstandard1.6/ja/System.Linq.xml",
  9358. "ref/netstandard1.6/ko/System.Linq.xml",
  9359. "ref/netstandard1.6/ru/System.Linq.xml",
  9360. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  9361. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  9362. "ref/portable-net45+win8+wp8+wpa81/_._",
  9363. "ref/win8/_._",
  9364. "ref/wp80/_._",
  9365. "ref/wpa81/_._",
  9366. "ref/xamarinios10/_._",
  9367. "ref/xamarinmac20/_._",
  9368. "ref/xamarintvos10/_._",
  9369. "ref/xamarinwatchos10/_._",
  9370. "system.linq.4.1.0.nupkg.sha512",
  9371. "system.linq.nuspec"
  9372. ]
  9373. },
  9374. "System.Linq.Expressions/4.1.0": {
  9375. "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
  9376. "type": "package",
  9377. "path": "system.linq.expressions/4.1.0",
  9378. "files": [
  9379. ".nupkg.metadata",
  9380. ".signature.p7s",
  9381. "ThirdPartyNotices.txt",
  9382. "dotnet_library_license.txt",
  9383. "lib/MonoAndroid10/_._",
  9384. "lib/MonoTouch10/_._",
  9385. "lib/net45/_._",
  9386. "lib/net463/System.Linq.Expressions.dll",
  9387. "lib/netcore50/System.Linq.Expressions.dll",
  9388. "lib/netstandard1.6/System.Linq.Expressions.dll",
  9389. "lib/portable-net45+win8+wp8+wpa81/_._",
  9390. "lib/win8/_._",
  9391. "lib/wp80/_._",
  9392. "lib/wpa81/_._",
  9393. "lib/xamarinios10/_._",
  9394. "lib/xamarinmac20/_._",
  9395. "lib/xamarintvos10/_._",
  9396. "lib/xamarinwatchos10/_._",
  9397. "ref/MonoAndroid10/_._",
  9398. "ref/MonoTouch10/_._",
  9399. "ref/net45/_._",
  9400. "ref/net463/System.Linq.Expressions.dll",
  9401. "ref/netcore50/System.Linq.Expressions.dll",
  9402. "ref/netcore50/System.Linq.Expressions.xml",
  9403. "ref/netcore50/de/System.Linq.Expressions.xml",
  9404. "ref/netcore50/es/System.Linq.Expressions.xml",
  9405. "ref/netcore50/fr/System.Linq.Expressions.xml",
  9406. "ref/netcore50/it/System.Linq.Expressions.xml",
  9407. "ref/netcore50/ja/System.Linq.Expressions.xml",
  9408. "ref/netcore50/ko/System.Linq.Expressions.xml",
  9409. "ref/netcore50/ru/System.Linq.Expressions.xml",
  9410. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  9411. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  9412. "ref/netstandard1.0/System.Linq.Expressions.dll",
  9413. "ref/netstandard1.0/System.Linq.Expressions.xml",
  9414. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  9415. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  9416. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  9417. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  9418. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  9419. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  9420. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  9421. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  9422. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  9423. "ref/netstandard1.3/System.Linq.Expressions.dll",
  9424. "ref/netstandard1.3/System.Linq.Expressions.xml",
  9425. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  9426. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  9427. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  9428. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  9429. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  9430. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  9431. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  9432. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  9433. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  9434. "ref/netstandard1.6/System.Linq.Expressions.dll",
  9435. "ref/netstandard1.6/System.Linq.Expressions.xml",
  9436. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  9437. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  9438. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  9439. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  9440. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  9441. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  9442. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  9443. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  9444. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  9445. "ref/portable-net45+win8+wp8+wpa81/_._",
  9446. "ref/win8/_._",
  9447. "ref/wp80/_._",
  9448. "ref/wpa81/_._",
  9449. "ref/xamarinios10/_._",
  9450. "ref/xamarinmac20/_._",
  9451. "ref/xamarintvos10/_._",
  9452. "ref/xamarinwatchos10/_._",
  9453. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  9454. "system.linq.expressions.4.1.0.nupkg.sha512",
  9455. "system.linq.expressions.nuspec"
  9456. ]
  9457. },
  9458. "System.Memory/4.5.5": {
  9459. "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
  9460. "type": "package",
  9461. "path": "system.memory/4.5.5",
  9462. "files": [
  9463. ".nupkg.metadata",
  9464. ".signature.p7s",
  9465. "LICENSE.TXT",
  9466. "THIRD-PARTY-NOTICES.TXT",
  9467. "lib/net461/System.Memory.dll",
  9468. "lib/net461/System.Memory.xml",
  9469. "lib/netcoreapp2.1/_._",
  9470. "lib/netstandard1.1/System.Memory.dll",
  9471. "lib/netstandard1.1/System.Memory.xml",
  9472. "lib/netstandard2.0/System.Memory.dll",
  9473. "lib/netstandard2.0/System.Memory.xml",
  9474. "ref/netcoreapp2.1/_._",
  9475. "system.memory.4.5.5.nupkg.sha512",
  9476. "system.memory.nuspec",
  9477. "useSharedDesignerContext.txt",
  9478. "version.txt"
  9479. ]
  9480. },
  9481. "System.Net.Http/4.1.0": {
  9482. "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==",
  9483. "type": "package",
  9484. "path": "system.net.http/4.1.0",
  9485. "files": [
  9486. ".nupkg.metadata",
  9487. ".signature.p7s",
  9488. "ThirdPartyNotices.txt",
  9489. "dotnet_library_license.txt",
  9490. "lib/Xamarinmac20/_._",
  9491. "lib/monoandroid10/_._",
  9492. "lib/monotouch10/_._",
  9493. "lib/net45/_._",
  9494. "lib/net46/System.Net.Http.dll",
  9495. "lib/portable-net45+win8+wpa81/_._",
  9496. "lib/win8/_._",
  9497. "lib/wpa81/_._",
  9498. "lib/xamarinios10/_._",
  9499. "lib/xamarintvos10/_._",
  9500. "lib/xamarinwatchos10/_._",
  9501. "ref/Xamarinmac20/_._",
  9502. "ref/monoandroid10/_._",
  9503. "ref/monotouch10/_._",
  9504. "ref/net45/_._",
  9505. "ref/net46/System.Net.Http.dll",
  9506. "ref/net46/System.Net.Http.xml",
  9507. "ref/net46/de/System.Net.Http.xml",
  9508. "ref/net46/es/System.Net.Http.xml",
  9509. "ref/net46/fr/System.Net.Http.xml",
  9510. "ref/net46/it/System.Net.Http.xml",
  9511. "ref/net46/ja/System.Net.Http.xml",
  9512. "ref/net46/ko/System.Net.Http.xml",
  9513. "ref/net46/ru/System.Net.Http.xml",
  9514. "ref/net46/zh-hans/System.Net.Http.xml",
  9515. "ref/net46/zh-hant/System.Net.Http.xml",
  9516. "ref/netcore50/System.Net.Http.dll",
  9517. "ref/netcore50/System.Net.Http.xml",
  9518. "ref/netcore50/de/System.Net.Http.xml",
  9519. "ref/netcore50/es/System.Net.Http.xml",
  9520. "ref/netcore50/fr/System.Net.Http.xml",
  9521. "ref/netcore50/it/System.Net.Http.xml",
  9522. "ref/netcore50/ja/System.Net.Http.xml",
  9523. "ref/netcore50/ko/System.Net.Http.xml",
  9524. "ref/netcore50/ru/System.Net.Http.xml",
  9525. "ref/netcore50/zh-hans/System.Net.Http.xml",
  9526. "ref/netcore50/zh-hant/System.Net.Http.xml",
  9527. "ref/netstandard1.1/System.Net.Http.dll",
  9528. "ref/netstandard1.1/System.Net.Http.xml",
  9529. "ref/netstandard1.1/de/System.Net.Http.xml",
  9530. "ref/netstandard1.1/es/System.Net.Http.xml",
  9531. "ref/netstandard1.1/fr/System.Net.Http.xml",
  9532. "ref/netstandard1.1/it/System.Net.Http.xml",
  9533. "ref/netstandard1.1/ja/System.Net.Http.xml",
  9534. "ref/netstandard1.1/ko/System.Net.Http.xml",
  9535. "ref/netstandard1.1/ru/System.Net.Http.xml",
  9536. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  9537. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  9538. "ref/netstandard1.3/System.Net.Http.dll",
  9539. "ref/netstandard1.3/System.Net.Http.xml",
  9540. "ref/netstandard1.3/de/System.Net.Http.xml",
  9541. "ref/netstandard1.3/es/System.Net.Http.xml",
  9542. "ref/netstandard1.3/fr/System.Net.Http.xml",
  9543. "ref/netstandard1.3/it/System.Net.Http.xml",
  9544. "ref/netstandard1.3/ja/System.Net.Http.xml",
  9545. "ref/netstandard1.3/ko/System.Net.Http.xml",
  9546. "ref/netstandard1.3/ru/System.Net.Http.xml",
  9547. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  9548. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  9549. "ref/portable-net45+win8+wpa81/_._",
  9550. "ref/win8/_._",
  9551. "ref/wpa81/_._",
  9552. "ref/xamarinios10/_._",
  9553. "ref/xamarintvos10/_._",
  9554. "ref/xamarinwatchos10/_._",
  9555. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  9556. "runtimes/win/lib/net46/System.Net.Http.dll",
  9557. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  9558. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  9559. "system.net.http.4.1.0.nupkg.sha512",
  9560. "system.net.http.nuspec"
  9561. ]
  9562. },
  9563. "System.Net.NameResolution/4.0.0": {
  9564. "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==",
  9565. "type": "package",
  9566. "path": "system.net.nameresolution/4.0.0",
  9567. "files": [
  9568. ".nupkg.metadata",
  9569. ".signature.p7s",
  9570. "ThirdPartyNotices.txt",
  9571. "dotnet_library_license.txt",
  9572. "lib/MonoAndroid10/_._",
  9573. "lib/MonoTouch10/_._",
  9574. "lib/net46/System.Net.NameResolution.dll",
  9575. "lib/xamarinios10/_._",
  9576. "lib/xamarinmac20/_._",
  9577. "lib/xamarintvos10/_._",
  9578. "lib/xamarinwatchos10/_._",
  9579. "ref/MonoAndroid10/_._",
  9580. "ref/MonoTouch10/_._",
  9581. "ref/net46/System.Net.NameResolution.dll",
  9582. "ref/netstandard1.3/System.Net.NameResolution.dll",
  9583. "ref/netstandard1.3/System.Net.NameResolution.xml",
  9584. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  9585. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  9586. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  9587. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  9588. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  9589. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  9590. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  9591. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  9592. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  9593. "ref/xamarinios10/_._",
  9594. "ref/xamarinmac20/_._",
  9595. "ref/xamarintvos10/_._",
  9596. "ref/xamarinwatchos10/_._",
  9597. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  9598. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  9599. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  9600. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  9601. "system.net.nameresolution.4.0.0.nupkg.sha512",
  9602. "system.net.nameresolution.nuspec"
  9603. ]
  9604. },
  9605. "System.Net.Primitives/4.0.11": {
  9606. "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==",
  9607. "type": "package",
  9608. "path": "system.net.primitives/4.0.11",
  9609. "files": [
  9610. ".nupkg.metadata",
  9611. ".signature.p7s",
  9612. "ThirdPartyNotices.txt",
  9613. "dotnet_library_license.txt",
  9614. "lib/MonoAndroid10/_._",
  9615. "lib/MonoTouch10/_._",
  9616. "lib/net45/_._",
  9617. "lib/portable-net45+win8+wp8+wpa81/_._",
  9618. "lib/win8/_._",
  9619. "lib/wp80/_._",
  9620. "lib/wpa81/_._",
  9621. "lib/xamarinios10/_._",
  9622. "lib/xamarinmac20/_._",
  9623. "lib/xamarintvos10/_._",
  9624. "lib/xamarinwatchos10/_._",
  9625. "ref/MonoAndroid10/_._",
  9626. "ref/MonoTouch10/_._",
  9627. "ref/net45/_._",
  9628. "ref/netcore50/System.Net.Primitives.dll",
  9629. "ref/netcore50/System.Net.Primitives.xml",
  9630. "ref/netcore50/de/System.Net.Primitives.xml",
  9631. "ref/netcore50/es/System.Net.Primitives.xml",
  9632. "ref/netcore50/fr/System.Net.Primitives.xml",
  9633. "ref/netcore50/it/System.Net.Primitives.xml",
  9634. "ref/netcore50/ja/System.Net.Primitives.xml",
  9635. "ref/netcore50/ko/System.Net.Primitives.xml",
  9636. "ref/netcore50/ru/System.Net.Primitives.xml",
  9637. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  9638. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  9639. "ref/netstandard1.0/System.Net.Primitives.dll",
  9640. "ref/netstandard1.0/System.Net.Primitives.xml",
  9641. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  9642. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  9643. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  9644. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  9645. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  9646. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  9647. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  9648. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  9649. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  9650. "ref/netstandard1.1/System.Net.Primitives.dll",
  9651. "ref/netstandard1.1/System.Net.Primitives.xml",
  9652. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  9653. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  9654. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  9655. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  9656. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  9657. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  9658. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  9659. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  9660. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  9661. "ref/netstandard1.3/System.Net.Primitives.dll",
  9662. "ref/netstandard1.3/System.Net.Primitives.xml",
  9663. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  9664. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  9665. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  9666. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  9667. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  9668. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  9669. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  9670. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  9671. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  9672. "ref/portable-net45+win8+wp8+wpa81/_._",
  9673. "ref/win8/_._",
  9674. "ref/wp80/_._",
  9675. "ref/wpa81/_._",
  9676. "ref/xamarinios10/_._",
  9677. "ref/xamarinmac20/_._",
  9678. "ref/xamarintvos10/_._",
  9679. "ref/xamarinwatchos10/_._",
  9680. "system.net.primitives.4.0.11.nupkg.sha512",
  9681. "system.net.primitives.nuspec"
  9682. ]
  9683. },
  9684. "System.Net.Sockets/4.1.0": {
  9685. "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==",
  9686. "type": "package",
  9687. "path": "system.net.sockets/4.1.0",
  9688. "files": [
  9689. ".nupkg.metadata",
  9690. ".signature.p7s",
  9691. "ThirdPartyNotices.txt",
  9692. "dotnet_library_license.txt",
  9693. "lib/MonoAndroid10/_._",
  9694. "lib/MonoTouch10/_._",
  9695. "lib/net46/System.Net.Sockets.dll",
  9696. "lib/xamarinios10/_._",
  9697. "lib/xamarinmac20/_._",
  9698. "lib/xamarintvos10/_._",
  9699. "lib/xamarinwatchos10/_._",
  9700. "ref/MonoAndroid10/_._",
  9701. "ref/MonoTouch10/_._",
  9702. "ref/net46/System.Net.Sockets.dll",
  9703. "ref/netstandard1.3/System.Net.Sockets.dll",
  9704. "ref/netstandard1.3/System.Net.Sockets.xml",
  9705. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  9706. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  9707. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  9708. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  9709. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  9710. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  9711. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  9712. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  9713. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  9714. "ref/xamarinios10/_._",
  9715. "ref/xamarinmac20/_._",
  9716. "ref/xamarintvos10/_._",
  9717. "ref/xamarinwatchos10/_._",
  9718. "system.net.sockets.4.1.0.nupkg.sha512",
  9719. "system.net.sockets.nuspec"
  9720. ]
  9721. },
  9722. "System.ObjectModel/4.0.12": {
  9723. "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
  9724. "type": "package",
  9725. "path": "system.objectmodel/4.0.12",
  9726. "files": [
  9727. ".nupkg.metadata",
  9728. ".signature.p7s",
  9729. "ThirdPartyNotices.txt",
  9730. "dotnet_library_license.txt",
  9731. "lib/MonoAndroid10/_._",
  9732. "lib/MonoTouch10/_._",
  9733. "lib/net45/_._",
  9734. "lib/netcore50/System.ObjectModel.dll",
  9735. "lib/netstandard1.3/System.ObjectModel.dll",
  9736. "lib/portable-net45+win8+wp8+wpa81/_._",
  9737. "lib/win8/_._",
  9738. "lib/wp80/_._",
  9739. "lib/wpa81/_._",
  9740. "lib/xamarinios10/_._",
  9741. "lib/xamarinmac20/_._",
  9742. "lib/xamarintvos10/_._",
  9743. "lib/xamarinwatchos10/_._",
  9744. "ref/MonoAndroid10/_._",
  9745. "ref/MonoTouch10/_._",
  9746. "ref/net45/_._",
  9747. "ref/netcore50/System.ObjectModel.dll",
  9748. "ref/netcore50/System.ObjectModel.xml",
  9749. "ref/netcore50/de/System.ObjectModel.xml",
  9750. "ref/netcore50/es/System.ObjectModel.xml",
  9751. "ref/netcore50/fr/System.ObjectModel.xml",
  9752. "ref/netcore50/it/System.ObjectModel.xml",
  9753. "ref/netcore50/ja/System.ObjectModel.xml",
  9754. "ref/netcore50/ko/System.ObjectModel.xml",
  9755. "ref/netcore50/ru/System.ObjectModel.xml",
  9756. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  9757. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  9758. "ref/netstandard1.0/System.ObjectModel.dll",
  9759. "ref/netstandard1.0/System.ObjectModel.xml",
  9760. "ref/netstandard1.0/de/System.ObjectModel.xml",
  9761. "ref/netstandard1.0/es/System.ObjectModel.xml",
  9762. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  9763. "ref/netstandard1.0/it/System.ObjectModel.xml",
  9764. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  9765. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  9766. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  9767. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  9768. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  9769. "ref/netstandard1.3/System.ObjectModel.dll",
  9770. "ref/netstandard1.3/System.ObjectModel.xml",
  9771. "ref/netstandard1.3/de/System.ObjectModel.xml",
  9772. "ref/netstandard1.3/es/System.ObjectModel.xml",
  9773. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  9774. "ref/netstandard1.3/it/System.ObjectModel.xml",
  9775. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  9776. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  9777. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  9778. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  9779. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  9780. "ref/portable-net45+win8+wp8+wpa81/_._",
  9781. "ref/win8/_._",
  9782. "ref/wp80/_._",
  9783. "ref/wpa81/_._",
  9784. "ref/xamarinios10/_._",
  9785. "ref/xamarinmac20/_._",
  9786. "ref/xamarintvos10/_._",
  9787. "ref/xamarinwatchos10/_._",
  9788. "system.objectmodel.4.0.12.nupkg.sha512",
  9789. "system.objectmodel.nuspec"
  9790. ]
  9791. },
  9792. "System.Reflection/4.3.0": {
  9793. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  9794. "type": "package",
  9795. "path": "system.reflection/4.3.0",
  9796. "files": [
  9797. ".nupkg.metadata",
  9798. ".signature.p7s",
  9799. "ThirdPartyNotices.txt",
  9800. "dotnet_library_license.txt",
  9801. "lib/MonoAndroid10/_._",
  9802. "lib/MonoTouch10/_._",
  9803. "lib/net45/_._",
  9804. "lib/net462/System.Reflection.dll",
  9805. "lib/portable-net45+win8+wp8+wpa81/_._",
  9806. "lib/win8/_._",
  9807. "lib/wp80/_._",
  9808. "lib/wpa81/_._",
  9809. "lib/xamarinios10/_._",
  9810. "lib/xamarinmac20/_._",
  9811. "lib/xamarintvos10/_._",
  9812. "lib/xamarinwatchos10/_._",
  9813. "ref/MonoAndroid10/_._",
  9814. "ref/MonoTouch10/_._",
  9815. "ref/net45/_._",
  9816. "ref/net462/System.Reflection.dll",
  9817. "ref/netcore50/System.Reflection.dll",
  9818. "ref/netcore50/System.Reflection.xml",
  9819. "ref/netcore50/de/System.Reflection.xml",
  9820. "ref/netcore50/es/System.Reflection.xml",
  9821. "ref/netcore50/fr/System.Reflection.xml",
  9822. "ref/netcore50/it/System.Reflection.xml",
  9823. "ref/netcore50/ja/System.Reflection.xml",
  9824. "ref/netcore50/ko/System.Reflection.xml",
  9825. "ref/netcore50/ru/System.Reflection.xml",
  9826. "ref/netcore50/zh-hans/System.Reflection.xml",
  9827. "ref/netcore50/zh-hant/System.Reflection.xml",
  9828. "ref/netstandard1.0/System.Reflection.dll",
  9829. "ref/netstandard1.0/System.Reflection.xml",
  9830. "ref/netstandard1.0/de/System.Reflection.xml",
  9831. "ref/netstandard1.0/es/System.Reflection.xml",
  9832. "ref/netstandard1.0/fr/System.Reflection.xml",
  9833. "ref/netstandard1.0/it/System.Reflection.xml",
  9834. "ref/netstandard1.0/ja/System.Reflection.xml",
  9835. "ref/netstandard1.0/ko/System.Reflection.xml",
  9836. "ref/netstandard1.0/ru/System.Reflection.xml",
  9837. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  9838. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  9839. "ref/netstandard1.3/System.Reflection.dll",
  9840. "ref/netstandard1.3/System.Reflection.xml",
  9841. "ref/netstandard1.3/de/System.Reflection.xml",
  9842. "ref/netstandard1.3/es/System.Reflection.xml",
  9843. "ref/netstandard1.3/fr/System.Reflection.xml",
  9844. "ref/netstandard1.3/it/System.Reflection.xml",
  9845. "ref/netstandard1.3/ja/System.Reflection.xml",
  9846. "ref/netstandard1.3/ko/System.Reflection.xml",
  9847. "ref/netstandard1.3/ru/System.Reflection.xml",
  9848. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  9849. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  9850. "ref/netstandard1.5/System.Reflection.dll",
  9851. "ref/netstandard1.5/System.Reflection.xml",
  9852. "ref/netstandard1.5/de/System.Reflection.xml",
  9853. "ref/netstandard1.5/es/System.Reflection.xml",
  9854. "ref/netstandard1.5/fr/System.Reflection.xml",
  9855. "ref/netstandard1.5/it/System.Reflection.xml",
  9856. "ref/netstandard1.5/ja/System.Reflection.xml",
  9857. "ref/netstandard1.5/ko/System.Reflection.xml",
  9858. "ref/netstandard1.5/ru/System.Reflection.xml",
  9859. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  9860. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  9861. "ref/portable-net45+win8+wp8+wpa81/_._",
  9862. "ref/win8/_._",
  9863. "ref/wp80/_._",
  9864. "ref/wpa81/_._",
  9865. "ref/xamarinios10/_._",
  9866. "ref/xamarinmac20/_._",
  9867. "ref/xamarintvos10/_._",
  9868. "ref/xamarinwatchos10/_._",
  9869. "system.reflection.4.3.0.nupkg.sha512",
  9870. "system.reflection.nuspec"
  9871. ]
  9872. },
  9873. "System.Reflection.Emit/4.0.1": {
  9874. "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
  9875. "type": "package",
  9876. "path": "system.reflection.emit/4.0.1",
  9877. "files": [
  9878. ".nupkg.metadata",
  9879. "ThirdPartyNotices.txt",
  9880. "dotnet_library_license.txt",
  9881. "lib/MonoAndroid10/_._",
  9882. "lib/net45/_._",
  9883. "lib/netcore50/System.Reflection.Emit.dll",
  9884. "lib/netstandard1.3/System.Reflection.Emit.dll",
  9885. "lib/xamarinmac20/_._",
  9886. "ref/MonoAndroid10/_._",
  9887. "ref/net45/_._",
  9888. "ref/netstandard1.1/System.Reflection.Emit.dll",
  9889. "ref/netstandard1.1/System.Reflection.Emit.xml",
  9890. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  9891. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  9892. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  9893. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  9894. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  9895. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  9896. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  9897. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  9898. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  9899. "ref/xamarinmac20/_._",
  9900. "system.reflection.emit.4.0.1.nupkg.sha512",
  9901. "system.reflection.emit.nuspec"
  9902. ]
  9903. },
  9904. "System.Reflection.Emit.ILGeneration/4.0.1": {
  9905. "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
  9906. "type": "package",
  9907. "path": "system.reflection.emit.ilgeneration/4.0.1",
  9908. "files": [
  9909. ".nupkg.metadata",
  9910. ".signature.p7s",
  9911. "ThirdPartyNotices.txt",
  9912. "dotnet_library_license.txt",
  9913. "lib/net45/_._",
  9914. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  9915. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  9916. "lib/portable-net45+wp8/_._",
  9917. "lib/wp80/_._",
  9918. "ref/net45/_._",
  9919. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  9920. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  9921. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  9922. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  9923. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  9924. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  9925. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  9926. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  9927. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  9928. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  9929. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  9930. "ref/portable-net45+wp8/_._",
  9931. "ref/wp80/_._",
  9932. "runtimes/aot/lib/netcore50/_._",
  9933. "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512",
  9934. "system.reflection.emit.ilgeneration.nuspec"
  9935. ]
  9936. },
  9937. "System.Reflection.Emit.Lightweight/4.0.1": {
  9938. "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
  9939. "type": "package",
  9940. "path": "system.reflection.emit.lightweight/4.0.1",
  9941. "files": [
  9942. ".nupkg.metadata",
  9943. ".signature.p7s",
  9944. "ThirdPartyNotices.txt",
  9945. "dotnet_library_license.txt",
  9946. "lib/net45/_._",
  9947. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  9948. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  9949. "lib/portable-net45+wp8/_._",
  9950. "lib/wp80/_._",
  9951. "ref/net45/_._",
  9952. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  9953. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  9954. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  9955. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  9956. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  9957. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  9958. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  9959. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  9960. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  9961. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  9962. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  9963. "ref/portable-net45+wp8/_._",
  9964. "ref/wp80/_._",
  9965. "runtimes/aot/lib/netcore50/_._",
  9966. "system.reflection.emit.lightweight.4.0.1.nupkg.sha512",
  9967. "system.reflection.emit.lightweight.nuspec"
  9968. ]
  9969. },
  9970. "System.Reflection.Extensions/4.0.1": {
  9971. "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
  9972. "type": "package",
  9973. "path": "system.reflection.extensions/4.0.1",
  9974. "files": [
  9975. ".nupkg.metadata",
  9976. ".signature.p7s",
  9977. "ThirdPartyNotices.txt",
  9978. "dotnet_library_license.txt",
  9979. "lib/MonoAndroid10/_._",
  9980. "lib/MonoTouch10/_._",
  9981. "lib/net45/_._",
  9982. "lib/portable-net45+win8+wp8+wpa81/_._",
  9983. "lib/win8/_._",
  9984. "lib/wp80/_._",
  9985. "lib/wpa81/_._",
  9986. "lib/xamarinios10/_._",
  9987. "lib/xamarinmac20/_._",
  9988. "lib/xamarintvos10/_._",
  9989. "lib/xamarinwatchos10/_._",
  9990. "ref/MonoAndroid10/_._",
  9991. "ref/MonoTouch10/_._",
  9992. "ref/net45/_._",
  9993. "ref/netcore50/System.Reflection.Extensions.dll",
  9994. "ref/netcore50/System.Reflection.Extensions.xml",
  9995. "ref/netcore50/de/System.Reflection.Extensions.xml",
  9996. "ref/netcore50/es/System.Reflection.Extensions.xml",
  9997. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  9998. "ref/netcore50/it/System.Reflection.Extensions.xml",
  9999. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  10000. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  10001. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  10002. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  10003. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  10004. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  10005. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  10006. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  10007. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  10008. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  10009. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  10010. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  10011. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  10012. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  10013. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  10014. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  10015. "ref/portable-net45+win8+wp8+wpa81/_._",
  10016. "ref/win8/_._",
  10017. "ref/wp80/_._",
  10018. "ref/wpa81/_._",
  10019. "ref/xamarinios10/_._",
  10020. "ref/xamarinmac20/_._",
  10021. "ref/xamarintvos10/_._",
  10022. "ref/xamarinwatchos10/_._",
  10023. "system.reflection.extensions.4.0.1.nupkg.sha512",
  10024. "system.reflection.extensions.nuspec"
  10025. ]
  10026. },
  10027. "System.Reflection.Primitives/4.3.0": {
  10028. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  10029. "type": "package",
  10030. "path": "system.reflection.primitives/4.3.0",
  10031. "files": [
  10032. ".nupkg.metadata",
  10033. ".signature.p7s",
  10034. "ThirdPartyNotices.txt",
  10035. "dotnet_library_license.txt",
  10036. "lib/MonoAndroid10/_._",
  10037. "lib/MonoTouch10/_._",
  10038. "lib/net45/_._",
  10039. "lib/portable-net45+win8+wp8+wpa81/_._",
  10040. "lib/win8/_._",
  10041. "lib/wp80/_._",
  10042. "lib/wpa81/_._",
  10043. "lib/xamarinios10/_._",
  10044. "lib/xamarinmac20/_._",
  10045. "lib/xamarintvos10/_._",
  10046. "lib/xamarinwatchos10/_._",
  10047. "ref/MonoAndroid10/_._",
  10048. "ref/MonoTouch10/_._",
  10049. "ref/net45/_._",
  10050. "ref/netcore50/System.Reflection.Primitives.dll",
  10051. "ref/netcore50/System.Reflection.Primitives.xml",
  10052. "ref/netcore50/de/System.Reflection.Primitives.xml",
  10053. "ref/netcore50/es/System.Reflection.Primitives.xml",
  10054. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  10055. "ref/netcore50/it/System.Reflection.Primitives.xml",
  10056. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  10057. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  10058. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  10059. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  10060. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  10061. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  10062. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  10063. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  10064. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  10065. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  10066. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  10067. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  10068. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  10069. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  10070. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  10071. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  10072. "ref/portable-net45+win8+wp8+wpa81/_._",
  10073. "ref/win8/_._",
  10074. "ref/wp80/_._",
  10075. "ref/wpa81/_._",
  10076. "ref/xamarinios10/_._",
  10077. "ref/xamarinmac20/_._",
  10078. "ref/xamarintvos10/_._",
  10079. "ref/xamarinwatchos10/_._",
  10080. "system.reflection.primitives.4.3.0.nupkg.sha512",
  10081. "system.reflection.primitives.nuspec"
  10082. ]
  10083. },
  10084. "System.Reflection.TypeExtensions/4.1.0": {
  10085. "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
  10086. "type": "package",
  10087. "path": "system.reflection.typeextensions/4.1.0",
  10088. "files": [
  10089. ".nupkg.metadata",
  10090. ".signature.p7s",
  10091. "ThirdPartyNotices.txt",
  10092. "dotnet_library_license.txt",
  10093. "lib/MonoAndroid10/_._",
  10094. "lib/MonoTouch10/_._",
  10095. "lib/net46/System.Reflection.TypeExtensions.dll",
  10096. "lib/net462/System.Reflection.TypeExtensions.dll",
  10097. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  10098. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  10099. "lib/xamarinios10/_._",
  10100. "lib/xamarinmac20/_._",
  10101. "lib/xamarintvos10/_._",
  10102. "lib/xamarinwatchos10/_._",
  10103. "ref/MonoAndroid10/_._",
  10104. "ref/MonoTouch10/_._",
  10105. "ref/net46/System.Reflection.TypeExtensions.dll",
  10106. "ref/net462/System.Reflection.TypeExtensions.dll",
  10107. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  10108. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  10109. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  10110. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  10111. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  10112. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  10113. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  10114. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  10115. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  10116. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  10117. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  10118. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  10119. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  10120. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  10121. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  10122. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  10123. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  10124. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  10125. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  10126. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  10127. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  10128. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  10129. "ref/xamarinios10/_._",
  10130. "ref/xamarinmac20/_._",
  10131. "ref/xamarintvos10/_._",
  10132. "ref/xamarinwatchos10/_._",
  10133. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  10134. "system.reflection.typeextensions.4.1.0.nupkg.sha512",
  10135. "system.reflection.typeextensions.nuspec"
  10136. ]
  10137. },
  10138. "System.Resources.ResourceManager/4.0.1": {
  10139. "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
  10140. "type": "package",
  10141. "path": "system.resources.resourcemanager/4.0.1",
  10142. "files": [
  10143. ".nupkg.metadata",
  10144. ".signature.p7s",
  10145. "ThirdPartyNotices.txt",
  10146. "dotnet_library_license.txt",
  10147. "lib/MonoAndroid10/_._",
  10148. "lib/MonoTouch10/_._",
  10149. "lib/net45/_._",
  10150. "lib/portable-net45+win8+wp8+wpa81/_._",
  10151. "lib/win8/_._",
  10152. "lib/wp80/_._",
  10153. "lib/wpa81/_._",
  10154. "lib/xamarinios10/_._",
  10155. "lib/xamarinmac20/_._",
  10156. "lib/xamarintvos10/_._",
  10157. "lib/xamarinwatchos10/_._",
  10158. "ref/MonoAndroid10/_._",
  10159. "ref/MonoTouch10/_._",
  10160. "ref/net45/_._",
  10161. "ref/netcore50/System.Resources.ResourceManager.dll",
  10162. "ref/netcore50/System.Resources.ResourceManager.xml",
  10163. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  10164. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  10165. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  10166. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  10167. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  10168. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  10169. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  10170. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  10171. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  10172. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  10173. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  10174. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  10175. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  10176. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  10177. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  10178. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  10179. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  10180. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  10181. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  10182. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  10183. "ref/portable-net45+win8+wp8+wpa81/_._",
  10184. "ref/win8/_._",
  10185. "ref/wp80/_._",
  10186. "ref/wpa81/_._",
  10187. "ref/xamarinios10/_._",
  10188. "ref/xamarinmac20/_._",
  10189. "ref/xamarintvos10/_._",
  10190. "ref/xamarinwatchos10/_._",
  10191. "system.resources.resourcemanager.4.0.1.nupkg.sha512",
  10192. "system.resources.resourcemanager.nuspec"
  10193. ]
  10194. },
  10195. "System.Runtime/4.3.0": {
  10196. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  10197. "type": "package",
  10198. "path": "system.runtime/4.3.0",
  10199. "files": [
  10200. ".nupkg.metadata",
  10201. ".signature.p7s",
  10202. "ThirdPartyNotices.txt",
  10203. "dotnet_library_license.txt",
  10204. "lib/MonoAndroid10/_._",
  10205. "lib/MonoTouch10/_._",
  10206. "lib/net45/_._",
  10207. "lib/net462/System.Runtime.dll",
  10208. "lib/portable-net45+win8+wp80+wpa81/_._",
  10209. "lib/win8/_._",
  10210. "lib/wp80/_._",
  10211. "lib/wpa81/_._",
  10212. "lib/xamarinios10/_._",
  10213. "lib/xamarinmac20/_._",
  10214. "lib/xamarintvos10/_._",
  10215. "lib/xamarinwatchos10/_._",
  10216. "ref/MonoAndroid10/_._",
  10217. "ref/MonoTouch10/_._",
  10218. "ref/net45/_._",
  10219. "ref/net462/System.Runtime.dll",
  10220. "ref/netcore50/System.Runtime.dll",
  10221. "ref/netcore50/System.Runtime.xml",
  10222. "ref/netcore50/de/System.Runtime.xml",
  10223. "ref/netcore50/es/System.Runtime.xml",
  10224. "ref/netcore50/fr/System.Runtime.xml",
  10225. "ref/netcore50/it/System.Runtime.xml",
  10226. "ref/netcore50/ja/System.Runtime.xml",
  10227. "ref/netcore50/ko/System.Runtime.xml",
  10228. "ref/netcore50/ru/System.Runtime.xml",
  10229. "ref/netcore50/zh-hans/System.Runtime.xml",
  10230. "ref/netcore50/zh-hant/System.Runtime.xml",
  10231. "ref/netstandard1.0/System.Runtime.dll",
  10232. "ref/netstandard1.0/System.Runtime.xml",
  10233. "ref/netstandard1.0/de/System.Runtime.xml",
  10234. "ref/netstandard1.0/es/System.Runtime.xml",
  10235. "ref/netstandard1.0/fr/System.Runtime.xml",
  10236. "ref/netstandard1.0/it/System.Runtime.xml",
  10237. "ref/netstandard1.0/ja/System.Runtime.xml",
  10238. "ref/netstandard1.0/ko/System.Runtime.xml",
  10239. "ref/netstandard1.0/ru/System.Runtime.xml",
  10240. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  10241. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  10242. "ref/netstandard1.2/System.Runtime.dll",
  10243. "ref/netstandard1.2/System.Runtime.xml",
  10244. "ref/netstandard1.2/de/System.Runtime.xml",
  10245. "ref/netstandard1.2/es/System.Runtime.xml",
  10246. "ref/netstandard1.2/fr/System.Runtime.xml",
  10247. "ref/netstandard1.2/it/System.Runtime.xml",
  10248. "ref/netstandard1.2/ja/System.Runtime.xml",
  10249. "ref/netstandard1.2/ko/System.Runtime.xml",
  10250. "ref/netstandard1.2/ru/System.Runtime.xml",
  10251. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  10252. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  10253. "ref/netstandard1.3/System.Runtime.dll",
  10254. "ref/netstandard1.3/System.Runtime.xml",
  10255. "ref/netstandard1.3/de/System.Runtime.xml",
  10256. "ref/netstandard1.3/es/System.Runtime.xml",
  10257. "ref/netstandard1.3/fr/System.Runtime.xml",
  10258. "ref/netstandard1.3/it/System.Runtime.xml",
  10259. "ref/netstandard1.3/ja/System.Runtime.xml",
  10260. "ref/netstandard1.3/ko/System.Runtime.xml",
  10261. "ref/netstandard1.3/ru/System.Runtime.xml",
  10262. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  10263. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  10264. "ref/netstandard1.5/System.Runtime.dll",
  10265. "ref/netstandard1.5/System.Runtime.xml",
  10266. "ref/netstandard1.5/de/System.Runtime.xml",
  10267. "ref/netstandard1.5/es/System.Runtime.xml",
  10268. "ref/netstandard1.5/fr/System.Runtime.xml",
  10269. "ref/netstandard1.5/it/System.Runtime.xml",
  10270. "ref/netstandard1.5/ja/System.Runtime.xml",
  10271. "ref/netstandard1.5/ko/System.Runtime.xml",
  10272. "ref/netstandard1.5/ru/System.Runtime.xml",
  10273. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  10274. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  10275. "ref/portable-net45+win8+wp80+wpa81/_._",
  10276. "ref/win8/_._",
  10277. "ref/wp80/_._",
  10278. "ref/wpa81/_._",
  10279. "ref/xamarinios10/_._",
  10280. "ref/xamarinmac20/_._",
  10281. "ref/xamarintvos10/_._",
  10282. "ref/xamarinwatchos10/_._",
  10283. "system.runtime.4.3.0.nupkg.sha512",
  10284. "system.runtime.nuspec"
  10285. ]
  10286. },
  10287. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  10288. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  10289. "type": "package",
  10290. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  10291. "files": [
  10292. ".nupkg.metadata",
  10293. ".signature.p7s",
  10294. "Icon.png",
  10295. "LICENSE.TXT",
  10296. "THIRD-PARTY-NOTICES.TXT",
  10297. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  10298. "buildTransitive/netcoreapp3.1/_._",
  10299. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  10300. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  10301. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  10302. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  10303. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  10304. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  10305. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  10306. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  10307. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  10308. "system.runtime.compilerservices.unsafe.nuspec",
  10309. "useSharedDesignerContext.txt"
  10310. ]
  10311. },
  10312. "System.Runtime.Extensions/4.1.0": {
  10313. "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
  10314. "type": "package",
  10315. "path": "system.runtime.extensions/4.1.0",
  10316. "files": [
  10317. ".nupkg.metadata",
  10318. ".signature.p7s",
  10319. "ThirdPartyNotices.txt",
  10320. "dotnet_library_license.txt",
  10321. "lib/MonoAndroid10/_._",
  10322. "lib/MonoTouch10/_._",
  10323. "lib/net45/_._",
  10324. "lib/net462/System.Runtime.Extensions.dll",
  10325. "lib/portable-net45+win8+wp8+wpa81/_._",
  10326. "lib/win8/_._",
  10327. "lib/wp80/_._",
  10328. "lib/wpa81/_._",
  10329. "lib/xamarinios10/_._",
  10330. "lib/xamarinmac20/_._",
  10331. "lib/xamarintvos10/_._",
  10332. "lib/xamarinwatchos10/_._",
  10333. "ref/MonoAndroid10/_._",
  10334. "ref/MonoTouch10/_._",
  10335. "ref/net45/_._",
  10336. "ref/net462/System.Runtime.Extensions.dll",
  10337. "ref/netcore50/System.Runtime.Extensions.dll",
  10338. "ref/netcore50/System.Runtime.Extensions.xml",
  10339. "ref/netcore50/de/System.Runtime.Extensions.xml",
  10340. "ref/netcore50/es/System.Runtime.Extensions.xml",
  10341. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  10342. "ref/netcore50/it/System.Runtime.Extensions.xml",
  10343. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  10344. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  10345. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  10346. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  10347. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  10348. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  10349. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  10350. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  10351. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  10352. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  10353. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  10354. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  10355. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  10356. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  10357. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  10358. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  10359. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  10360. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  10361. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  10362. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  10363. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  10364. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  10365. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  10366. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  10367. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  10368. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  10369. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  10370. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  10371. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  10372. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  10373. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  10374. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  10375. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  10376. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  10377. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  10378. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  10379. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  10380. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  10381. "ref/portable-net45+win8+wp8+wpa81/_._",
  10382. "ref/win8/_._",
  10383. "ref/wp80/_._",
  10384. "ref/wpa81/_._",
  10385. "ref/xamarinios10/_._",
  10386. "ref/xamarinmac20/_._",
  10387. "ref/xamarintvos10/_._",
  10388. "ref/xamarinwatchos10/_._",
  10389. "system.runtime.extensions.4.1.0.nupkg.sha512",
  10390. "system.runtime.extensions.nuspec"
  10391. ]
  10392. },
  10393. "System.Runtime.Handles/4.0.1": {
  10394. "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==",
  10395. "type": "package",
  10396. "path": "system.runtime.handles/4.0.1",
  10397. "files": [
  10398. ".nupkg.metadata",
  10399. ".signature.p7s",
  10400. "ThirdPartyNotices.txt",
  10401. "dotnet_library_license.txt",
  10402. "lib/MonoAndroid10/_._",
  10403. "lib/MonoTouch10/_._",
  10404. "lib/net46/_._",
  10405. "lib/xamarinios10/_._",
  10406. "lib/xamarinmac20/_._",
  10407. "lib/xamarintvos10/_._",
  10408. "lib/xamarinwatchos10/_._",
  10409. "ref/MonoAndroid10/_._",
  10410. "ref/MonoTouch10/_._",
  10411. "ref/net46/_._",
  10412. "ref/netstandard1.3/System.Runtime.Handles.dll",
  10413. "ref/netstandard1.3/System.Runtime.Handles.xml",
  10414. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  10415. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  10416. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  10417. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  10418. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  10419. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  10420. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  10421. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  10422. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  10423. "ref/xamarinios10/_._",
  10424. "ref/xamarinmac20/_._",
  10425. "ref/xamarintvos10/_._",
  10426. "ref/xamarinwatchos10/_._",
  10427. "system.runtime.handles.4.0.1.nupkg.sha512",
  10428. "system.runtime.handles.nuspec"
  10429. ]
  10430. },
  10431. "System.Runtime.InteropServices/4.1.0": {
  10432. "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==",
  10433. "type": "package",
  10434. "path": "system.runtime.interopservices/4.1.0",
  10435. "files": [
  10436. ".nupkg.metadata",
  10437. ".signature.p7s",
  10438. "ThirdPartyNotices.txt",
  10439. "dotnet_library_license.txt",
  10440. "lib/MonoAndroid10/_._",
  10441. "lib/MonoTouch10/_._",
  10442. "lib/net45/_._",
  10443. "lib/net462/System.Runtime.InteropServices.dll",
  10444. "lib/portable-net45+win8+wpa81/_._",
  10445. "lib/win8/_._",
  10446. "lib/wpa81/_._",
  10447. "lib/xamarinios10/_._",
  10448. "lib/xamarinmac20/_._",
  10449. "lib/xamarintvos10/_._",
  10450. "lib/xamarinwatchos10/_._",
  10451. "ref/MonoAndroid10/_._",
  10452. "ref/MonoTouch10/_._",
  10453. "ref/net45/_._",
  10454. "ref/net462/System.Runtime.InteropServices.dll",
  10455. "ref/netcore50/System.Runtime.InteropServices.dll",
  10456. "ref/netcore50/System.Runtime.InteropServices.xml",
  10457. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  10458. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  10459. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  10460. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  10461. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  10462. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  10463. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  10464. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  10465. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  10466. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  10467. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  10468. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  10469. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  10470. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  10471. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  10472. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  10473. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  10474. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  10475. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  10476. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  10477. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  10478. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  10479. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  10480. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  10481. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  10482. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  10483. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  10484. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  10485. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  10486. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  10487. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  10488. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  10489. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  10490. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  10491. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  10492. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  10493. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  10494. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  10495. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  10496. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  10497. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  10498. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  10499. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  10500. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  10501. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  10502. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  10503. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  10504. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  10505. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  10506. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  10507. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  10508. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  10509. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  10510. "ref/portable-net45+win8+wpa81/_._",
  10511. "ref/win8/_._",
  10512. "ref/wpa81/_._",
  10513. "ref/xamarinios10/_._",
  10514. "ref/xamarinmac20/_._",
  10515. "ref/xamarintvos10/_._",
  10516. "ref/xamarinwatchos10/_._",
  10517. "system.runtime.interopservices.4.1.0.nupkg.sha512",
  10518. "system.runtime.interopservices.nuspec"
  10519. ]
  10520. },
  10521. "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
  10522. "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==",
  10523. "type": "package",
  10524. "path": "system.runtime.interopservices.runtimeinformation/4.0.0",
  10525. "files": [
  10526. ".nupkg.metadata",
  10527. "ThirdPartyNotices.txt",
  10528. "dotnet_library_license.txt",
  10529. "lib/MonoAndroid10/_._",
  10530. "lib/MonoTouch10/_._",
  10531. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10532. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  10533. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  10534. "lib/xamarinios10/_._",
  10535. "lib/xamarinmac20/_._",
  10536. "lib/xamarintvos10/_._",
  10537. "lib/xamarinwatchos10/_._",
  10538. "ref/MonoAndroid10/_._",
  10539. "ref/MonoTouch10/_._",
  10540. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10541. "ref/xamarinios10/_._",
  10542. "ref/xamarinmac20/_._",
  10543. "ref/xamarintvos10/_._",
  10544. "ref/xamarinwatchos10/_._",
  10545. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10546. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10547. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10548. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10549. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10550. "system.runtime.interopservices.runtimeinformation.4.0.0.nupkg.sha512",
  10551. "system.runtime.interopservices.runtimeinformation.nuspec"
  10552. ]
  10553. },
  10554. "System.Runtime.Numerics/4.0.1": {
  10555. "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==",
  10556. "type": "package",
  10557. "path": "system.runtime.numerics/4.0.1",
  10558. "files": [
  10559. ".nupkg.metadata",
  10560. ".signature.p7s",
  10561. "ThirdPartyNotices.txt",
  10562. "dotnet_library_license.txt",
  10563. "lib/MonoAndroid10/_._",
  10564. "lib/MonoTouch10/_._",
  10565. "lib/net45/_._",
  10566. "lib/netcore50/System.Runtime.Numerics.dll",
  10567. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  10568. "lib/portable-net45+win8+wpa81/_._",
  10569. "lib/win8/_._",
  10570. "lib/wpa81/_._",
  10571. "lib/xamarinios10/_._",
  10572. "lib/xamarinmac20/_._",
  10573. "lib/xamarintvos10/_._",
  10574. "lib/xamarinwatchos10/_._",
  10575. "ref/MonoAndroid10/_._",
  10576. "ref/MonoTouch10/_._",
  10577. "ref/net45/_._",
  10578. "ref/netcore50/System.Runtime.Numerics.dll",
  10579. "ref/netcore50/System.Runtime.Numerics.xml",
  10580. "ref/netcore50/de/System.Runtime.Numerics.xml",
  10581. "ref/netcore50/es/System.Runtime.Numerics.xml",
  10582. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  10583. "ref/netcore50/it/System.Runtime.Numerics.xml",
  10584. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  10585. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  10586. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  10587. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  10588. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  10589. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  10590. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  10591. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  10592. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  10593. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  10594. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  10595. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  10596. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  10597. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  10598. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  10599. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  10600. "ref/portable-net45+win8+wpa81/_._",
  10601. "ref/win8/_._",
  10602. "ref/wpa81/_._",
  10603. "ref/xamarinios10/_._",
  10604. "ref/xamarinmac20/_._",
  10605. "ref/xamarintvos10/_._",
  10606. "ref/xamarinwatchos10/_._",
  10607. "system.runtime.numerics.4.0.1.nupkg.sha512",
  10608. "system.runtime.numerics.nuspec"
  10609. ]
  10610. },
  10611. "System.Security.AccessControl/6.0.0": {
  10612. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  10613. "type": "package",
  10614. "path": "system.security.accesscontrol/6.0.0",
  10615. "files": [
  10616. ".nupkg.metadata",
  10617. ".signature.p7s",
  10618. "Icon.png",
  10619. "LICENSE.TXT",
  10620. "THIRD-PARTY-NOTICES.TXT",
  10621. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  10622. "buildTransitive/netcoreapp3.1/_._",
  10623. "lib/net461/System.Security.AccessControl.dll",
  10624. "lib/net461/System.Security.AccessControl.xml",
  10625. "lib/net6.0/System.Security.AccessControl.dll",
  10626. "lib/net6.0/System.Security.AccessControl.xml",
  10627. "lib/netstandard2.0/System.Security.AccessControl.dll",
  10628. "lib/netstandard2.0/System.Security.AccessControl.xml",
  10629. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  10630. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  10631. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  10632. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  10633. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  10634. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  10635. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  10636. "system.security.accesscontrol.nuspec",
  10637. "useSharedDesignerContext.txt"
  10638. ]
  10639. },
  10640. "System.Security.Cryptography.Algorithms/4.2.0": {
  10641. "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==",
  10642. "type": "package",
  10643. "path": "system.security.cryptography.algorithms/4.2.0",
  10644. "files": [
  10645. ".nupkg.metadata",
  10646. ".signature.p7s",
  10647. "ThirdPartyNotices.txt",
  10648. "dotnet_library_license.txt",
  10649. "lib/MonoAndroid10/_._",
  10650. "lib/MonoTouch10/_._",
  10651. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  10652. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  10653. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  10654. "lib/xamarinios10/_._",
  10655. "lib/xamarinmac20/_._",
  10656. "lib/xamarintvos10/_._",
  10657. "lib/xamarinwatchos10/_._",
  10658. "ref/MonoAndroid10/_._",
  10659. "ref/MonoTouch10/_._",
  10660. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  10661. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  10662. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  10663. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  10664. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  10665. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10666. "ref/xamarinios10/_._",
  10667. "ref/xamarinmac20/_._",
  10668. "ref/xamarintvos10/_._",
  10669. "ref/xamarinwatchos10/_._",
  10670. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10671. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  10672. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  10673. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  10674. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  10675. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10676. "system.security.cryptography.algorithms.4.2.0.nupkg.sha512",
  10677. "system.security.cryptography.algorithms.nuspec"
  10678. ]
  10679. },
  10680. "System.Security.Cryptography.Cng/4.5.0": {
  10681. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  10682. "type": "package",
  10683. "path": "system.security.cryptography.cng/4.5.0",
  10684. "files": [
  10685. ".nupkg.metadata",
  10686. ".signature.p7s",
  10687. "LICENSE.TXT",
  10688. "THIRD-PARTY-NOTICES.TXT",
  10689. "lib/MonoAndroid10/_._",
  10690. "lib/MonoTouch10/_._",
  10691. "lib/net46/System.Security.Cryptography.Cng.dll",
  10692. "lib/net461/System.Security.Cryptography.Cng.dll",
  10693. "lib/net462/System.Security.Cryptography.Cng.dll",
  10694. "lib/net47/System.Security.Cryptography.Cng.dll",
  10695. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10696. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10697. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10698. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10699. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10700. "lib/uap10.0.16299/_._",
  10701. "lib/xamarinios10/_._",
  10702. "lib/xamarinmac20/_._",
  10703. "lib/xamarintvos10/_._",
  10704. "lib/xamarinwatchos10/_._",
  10705. "ref/MonoAndroid10/_._",
  10706. "ref/MonoTouch10/_._",
  10707. "ref/net46/System.Security.Cryptography.Cng.dll",
  10708. "ref/net461/System.Security.Cryptography.Cng.dll",
  10709. "ref/net461/System.Security.Cryptography.Cng.xml",
  10710. "ref/net462/System.Security.Cryptography.Cng.dll",
  10711. "ref/net462/System.Security.Cryptography.Cng.xml",
  10712. "ref/net47/System.Security.Cryptography.Cng.dll",
  10713. "ref/net47/System.Security.Cryptography.Cng.xml",
  10714. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10715. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  10716. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10717. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  10718. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10719. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10720. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10721. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10722. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  10723. "ref/uap10.0.16299/_._",
  10724. "ref/xamarinios10/_._",
  10725. "ref/xamarinmac20/_._",
  10726. "ref/xamarintvos10/_._",
  10727. "ref/xamarinwatchos10/_._",
  10728. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  10729. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  10730. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  10731. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  10732. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10733. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10734. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10735. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10736. "runtimes/win/lib/uap10.0.16299/_._",
  10737. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  10738. "system.security.cryptography.cng.nuspec",
  10739. "useSharedDesignerContext.txt",
  10740. "version.txt"
  10741. ]
  10742. },
  10743. "System.Security.Cryptography.Csp/4.0.0": {
  10744. "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==",
  10745. "type": "package",
  10746. "path": "system.security.cryptography.csp/4.0.0",
  10747. "files": [
  10748. ".nupkg.metadata",
  10749. "ThirdPartyNotices.txt",
  10750. "dotnet_library_license.txt",
  10751. "lib/MonoAndroid10/_._",
  10752. "lib/MonoTouch10/_._",
  10753. "lib/net46/System.Security.Cryptography.Csp.dll",
  10754. "lib/xamarinios10/_._",
  10755. "lib/xamarinmac20/_._",
  10756. "lib/xamarintvos10/_._",
  10757. "lib/xamarinwatchos10/_._",
  10758. "ref/MonoAndroid10/_._",
  10759. "ref/MonoTouch10/_._",
  10760. "ref/net46/System.Security.Cryptography.Csp.dll",
  10761. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10762. "ref/xamarinios10/_._",
  10763. "ref/xamarinmac20/_._",
  10764. "ref/xamarintvos10/_._",
  10765. "ref/xamarinwatchos10/_._",
  10766. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10767. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  10768. "runtimes/win/lib/netcore50/_._",
  10769. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10770. "system.security.cryptography.csp.4.0.0.nupkg.sha512",
  10771. "system.security.cryptography.csp.nuspec"
  10772. ]
  10773. },
  10774. "System.Security.Cryptography.Encoding/4.0.0": {
  10775. "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==",
  10776. "type": "package",
  10777. "path": "system.security.cryptography.encoding/4.0.0",
  10778. "files": [
  10779. ".nupkg.metadata",
  10780. ".signature.p7s",
  10781. "ThirdPartyNotices.txt",
  10782. "dotnet_library_license.txt",
  10783. "lib/MonoAndroid10/_._",
  10784. "lib/MonoTouch10/_._",
  10785. "lib/net46/System.Security.Cryptography.Encoding.dll",
  10786. "lib/xamarinios10/_._",
  10787. "lib/xamarinmac20/_._",
  10788. "lib/xamarintvos10/_._",
  10789. "lib/xamarinwatchos10/_._",
  10790. "ref/MonoAndroid10/_._",
  10791. "ref/MonoTouch10/_._",
  10792. "ref/net46/System.Security.Cryptography.Encoding.dll",
  10793. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10794. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  10795. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  10796. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  10797. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  10798. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  10799. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  10800. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  10801. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  10802. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  10803. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  10804. "ref/xamarinios10/_._",
  10805. "ref/xamarinmac20/_._",
  10806. "ref/xamarintvos10/_._",
  10807. "ref/xamarinwatchos10/_._",
  10808. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10809. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  10810. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10811. "system.security.cryptography.encoding.4.0.0.nupkg.sha512",
  10812. "system.security.cryptography.encoding.nuspec"
  10813. ]
  10814. },
  10815. "System.Security.Cryptography.OpenSsl/4.0.0": {
  10816. "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==",
  10817. "type": "package",
  10818. "path": "system.security.cryptography.openssl/4.0.0",
  10819. "files": [
  10820. ".nupkg.metadata",
  10821. "ThirdPartyNotices.txt",
  10822. "dotnet_library_license.txt",
  10823. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10824. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10825. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10826. "system.security.cryptography.openssl.4.0.0.nupkg.sha512",
  10827. "system.security.cryptography.openssl.nuspec"
  10828. ]
  10829. },
  10830. "System.Security.Cryptography.Primitives/4.0.0": {
  10831. "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==",
  10832. "type": "package",
  10833. "path": "system.security.cryptography.primitives/4.0.0",
  10834. "files": [
  10835. ".nupkg.metadata",
  10836. ".signature.p7s",
  10837. "ThirdPartyNotices.txt",
  10838. "dotnet_library_license.txt",
  10839. "lib/MonoAndroid10/_._",
  10840. "lib/MonoTouch10/_._",
  10841. "lib/net46/System.Security.Cryptography.Primitives.dll",
  10842. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10843. "lib/xamarinios10/_._",
  10844. "lib/xamarinmac20/_._",
  10845. "lib/xamarintvos10/_._",
  10846. "lib/xamarinwatchos10/_._",
  10847. "ref/MonoAndroid10/_._",
  10848. "ref/MonoTouch10/_._",
  10849. "ref/net46/System.Security.Cryptography.Primitives.dll",
  10850. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10851. "ref/xamarinios10/_._",
  10852. "ref/xamarinmac20/_._",
  10853. "ref/xamarintvos10/_._",
  10854. "ref/xamarinwatchos10/_._",
  10855. "system.security.cryptography.primitives.4.0.0.nupkg.sha512",
  10856. "system.security.cryptography.primitives.nuspec"
  10857. ]
  10858. },
  10859. "System.Security.Cryptography.ProtectedData/6.0.0": {
  10860. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  10861. "type": "package",
  10862. "path": "system.security.cryptography.protecteddata/6.0.0",
  10863. "files": [
  10864. ".nupkg.metadata",
  10865. ".signature.p7s",
  10866. "Icon.png",
  10867. "LICENSE.TXT",
  10868. "THIRD-PARTY-NOTICES.TXT",
  10869. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  10870. "buildTransitive/netcoreapp3.1/_._",
  10871. "lib/MonoAndroid10/_._",
  10872. "lib/MonoTouch10/_._",
  10873. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10874. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  10875. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  10876. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  10877. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10878. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10879. "lib/xamarinios10/_._",
  10880. "lib/xamarinmac20/_._",
  10881. "lib/xamarintvos10/_._",
  10882. "lib/xamarinwatchos10/_._",
  10883. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10884. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  10885. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  10886. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  10887. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10888. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10889. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  10890. "system.security.cryptography.protecteddata.nuspec",
  10891. "useSharedDesignerContext.txt"
  10892. ]
  10893. },
  10894. "System.Security.Cryptography.X509Certificates/4.1.0": {
  10895. "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==",
  10896. "type": "package",
  10897. "path": "system.security.cryptography.x509certificates/4.1.0",
  10898. "files": [
  10899. ".nupkg.metadata",
  10900. ".signature.p7s",
  10901. "ThirdPartyNotices.txt",
  10902. "dotnet_library_license.txt",
  10903. "lib/MonoAndroid10/_._",
  10904. "lib/MonoTouch10/_._",
  10905. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10906. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10907. "lib/xamarinios10/_._",
  10908. "lib/xamarinmac20/_._",
  10909. "lib/xamarintvos10/_._",
  10910. "lib/xamarinwatchos10/_._",
  10911. "ref/MonoAndroid10/_._",
  10912. "ref/MonoTouch10/_._",
  10913. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  10914. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  10915. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  10916. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  10917. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  10918. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  10919. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  10920. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  10921. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  10922. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  10923. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  10924. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10925. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10926. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  10927. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  10928. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  10929. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  10930. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  10931. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  10932. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  10933. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  10934. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  10935. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10936. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10937. "ref/xamarinios10/_._",
  10938. "ref/xamarinmac20/_._",
  10939. "ref/xamarintvos10/_._",
  10940. "ref/xamarinwatchos10/_._",
  10941. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10942. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10943. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10944. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  10945. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10946. "system.security.cryptography.x509certificates.4.1.0.nupkg.sha512",
  10947. "system.security.cryptography.x509certificates.nuspec"
  10948. ]
  10949. },
  10950. "System.Security.Permissions/6.0.0": {
  10951. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  10952. "type": "package",
  10953. "path": "system.security.permissions/6.0.0",
  10954. "files": [
  10955. ".nupkg.metadata",
  10956. ".signature.p7s",
  10957. "Icon.png",
  10958. "LICENSE.TXT",
  10959. "THIRD-PARTY-NOTICES.TXT",
  10960. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  10961. "buildTransitive/netcoreapp3.1/_._",
  10962. "lib/net461/System.Security.Permissions.dll",
  10963. "lib/net461/System.Security.Permissions.xml",
  10964. "lib/net5.0/System.Security.Permissions.dll",
  10965. "lib/net5.0/System.Security.Permissions.xml",
  10966. "lib/net6.0/System.Security.Permissions.dll",
  10967. "lib/net6.0/System.Security.Permissions.xml",
  10968. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  10969. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  10970. "lib/netstandard2.0/System.Security.Permissions.dll",
  10971. "lib/netstandard2.0/System.Security.Permissions.xml",
  10972. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  10973. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  10974. "system.security.permissions.6.0.0.nupkg.sha512",
  10975. "system.security.permissions.nuspec",
  10976. "useSharedDesignerContext.txt"
  10977. ]
  10978. },
  10979. "System.Security.Principal.Windows/5.0.0": {
  10980. "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
  10981. "type": "package",
  10982. "path": "system.security.principal.windows/5.0.0",
  10983. "files": [
  10984. ".nupkg.metadata",
  10985. ".signature.p7s",
  10986. "Icon.png",
  10987. "LICENSE.TXT",
  10988. "THIRD-PARTY-NOTICES.TXT",
  10989. "lib/net46/System.Security.Principal.Windows.dll",
  10990. "lib/net461/System.Security.Principal.Windows.dll",
  10991. "lib/net461/System.Security.Principal.Windows.xml",
  10992. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  10993. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  10994. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  10995. "lib/uap10.0.16299/_._",
  10996. "ref/net46/System.Security.Principal.Windows.dll",
  10997. "ref/net461/System.Security.Principal.Windows.dll",
  10998. "ref/net461/System.Security.Principal.Windows.xml",
  10999. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  11000. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  11001. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  11002. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  11003. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  11004. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  11005. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  11006. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  11007. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  11008. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  11009. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  11010. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  11011. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  11012. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  11013. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  11014. "ref/uap10.0.16299/_._",
  11015. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  11016. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  11017. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  11018. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  11019. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  11020. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  11021. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  11022. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  11023. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  11024. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  11025. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  11026. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  11027. "runtimes/win/lib/uap10.0.16299/_._",
  11028. "system.security.principal.windows.5.0.0.nupkg.sha512",
  11029. "system.security.principal.windows.nuspec",
  11030. "useSharedDesignerContext.txt",
  11031. "version.txt"
  11032. ]
  11033. },
  11034. "System.ServiceProcess.ServiceController/8.0.0": {
  11035. "sha512": "jtYVG3bpw2n/NvNnP2g/JLri0D4UtfusTvLeH6cZPNAEjJXJVGspS3wLgVvjNbm+wjaYkFgsXejMTocV1T5DIQ==",
  11036. "type": "package",
  11037. "path": "system.serviceprocess.servicecontroller/8.0.0",
  11038. "files": [
  11039. ".nupkg.metadata",
  11040. ".signature.p7s",
  11041. "Icon.png",
  11042. "LICENSE.TXT",
  11043. "PACKAGE.md",
  11044. "THIRD-PARTY-NOTICES.TXT",
  11045. "buildTransitive/net461/System.ServiceProcess.ServiceController.targets",
  11046. "buildTransitive/net462/_._",
  11047. "buildTransitive/net6.0/_._",
  11048. "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets",
  11049. "lib/net462/System.ServiceProcess.ServiceController.dll",
  11050. "lib/net462/System.ServiceProcess.ServiceController.xml",
  11051. "lib/net6.0/System.ServiceProcess.ServiceController.dll",
  11052. "lib/net6.0/System.ServiceProcess.ServiceController.xml",
  11053. "lib/net7.0/System.ServiceProcess.ServiceController.dll",
  11054. "lib/net7.0/System.ServiceProcess.ServiceController.xml",
  11055. "lib/net8.0/System.ServiceProcess.ServiceController.dll",
  11056. "lib/net8.0/System.ServiceProcess.ServiceController.xml",
  11057. "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll",
  11058. "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml",
  11059. "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll",
  11060. "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.xml",
  11061. "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.dll",
  11062. "runtimes/win/lib/net7.0/System.ServiceProcess.ServiceController.xml",
  11063. "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.dll",
  11064. "runtimes/win/lib/net8.0/System.ServiceProcess.ServiceController.xml",
  11065. "system.serviceprocess.servicecontroller.8.0.0.nupkg.sha512",
  11066. "system.serviceprocess.servicecontroller.nuspec",
  11067. "useSharedDesignerContext.txt"
  11068. ]
  11069. },
  11070. "System.Text.Encoding/4.3.0": {
  11071. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  11072. "type": "package",
  11073. "path": "system.text.encoding/4.3.0",
  11074. "files": [
  11075. ".nupkg.metadata",
  11076. ".signature.p7s",
  11077. "ThirdPartyNotices.txt",
  11078. "dotnet_library_license.txt",
  11079. "lib/MonoAndroid10/_._",
  11080. "lib/MonoTouch10/_._",
  11081. "lib/net45/_._",
  11082. "lib/portable-net45+win8+wp8+wpa81/_._",
  11083. "lib/win8/_._",
  11084. "lib/wp80/_._",
  11085. "lib/wpa81/_._",
  11086. "lib/xamarinios10/_._",
  11087. "lib/xamarinmac20/_._",
  11088. "lib/xamarintvos10/_._",
  11089. "lib/xamarinwatchos10/_._",
  11090. "ref/MonoAndroid10/_._",
  11091. "ref/MonoTouch10/_._",
  11092. "ref/net45/_._",
  11093. "ref/netcore50/System.Text.Encoding.dll",
  11094. "ref/netcore50/System.Text.Encoding.xml",
  11095. "ref/netcore50/de/System.Text.Encoding.xml",
  11096. "ref/netcore50/es/System.Text.Encoding.xml",
  11097. "ref/netcore50/fr/System.Text.Encoding.xml",
  11098. "ref/netcore50/it/System.Text.Encoding.xml",
  11099. "ref/netcore50/ja/System.Text.Encoding.xml",
  11100. "ref/netcore50/ko/System.Text.Encoding.xml",
  11101. "ref/netcore50/ru/System.Text.Encoding.xml",
  11102. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  11103. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  11104. "ref/netstandard1.0/System.Text.Encoding.dll",
  11105. "ref/netstandard1.0/System.Text.Encoding.xml",
  11106. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  11107. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  11108. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  11109. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  11110. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  11111. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  11112. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  11113. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  11114. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  11115. "ref/netstandard1.3/System.Text.Encoding.dll",
  11116. "ref/netstandard1.3/System.Text.Encoding.xml",
  11117. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  11118. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  11119. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  11120. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  11121. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  11122. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  11123. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  11124. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  11125. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  11126. "ref/portable-net45+win8+wp8+wpa81/_._",
  11127. "ref/win8/_._",
  11128. "ref/wp80/_._",
  11129. "ref/wpa81/_._",
  11130. "ref/xamarinios10/_._",
  11131. "ref/xamarinmac20/_._",
  11132. "ref/xamarintvos10/_._",
  11133. "ref/xamarinwatchos10/_._",
  11134. "system.text.encoding.4.3.0.nupkg.sha512",
  11135. "system.text.encoding.nuspec"
  11136. ]
  11137. },
  11138. "System.Text.Encoding.CodePages/4.5.1": {
  11139. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  11140. "type": "package",
  11141. "path": "system.text.encoding.codepages/4.5.1",
  11142. "files": [
  11143. ".nupkg.metadata",
  11144. ".signature.p7s",
  11145. "LICENSE.TXT",
  11146. "THIRD-PARTY-NOTICES.TXT",
  11147. "lib/MonoAndroid10/_._",
  11148. "lib/MonoTouch10/_._",
  11149. "lib/net46/System.Text.Encoding.CodePages.dll",
  11150. "lib/net461/System.Text.Encoding.CodePages.dll",
  11151. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  11152. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  11153. "lib/xamarinios10/_._",
  11154. "lib/xamarinmac20/_._",
  11155. "lib/xamarintvos10/_._",
  11156. "lib/xamarinwatchos10/_._",
  11157. "ref/MonoAndroid10/_._",
  11158. "ref/MonoTouch10/_._",
  11159. "ref/xamarinios10/_._",
  11160. "ref/xamarinmac20/_._",
  11161. "ref/xamarintvos10/_._",
  11162. "ref/xamarinwatchos10/_._",
  11163. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  11164. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  11165. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  11166. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  11167. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  11168. "system.text.encoding.codepages.nuspec",
  11169. "useSharedDesignerContext.txt",
  11170. "version.txt"
  11171. ]
  11172. },
  11173. "System.Text.Encoding.Extensions/4.0.11": {
  11174. "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==",
  11175. "type": "package",
  11176. "path": "system.text.encoding.extensions/4.0.11",
  11177. "files": [
  11178. ".nupkg.metadata",
  11179. ".signature.p7s",
  11180. "ThirdPartyNotices.txt",
  11181. "dotnet_library_license.txt",
  11182. "lib/MonoAndroid10/_._",
  11183. "lib/MonoTouch10/_._",
  11184. "lib/net45/_._",
  11185. "lib/portable-net45+win8+wp8+wpa81/_._",
  11186. "lib/win8/_._",
  11187. "lib/wp80/_._",
  11188. "lib/wpa81/_._",
  11189. "lib/xamarinios10/_._",
  11190. "lib/xamarinmac20/_._",
  11191. "lib/xamarintvos10/_._",
  11192. "lib/xamarinwatchos10/_._",
  11193. "ref/MonoAndroid10/_._",
  11194. "ref/MonoTouch10/_._",
  11195. "ref/net45/_._",
  11196. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  11197. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  11198. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  11199. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  11200. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  11201. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  11202. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  11203. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  11204. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  11205. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  11206. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  11207. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  11208. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  11209. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  11210. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  11211. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  11212. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  11213. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  11214. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  11215. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  11216. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  11217. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  11218. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  11219. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  11220. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  11221. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  11222. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  11223. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  11224. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  11225. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  11226. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  11227. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  11228. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  11229. "ref/portable-net45+win8+wp8+wpa81/_._",
  11230. "ref/win8/_._",
  11231. "ref/wp80/_._",
  11232. "ref/wpa81/_._",
  11233. "ref/xamarinios10/_._",
  11234. "ref/xamarinmac20/_._",
  11235. "ref/xamarintvos10/_._",
  11236. "ref/xamarinwatchos10/_._",
  11237. "system.text.encoding.extensions.4.0.11.nupkg.sha512",
  11238. "system.text.encoding.extensions.nuspec"
  11239. ]
  11240. },
  11241. "System.Text.Encodings.Web/8.0.0": {
  11242. "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
  11243. "type": "package",
  11244. "path": "system.text.encodings.web/8.0.0",
  11245. "files": [
  11246. ".nupkg.metadata",
  11247. ".signature.p7s",
  11248. "Icon.png",
  11249. "LICENSE.TXT",
  11250. "THIRD-PARTY-NOTICES.TXT",
  11251. "buildTransitive/net461/System.Text.Encodings.Web.targets",
  11252. "buildTransitive/net462/_._",
  11253. "buildTransitive/net6.0/_._",
  11254. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  11255. "lib/net462/System.Text.Encodings.Web.dll",
  11256. "lib/net462/System.Text.Encodings.Web.xml",
  11257. "lib/net6.0/System.Text.Encodings.Web.dll",
  11258. "lib/net6.0/System.Text.Encodings.Web.xml",
  11259. "lib/net7.0/System.Text.Encodings.Web.dll",
  11260. "lib/net7.0/System.Text.Encodings.Web.xml",
  11261. "lib/net8.0/System.Text.Encodings.Web.dll",
  11262. "lib/net8.0/System.Text.Encodings.Web.xml",
  11263. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  11264. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  11265. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  11266. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  11267. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
  11268. "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
  11269. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll",
  11270. "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml",
  11271. "system.text.encodings.web.8.0.0.nupkg.sha512",
  11272. "system.text.encodings.web.nuspec",
  11273. "useSharedDesignerContext.txt"
  11274. ]
  11275. },
  11276. "System.Text.Json/8.0.0": {
  11277. "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
  11278. "type": "package",
  11279. "path": "system.text.json/8.0.0",
  11280. "files": [
  11281. ".nupkg.metadata",
  11282. ".signature.p7s",
  11283. "Icon.png",
  11284. "LICENSE.TXT",
  11285. "PACKAGE.md",
  11286. "THIRD-PARTY-NOTICES.TXT",
  11287. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  11288. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  11289. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  11290. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  11291. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  11292. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  11293. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  11294. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  11295. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  11296. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  11297. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  11298. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  11299. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  11300. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  11301. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  11302. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  11303. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  11304. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  11305. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  11306. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  11307. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  11308. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  11309. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  11310. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  11311. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  11312. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  11313. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  11314. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  11315. "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
  11316. "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  11317. "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  11318. "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  11319. "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  11320. "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  11321. "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  11322. "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  11323. "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  11324. "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  11325. "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  11326. "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  11327. "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  11328. "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  11329. "buildTransitive/net461/System.Text.Json.targets",
  11330. "buildTransitive/net462/System.Text.Json.targets",
  11331. "buildTransitive/net6.0/System.Text.Json.targets",
  11332. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  11333. "buildTransitive/netstandard2.0/System.Text.Json.targets",
  11334. "lib/net462/System.Text.Json.dll",
  11335. "lib/net462/System.Text.Json.xml",
  11336. "lib/net6.0/System.Text.Json.dll",
  11337. "lib/net6.0/System.Text.Json.xml",
  11338. "lib/net7.0/System.Text.Json.dll",
  11339. "lib/net7.0/System.Text.Json.xml",
  11340. "lib/net8.0/System.Text.Json.dll",
  11341. "lib/net8.0/System.Text.Json.xml",
  11342. "lib/netstandard2.0/System.Text.Json.dll",
  11343. "lib/netstandard2.0/System.Text.Json.xml",
  11344. "system.text.json.8.0.0.nupkg.sha512",
  11345. "system.text.json.nuspec",
  11346. "useSharedDesignerContext.txt"
  11347. ]
  11348. },
  11349. "System.Text.RegularExpressions/4.1.0": {
  11350. "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==",
  11351. "type": "package",
  11352. "path": "system.text.regularexpressions/4.1.0",
  11353. "files": [
  11354. ".nupkg.metadata",
  11355. ".signature.p7s",
  11356. "ThirdPartyNotices.txt",
  11357. "dotnet_library_license.txt",
  11358. "lib/MonoAndroid10/_._",
  11359. "lib/MonoTouch10/_._",
  11360. "lib/net45/_._",
  11361. "lib/net463/System.Text.RegularExpressions.dll",
  11362. "lib/netcore50/System.Text.RegularExpressions.dll",
  11363. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  11364. "lib/portable-net45+win8+wp8+wpa81/_._",
  11365. "lib/win8/_._",
  11366. "lib/wp80/_._",
  11367. "lib/wpa81/_._",
  11368. "lib/xamarinios10/_._",
  11369. "lib/xamarinmac20/_._",
  11370. "lib/xamarintvos10/_._",
  11371. "lib/xamarinwatchos10/_._",
  11372. "ref/MonoAndroid10/_._",
  11373. "ref/MonoTouch10/_._",
  11374. "ref/net45/_._",
  11375. "ref/net463/System.Text.RegularExpressions.dll",
  11376. "ref/netcore50/System.Text.RegularExpressions.dll",
  11377. "ref/netcore50/System.Text.RegularExpressions.xml",
  11378. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  11379. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  11380. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  11381. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  11382. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  11383. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  11384. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  11385. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  11386. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  11387. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  11388. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  11389. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  11390. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  11391. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  11392. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  11393. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  11394. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  11395. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  11396. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  11397. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  11398. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  11399. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  11400. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  11401. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  11402. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  11403. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  11404. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  11405. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  11406. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  11407. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  11408. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  11409. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  11410. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  11411. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  11412. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  11413. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  11414. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  11415. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  11416. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  11417. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  11418. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  11419. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  11420. "ref/portable-net45+win8+wp8+wpa81/_._",
  11421. "ref/win8/_._",
  11422. "ref/wp80/_._",
  11423. "ref/wpa81/_._",
  11424. "ref/xamarinios10/_._",
  11425. "ref/xamarinmac20/_._",
  11426. "ref/xamarintvos10/_._",
  11427. "ref/xamarinwatchos10/_._",
  11428. "system.text.regularexpressions.4.1.0.nupkg.sha512",
  11429. "system.text.regularexpressions.nuspec"
  11430. ]
  11431. },
  11432. "System.Threading/4.0.11": {
  11433. "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
  11434. "type": "package",
  11435. "path": "system.threading/4.0.11",
  11436. "files": [
  11437. ".nupkg.metadata",
  11438. ".signature.p7s",
  11439. "ThirdPartyNotices.txt",
  11440. "dotnet_library_license.txt",
  11441. "lib/MonoAndroid10/_._",
  11442. "lib/MonoTouch10/_._",
  11443. "lib/net45/_._",
  11444. "lib/netcore50/System.Threading.dll",
  11445. "lib/netstandard1.3/System.Threading.dll",
  11446. "lib/portable-net45+win8+wp8+wpa81/_._",
  11447. "lib/win8/_._",
  11448. "lib/wp80/_._",
  11449. "lib/wpa81/_._",
  11450. "lib/xamarinios10/_._",
  11451. "lib/xamarinmac20/_._",
  11452. "lib/xamarintvos10/_._",
  11453. "lib/xamarinwatchos10/_._",
  11454. "ref/MonoAndroid10/_._",
  11455. "ref/MonoTouch10/_._",
  11456. "ref/net45/_._",
  11457. "ref/netcore50/System.Threading.dll",
  11458. "ref/netcore50/System.Threading.xml",
  11459. "ref/netcore50/de/System.Threading.xml",
  11460. "ref/netcore50/es/System.Threading.xml",
  11461. "ref/netcore50/fr/System.Threading.xml",
  11462. "ref/netcore50/it/System.Threading.xml",
  11463. "ref/netcore50/ja/System.Threading.xml",
  11464. "ref/netcore50/ko/System.Threading.xml",
  11465. "ref/netcore50/ru/System.Threading.xml",
  11466. "ref/netcore50/zh-hans/System.Threading.xml",
  11467. "ref/netcore50/zh-hant/System.Threading.xml",
  11468. "ref/netstandard1.0/System.Threading.dll",
  11469. "ref/netstandard1.0/System.Threading.xml",
  11470. "ref/netstandard1.0/de/System.Threading.xml",
  11471. "ref/netstandard1.0/es/System.Threading.xml",
  11472. "ref/netstandard1.0/fr/System.Threading.xml",
  11473. "ref/netstandard1.0/it/System.Threading.xml",
  11474. "ref/netstandard1.0/ja/System.Threading.xml",
  11475. "ref/netstandard1.0/ko/System.Threading.xml",
  11476. "ref/netstandard1.0/ru/System.Threading.xml",
  11477. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  11478. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  11479. "ref/netstandard1.3/System.Threading.dll",
  11480. "ref/netstandard1.3/System.Threading.xml",
  11481. "ref/netstandard1.3/de/System.Threading.xml",
  11482. "ref/netstandard1.3/es/System.Threading.xml",
  11483. "ref/netstandard1.3/fr/System.Threading.xml",
  11484. "ref/netstandard1.3/it/System.Threading.xml",
  11485. "ref/netstandard1.3/ja/System.Threading.xml",
  11486. "ref/netstandard1.3/ko/System.Threading.xml",
  11487. "ref/netstandard1.3/ru/System.Threading.xml",
  11488. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  11489. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  11490. "ref/portable-net45+win8+wp8+wpa81/_._",
  11491. "ref/win8/_._",
  11492. "ref/wp80/_._",
  11493. "ref/wpa81/_._",
  11494. "ref/xamarinios10/_._",
  11495. "ref/xamarinmac20/_._",
  11496. "ref/xamarintvos10/_._",
  11497. "ref/xamarinwatchos10/_._",
  11498. "runtimes/aot/lib/netcore50/System.Threading.dll",
  11499. "system.threading.4.0.11.nupkg.sha512",
  11500. "system.threading.nuspec"
  11501. ]
  11502. },
  11503. "System.Threading.Tasks/4.3.0": {
  11504. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  11505. "type": "package",
  11506. "path": "system.threading.tasks/4.3.0",
  11507. "files": [
  11508. ".nupkg.metadata",
  11509. ".signature.p7s",
  11510. "ThirdPartyNotices.txt",
  11511. "dotnet_library_license.txt",
  11512. "lib/MonoAndroid10/_._",
  11513. "lib/MonoTouch10/_._",
  11514. "lib/net45/_._",
  11515. "lib/portable-net45+win8+wp8+wpa81/_._",
  11516. "lib/win8/_._",
  11517. "lib/wp80/_._",
  11518. "lib/wpa81/_._",
  11519. "lib/xamarinios10/_._",
  11520. "lib/xamarinmac20/_._",
  11521. "lib/xamarintvos10/_._",
  11522. "lib/xamarinwatchos10/_._",
  11523. "ref/MonoAndroid10/_._",
  11524. "ref/MonoTouch10/_._",
  11525. "ref/net45/_._",
  11526. "ref/netcore50/System.Threading.Tasks.dll",
  11527. "ref/netcore50/System.Threading.Tasks.xml",
  11528. "ref/netcore50/de/System.Threading.Tasks.xml",
  11529. "ref/netcore50/es/System.Threading.Tasks.xml",
  11530. "ref/netcore50/fr/System.Threading.Tasks.xml",
  11531. "ref/netcore50/it/System.Threading.Tasks.xml",
  11532. "ref/netcore50/ja/System.Threading.Tasks.xml",
  11533. "ref/netcore50/ko/System.Threading.Tasks.xml",
  11534. "ref/netcore50/ru/System.Threading.Tasks.xml",
  11535. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  11536. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  11537. "ref/netstandard1.0/System.Threading.Tasks.dll",
  11538. "ref/netstandard1.0/System.Threading.Tasks.xml",
  11539. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  11540. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  11541. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  11542. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  11543. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  11544. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  11545. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  11546. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  11547. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  11548. "ref/netstandard1.3/System.Threading.Tasks.dll",
  11549. "ref/netstandard1.3/System.Threading.Tasks.xml",
  11550. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  11551. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  11552. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  11553. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  11554. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  11555. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  11556. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  11557. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  11558. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  11559. "ref/portable-net45+win8+wp8+wpa81/_._",
  11560. "ref/win8/_._",
  11561. "ref/wp80/_._",
  11562. "ref/wpa81/_._",
  11563. "ref/xamarinios10/_._",
  11564. "ref/xamarinmac20/_._",
  11565. "ref/xamarintvos10/_._",
  11566. "ref/xamarinwatchos10/_._",
  11567. "system.threading.tasks.4.3.0.nupkg.sha512",
  11568. "system.threading.tasks.nuspec"
  11569. ]
  11570. },
  11571. "System.Threading.Tasks.Extensions/4.5.4": {
  11572. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  11573. "type": "package",
  11574. "path": "system.threading.tasks.extensions/4.5.4",
  11575. "files": [
  11576. ".nupkg.metadata",
  11577. ".signature.p7s",
  11578. "LICENSE.TXT",
  11579. "THIRD-PARTY-NOTICES.TXT",
  11580. "lib/MonoAndroid10/_._",
  11581. "lib/MonoTouch10/_._",
  11582. "lib/net461/System.Threading.Tasks.Extensions.dll",
  11583. "lib/net461/System.Threading.Tasks.Extensions.xml",
  11584. "lib/netcoreapp2.1/_._",
  11585. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  11586. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  11587. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  11588. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  11589. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  11590. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  11591. "lib/xamarinios10/_._",
  11592. "lib/xamarinmac20/_._",
  11593. "lib/xamarintvos10/_._",
  11594. "lib/xamarinwatchos10/_._",
  11595. "ref/MonoAndroid10/_._",
  11596. "ref/MonoTouch10/_._",
  11597. "ref/netcoreapp2.1/_._",
  11598. "ref/xamarinios10/_._",
  11599. "ref/xamarinmac20/_._",
  11600. "ref/xamarintvos10/_._",
  11601. "ref/xamarinwatchos10/_._",
  11602. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  11603. "system.threading.tasks.extensions.nuspec",
  11604. "useSharedDesignerContext.txt",
  11605. "version.txt"
  11606. ]
  11607. },
  11608. "System.Threading.Thread/4.0.0": {
  11609. "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==",
  11610. "type": "package",
  11611. "path": "system.threading.thread/4.0.0",
  11612. "files": [
  11613. ".nupkg.metadata",
  11614. ".signature.p7s",
  11615. "ThirdPartyNotices.txt",
  11616. "dotnet_library_license.txt",
  11617. "lib/MonoAndroid10/_._",
  11618. "lib/MonoTouch10/_._",
  11619. "lib/net46/System.Threading.Thread.dll",
  11620. "lib/netcore50/_._",
  11621. "lib/netstandard1.3/System.Threading.Thread.dll",
  11622. "lib/xamarinios10/_._",
  11623. "lib/xamarinmac20/_._",
  11624. "lib/xamarintvos10/_._",
  11625. "lib/xamarinwatchos10/_._",
  11626. "ref/MonoAndroid10/_._",
  11627. "ref/MonoTouch10/_._",
  11628. "ref/net46/System.Threading.Thread.dll",
  11629. "ref/netstandard1.3/System.Threading.Thread.dll",
  11630. "ref/netstandard1.3/System.Threading.Thread.xml",
  11631. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  11632. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  11633. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  11634. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  11635. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  11636. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  11637. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  11638. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  11639. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  11640. "ref/xamarinios10/_._",
  11641. "ref/xamarinmac20/_._",
  11642. "ref/xamarintvos10/_._",
  11643. "ref/xamarinwatchos10/_._",
  11644. "system.threading.thread.4.0.0.nupkg.sha512",
  11645. "system.threading.thread.nuspec"
  11646. ]
  11647. },
  11648. "System.Threading.ThreadPool/4.0.10": {
  11649. "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==",
  11650. "type": "package",
  11651. "path": "system.threading.threadpool/4.0.10",
  11652. "files": [
  11653. ".nupkg.metadata",
  11654. ".signature.p7s",
  11655. "ThirdPartyNotices.txt",
  11656. "dotnet_library_license.txt",
  11657. "lib/MonoAndroid10/_._",
  11658. "lib/MonoTouch10/_._",
  11659. "lib/net46/System.Threading.ThreadPool.dll",
  11660. "lib/netcore50/_._",
  11661. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  11662. "lib/xamarinios10/_._",
  11663. "lib/xamarinmac20/_._",
  11664. "lib/xamarintvos10/_._",
  11665. "lib/xamarinwatchos10/_._",
  11666. "ref/MonoAndroid10/_._",
  11667. "ref/MonoTouch10/_._",
  11668. "ref/net46/System.Threading.ThreadPool.dll",
  11669. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  11670. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  11671. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  11672. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  11673. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  11674. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  11675. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  11676. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  11677. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  11678. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  11679. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  11680. "ref/xamarinios10/_._",
  11681. "ref/xamarinmac20/_._",
  11682. "ref/xamarintvos10/_._",
  11683. "ref/xamarinwatchos10/_._",
  11684. "system.threading.threadpool.4.0.10.nupkg.sha512",
  11685. "system.threading.threadpool.nuspec"
  11686. ]
  11687. },
  11688. "System.Threading.Timer/4.0.1": {
  11689. "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==",
  11690. "type": "package",
  11691. "path": "system.threading.timer/4.0.1",
  11692. "files": [
  11693. ".nupkg.metadata",
  11694. ".signature.p7s",
  11695. "ThirdPartyNotices.txt",
  11696. "dotnet_library_license.txt",
  11697. "lib/MonoAndroid10/_._",
  11698. "lib/MonoTouch10/_._",
  11699. "lib/net451/_._",
  11700. "lib/portable-net451+win81+wpa81/_._",
  11701. "lib/win81/_._",
  11702. "lib/wpa81/_._",
  11703. "lib/xamarinios10/_._",
  11704. "lib/xamarinmac20/_._",
  11705. "lib/xamarintvos10/_._",
  11706. "lib/xamarinwatchos10/_._",
  11707. "ref/MonoAndroid10/_._",
  11708. "ref/MonoTouch10/_._",
  11709. "ref/net451/_._",
  11710. "ref/netcore50/System.Threading.Timer.dll",
  11711. "ref/netcore50/System.Threading.Timer.xml",
  11712. "ref/netcore50/de/System.Threading.Timer.xml",
  11713. "ref/netcore50/es/System.Threading.Timer.xml",
  11714. "ref/netcore50/fr/System.Threading.Timer.xml",
  11715. "ref/netcore50/it/System.Threading.Timer.xml",
  11716. "ref/netcore50/ja/System.Threading.Timer.xml",
  11717. "ref/netcore50/ko/System.Threading.Timer.xml",
  11718. "ref/netcore50/ru/System.Threading.Timer.xml",
  11719. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  11720. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  11721. "ref/netstandard1.2/System.Threading.Timer.dll",
  11722. "ref/netstandard1.2/System.Threading.Timer.xml",
  11723. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  11724. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  11725. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  11726. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  11727. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  11728. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  11729. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  11730. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  11731. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  11732. "ref/portable-net451+win81+wpa81/_._",
  11733. "ref/win81/_._",
  11734. "ref/wpa81/_._",
  11735. "ref/xamarinios10/_._",
  11736. "ref/xamarinmac20/_._",
  11737. "ref/xamarintvos10/_._",
  11738. "ref/xamarinwatchos10/_._",
  11739. "system.threading.timer.4.0.1.nupkg.sha512",
  11740. "system.threading.timer.nuspec"
  11741. ]
  11742. },
  11743. "System.Windows.Extensions/6.0.0": {
  11744. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  11745. "type": "package",
  11746. "path": "system.windows.extensions/6.0.0",
  11747. "files": [
  11748. ".nupkg.metadata",
  11749. ".signature.p7s",
  11750. "Icon.png",
  11751. "LICENSE.TXT",
  11752. "THIRD-PARTY-NOTICES.TXT",
  11753. "lib/net6.0/System.Windows.Extensions.dll",
  11754. "lib/net6.0/System.Windows.Extensions.xml",
  11755. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  11756. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  11757. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  11758. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  11759. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  11760. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  11761. "system.windows.extensions.6.0.0.nupkg.sha512",
  11762. "system.windows.extensions.nuspec",
  11763. "useSharedDesignerContext.txt"
  11764. ]
  11765. },
  11766. "System.Xml.ReaderWriter/4.0.11": {
  11767. "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==",
  11768. "type": "package",
  11769. "path": "system.xml.readerwriter/4.0.11",
  11770. "files": [
  11771. ".nupkg.metadata",
  11772. ".signature.p7s",
  11773. "ThirdPartyNotices.txt",
  11774. "dotnet_library_license.txt",
  11775. "lib/MonoAndroid10/_._",
  11776. "lib/MonoTouch10/_._",
  11777. "lib/net45/_._",
  11778. "lib/netcore50/System.Xml.ReaderWriter.dll",
  11779. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  11780. "lib/portable-net45+win8+wp8+wpa81/_._",
  11781. "lib/win8/_._",
  11782. "lib/wp80/_._",
  11783. "lib/wpa81/_._",
  11784. "lib/xamarinios10/_._",
  11785. "lib/xamarinmac20/_._",
  11786. "lib/xamarintvos10/_._",
  11787. "lib/xamarinwatchos10/_._",
  11788. "ref/MonoAndroid10/_._",
  11789. "ref/MonoTouch10/_._",
  11790. "ref/net45/_._",
  11791. "ref/netcore50/System.Xml.ReaderWriter.dll",
  11792. "ref/netcore50/System.Xml.ReaderWriter.xml",
  11793. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  11794. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  11795. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  11796. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  11797. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  11798. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  11799. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  11800. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  11801. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  11802. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  11803. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  11804. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  11805. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  11806. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  11807. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  11808. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  11809. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  11810. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  11811. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  11812. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  11813. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  11814. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  11815. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  11816. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  11817. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  11818. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  11819. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  11820. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  11821. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  11822. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  11823. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  11824. "ref/portable-net45+win8+wp8+wpa81/_._",
  11825. "ref/win8/_._",
  11826. "ref/wp80/_._",
  11827. "ref/wpa81/_._",
  11828. "ref/xamarinios10/_._",
  11829. "ref/xamarinmac20/_._",
  11830. "ref/xamarintvos10/_._",
  11831. "ref/xamarinwatchos10/_._",
  11832. "system.xml.readerwriter.4.0.11.nupkg.sha512",
  11833. "system.xml.readerwriter.nuspec"
  11834. ]
  11835. },
  11836. "System.Xml.XDocument/4.0.11": {
  11837. "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==",
  11838. "type": "package",
  11839. "path": "system.xml.xdocument/4.0.11",
  11840. "files": [
  11841. ".nupkg.metadata",
  11842. ".signature.p7s",
  11843. "ThirdPartyNotices.txt",
  11844. "dotnet_library_license.txt",
  11845. "lib/MonoAndroid10/_._",
  11846. "lib/MonoTouch10/_._",
  11847. "lib/net45/_._",
  11848. "lib/netcore50/System.Xml.XDocument.dll",
  11849. "lib/netstandard1.3/System.Xml.XDocument.dll",
  11850. "lib/portable-net45+win8+wp8+wpa81/_._",
  11851. "lib/win8/_._",
  11852. "lib/wp80/_._",
  11853. "lib/wpa81/_._",
  11854. "lib/xamarinios10/_._",
  11855. "lib/xamarinmac20/_._",
  11856. "lib/xamarintvos10/_._",
  11857. "lib/xamarinwatchos10/_._",
  11858. "ref/MonoAndroid10/_._",
  11859. "ref/MonoTouch10/_._",
  11860. "ref/net45/_._",
  11861. "ref/netcore50/System.Xml.XDocument.dll",
  11862. "ref/netcore50/System.Xml.XDocument.xml",
  11863. "ref/netcore50/de/System.Xml.XDocument.xml",
  11864. "ref/netcore50/es/System.Xml.XDocument.xml",
  11865. "ref/netcore50/fr/System.Xml.XDocument.xml",
  11866. "ref/netcore50/it/System.Xml.XDocument.xml",
  11867. "ref/netcore50/ja/System.Xml.XDocument.xml",
  11868. "ref/netcore50/ko/System.Xml.XDocument.xml",
  11869. "ref/netcore50/ru/System.Xml.XDocument.xml",
  11870. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  11871. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  11872. "ref/netstandard1.0/System.Xml.XDocument.dll",
  11873. "ref/netstandard1.0/System.Xml.XDocument.xml",
  11874. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  11875. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  11876. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  11877. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  11878. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  11879. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  11880. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  11881. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  11882. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  11883. "ref/netstandard1.3/System.Xml.XDocument.dll",
  11884. "ref/netstandard1.3/System.Xml.XDocument.xml",
  11885. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  11886. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  11887. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  11888. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  11889. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  11890. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  11891. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  11892. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  11893. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  11894. "ref/portable-net45+win8+wp8+wpa81/_._",
  11895. "ref/win8/_._",
  11896. "ref/wp80/_._",
  11897. "ref/wpa81/_._",
  11898. "ref/xamarinios10/_._",
  11899. "ref/xamarinmac20/_._",
  11900. "ref/xamarintvos10/_._",
  11901. "ref/xamarinwatchos10/_._",
  11902. "system.xml.xdocument.4.0.11.nupkg.sha512",
  11903. "system.xml.xdocument.nuspec"
  11904. ]
  11905. },
  11906. "System.Xml.XmlDocument/4.0.1": {
  11907. "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==",
  11908. "type": "package",
  11909. "path": "system.xml.xmldocument/4.0.1",
  11910. "files": [
  11911. ".nupkg.metadata",
  11912. ".signature.p7s",
  11913. "ThirdPartyNotices.txt",
  11914. "dotnet_library_license.txt",
  11915. "lib/MonoAndroid10/_._",
  11916. "lib/MonoTouch10/_._",
  11917. "lib/net46/System.Xml.XmlDocument.dll",
  11918. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  11919. "lib/xamarinios10/_._",
  11920. "lib/xamarinmac20/_._",
  11921. "lib/xamarintvos10/_._",
  11922. "lib/xamarinwatchos10/_._",
  11923. "ref/MonoAndroid10/_._",
  11924. "ref/MonoTouch10/_._",
  11925. "ref/net46/System.Xml.XmlDocument.dll",
  11926. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  11927. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  11928. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  11929. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  11930. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  11931. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  11932. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  11933. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  11934. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  11935. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  11936. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  11937. "ref/xamarinios10/_._",
  11938. "ref/xamarinmac20/_._",
  11939. "ref/xamarintvos10/_._",
  11940. "ref/xamarinwatchos10/_._",
  11941. "system.xml.xmldocument.4.0.1.nupkg.sha512",
  11942. "system.xml.xmldocument.nuspec"
  11943. ]
  11944. },
  11945. "System.Xml.XPath/4.0.1": {
  11946. "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==",
  11947. "type": "package",
  11948. "path": "system.xml.xpath/4.0.1",
  11949. "files": [
  11950. ".nupkg.metadata",
  11951. ".signature.p7s",
  11952. "ThirdPartyNotices.txt",
  11953. "dotnet_library_license.txt",
  11954. "lib/MonoAndroid10/_._",
  11955. "lib/MonoTouch10/_._",
  11956. "lib/net46/System.Xml.XPath.dll",
  11957. "lib/netstandard1.3/System.Xml.XPath.dll",
  11958. "lib/xamarinios10/_._",
  11959. "lib/xamarinmac20/_._",
  11960. "lib/xamarintvos10/_._",
  11961. "lib/xamarinwatchos10/_._",
  11962. "ref/MonoAndroid10/_._",
  11963. "ref/MonoTouch10/_._",
  11964. "ref/net46/System.Xml.XPath.dll",
  11965. "ref/netstandard1.3/System.Xml.XPath.dll",
  11966. "ref/netstandard1.3/System.Xml.XPath.xml",
  11967. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  11968. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  11969. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  11970. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  11971. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  11972. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  11973. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  11974. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  11975. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  11976. "ref/xamarinios10/_._",
  11977. "ref/xamarinmac20/_._",
  11978. "ref/xamarintvos10/_._",
  11979. "ref/xamarinwatchos10/_._",
  11980. "system.xml.xpath.4.0.1.nupkg.sha512",
  11981. "system.xml.xpath.nuspec"
  11982. ]
  11983. },
  11984. "System.Xml.XPath.XmlDocument/4.0.1": {
  11985. "sha512": "Zm2BdeanuncYs3NhCj4c9e1x3EXFzFBVv2wPEc/Dj4ZbI9R8ecLSR5frAsx4zJCPBtKQreQ7Q/KxJEohJZbfzA==",
  11986. "type": "package",
  11987. "path": "system.xml.xpath.xmldocument/4.0.1",
  11988. "files": [
  11989. ".nupkg.metadata",
  11990. ".signature.p7s",
  11991. "ThirdPartyNotices.txt",
  11992. "dotnet_library_license.txt",
  11993. "lib/MonoAndroid10/_._",
  11994. "lib/MonoTouch10/_._",
  11995. "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  11996. "lib/xamarinios10/_._",
  11997. "lib/xamarinmac20/_._",
  11998. "lib/xamarintvos10/_._",
  11999. "lib/xamarinwatchos10/_._",
  12000. "ref/MonoAndroid10/_._",
  12001. "ref/MonoTouch10/_._",
  12002. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.dll",
  12003. "ref/netstandard1.3/System.Xml.XPath.XmlDocument.xml",
  12004. "ref/netstandard1.3/de/System.Xml.XPath.XmlDocument.xml",
  12005. "ref/netstandard1.3/es/System.Xml.XPath.XmlDocument.xml",
  12006. "ref/netstandard1.3/fr/System.Xml.XPath.XmlDocument.xml",
  12007. "ref/netstandard1.3/it/System.Xml.XPath.XmlDocument.xml",
  12008. "ref/netstandard1.3/ja/System.Xml.XPath.XmlDocument.xml",
  12009. "ref/netstandard1.3/ko/System.Xml.XPath.XmlDocument.xml",
  12010. "ref/netstandard1.3/ru/System.Xml.XPath.XmlDocument.xml",
  12011. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XmlDocument.xml",
  12012. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XmlDocument.xml",
  12013. "ref/xamarinios10/_._",
  12014. "ref/xamarinmac20/_._",
  12015. "ref/xamarintvos10/_._",
  12016. "ref/xamarinwatchos10/_._",
  12017. "system.xml.xpath.xmldocument.4.0.1.nupkg.sha512",
  12018. "system.xml.xpath.xmldocument.nuspec"
  12019. ]
  12020. }
  12021. },
  12022. "projectFileDependencyGroups": {
  12023. ".NETCoreApp,Version=v3.1": [
  12024. "AutoMapper.Extensions.Microsoft.DependencyInjection >= 12.0.1",
  12025. "Flurl.Http >= 4.0.2",
  12026. "Microsoft.Extensions.Hosting.WindowsServices >= 8.0.0",
  12027. "Microsoft.NETCore.Targets >= 3.0.0",
  12028. "MySql.Data.EntityFrameworkCore >= 8.0.22",
  12029. "NLog.Web.AspNetCore >= 5.3.8",
  12030. "Newtonsoft.Json >= 13.0.3",
  12031. "Quartz >= 3.8.1",
  12032. "StackExchange.Redis >= 2.7.33",
  12033. "Swashbuckle.AspNetCore >= 6.5.0",
  12034. "Swashbuckle.AspNetCore.Filters >= 8.0.1",
  12035. "System.IdentityModel.Tokens.Jwt >= 7.4.1"
  12036. ]
  12037. },
  12038. "packageFolders": {
  12039. "C:\\Users\\user\\.nuget\\packages\\": {}
  12040. },
  12041. "project": {
  12042. "version": "1.0.0",
  12043. "restore": {
  12044. "projectUniqueName": "D:\\项目\\SMZK\\htl_ccs\\IMCS_CCS\\CCS.csproj",
  12045. "projectName": "IMCS_CCS",
  12046. "projectPath": "D:\\项目\\SMZK\\htl_ccs\\IMCS_CCS\\CCS.csproj",
  12047. "packagesPath": "C:\\Users\\user\\.nuget\\packages\\",
  12048. "outputPath": "D:\\项目\\SMZK\\htl_ccs\\IMCS_CCS\\obj\\publish\\win-x64\\",
  12049. "projectStyle": "PackageReference",
  12050. "configFilePaths": [
  12051. "C:\\Users\\user\\AppData\\Roaming\\NuGet\\NuGet.Config",
  12052. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  12053. ],
  12054. "originalTargetFrameworks": [
  12055. "netcoreapp3.1"
  12056. ],
  12057. "sources": {
  12058. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  12059. "https://api.nuget.org/v3/index.json": {}
  12060. },
  12061. "frameworks": {
  12062. "netcoreapp3.1": {
  12063. "targetAlias": "netcoreapp3.1",
  12064. "projectReferences": {}
  12065. }
  12066. },
  12067. "warningProperties": {
  12068. "warnAsError": [
  12069. "NU1605"
  12070. ]
  12071. }
  12072. },
  12073. "frameworks": {
  12074. "netcoreapp3.1": {
  12075. "targetAlias": "netcoreapp3.1",
  12076. "dependencies": {
  12077. "AutoMapper.Extensions.Microsoft.DependencyInjection": {
  12078. "target": "Package",
  12079. "version": "[12.0.1, )"
  12080. },
  12081. "Flurl.Http": {
  12082. "target": "Package",
  12083. "version": "[4.0.2, )"
  12084. },
  12085. "Microsoft.Extensions.Hosting.WindowsServices": {
  12086. "target": "Package",
  12087. "version": "[8.0.0, )"
  12088. },
  12089. "Microsoft.NETCore.Targets": {
  12090. "suppressParent": "All",
  12091. "target": "Package",
  12092. "version": "[3.0.0, )"
  12093. },
  12094. "MySql.Data.EntityFrameworkCore": {
  12095. "target": "Package",
  12096. "version": "[8.0.22, )"
  12097. },
  12098. "NLog.Web.AspNetCore": {
  12099. "target": "Package",
  12100. "version": "[5.3.8, )"
  12101. },
  12102. "Newtonsoft.Json": {
  12103. "target": "Package",
  12104. "version": "[13.0.3, )"
  12105. },
  12106. "Quartz": {
  12107. "target": "Package",
  12108. "version": "[3.8.1, )"
  12109. },
  12110. "StackExchange.Redis": {
  12111. "target": "Package",
  12112. "version": "[2.7.33, )"
  12113. },
  12114. "Swashbuckle.AspNetCore": {
  12115. "target": "Package",
  12116. "version": "[6.5.0, )"
  12117. },
  12118. "Swashbuckle.AspNetCore.Filters": {
  12119. "target": "Package",
  12120. "version": "[8.0.1, )"
  12121. },
  12122. "System.IdentityModel.Tokens.Jwt": {
  12123. "target": "Package",
  12124. "version": "[7.4.1, )"
  12125. }
  12126. },
  12127. "imports": [
  12128. "net461",
  12129. "net462",
  12130. "net47",
  12131. "net471",
  12132. "net472",
  12133. "net48"
  12134. ],
  12135. "assetTargetFallback": true,
  12136. "warn": true,
  12137. "downloadDependencies": [
  12138. {
  12139. "name": "Microsoft.AspNetCore.App.Runtime.win-x64",
  12140. "version": "[3.1.32, 3.1.32]"
  12141. },
  12142. {
  12143. "name": "Microsoft.NETCore.App.Runtime.win-x64",
  12144. "version": "[3.1.32, 3.1.32]"
  12145. },
  12146. {
  12147. "name": "Microsoft.WindowsDesktop.App.Runtime.win-x64",
  12148. "version": "[3.1.32, 3.1.32]"
  12149. }
  12150. ],
  12151. "frameworkReferences": {
  12152. "Microsoft.AspNetCore.App": {
  12153. "privateAssets": "none"
  12154. },
  12155. "Microsoft.NETCore.App": {
  12156. "privateAssets": "all"
  12157. }
  12158. },
  12159. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.426\\RuntimeIdentifierGraph.json"
  12160. }
  12161. },
  12162. "runtimes": {
  12163. "win-x64": {
  12164. "#import": []
  12165. }
  12166. }
  12167. }
  12168. }