project.assets.json 440 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "Humanizer.Core/2.8.26": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/_._": {}
  9. },
  10. "runtime": {
  11. "lib/netstandard2.0/Humanizer.dll": {}
  12. }
  13. },
  14. "MessagePack/2.1.152": {
  15. "type": "package",
  16. "dependencies": {
  17. "MessagePack.Annotations": "2.1.152",
  18. "Microsoft.Bcl.AsyncInterfaces": "1.0.0",
  19. "System.Memory": "4.5.3",
  20. "System.Reflection.Emit": "4.6.0",
  21. "System.Reflection.Emit.Lightweight": "4.6.0",
  22. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  23. "System.Threading.Tasks.Extensions": "4.5.3"
  24. },
  25. "compile": {
  26. "lib/netcoreapp2.1/MessagePack.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netcoreapp2.1/MessagePack.dll": {}
  30. }
  31. },
  32. "MessagePack.Annotations/2.1.152": {
  33. "type": "package",
  34. "compile": {
  35. "lib/netstandard2.0/MessagePack.Annotations.dll": {}
  36. },
  37. "runtime": {
  38. "lib/netstandard2.0/MessagePack.Annotations.dll": {}
  39. }
  40. },
  41. "MessagePackAnalyzer/2.1.152": {
  42. "type": "package"
  43. },
  44. "Microsoft.AspNetCore.Razor.Language/6.0.0": {
  45. "type": "package",
  46. "compile": {
  47. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  48. },
  49. "runtime": {
  50. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  51. }
  52. },
  53. "Microsoft.Bcl.AsyncInterfaces/5.0.0": {
  54. "type": "package",
  55. "compile": {
  56. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  57. },
  58. "runtime": {
  59. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  60. }
  61. },
  62. "Microsoft.Build/17.0.0": {
  63. "type": "package",
  64. "dependencies": {
  65. "Microsoft.Build.Framework": "17.0.0",
  66. "Microsoft.NET.StringTools": "1.0.0",
  67. "Microsoft.Win32.Registry": "4.3.0",
  68. "System.Collections.Immutable": "5.0.0",
  69. "System.Configuration.ConfigurationManager": "4.7.0",
  70. "System.Reflection.Metadata": "1.6.0",
  71. "System.Security.Principal.Windows": "4.7.0",
  72. "System.Text.Encoding.CodePages": "4.0.1",
  73. "System.Text.Json": "5.0.2",
  74. "System.Threading.Tasks.Dataflow": "4.9.0"
  75. },
  76. "compile": {
  77. "lib/net6.0/Microsoft.Build.dll": {}
  78. },
  79. "runtime": {
  80. "lib/net6.0/_._": {}
  81. }
  82. },
  83. "Microsoft.Build.Framework/17.0.0": {
  84. "type": "package",
  85. "dependencies": {
  86. "System.Security.Permissions": "4.7.0"
  87. },
  88. "compile": {
  89. "lib/netstandard2.0/Microsoft.Build.Framework.dll": {}
  90. },
  91. "runtime": {
  92. "lib/netstandard2.0/_._": {}
  93. }
  94. },
  95. "Microsoft.Build.Locator/1.4.1": {
  96. "type": "package",
  97. "compile": {
  98. "lib/netcoreapp2.0/Microsoft.Build.Locator.dll": {}
  99. },
  100. "runtime": {
  101. "lib/netcoreapp2.0/Microsoft.Build.Locator.dll": {}
  102. },
  103. "build": {
  104. "build/_._": {}
  105. }
  106. },
  107. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  108. "type": "package",
  109. "build": {
  110. "build/_._": {}
  111. }
  112. },
  113. "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
  114. "type": "package",
  115. "compile": {
  116. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {}
  117. },
  118. "runtime": {
  119. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {}
  120. }
  121. },
  122. "Microsoft.CodeAnalysis.Common/4.0.0": {
  123. "type": "package",
  124. "dependencies": {
  125. "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
  126. "System.Collections.Immutable": "5.0.0",
  127. "System.Memory": "4.5.4",
  128. "System.Reflection.Metadata": "5.0.0",
  129. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  130. "System.Text.Encoding.CodePages": "4.5.1",
  131. "System.Threading.Tasks.Extensions": "4.5.4"
  132. },
  133. "compile": {
  134. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {}
  135. },
  136. "runtime": {
  137. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {}
  138. },
  139. "resource": {
  140. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  141. "locale": "cs"
  142. },
  143. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  144. "locale": "de"
  145. },
  146. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  147. "locale": "es"
  148. },
  149. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  150. "locale": "fr"
  151. },
  152. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  153. "locale": "it"
  154. },
  155. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  156. "locale": "ja"
  157. },
  158. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  159. "locale": "ko"
  160. },
  161. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  162. "locale": "pl"
  163. },
  164. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  165. "locale": "pt-BR"
  166. },
  167. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  168. "locale": "ru"
  169. },
  170. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  171. "locale": "tr"
  172. },
  173. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  174. "locale": "zh-Hans"
  175. },
  176. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  177. "locale": "zh-Hant"
  178. }
  179. }
  180. },
  181. "Microsoft.CodeAnalysis.CSharp/4.0.0": {
  182. "type": "package",
  183. "dependencies": {
  184. "Microsoft.CodeAnalysis.Common": "[4.0.0]"
  185. },
  186. "compile": {
  187. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {}
  188. },
  189. "runtime": {
  190. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {}
  191. },
  192. "resource": {
  193. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  194. "locale": "cs"
  195. },
  196. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  197. "locale": "de"
  198. },
  199. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  200. "locale": "es"
  201. },
  202. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  203. "locale": "fr"
  204. },
  205. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  206. "locale": "it"
  207. },
  208. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  209. "locale": "ja"
  210. },
  211. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  212. "locale": "ko"
  213. },
  214. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  215. "locale": "pl"
  216. },
  217. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  218. "locale": "pt-BR"
  219. },
  220. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  221. "locale": "ru"
  222. },
  223. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  224. "locale": "tr"
  225. },
  226. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  227. "locale": "zh-Hans"
  228. },
  229. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  230. "locale": "zh-Hant"
  231. }
  232. }
  233. },
  234. "Microsoft.CodeAnalysis.CSharp.Features/4.0.0": {
  235. "type": "package",
  236. "dependencies": {
  237. "Humanizer.Core": "2.2.0",
  238. "Microsoft.CodeAnalysis.CSharp": "[4.0.0]",
  239. "Microsoft.CodeAnalysis.CSharp.Workspaces": "[4.0.0]",
  240. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  241. "Microsoft.CodeAnalysis.Features": "[4.0.0]",
  242. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]"
  243. },
  244. "compile": {
  245. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": {}
  246. },
  247. "runtime": {
  248. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": {}
  249. },
  250. "resource": {
  251. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  252. "locale": "cs"
  253. },
  254. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  255. "locale": "de"
  256. },
  257. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  258. "locale": "es"
  259. },
  260. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  261. "locale": "fr"
  262. },
  263. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  264. "locale": "it"
  265. },
  266. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  267. "locale": "ja"
  268. },
  269. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  270. "locale": "ko"
  271. },
  272. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  273. "locale": "pl"
  274. },
  275. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  276. "locale": "pt-BR"
  277. },
  278. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  279. "locale": "ru"
  280. },
  281. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  282. "locale": "tr"
  283. },
  284. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  285. "locale": "zh-Hans"
  286. },
  287. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  288. "locale": "zh-Hant"
  289. }
  290. }
  291. },
  292. "Microsoft.CodeAnalysis.CSharp.Scripting/4.0.0": {
  293. "type": "package",
  294. "dependencies": {
  295. "Microsoft.CSharp": "4.3.0",
  296. "Microsoft.CodeAnalysis.CSharp": "[4.0.0]",
  297. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  298. "Microsoft.CodeAnalysis.Scripting.Common": "[4.0.0]"
  299. },
  300. "compile": {
  301. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {}
  302. },
  303. "runtime": {
  304. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {}
  305. },
  306. "resource": {
  307. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  308. "locale": "cs"
  309. },
  310. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  311. "locale": "de"
  312. },
  313. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  314. "locale": "es"
  315. },
  316. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  317. "locale": "fr"
  318. },
  319. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  320. "locale": "it"
  321. },
  322. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  323. "locale": "ja"
  324. },
  325. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  326. "locale": "ko"
  327. },
  328. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  329. "locale": "pl"
  330. },
  331. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  332. "locale": "pt-BR"
  333. },
  334. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  335. "locale": "ru"
  336. },
  337. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  338. "locale": "tr"
  339. },
  340. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  341. "locale": "zh-Hans"
  342. },
  343. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  344. "locale": "zh-Hant"
  345. }
  346. }
  347. },
  348. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.0.0": {
  349. "type": "package",
  350. "dependencies": {
  351. "Humanizer.Core": "2.2.0",
  352. "Microsoft.CodeAnalysis.CSharp": "[4.0.0]",
  353. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  354. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]"
  355. },
  356. "compile": {
  357. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
  358. },
  359. "runtime": {
  360. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
  361. },
  362. "resource": {
  363. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  364. "locale": "cs"
  365. },
  366. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  367. "locale": "de"
  368. },
  369. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  370. "locale": "es"
  371. },
  372. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  373. "locale": "fr"
  374. },
  375. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  376. "locale": "it"
  377. },
  378. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  379. "locale": "ja"
  380. },
  381. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  382. "locale": "ko"
  383. },
  384. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  385. "locale": "pl"
  386. },
  387. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  388. "locale": "pt-BR"
  389. },
  390. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  391. "locale": "ru"
  392. },
  393. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  394. "locale": "tr"
  395. },
  396. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  397. "locale": "zh-Hans"
  398. },
  399. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  400. "locale": "zh-Hant"
  401. }
  402. }
  403. },
  404. "Microsoft.CodeAnalysis.Features/4.0.0": {
  405. "type": "package",
  406. "dependencies": {
  407. "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0",
  408. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  409. "Microsoft.CodeAnalysis.Scripting.Common": "[4.0.0]",
  410. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]",
  411. "Microsoft.DiaSymReader": "1.3.0",
  412. "Microsoft.VisualStudio.Debugger.Contracts": "17.2.0",
  413. "System.Threading.Tasks.Extensions": "4.5.4"
  414. },
  415. "compile": {
  416. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": {}
  417. },
  418. "runtime": {
  419. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": {}
  420. },
  421. "resource": {
  422. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": {
  423. "locale": "cs"
  424. },
  425. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": {
  426. "locale": "de"
  427. },
  428. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": {
  429. "locale": "es"
  430. },
  431. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": {
  432. "locale": "fr"
  433. },
  434. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": {
  435. "locale": "it"
  436. },
  437. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": {
  438. "locale": "ja"
  439. },
  440. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": {
  441. "locale": "ko"
  442. },
  443. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": {
  444. "locale": "pl"
  445. },
  446. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": {
  447. "locale": "pt-BR"
  448. },
  449. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": {
  450. "locale": "ru"
  451. },
  452. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": {
  453. "locale": "tr"
  454. },
  455. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": {
  456. "locale": "zh-Hans"
  457. },
  458. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": {
  459. "locale": "zh-Hant"
  460. }
  461. }
  462. },
  463. "Microsoft.CodeAnalysis.Razor/6.0.0": {
  464. "type": "package",
  465. "dependencies": {
  466. "Microsoft.AspNetCore.Razor.Language": "6.0.0",
  467. "Microsoft.CodeAnalysis.CSharp": "4.0.0",
  468. "Microsoft.CodeAnalysis.Common": "4.0.0"
  469. },
  470. "compile": {
  471. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  472. },
  473. "runtime": {
  474. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  475. }
  476. },
  477. "Microsoft.CodeAnalysis.Scripting.Common/4.0.0": {
  478. "type": "package",
  479. "dependencies": {
  480. "Microsoft.CodeAnalysis.Common": "[4.0.0]"
  481. },
  482. "compile": {
  483. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {}
  484. },
  485. "runtime": {
  486. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {}
  487. },
  488. "resource": {
  489. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  490. "locale": "cs"
  491. },
  492. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  493. "locale": "de"
  494. },
  495. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  496. "locale": "es"
  497. },
  498. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  499. "locale": "fr"
  500. },
  501. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  502. "locale": "it"
  503. },
  504. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  505. "locale": "ja"
  506. },
  507. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  508. "locale": "ko"
  509. },
  510. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  511. "locale": "pl"
  512. },
  513. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  514. "locale": "pt-BR"
  515. },
  516. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  517. "locale": "ru"
  518. },
  519. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  520. "locale": "tr"
  521. },
  522. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  523. "locale": "zh-Hans"
  524. },
  525. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  526. "locale": "zh-Hant"
  527. }
  528. }
  529. },
  530. "Microsoft.CodeAnalysis.VisualBasic/4.0.0": {
  531. "type": "package",
  532. "dependencies": {
  533. "Microsoft.CodeAnalysis.Common": "[4.0.0]"
  534. },
  535. "compile": {
  536. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.dll": {}
  537. },
  538. "runtime": {
  539. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.dll": {}
  540. },
  541. "resource": {
  542. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  543. "locale": "cs"
  544. },
  545. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  546. "locale": "de"
  547. },
  548. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  549. "locale": "es"
  550. },
  551. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  552. "locale": "fr"
  553. },
  554. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  555. "locale": "it"
  556. },
  557. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  558. "locale": "ja"
  559. },
  560. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  561. "locale": "ko"
  562. },
  563. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  564. "locale": "pl"
  565. },
  566. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  567. "locale": "pt-BR"
  568. },
  569. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  570. "locale": "ru"
  571. },
  572. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  573. "locale": "tr"
  574. },
  575. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  576. "locale": "zh-Hans"
  577. },
  578. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  579. "locale": "zh-Hant"
  580. }
  581. }
  582. },
  583. "Microsoft.CodeAnalysis.VisualBasic.Features/4.0.0": {
  584. "type": "package",
  585. "dependencies": {
  586. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  587. "Microsoft.CodeAnalysis.Features": "[4.0.0]",
  588. "Microsoft.CodeAnalysis.VisualBasic": "[4.0.0]",
  589. "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "[4.0.0]",
  590. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]"
  591. },
  592. "compile": {
  593. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.dll": {}
  594. },
  595. "runtime": {
  596. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.dll": {}
  597. },
  598. "resource": {
  599. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  600. "locale": "cs"
  601. },
  602. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  603. "locale": "de"
  604. },
  605. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  606. "locale": "es"
  607. },
  608. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  609. "locale": "fr"
  610. },
  611. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  612. "locale": "it"
  613. },
  614. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  615. "locale": "ja"
  616. },
  617. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  618. "locale": "ko"
  619. },
  620. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  621. "locale": "pl"
  622. },
  623. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  624. "locale": "pt-BR"
  625. },
  626. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  627. "locale": "ru"
  628. },
  629. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  630. "locale": "tr"
  631. },
  632. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  633. "locale": "zh-Hans"
  634. },
  635. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  636. "locale": "zh-Hant"
  637. }
  638. }
  639. },
  640. "Microsoft.CodeAnalysis.VisualBasic.Workspaces/4.0.0": {
  641. "type": "package",
  642. "dependencies": {
  643. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  644. "Microsoft.CodeAnalysis.VisualBasic": "[4.0.0]",
  645. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]"
  646. },
  647. "compile": {
  648. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": {}
  649. },
  650. "runtime": {
  651. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": {}
  652. },
  653. "resource": {
  654. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  655. "locale": "cs"
  656. },
  657. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  658. "locale": "de"
  659. },
  660. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  661. "locale": "es"
  662. },
  663. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  664. "locale": "fr"
  665. },
  666. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  667. "locale": "it"
  668. },
  669. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  670. "locale": "ja"
  671. },
  672. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  673. "locale": "ko"
  674. },
  675. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  676. "locale": "pl"
  677. },
  678. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  679. "locale": "pt-BR"
  680. },
  681. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  682. "locale": "ru"
  683. },
  684. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  685. "locale": "tr"
  686. },
  687. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  688. "locale": "zh-Hans"
  689. },
  690. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  691. "locale": "zh-Hant"
  692. }
  693. }
  694. },
  695. "Microsoft.CodeAnalysis.Workspaces.Common/4.0.0": {
  696. "type": "package",
  697. "dependencies": {
  698. "Humanizer.Core": "2.2.0",
  699. "Microsoft.Bcl.AsyncInterfaces": "5.0.0",
  700. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  701. "System.Composition": "1.0.31",
  702. "System.IO.Pipelines": "5.0.1"
  703. },
  704. "compile": {
  705. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {}
  706. },
  707. "runtime": {
  708. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {}
  709. },
  710. "resource": {
  711. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  712. "locale": "cs"
  713. },
  714. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  715. "locale": "de"
  716. },
  717. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  718. "locale": "es"
  719. },
  720. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  721. "locale": "fr"
  722. },
  723. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  724. "locale": "it"
  725. },
  726. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  727. "locale": "ja"
  728. },
  729. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  730. "locale": "ko"
  731. },
  732. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  733. "locale": "pl"
  734. },
  735. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  736. "locale": "pt-BR"
  737. },
  738. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  739. "locale": "ru"
  740. },
  741. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  742. "locale": "tr"
  743. },
  744. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  745. "locale": "zh-Hans"
  746. },
  747. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  748. "locale": "zh-Hant"
  749. }
  750. }
  751. },
  752. "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.0.0": {
  753. "type": "package",
  754. "dependencies": {
  755. "Microsoft.Build.Framework": "16.5.0",
  756. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  757. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]",
  758. "System.Text.Json": "4.7.0"
  759. },
  760. "compile": {
  761. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {}
  762. },
  763. "runtime": {
  764. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {}
  765. },
  766. "resource": {
  767. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  768. "locale": "cs"
  769. },
  770. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  771. "locale": "de"
  772. },
  773. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  774. "locale": "es"
  775. },
  776. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  777. "locale": "fr"
  778. },
  779. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  780. "locale": "it"
  781. },
  782. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  783. "locale": "ja"
  784. },
  785. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  786. "locale": "ko"
  787. },
  788. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  789. "locale": "pl"
  790. },
  791. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  792. "locale": "pt-BR"
  793. },
  794. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  795. "locale": "ru"
  796. },
  797. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  798. "locale": "tr"
  799. },
  800. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  801. "locale": "zh-Hans"
  802. },
  803. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  804. "locale": "zh-Hant"
  805. }
  806. }
  807. },
  808. "Microsoft.CSharp/4.5.0": {
  809. "type": "package",
  810. "compile": {
  811. "ref/netcoreapp2.0/_._": {}
  812. },
  813. "runtime": {
  814. "lib/netcoreapp2.0/_._": {}
  815. }
  816. },
  817. "Microsoft.Data.SqlClient/2.1.4": {
  818. "type": "package",
  819. "dependencies": {
  820. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  821. "Microsoft.Identity.Client": "4.21.1",
  822. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  823. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  824. "Microsoft.Win32.Registry": "4.7.0",
  825. "System.Configuration.ConfigurationManager": "4.7.0",
  826. "System.Diagnostics.DiagnosticSource": "4.7.0",
  827. "System.Runtime.Caching": "4.7.0",
  828. "System.Security.Principal.Windows": "4.7.0",
  829. "System.Text.Encoding.CodePages": "4.7.0"
  830. },
  831. "compile": {
  832. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {}
  833. },
  834. "runtime": {
  835. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {}
  836. },
  837. "runtimeTargets": {
  838. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  839. "assetType": "runtime",
  840. "rid": "unix"
  841. },
  842. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  843. "assetType": "runtime",
  844. "rid": "win"
  845. }
  846. }
  847. },
  848. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  849. "type": "package",
  850. "runtimeTargets": {
  851. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  852. "assetType": "native",
  853. "rid": "win-arm"
  854. },
  855. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  856. "assetType": "native",
  857. "rid": "win-arm64"
  858. },
  859. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  860. "assetType": "native",
  861. "rid": "win-x64"
  862. },
  863. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  864. "assetType": "native",
  865. "rid": "win-x86"
  866. }
  867. }
  868. },
  869. "Microsoft.DiaSymReader/1.3.0": {
  870. "type": "package",
  871. "dependencies": {
  872. "NETStandard.Library": "1.6.1"
  873. },
  874. "compile": {
  875. "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {}
  876. },
  877. "runtime": {
  878. "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {}
  879. }
  880. },
  881. "Microsoft.DotNet.Scaffolding.Shared/6.0.3": {
  882. "type": "package",
  883. "dependencies": {
  884. "Microsoft.CodeAnalysis.CSharp.Features": "4.0.0",
  885. "Microsoft.CodeAnalysis.CSharp.Scripting": "4.0.0",
  886. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.0.0",
  887. "Microsoft.CodeAnalysis.Features": "4.0.0",
  888. "Microsoft.CodeAnalysis.VisualBasic.Features": "4.0.0",
  889. "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "4.0.0",
  890. "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.0.0",
  891. "Newtonsoft.Json": "13.0.1",
  892. "NuGet.ProjectModel": "5.11.0",
  893. "System.Collections.Immutable": "6.0.0",
  894. "System.Private.Uri": "4.3.2"
  895. },
  896. "compile": {
  897. "lib/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll": {}
  898. },
  899. "runtime": {
  900. "lib/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll": {}
  901. }
  902. },
  903. "Microsoft.EntityFrameworkCore/6.0.4": {
  904. "type": "package",
  905. "dependencies": {
  906. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.4",
  907. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.4",
  908. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  909. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  910. "Microsoft.Extensions.Logging": "6.0.0",
  911. "System.Collections.Immutable": "6.0.0",
  912. "System.Diagnostics.DiagnosticSource": "6.0.0"
  913. },
  914. "compile": {
  915. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
  916. },
  917. "runtime": {
  918. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
  919. }
  920. },
  921. "Microsoft.EntityFrameworkCore.Abstractions/6.0.4": {
  922. "type": "package",
  923. "compile": {
  924. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  925. },
  926. "runtime": {
  927. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  928. }
  929. },
  930. "Microsoft.EntityFrameworkCore.Analyzers/6.0.4": {
  931. "type": "package",
  932. "compile": {
  933. "lib/netstandard2.0/_._": {}
  934. },
  935. "runtime": {
  936. "lib/netstandard2.0/_._": {}
  937. }
  938. },
  939. "Microsoft.EntityFrameworkCore.Design/6.0.4": {
  940. "type": "package",
  941. "dependencies": {
  942. "Humanizer.Core": "2.8.26",
  943. "Microsoft.EntityFrameworkCore.Relational": "6.0.4"
  944. },
  945. "compile": {
  946. "lib/net6.0/_._": {}
  947. },
  948. "runtime": {
  949. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {}
  950. },
  951. "build": {
  952. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
  953. }
  954. },
  955. "Microsoft.EntityFrameworkCore.Relational/6.0.4": {
  956. "type": "package",
  957. "dependencies": {
  958. "Microsoft.EntityFrameworkCore": "6.0.4",
  959. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  960. },
  961. "compile": {
  962. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  963. },
  964. "runtime": {
  965. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  966. }
  967. },
  968. "Microsoft.EntityFrameworkCore.SqlServer/6.0.4": {
  969. "type": "package",
  970. "dependencies": {
  971. "Microsoft.Data.SqlClient": "2.1.4",
  972. "Microsoft.EntityFrameworkCore.Relational": "6.0.4"
  973. },
  974. "compile": {
  975. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  976. },
  977. "runtime": {
  978. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  979. }
  980. },
  981. "Microsoft.EntityFrameworkCore.Tools/6.0.4": {
  982. "type": "package",
  983. "dependencies": {
  984. "Microsoft.EntityFrameworkCore.Design": "6.0.4"
  985. },
  986. "compile": {
  987. "lib/net6.0/_._": {}
  988. },
  989. "runtime": {
  990. "lib/net6.0/_._": {}
  991. }
  992. },
  993. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  994. "type": "package",
  995. "build": {
  996. "build/Microsoft.Extensions.ApiDescription.Server.props": {},
  997. "build/Microsoft.Extensions.ApiDescription.Server.targets": {}
  998. },
  999. "buildMultiTargeting": {
  1000. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {},
  1001. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
  1002. }
  1003. },
  1004. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  1005. "type": "package",
  1006. "dependencies": {
  1007. "Microsoft.Extensions.Primitives": "6.0.0"
  1008. },
  1009. "compile": {
  1010. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  1011. },
  1012. "runtime": {
  1013. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  1014. }
  1015. },
  1016. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  1017. "type": "package",
  1018. "dependencies": {
  1019. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  1020. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1021. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1022. "Microsoft.Extensions.Options": "6.0.0",
  1023. "Microsoft.Extensions.Primitives": "6.0.0"
  1024. },
  1025. "compile": {
  1026. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  1027. },
  1028. "runtime": {
  1029. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
  1030. }
  1031. },
  1032. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  1033. "type": "package",
  1034. "dependencies": {
  1035. "Microsoft.Extensions.Primitives": "6.0.0"
  1036. },
  1037. "compile": {
  1038. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  1039. },
  1040. "runtime": {
  1041. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  1042. }
  1043. },
  1044. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  1045. "type": "package",
  1046. "dependencies": {
  1047. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1048. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1049. },
  1050. "compile": {
  1051. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {}
  1052. },
  1053. "runtime": {
  1054. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {}
  1055. },
  1056. "build": {
  1057. "buildTransitive/netcoreapp3.1/_._": {}
  1058. }
  1059. },
  1060. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  1061. "type": "package",
  1062. "compile": {
  1063. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  1064. },
  1065. "runtime": {
  1066. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  1067. },
  1068. "build": {
  1069. "buildTransitive/netcoreapp3.1/_._": {}
  1070. }
  1071. },
  1072. "Microsoft.Extensions.Logging/6.0.0": {
  1073. "type": "package",
  1074. "dependencies": {
  1075. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1076. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1077. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1078. "Microsoft.Extensions.Options": "6.0.0",
  1079. "System.Diagnostics.DiagnosticSource": "6.0.0"
  1080. },
  1081. "compile": {
  1082. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  1083. },
  1084. "runtime": {
  1085. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
  1086. }
  1087. },
  1088. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  1089. "type": "package",
  1090. "compile": {
  1091. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  1092. },
  1093. "runtime": {
  1094. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  1095. },
  1096. "build": {
  1097. "buildTransitive/netcoreapp3.1/_._": {}
  1098. }
  1099. },
  1100. "Microsoft.Extensions.Options/6.0.0": {
  1101. "type": "package",
  1102. "dependencies": {
  1103. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1104. "Microsoft.Extensions.Primitives": "6.0.0"
  1105. },
  1106. "compile": {
  1107. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
  1108. },
  1109. "runtime": {
  1110. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
  1111. }
  1112. },
  1113. "Microsoft.Extensions.Primitives/6.0.0": {
  1114. "type": "package",
  1115. "dependencies": {
  1116. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1117. },
  1118. "compile": {
  1119. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
  1120. },
  1121. "runtime": {
  1122. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
  1123. },
  1124. "build": {
  1125. "buildTransitive/netcoreapp3.1/_._": {}
  1126. }
  1127. },
  1128. "Microsoft.Identity.Client/4.21.1": {
  1129. "type": "package",
  1130. "compile": {
  1131. "ref/netcoreapp2.1/_._": {}
  1132. },
  1133. "runtime": {
  1134. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {}
  1135. }
  1136. },
  1137. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  1138. "type": "package",
  1139. "dependencies": {
  1140. "Microsoft.IdentityModel.Tokens": "6.8.0"
  1141. },
  1142. "compile": {
  1143. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  1144. },
  1145. "runtime": {
  1146. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  1147. }
  1148. },
  1149. "Microsoft.IdentityModel.Logging/6.8.0": {
  1150. "type": "package",
  1151. "compile": {
  1152. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  1153. },
  1154. "runtime": {
  1155. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  1156. }
  1157. },
  1158. "Microsoft.IdentityModel.Protocols/6.8.0": {
  1159. "type": "package",
  1160. "dependencies": {
  1161. "Microsoft.IdentityModel.Logging": "6.8.0",
  1162. "Microsoft.IdentityModel.Tokens": "6.8.0"
  1163. },
  1164. "compile": {
  1165. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  1166. },
  1167. "runtime": {
  1168. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  1169. }
  1170. },
  1171. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  1172. "type": "package",
  1173. "dependencies": {
  1174. "Microsoft.IdentityModel.Protocols": "6.8.0",
  1175. "System.IdentityModel.Tokens.Jwt": "6.8.0"
  1176. },
  1177. "compile": {
  1178. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  1179. },
  1180. "runtime": {
  1181. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  1182. }
  1183. },
  1184. "Microsoft.IdentityModel.Tokens/6.8.0": {
  1185. "type": "package",
  1186. "dependencies": {
  1187. "Microsoft.CSharp": "4.5.0",
  1188. "Microsoft.IdentityModel.Logging": "6.8.0",
  1189. "System.Security.Cryptography.Cng": "4.5.0"
  1190. },
  1191. "compile": {
  1192. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  1193. },
  1194. "runtime": {
  1195. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  1196. }
  1197. },
  1198. "Microsoft.NET.StringTools/1.0.0": {
  1199. "type": "package",
  1200. "dependencies": {
  1201. "System.Memory": "4.5.4",
  1202. "System.Runtime.CompilerServices.Unsafe": "5.0.0"
  1203. },
  1204. "compile": {
  1205. "lib/netstandard2.0/Microsoft.NET.StringTools.dll": {}
  1206. },
  1207. "runtime": {
  1208. "lib/netstandard2.0/_._": {}
  1209. }
  1210. },
  1211. "Microsoft.NETCore.Platforms/3.1.0": {
  1212. "type": "package",
  1213. "compile": {
  1214. "lib/netstandard1.0/_._": {}
  1215. },
  1216. "runtime": {
  1217. "lib/netstandard1.0/_._": {}
  1218. }
  1219. },
  1220. "Microsoft.NETCore.Targets/1.1.3": {
  1221. "type": "package",
  1222. "compile": {
  1223. "lib/netstandard1.0/_._": {}
  1224. },
  1225. "runtime": {
  1226. "lib/netstandard1.0/_._": {}
  1227. }
  1228. },
  1229. "Microsoft.OpenApi/1.2.3": {
  1230. "type": "package",
  1231. "compile": {
  1232. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  1233. },
  1234. "runtime": {
  1235. "lib/netstandard2.0/Microsoft.OpenApi.dll": {}
  1236. }
  1237. },
  1238. "Microsoft.VisualStudio.Debugger.Contracts/17.2.0": {
  1239. "type": "package",
  1240. "dependencies": {
  1241. "MessagePack": "2.1.152",
  1242. "MessagePackAnalyzer": "2.1.152",
  1243. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  1244. "System.Collections.Immutable": "5.0.0"
  1245. },
  1246. "compile": {
  1247. "lib/netstandard2.0/Microsoft.VisualStudio.Debugger.Contracts.dll": {}
  1248. },
  1249. "runtime": {
  1250. "lib/netstandard2.0/Microsoft.VisualStudio.Debugger.Contracts.dll": {}
  1251. }
  1252. },
  1253. "Microsoft.VisualStudio.Web.CodeGeneration/6.0.3": {
  1254. "type": "package",
  1255. "dependencies": {
  1256. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1257. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "6.0.3",
  1258. "System.Collections.Immutable": "6.0.0",
  1259. "System.Private.Uri": "4.3.2"
  1260. },
  1261. "compile": {
  1262. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
  1263. },
  1264. "runtime": {
  1265. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
  1266. }
  1267. },
  1268. "Microsoft.VisualStudio.Web.CodeGeneration.Core/6.0.3": {
  1269. "type": "package",
  1270. "dependencies": {
  1271. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1272. "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "6.0.3",
  1273. "Newtonsoft.Json": "13.0.1",
  1274. "System.Private.Uri": "4.3.2"
  1275. },
  1276. "compile": {
  1277. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
  1278. },
  1279. "runtime": {
  1280. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
  1281. }
  1282. },
  1283. "Microsoft.VisualStudio.Web.CodeGeneration.Design/6.0.3": {
  1284. "type": "package",
  1285. "dependencies": {
  1286. "Microsoft.Build.Locator": "1.4.1",
  1287. "Microsoft.DotNet.Scaffolding.Shared": "6.0.3",
  1288. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "6.0.3",
  1289. "System.Private.Uri": "4.3.2"
  1290. },
  1291. "compile": {
  1292. "lib/net6.0/dotnet-aspnet-codegenerator-design.dll": {}
  1293. },
  1294. "runtime": {
  1295. "lib/net6.0/dotnet-aspnet-codegenerator-design.dll": {}
  1296. },
  1297. "runtimeTargets": {
  1298. "runtimes/win-arm/lib/net6.0/dotnet-aspnet-codegenerator-design.exe": {
  1299. "assetType": "runtime",
  1300. "rid": "win-arm"
  1301. },
  1302. "runtimes/win-arm64/lib/net6.0/dotnet-aspnet-codegenerator-design.exe": {
  1303. "assetType": "runtime",
  1304. "rid": "win-arm64"
  1305. }
  1306. }
  1307. },
  1308. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/6.0.3": {
  1309. "type": "package",
  1310. "dependencies": {
  1311. "Microsoft.DotNet.Scaffolding.Shared": "6.0.3",
  1312. "Microsoft.VisualStudio.Web.CodeGeneration.Core": "6.0.3",
  1313. "System.Private.Uri": "4.3.2"
  1314. },
  1315. "compile": {
  1316. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
  1317. },
  1318. "runtime": {
  1319. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
  1320. }
  1321. },
  1322. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/6.0.3": {
  1323. "type": "package",
  1324. "dependencies": {
  1325. "Microsoft.AspNetCore.Razor.Language": "6.0.0",
  1326. "Microsoft.CodeAnalysis.CSharp": "4.0.0",
  1327. "Microsoft.CodeAnalysis.Razor": "6.0.0",
  1328. "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "6.0.3",
  1329. "System.Private.Uri": "4.3.2"
  1330. },
  1331. "compile": {
  1332. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
  1333. },
  1334. "runtime": {
  1335. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
  1336. }
  1337. },
  1338. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/6.0.3": {
  1339. "type": "package",
  1340. "dependencies": {
  1341. "Microsoft.Build": "17.0.0",
  1342. "Microsoft.Build.Locator": "1.4.1",
  1343. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.0.0",
  1344. "Microsoft.DotNet.Scaffolding.Shared": "6.0.3",
  1345. "Newtonsoft.Json": "13.0.1",
  1346. "System.Private.Uri": "4.3.2"
  1347. },
  1348. "compile": {
  1349. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
  1350. },
  1351. "runtime": {
  1352. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
  1353. }
  1354. },
  1355. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/6.0.3": {
  1356. "type": "package",
  1357. "dependencies": {
  1358. "Microsoft.DotNet.Scaffolding.Shared": "6.0.3",
  1359. "Microsoft.VisualStudio.Web.CodeGeneration": "6.0.3",
  1360. "System.Private.Uri": "4.3.2"
  1361. },
  1362. "compile": {
  1363. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
  1364. },
  1365. "runtime": {
  1366. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
  1367. }
  1368. },
  1369. "Microsoft.Win32.Primitives/4.3.0": {
  1370. "type": "package",
  1371. "dependencies": {
  1372. "Microsoft.NETCore.Platforms": "1.1.0",
  1373. "Microsoft.NETCore.Targets": "1.1.0",
  1374. "System.Runtime": "4.3.0"
  1375. },
  1376. "compile": {
  1377. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  1378. }
  1379. },
  1380. "Microsoft.Win32.Registry/4.7.0": {
  1381. "type": "package",
  1382. "dependencies": {
  1383. "System.Security.AccessControl": "4.7.0",
  1384. "System.Security.Principal.Windows": "4.7.0"
  1385. },
  1386. "compile": {
  1387. "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  1388. },
  1389. "runtime": {
  1390. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  1391. },
  1392. "runtimeTargets": {
  1393. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1394. "assetType": "runtime",
  1395. "rid": "unix"
  1396. },
  1397. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1398. "assetType": "runtime",
  1399. "rid": "win"
  1400. }
  1401. }
  1402. },
  1403. "Microsoft.Win32.SystemEvents/4.7.0": {
  1404. "type": "package",
  1405. "dependencies": {
  1406. "Microsoft.NETCore.Platforms": "3.1.0"
  1407. },
  1408. "compile": {
  1409. "ref/netstandard2.0/_._": {}
  1410. },
  1411. "runtime": {
  1412. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
  1413. },
  1414. "runtimeTargets": {
  1415. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1416. "assetType": "runtime",
  1417. "rid": "win"
  1418. }
  1419. }
  1420. },
  1421. "NETStandard.Library/1.6.1": {
  1422. "type": "package",
  1423. "dependencies": {
  1424. "Microsoft.NETCore.Platforms": "1.1.0",
  1425. "Microsoft.Win32.Primitives": "4.3.0",
  1426. "System.AppContext": "4.3.0",
  1427. "System.Collections": "4.3.0",
  1428. "System.Collections.Concurrent": "4.3.0",
  1429. "System.Console": "4.3.0",
  1430. "System.Diagnostics.Debug": "4.3.0",
  1431. "System.Diagnostics.Tools": "4.3.0",
  1432. "System.Diagnostics.Tracing": "4.3.0",
  1433. "System.Globalization": "4.3.0",
  1434. "System.Globalization.Calendars": "4.3.0",
  1435. "System.IO": "4.3.0",
  1436. "System.IO.Compression": "4.3.0",
  1437. "System.IO.Compression.ZipFile": "4.3.0",
  1438. "System.IO.FileSystem": "4.3.0",
  1439. "System.IO.FileSystem.Primitives": "4.3.0",
  1440. "System.Linq": "4.3.0",
  1441. "System.Linq.Expressions": "4.3.0",
  1442. "System.Net.Http": "4.3.0",
  1443. "System.Net.Primitives": "4.3.0",
  1444. "System.Net.Sockets": "4.3.0",
  1445. "System.ObjectModel": "4.3.0",
  1446. "System.Reflection": "4.3.0",
  1447. "System.Reflection.Extensions": "4.3.0",
  1448. "System.Reflection.Primitives": "4.3.0",
  1449. "System.Resources.ResourceManager": "4.3.0",
  1450. "System.Runtime": "4.3.0",
  1451. "System.Runtime.Extensions": "4.3.0",
  1452. "System.Runtime.Handles": "4.3.0",
  1453. "System.Runtime.InteropServices": "4.3.0",
  1454. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1455. "System.Runtime.Numerics": "4.3.0",
  1456. "System.Security.Cryptography.Algorithms": "4.3.0",
  1457. "System.Security.Cryptography.Encoding": "4.3.0",
  1458. "System.Security.Cryptography.Primitives": "4.3.0",
  1459. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1460. "System.Text.Encoding": "4.3.0",
  1461. "System.Text.Encoding.Extensions": "4.3.0",
  1462. "System.Text.RegularExpressions": "4.3.0",
  1463. "System.Threading": "4.3.0",
  1464. "System.Threading.Tasks": "4.3.0",
  1465. "System.Threading.Timer": "4.3.0",
  1466. "System.Xml.ReaderWriter": "4.3.0",
  1467. "System.Xml.XDocument": "4.3.0"
  1468. }
  1469. },
  1470. "Newtonsoft.Json/13.0.1": {
  1471. "type": "package",
  1472. "compile": {
  1473. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  1474. },
  1475. "runtime": {
  1476. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  1477. }
  1478. },
  1479. "NuGet.Common/5.11.0": {
  1480. "type": "package",
  1481. "dependencies": {
  1482. "NuGet.Frameworks": "5.11.0"
  1483. },
  1484. "compile": {
  1485. "lib/netstandard2.0/NuGet.Common.dll": {}
  1486. },
  1487. "runtime": {
  1488. "lib/netstandard2.0/NuGet.Common.dll": {}
  1489. }
  1490. },
  1491. "NuGet.Configuration/5.11.0": {
  1492. "type": "package",
  1493. "dependencies": {
  1494. "NuGet.Common": "5.11.0",
  1495. "System.Security.Cryptography.ProtectedData": "4.4.0"
  1496. },
  1497. "compile": {
  1498. "lib/netstandard2.0/NuGet.Configuration.dll": {}
  1499. },
  1500. "runtime": {
  1501. "lib/netstandard2.0/NuGet.Configuration.dll": {}
  1502. }
  1503. },
  1504. "NuGet.DependencyResolver.Core/5.11.0": {
  1505. "type": "package",
  1506. "dependencies": {
  1507. "NuGet.LibraryModel": "5.11.0",
  1508. "NuGet.Protocol": "5.11.0"
  1509. },
  1510. "compile": {
  1511. "lib/net5.0/NuGet.DependencyResolver.Core.dll": {}
  1512. },
  1513. "runtime": {
  1514. "lib/net5.0/NuGet.DependencyResolver.Core.dll": {}
  1515. }
  1516. },
  1517. "NuGet.Frameworks/5.11.0": {
  1518. "type": "package",
  1519. "compile": {
  1520. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1521. },
  1522. "runtime": {
  1523. "lib/netstandard2.0/NuGet.Frameworks.dll": {}
  1524. }
  1525. },
  1526. "NuGet.LibraryModel/5.11.0": {
  1527. "type": "package",
  1528. "dependencies": {
  1529. "NuGet.Common": "5.11.0",
  1530. "NuGet.Versioning": "5.11.0"
  1531. },
  1532. "compile": {
  1533. "lib/netstandard2.0/NuGet.LibraryModel.dll": {}
  1534. },
  1535. "runtime": {
  1536. "lib/netstandard2.0/NuGet.LibraryModel.dll": {}
  1537. }
  1538. },
  1539. "NuGet.Packaging/5.11.0": {
  1540. "type": "package",
  1541. "dependencies": {
  1542. "Newtonsoft.Json": "9.0.1",
  1543. "NuGet.Configuration": "5.11.0",
  1544. "NuGet.Versioning": "5.11.0",
  1545. "System.Security.Cryptography.Cng": "5.0.0",
  1546. "System.Security.Cryptography.Pkcs": "5.0.0"
  1547. },
  1548. "compile": {
  1549. "lib/net5.0/NuGet.Packaging.dll": {}
  1550. },
  1551. "runtime": {
  1552. "lib/net5.0/NuGet.Packaging.dll": {}
  1553. }
  1554. },
  1555. "NuGet.ProjectModel/5.11.0": {
  1556. "type": "package",
  1557. "dependencies": {
  1558. "NuGet.DependencyResolver.Core": "5.11.0"
  1559. },
  1560. "compile": {
  1561. "lib/net5.0/NuGet.ProjectModel.dll": {}
  1562. },
  1563. "runtime": {
  1564. "lib/net5.0/NuGet.ProjectModel.dll": {}
  1565. }
  1566. },
  1567. "NuGet.Protocol/5.11.0": {
  1568. "type": "package",
  1569. "dependencies": {
  1570. "NuGet.Packaging": "5.11.0"
  1571. },
  1572. "compile": {
  1573. "lib/net5.0/NuGet.Protocol.dll": {}
  1574. },
  1575. "runtime": {
  1576. "lib/net5.0/NuGet.Protocol.dll": {}
  1577. }
  1578. },
  1579. "NuGet.Versioning/5.11.0": {
  1580. "type": "package",
  1581. "compile": {
  1582. "lib/netstandard2.0/NuGet.Versioning.dll": {}
  1583. },
  1584. "runtime": {
  1585. "lib/netstandard2.0/NuGet.Versioning.dll": {}
  1586. }
  1587. },
  1588. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1589. "type": "package",
  1590. "runtimeTargets": {
  1591. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1592. "assetType": "native",
  1593. "rid": "debian.8-x64"
  1594. }
  1595. }
  1596. },
  1597. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1598. "type": "package",
  1599. "runtimeTargets": {
  1600. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1601. "assetType": "native",
  1602. "rid": "fedora.23-x64"
  1603. }
  1604. }
  1605. },
  1606. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1607. "type": "package",
  1608. "runtimeTargets": {
  1609. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1610. "assetType": "native",
  1611. "rid": "fedora.24-x64"
  1612. }
  1613. }
  1614. },
  1615. "runtime.native.System/4.3.0": {
  1616. "type": "package",
  1617. "dependencies": {
  1618. "Microsoft.NETCore.Platforms": "1.1.0",
  1619. "Microsoft.NETCore.Targets": "1.1.0"
  1620. },
  1621. "compile": {
  1622. "lib/netstandard1.0/_._": {}
  1623. },
  1624. "runtime": {
  1625. "lib/netstandard1.0/_._": {}
  1626. }
  1627. },
  1628. "runtime.native.System.IO.Compression/4.3.0": {
  1629. "type": "package",
  1630. "dependencies": {
  1631. "Microsoft.NETCore.Platforms": "1.1.0",
  1632. "Microsoft.NETCore.Targets": "1.1.0"
  1633. },
  1634. "compile": {
  1635. "lib/netstandard1.0/_._": {}
  1636. },
  1637. "runtime": {
  1638. "lib/netstandard1.0/_._": {}
  1639. }
  1640. },
  1641. "runtime.native.System.Net.Http/4.3.0": {
  1642. "type": "package",
  1643. "dependencies": {
  1644. "Microsoft.NETCore.Platforms": "1.1.0",
  1645. "Microsoft.NETCore.Targets": "1.1.0"
  1646. },
  1647. "compile": {
  1648. "lib/netstandard1.0/_._": {}
  1649. },
  1650. "runtime": {
  1651. "lib/netstandard1.0/_._": {}
  1652. }
  1653. },
  1654. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1655. "type": "package",
  1656. "dependencies": {
  1657. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1658. },
  1659. "compile": {
  1660. "lib/netstandard1.0/_._": {}
  1661. },
  1662. "runtime": {
  1663. "lib/netstandard1.0/_._": {}
  1664. }
  1665. },
  1666. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1667. "type": "package",
  1668. "dependencies": {
  1669. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1670. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1671. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1672. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1673. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1674. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1675. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1676. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1677. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1678. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1679. },
  1680. "compile": {
  1681. "lib/netstandard1.0/_._": {}
  1682. },
  1683. "runtime": {
  1684. "lib/netstandard1.0/_._": {}
  1685. }
  1686. },
  1687. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1688. "type": "package",
  1689. "runtimeTargets": {
  1690. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1691. "assetType": "native",
  1692. "rid": "opensuse.13.2-x64"
  1693. }
  1694. }
  1695. },
  1696. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1697. "type": "package",
  1698. "runtimeTargets": {
  1699. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1700. "assetType": "native",
  1701. "rid": "opensuse.42.1-x64"
  1702. }
  1703. }
  1704. },
  1705. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1706. "type": "package",
  1707. "runtimeTargets": {
  1708. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1709. "assetType": "native",
  1710. "rid": "osx.10.10-x64"
  1711. }
  1712. }
  1713. },
  1714. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1715. "type": "package",
  1716. "runtimeTargets": {
  1717. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1718. "assetType": "native",
  1719. "rid": "osx.10.10-x64"
  1720. }
  1721. }
  1722. },
  1723. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1724. "type": "package",
  1725. "runtimeTargets": {
  1726. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1727. "assetType": "native",
  1728. "rid": "rhel.7-x64"
  1729. }
  1730. }
  1731. },
  1732. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1733. "type": "package",
  1734. "runtimeTargets": {
  1735. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1736. "assetType": "native",
  1737. "rid": "ubuntu.14.04-x64"
  1738. }
  1739. }
  1740. },
  1741. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1742. "type": "package",
  1743. "runtimeTargets": {
  1744. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1745. "assetType": "native",
  1746. "rid": "ubuntu.16.04-x64"
  1747. }
  1748. }
  1749. },
  1750. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1751. "type": "package",
  1752. "runtimeTargets": {
  1753. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1754. "assetType": "native",
  1755. "rid": "ubuntu.16.10-x64"
  1756. }
  1757. }
  1758. },
  1759. "Swashbuckle.AspNetCore/6.3.0": {
  1760. "type": "package",
  1761. "dependencies": {
  1762. "Microsoft.Extensions.ApiDescription.Server": "3.0.0",
  1763. "Swashbuckle.AspNetCore.Swagger": "6.3.0",
  1764. "Swashbuckle.AspNetCore.SwaggerGen": "6.3.0",
  1765. "Swashbuckle.AspNetCore.SwaggerUI": "6.3.0"
  1766. },
  1767. "build": {
  1768. "build/Swashbuckle.AspNetCore.props": {}
  1769. }
  1770. },
  1771. "Swashbuckle.AspNetCore.Swagger/6.3.0": {
  1772. "type": "package",
  1773. "dependencies": {
  1774. "Microsoft.OpenApi": "1.2.3"
  1775. },
  1776. "compile": {
  1777. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1778. },
  1779. "runtime": {
  1780. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {}
  1781. },
  1782. "frameworkReferences": [
  1783. "Microsoft.AspNetCore.App"
  1784. ]
  1785. },
  1786. "Swashbuckle.AspNetCore.SwaggerGen/6.3.0": {
  1787. "type": "package",
  1788. "dependencies": {
  1789. "Swashbuckle.AspNetCore.Swagger": "6.3.0"
  1790. },
  1791. "compile": {
  1792. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1793. },
  1794. "runtime": {
  1795. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {}
  1796. }
  1797. },
  1798. "Swashbuckle.AspNetCore.SwaggerUI/6.3.0": {
  1799. "type": "package",
  1800. "compile": {
  1801. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1802. },
  1803. "runtime": {
  1804. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {}
  1805. },
  1806. "frameworkReferences": [
  1807. "Microsoft.AspNetCore.App"
  1808. ]
  1809. },
  1810. "System.AppContext/4.3.0": {
  1811. "type": "package",
  1812. "dependencies": {
  1813. "System.Runtime": "4.3.0"
  1814. },
  1815. "compile": {
  1816. "ref/netstandard1.6/System.AppContext.dll": {}
  1817. },
  1818. "runtime": {
  1819. "lib/netstandard1.6/System.AppContext.dll": {}
  1820. }
  1821. },
  1822. "System.Buffers/4.3.0": {
  1823. "type": "package",
  1824. "dependencies": {
  1825. "System.Diagnostics.Debug": "4.3.0",
  1826. "System.Diagnostics.Tracing": "4.3.0",
  1827. "System.Resources.ResourceManager": "4.3.0",
  1828. "System.Runtime": "4.3.0",
  1829. "System.Threading": "4.3.0"
  1830. },
  1831. "compile": {
  1832. "lib/netstandard1.1/_._": {}
  1833. },
  1834. "runtime": {
  1835. "lib/netstandard1.1/System.Buffers.dll": {}
  1836. }
  1837. },
  1838. "System.Collections/4.3.0": {
  1839. "type": "package",
  1840. "dependencies": {
  1841. "Microsoft.NETCore.Platforms": "1.1.0",
  1842. "Microsoft.NETCore.Targets": "1.1.0",
  1843. "System.Runtime": "4.3.0"
  1844. },
  1845. "compile": {
  1846. "ref/netstandard1.3/System.Collections.dll": {}
  1847. }
  1848. },
  1849. "System.Collections.Concurrent/4.3.0": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "System.Collections": "4.3.0",
  1853. "System.Diagnostics.Debug": "4.3.0",
  1854. "System.Diagnostics.Tracing": "4.3.0",
  1855. "System.Globalization": "4.3.0",
  1856. "System.Reflection": "4.3.0",
  1857. "System.Resources.ResourceManager": "4.3.0",
  1858. "System.Runtime": "4.3.0",
  1859. "System.Runtime.Extensions": "4.3.0",
  1860. "System.Threading": "4.3.0",
  1861. "System.Threading.Tasks": "4.3.0"
  1862. },
  1863. "compile": {
  1864. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1865. },
  1866. "runtime": {
  1867. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1868. }
  1869. },
  1870. "System.Collections.Immutable/6.0.0": {
  1871. "type": "package",
  1872. "dependencies": {
  1873. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1874. },
  1875. "compile": {
  1876. "lib/net6.0/System.Collections.Immutable.dll": {}
  1877. },
  1878. "runtime": {
  1879. "lib/net6.0/System.Collections.Immutable.dll": {}
  1880. },
  1881. "build": {
  1882. "buildTransitive/netcoreapp3.1/_._": {}
  1883. }
  1884. },
  1885. "System.Composition/1.0.31": {
  1886. "type": "package",
  1887. "dependencies": {
  1888. "System.Composition.AttributedModel": "1.0.31",
  1889. "System.Composition.Convention": "1.0.31",
  1890. "System.Composition.Hosting": "1.0.31",
  1891. "System.Composition.Runtime": "1.0.31",
  1892. "System.Composition.TypedParts": "1.0.31"
  1893. }
  1894. },
  1895. "System.Composition.AttributedModel/1.0.31": {
  1896. "type": "package",
  1897. "dependencies": {
  1898. "System.Reflection": "4.3.0",
  1899. "System.Runtime": "4.3.0"
  1900. },
  1901. "compile": {
  1902. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  1903. },
  1904. "runtime": {
  1905. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  1906. }
  1907. },
  1908. "System.Composition.Convention/1.0.31": {
  1909. "type": "package",
  1910. "dependencies": {
  1911. "System.Collections": "4.3.0",
  1912. "System.Composition.AttributedModel": "1.0.31",
  1913. "System.Diagnostics.Debug": "4.3.0",
  1914. "System.Diagnostics.Tools": "4.3.0",
  1915. "System.Globalization": "4.3.0",
  1916. "System.Linq": "4.3.0",
  1917. "System.Linq.Expressions": "4.3.0",
  1918. "System.Reflection": "4.3.0",
  1919. "System.Reflection.Extensions": "4.3.0",
  1920. "System.Resources.ResourceManager": "4.3.0",
  1921. "System.Runtime": "4.3.0",
  1922. "System.Threading": "4.3.0"
  1923. },
  1924. "compile": {
  1925. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  1926. },
  1927. "runtime": {
  1928. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  1929. }
  1930. },
  1931. "System.Composition.Hosting/1.0.31": {
  1932. "type": "package",
  1933. "dependencies": {
  1934. "System.Collections": "4.3.0",
  1935. "System.Composition.Runtime": "1.0.31",
  1936. "System.Diagnostics.Debug": "4.3.0",
  1937. "System.Diagnostics.Tools": "4.3.0",
  1938. "System.Globalization": "4.3.0",
  1939. "System.Linq": "4.3.0",
  1940. "System.Linq.Expressions": "4.3.0",
  1941. "System.ObjectModel": "4.3.0",
  1942. "System.Reflection": "4.3.0",
  1943. "System.Reflection.Extensions": "4.3.0",
  1944. "System.Resources.ResourceManager": "4.3.0",
  1945. "System.Runtime": "4.3.0",
  1946. "System.Threading": "4.3.0"
  1947. },
  1948. "compile": {
  1949. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  1950. },
  1951. "runtime": {
  1952. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  1953. }
  1954. },
  1955. "System.Composition.Runtime/1.0.31": {
  1956. "type": "package",
  1957. "dependencies": {
  1958. "System.Collections": "4.3.0",
  1959. "System.Diagnostics.Debug": "4.3.0",
  1960. "System.Diagnostics.Tools": "4.3.0",
  1961. "System.Globalization": "4.3.0",
  1962. "System.Linq": "4.3.0",
  1963. "System.Reflection": "4.3.0",
  1964. "System.Resources.ResourceManager": "4.3.0",
  1965. "System.Runtime": "4.3.0"
  1966. },
  1967. "compile": {
  1968. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  1969. },
  1970. "runtime": {
  1971. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  1972. }
  1973. },
  1974. "System.Composition.TypedParts/1.0.31": {
  1975. "type": "package",
  1976. "dependencies": {
  1977. "System.Collections": "4.3.0",
  1978. "System.Composition.AttributedModel": "1.0.31",
  1979. "System.Composition.Hosting": "1.0.31",
  1980. "System.Composition.Runtime": "1.0.31",
  1981. "System.Diagnostics.Debug": "4.3.0",
  1982. "System.Diagnostics.Tools": "4.3.0",
  1983. "System.Globalization": "4.3.0",
  1984. "System.Linq": "4.3.0",
  1985. "System.Linq.Expressions": "4.3.0",
  1986. "System.Reflection": "4.3.0",
  1987. "System.Reflection.Extensions": "4.3.0",
  1988. "System.Resources.ResourceManager": "4.3.0",
  1989. "System.Runtime": "4.3.0",
  1990. "System.Runtime.Extensions": "4.3.0"
  1991. },
  1992. "compile": {
  1993. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  1994. },
  1995. "runtime": {
  1996. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  1997. }
  1998. },
  1999. "System.Configuration.ConfigurationManager/4.7.0": {
  2000. "type": "package",
  2001. "dependencies": {
  2002. "System.Security.Cryptography.ProtectedData": "4.7.0",
  2003. "System.Security.Permissions": "4.7.0"
  2004. },
  2005. "compile": {
  2006. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  2007. },
  2008. "runtime": {
  2009. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  2010. }
  2011. },
  2012. "System.Console/4.3.0": {
  2013. "type": "package",
  2014. "dependencies": {
  2015. "Microsoft.NETCore.Platforms": "1.1.0",
  2016. "Microsoft.NETCore.Targets": "1.1.0",
  2017. "System.IO": "4.3.0",
  2018. "System.Runtime": "4.3.0",
  2019. "System.Text.Encoding": "4.3.0"
  2020. },
  2021. "compile": {
  2022. "ref/netstandard1.3/System.Console.dll": {}
  2023. }
  2024. },
  2025. "System.Diagnostics.Debug/4.3.0": {
  2026. "type": "package",
  2027. "dependencies": {
  2028. "Microsoft.NETCore.Platforms": "1.1.0",
  2029. "Microsoft.NETCore.Targets": "1.1.0",
  2030. "System.Runtime": "4.3.0"
  2031. },
  2032. "compile": {
  2033. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  2034. }
  2035. },
  2036. "System.Diagnostics.DiagnosticSource/6.0.0": {
  2037. "type": "package",
  2038. "dependencies": {
  2039. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2040. },
  2041. "compile": {
  2042. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
  2043. },
  2044. "runtime": {
  2045. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {}
  2046. },
  2047. "build": {
  2048. "buildTransitive/netcoreapp3.1/_._": {}
  2049. }
  2050. },
  2051. "System.Diagnostics.Tools/4.3.0": {
  2052. "type": "package",
  2053. "dependencies": {
  2054. "Microsoft.NETCore.Platforms": "1.1.0",
  2055. "Microsoft.NETCore.Targets": "1.1.0",
  2056. "System.Runtime": "4.3.0"
  2057. },
  2058. "compile": {
  2059. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  2060. }
  2061. },
  2062. "System.Diagnostics.Tracing/4.3.0": {
  2063. "type": "package",
  2064. "dependencies": {
  2065. "Microsoft.NETCore.Platforms": "1.1.0",
  2066. "Microsoft.NETCore.Targets": "1.1.0",
  2067. "System.Runtime": "4.3.0"
  2068. },
  2069. "compile": {
  2070. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  2071. }
  2072. },
  2073. "System.Drawing.Common/4.7.0": {
  2074. "type": "package",
  2075. "dependencies": {
  2076. "Microsoft.NETCore.Platforms": "3.1.0",
  2077. "Microsoft.Win32.SystemEvents": "4.7.0"
  2078. },
  2079. "compile": {
  2080. "ref/netcoreapp3.0/_._": {}
  2081. },
  2082. "runtime": {
  2083. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  2084. },
  2085. "runtimeTargets": {
  2086. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2087. "assetType": "runtime",
  2088. "rid": "unix"
  2089. },
  2090. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2091. "assetType": "runtime",
  2092. "rid": "win"
  2093. }
  2094. }
  2095. },
  2096. "System.Formats.Asn1/5.0.0": {
  2097. "type": "package",
  2098. "compile": {
  2099. "lib/netstandard2.0/_._": {}
  2100. },
  2101. "runtime": {
  2102. "lib/netstandard2.0/System.Formats.Asn1.dll": {}
  2103. }
  2104. },
  2105. "System.Globalization/4.3.0": {
  2106. "type": "package",
  2107. "dependencies": {
  2108. "Microsoft.NETCore.Platforms": "1.1.0",
  2109. "Microsoft.NETCore.Targets": "1.1.0",
  2110. "System.Runtime": "4.3.0"
  2111. },
  2112. "compile": {
  2113. "ref/netstandard1.3/System.Globalization.dll": {}
  2114. }
  2115. },
  2116. "System.Globalization.Calendars/4.3.0": {
  2117. "type": "package",
  2118. "dependencies": {
  2119. "Microsoft.NETCore.Platforms": "1.1.0",
  2120. "Microsoft.NETCore.Targets": "1.1.0",
  2121. "System.Globalization": "4.3.0",
  2122. "System.Runtime": "4.3.0"
  2123. },
  2124. "compile": {
  2125. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  2126. }
  2127. },
  2128. "System.Globalization.Extensions/4.3.0": {
  2129. "type": "package",
  2130. "dependencies": {
  2131. "Microsoft.NETCore.Platforms": "1.1.0",
  2132. "System.Globalization": "4.3.0",
  2133. "System.Resources.ResourceManager": "4.3.0",
  2134. "System.Runtime": "4.3.0",
  2135. "System.Runtime.Extensions": "4.3.0",
  2136. "System.Runtime.InteropServices": "4.3.0"
  2137. },
  2138. "compile": {
  2139. "ref/netstandard1.3/_._": {}
  2140. },
  2141. "runtimeTargets": {
  2142. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2143. "assetType": "runtime",
  2144. "rid": "unix"
  2145. },
  2146. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2147. "assetType": "runtime",
  2148. "rid": "win"
  2149. }
  2150. }
  2151. },
  2152. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  2153. "type": "package",
  2154. "dependencies": {
  2155. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  2156. "Microsoft.IdentityModel.Tokens": "6.8.0"
  2157. },
  2158. "compile": {
  2159. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  2160. },
  2161. "runtime": {
  2162. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  2163. }
  2164. },
  2165. "System.IO/4.3.0": {
  2166. "type": "package",
  2167. "dependencies": {
  2168. "Microsoft.NETCore.Platforms": "1.1.0",
  2169. "Microsoft.NETCore.Targets": "1.1.0",
  2170. "System.Runtime": "4.3.0",
  2171. "System.Text.Encoding": "4.3.0",
  2172. "System.Threading.Tasks": "4.3.0"
  2173. },
  2174. "compile": {
  2175. "ref/netstandard1.5/System.IO.dll": {}
  2176. }
  2177. },
  2178. "System.IO.Compression/4.3.0": {
  2179. "type": "package",
  2180. "dependencies": {
  2181. "Microsoft.NETCore.Platforms": "1.1.0",
  2182. "System.Buffers": "4.3.0",
  2183. "System.Collections": "4.3.0",
  2184. "System.Diagnostics.Debug": "4.3.0",
  2185. "System.IO": "4.3.0",
  2186. "System.Resources.ResourceManager": "4.3.0",
  2187. "System.Runtime": "4.3.0",
  2188. "System.Runtime.Extensions": "4.3.0",
  2189. "System.Runtime.Handles": "4.3.0",
  2190. "System.Runtime.InteropServices": "4.3.0",
  2191. "System.Text.Encoding": "4.3.0",
  2192. "System.Threading": "4.3.0",
  2193. "System.Threading.Tasks": "4.3.0",
  2194. "runtime.native.System": "4.3.0",
  2195. "runtime.native.System.IO.Compression": "4.3.0"
  2196. },
  2197. "compile": {
  2198. "ref/netstandard1.3/System.IO.Compression.dll": {}
  2199. },
  2200. "runtimeTargets": {
  2201. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2202. "assetType": "runtime",
  2203. "rid": "unix"
  2204. },
  2205. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2206. "assetType": "runtime",
  2207. "rid": "win"
  2208. }
  2209. }
  2210. },
  2211. "System.IO.Compression.ZipFile/4.3.0": {
  2212. "type": "package",
  2213. "dependencies": {
  2214. "System.Buffers": "4.3.0",
  2215. "System.IO": "4.3.0",
  2216. "System.IO.Compression": "4.3.0",
  2217. "System.IO.FileSystem": "4.3.0",
  2218. "System.IO.FileSystem.Primitives": "4.3.0",
  2219. "System.Resources.ResourceManager": "4.3.0",
  2220. "System.Runtime": "4.3.0",
  2221. "System.Runtime.Extensions": "4.3.0",
  2222. "System.Text.Encoding": "4.3.0"
  2223. },
  2224. "compile": {
  2225. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2226. },
  2227. "runtime": {
  2228. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2229. }
  2230. },
  2231. "System.IO.FileSystem/4.3.0": {
  2232. "type": "package",
  2233. "dependencies": {
  2234. "Microsoft.NETCore.Platforms": "1.1.0",
  2235. "Microsoft.NETCore.Targets": "1.1.0",
  2236. "System.IO": "4.3.0",
  2237. "System.IO.FileSystem.Primitives": "4.3.0",
  2238. "System.Runtime": "4.3.0",
  2239. "System.Runtime.Handles": "4.3.0",
  2240. "System.Text.Encoding": "4.3.0",
  2241. "System.Threading.Tasks": "4.3.0"
  2242. },
  2243. "compile": {
  2244. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  2245. }
  2246. },
  2247. "System.IO.FileSystem.Primitives/4.3.0": {
  2248. "type": "package",
  2249. "dependencies": {
  2250. "System.Runtime": "4.3.0"
  2251. },
  2252. "compile": {
  2253. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2254. },
  2255. "runtime": {
  2256. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2257. }
  2258. },
  2259. "System.IO.Pipelines/5.0.1": {
  2260. "type": "package",
  2261. "compile": {
  2262. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {}
  2263. },
  2264. "runtime": {
  2265. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {}
  2266. }
  2267. },
  2268. "System.Linq/4.3.0": {
  2269. "type": "package",
  2270. "dependencies": {
  2271. "System.Collections": "4.3.0",
  2272. "System.Diagnostics.Debug": "4.3.0",
  2273. "System.Resources.ResourceManager": "4.3.0",
  2274. "System.Runtime": "4.3.0",
  2275. "System.Runtime.Extensions": "4.3.0"
  2276. },
  2277. "compile": {
  2278. "ref/netstandard1.6/System.Linq.dll": {}
  2279. },
  2280. "runtime": {
  2281. "lib/netstandard1.6/System.Linq.dll": {}
  2282. }
  2283. },
  2284. "System.Linq.Expressions/4.3.0": {
  2285. "type": "package",
  2286. "dependencies": {
  2287. "System.Collections": "4.3.0",
  2288. "System.Diagnostics.Debug": "4.3.0",
  2289. "System.Globalization": "4.3.0",
  2290. "System.IO": "4.3.0",
  2291. "System.Linq": "4.3.0",
  2292. "System.ObjectModel": "4.3.0",
  2293. "System.Reflection": "4.3.0",
  2294. "System.Reflection.Emit": "4.3.0",
  2295. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2296. "System.Reflection.Emit.Lightweight": "4.3.0",
  2297. "System.Reflection.Extensions": "4.3.0",
  2298. "System.Reflection.Primitives": "4.3.0",
  2299. "System.Reflection.TypeExtensions": "4.3.0",
  2300. "System.Resources.ResourceManager": "4.3.0",
  2301. "System.Runtime": "4.3.0",
  2302. "System.Runtime.Extensions": "4.3.0",
  2303. "System.Threading": "4.3.0"
  2304. },
  2305. "compile": {
  2306. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  2307. },
  2308. "runtime": {
  2309. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2310. }
  2311. },
  2312. "System.Memory/4.5.4": {
  2313. "type": "package",
  2314. "compile": {
  2315. "ref/netcoreapp2.1/_._": {}
  2316. },
  2317. "runtime": {
  2318. "lib/netcoreapp2.1/_._": {}
  2319. }
  2320. },
  2321. "System.Net.Http/4.3.0": {
  2322. "type": "package",
  2323. "dependencies": {
  2324. "Microsoft.NETCore.Platforms": "1.1.0",
  2325. "System.Collections": "4.3.0",
  2326. "System.Diagnostics.Debug": "4.3.0",
  2327. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2328. "System.Diagnostics.Tracing": "4.3.0",
  2329. "System.Globalization": "4.3.0",
  2330. "System.Globalization.Extensions": "4.3.0",
  2331. "System.IO": "4.3.0",
  2332. "System.IO.FileSystem": "4.3.0",
  2333. "System.Net.Primitives": "4.3.0",
  2334. "System.Resources.ResourceManager": "4.3.0",
  2335. "System.Runtime": "4.3.0",
  2336. "System.Runtime.Extensions": "4.3.0",
  2337. "System.Runtime.Handles": "4.3.0",
  2338. "System.Runtime.InteropServices": "4.3.0",
  2339. "System.Security.Cryptography.Algorithms": "4.3.0",
  2340. "System.Security.Cryptography.Encoding": "4.3.0",
  2341. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2342. "System.Security.Cryptography.Primitives": "4.3.0",
  2343. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2344. "System.Text.Encoding": "4.3.0",
  2345. "System.Threading": "4.3.0",
  2346. "System.Threading.Tasks": "4.3.0",
  2347. "runtime.native.System": "4.3.0",
  2348. "runtime.native.System.Net.Http": "4.3.0",
  2349. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2350. },
  2351. "compile": {
  2352. "ref/netstandard1.3/System.Net.Http.dll": {}
  2353. },
  2354. "runtimeTargets": {
  2355. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2356. "assetType": "runtime",
  2357. "rid": "unix"
  2358. },
  2359. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2360. "assetType": "runtime",
  2361. "rid": "win"
  2362. }
  2363. }
  2364. },
  2365. "System.Net.Primitives/4.3.0": {
  2366. "type": "package",
  2367. "dependencies": {
  2368. "Microsoft.NETCore.Platforms": "1.1.0",
  2369. "Microsoft.NETCore.Targets": "1.1.0",
  2370. "System.Runtime": "4.3.0",
  2371. "System.Runtime.Handles": "4.3.0"
  2372. },
  2373. "compile": {
  2374. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2375. }
  2376. },
  2377. "System.Net.Sockets/4.3.0": {
  2378. "type": "package",
  2379. "dependencies": {
  2380. "Microsoft.NETCore.Platforms": "1.1.0",
  2381. "Microsoft.NETCore.Targets": "1.1.0",
  2382. "System.IO": "4.3.0",
  2383. "System.Net.Primitives": "4.3.0",
  2384. "System.Runtime": "4.3.0",
  2385. "System.Threading.Tasks": "4.3.0"
  2386. },
  2387. "compile": {
  2388. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2389. }
  2390. },
  2391. "System.ObjectModel/4.3.0": {
  2392. "type": "package",
  2393. "dependencies": {
  2394. "System.Collections": "4.3.0",
  2395. "System.Diagnostics.Debug": "4.3.0",
  2396. "System.Resources.ResourceManager": "4.3.0",
  2397. "System.Runtime": "4.3.0",
  2398. "System.Threading": "4.3.0"
  2399. },
  2400. "compile": {
  2401. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2402. },
  2403. "runtime": {
  2404. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2405. }
  2406. },
  2407. "System.Private.Uri/4.3.2": {
  2408. "type": "package",
  2409. "dependencies": {
  2410. "Microsoft.NETCore.Platforms": "1.1.1",
  2411. "Microsoft.NETCore.Targets": "1.1.3"
  2412. },
  2413. "compile": {
  2414. "ref/netstandard/_._": {}
  2415. }
  2416. },
  2417. "System.Reflection/4.3.0": {
  2418. "type": "package",
  2419. "dependencies": {
  2420. "Microsoft.NETCore.Platforms": "1.1.0",
  2421. "Microsoft.NETCore.Targets": "1.1.0",
  2422. "System.IO": "4.3.0",
  2423. "System.Reflection.Primitives": "4.3.0",
  2424. "System.Runtime": "4.3.0"
  2425. },
  2426. "compile": {
  2427. "ref/netstandard1.5/System.Reflection.dll": {}
  2428. }
  2429. },
  2430. "System.Reflection.Emit/4.6.0": {
  2431. "type": "package",
  2432. "compile": {
  2433. "ref/netcoreapp2.0/_._": {}
  2434. },
  2435. "runtime": {
  2436. "lib/netcoreapp2.0/_._": {}
  2437. }
  2438. },
  2439. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2440. "type": "package",
  2441. "dependencies": {
  2442. "System.Reflection": "4.3.0",
  2443. "System.Reflection.Primitives": "4.3.0",
  2444. "System.Runtime": "4.3.0"
  2445. },
  2446. "compile": {
  2447. "ref/netstandard1.0/_._": {}
  2448. },
  2449. "runtime": {
  2450. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2451. }
  2452. },
  2453. "System.Reflection.Emit.Lightweight/4.6.0": {
  2454. "type": "package",
  2455. "compile": {
  2456. "ref/netcoreapp2.0/_._": {}
  2457. },
  2458. "runtime": {
  2459. "lib/netcoreapp2.0/_._": {}
  2460. }
  2461. },
  2462. "System.Reflection.Extensions/4.3.0": {
  2463. "type": "package",
  2464. "dependencies": {
  2465. "Microsoft.NETCore.Platforms": "1.1.0",
  2466. "Microsoft.NETCore.Targets": "1.1.0",
  2467. "System.Reflection": "4.3.0",
  2468. "System.Runtime": "4.3.0"
  2469. },
  2470. "compile": {
  2471. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  2472. }
  2473. },
  2474. "System.Reflection.Metadata/5.0.0": {
  2475. "type": "package",
  2476. "compile": {
  2477. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  2478. },
  2479. "runtime": {
  2480. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  2481. }
  2482. },
  2483. "System.Reflection.Primitives/4.3.0": {
  2484. "type": "package",
  2485. "dependencies": {
  2486. "Microsoft.NETCore.Platforms": "1.1.0",
  2487. "Microsoft.NETCore.Targets": "1.1.0",
  2488. "System.Runtime": "4.3.0"
  2489. },
  2490. "compile": {
  2491. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  2492. }
  2493. },
  2494. "System.Reflection.TypeExtensions/4.3.0": {
  2495. "type": "package",
  2496. "dependencies": {
  2497. "System.Reflection": "4.3.0",
  2498. "System.Runtime": "4.3.0"
  2499. },
  2500. "compile": {
  2501. "ref/netstandard1.5/_._": {}
  2502. },
  2503. "runtime": {
  2504. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2505. }
  2506. },
  2507. "System.Resources.ResourceManager/4.3.0": {
  2508. "type": "package",
  2509. "dependencies": {
  2510. "Microsoft.NETCore.Platforms": "1.1.0",
  2511. "Microsoft.NETCore.Targets": "1.1.0",
  2512. "System.Globalization": "4.3.0",
  2513. "System.Reflection": "4.3.0",
  2514. "System.Runtime": "4.3.0"
  2515. },
  2516. "compile": {
  2517. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  2518. }
  2519. },
  2520. "System.Runtime/4.3.0": {
  2521. "type": "package",
  2522. "dependencies": {
  2523. "Microsoft.NETCore.Platforms": "1.1.0",
  2524. "Microsoft.NETCore.Targets": "1.1.0"
  2525. },
  2526. "compile": {
  2527. "ref/netstandard1.5/System.Runtime.dll": {}
  2528. }
  2529. },
  2530. "System.Runtime.Caching/4.7.0": {
  2531. "type": "package",
  2532. "dependencies": {
  2533. "System.Configuration.ConfigurationManager": "4.7.0"
  2534. },
  2535. "compile": {
  2536. "ref/netstandard2.0/_._": {}
  2537. },
  2538. "runtime": {
  2539. "lib/netstandard2.0/System.Runtime.Caching.dll": {}
  2540. },
  2541. "runtimeTargets": {
  2542. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  2543. "assetType": "runtime",
  2544. "rid": "win"
  2545. }
  2546. }
  2547. },
  2548. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  2549. "type": "package",
  2550. "compile": {
  2551. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  2552. },
  2553. "runtime": {
  2554. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  2555. },
  2556. "build": {
  2557. "buildTransitive/netcoreapp3.1/_._": {}
  2558. }
  2559. },
  2560. "System.Runtime.Extensions/4.3.0": {
  2561. "type": "package",
  2562. "dependencies": {
  2563. "Microsoft.NETCore.Platforms": "1.1.0",
  2564. "Microsoft.NETCore.Targets": "1.1.0",
  2565. "System.Runtime": "4.3.0"
  2566. },
  2567. "compile": {
  2568. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  2569. }
  2570. },
  2571. "System.Runtime.Handles/4.3.0": {
  2572. "type": "package",
  2573. "dependencies": {
  2574. "Microsoft.NETCore.Platforms": "1.1.0",
  2575. "Microsoft.NETCore.Targets": "1.1.0",
  2576. "System.Runtime": "4.3.0"
  2577. },
  2578. "compile": {
  2579. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  2580. }
  2581. },
  2582. "System.Runtime.InteropServices/4.3.0": {
  2583. "type": "package",
  2584. "dependencies": {
  2585. "Microsoft.NETCore.Platforms": "1.1.0",
  2586. "Microsoft.NETCore.Targets": "1.1.0",
  2587. "System.Reflection": "4.3.0",
  2588. "System.Reflection.Primitives": "4.3.0",
  2589. "System.Runtime": "4.3.0",
  2590. "System.Runtime.Handles": "4.3.0"
  2591. },
  2592. "compile": {
  2593. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2594. }
  2595. },
  2596. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2597. "type": "package",
  2598. "dependencies": {
  2599. "System.Reflection": "4.3.0",
  2600. "System.Reflection.Extensions": "4.3.0",
  2601. "System.Resources.ResourceManager": "4.3.0",
  2602. "System.Runtime": "4.3.0",
  2603. "System.Runtime.InteropServices": "4.3.0",
  2604. "System.Threading": "4.3.0",
  2605. "runtime.native.System": "4.3.0"
  2606. },
  2607. "compile": {
  2608. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2609. },
  2610. "runtime": {
  2611. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2612. },
  2613. "runtimeTargets": {
  2614. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2615. "assetType": "runtime",
  2616. "rid": "unix"
  2617. },
  2618. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2619. "assetType": "runtime",
  2620. "rid": "win"
  2621. }
  2622. }
  2623. },
  2624. "System.Runtime.Numerics/4.3.0": {
  2625. "type": "package",
  2626. "dependencies": {
  2627. "System.Globalization": "4.3.0",
  2628. "System.Resources.ResourceManager": "4.3.0",
  2629. "System.Runtime": "4.3.0",
  2630. "System.Runtime.Extensions": "4.3.0"
  2631. },
  2632. "compile": {
  2633. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2634. },
  2635. "runtime": {
  2636. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2637. }
  2638. },
  2639. "System.Security.AccessControl/4.7.0": {
  2640. "type": "package",
  2641. "dependencies": {
  2642. "Microsoft.NETCore.Platforms": "3.1.0",
  2643. "System.Security.Principal.Windows": "4.7.0"
  2644. },
  2645. "compile": {
  2646. "ref/netstandard2.0/System.Security.AccessControl.dll": {}
  2647. },
  2648. "runtime": {
  2649. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2650. },
  2651. "runtimeTargets": {
  2652. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2653. "assetType": "runtime",
  2654. "rid": "win"
  2655. }
  2656. }
  2657. },
  2658. "System.Security.Cryptography.Algorithms/4.3.0": {
  2659. "type": "package",
  2660. "dependencies": {
  2661. "Microsoft.NETCore.Platforms": "1.1.0",
  2662. "System.Collections": "4.3.0",
  2663. "System.IO": "4.3.0",
  2664. "System.Resources.ResourceManager": "4.3.0",
  2665. "System.Runtime": "4.3.0",
  2666. "System.Runtime.Extensions": "4.3.0",
  2667. "System.Runtime.Handles": "4.3.0",
  2668. "System.Runtime.InteropServices": "4.3.0",
  2669. "System.Runtime.Numerics": "4.3.0",
  2670. "System.Security.Cryptography.Encoding": "4.3.0",
  2671. "System.Security.Cryptography.Primitives": "4.3.0",
  2672. "System.Text.Encoding": "4.3.0",
  2673. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2674. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2675. },
  2676. "compile": {
  2677. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2678. },
  2679. "runtimeTargets": {
  2680. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2681. "assetType": "runtime",
  2682. "rid": "osx"
  2683. },
  2684. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2685. "assetType": "runtime",
  2686. "rid": "unix"
  2687. },
  2688. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2689. "assetType": "runtime",
  2690. "rid": "win"
  2691. }
  2692. }
  2693. },
  2694. "System.Security.Cryptography.Cng/5.0.0": {
  2695. "type": "package",
  2696. "dependencies": {
  2697. "System.Formats.Asn1": "5.0.0"
  2698. },
  2699. "compile": {
  2700. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {}
  2701. },
  2702. "runtime": {
  2703. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {}
  2704. },
  2705. "runtimeTargets": {
  2706. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  2707. "assetType": "runtime",
  2708. "rid": "win"
  2709. }
  2710. }
  2711. },
  2712. "System.Security.Cryptography.Csp/4.3.0": {
  2713. "type": "package",
  2714. "dependencies": {
  2715. "Microsoft.NETCore.Platforms": "1.1.0",
  2716. "System.IO": "4.3.0",
  2717. "System.Reflection": "4.3.0",
  2718. "System.Resources.ResourceManager": "4.3.0",
  2719. "System.Runtime": "4.3.0",
  2720. "System.Runtime.Extensions": "4.3.0",
  2721. "System.Runtime.Handles": "4.3.0",
  2722. "System.Runtime.InteropServices": "4.3.0",
  2723. "System.Security.Cryptography.Algorithms": "4.3.0",
  2724. "System.Security.Cryptography.Encoding": "4.3.0",
  2725. "System.Security.Cryptography.Primitives": "4.3.0",
  2726. "System.Text.Encoding": "4.3.0",
  2727. "System.Threading": "4.3.0"
  2728. },
  2729. "compile": {
  2730. "ref/netstandard1.3/_._": {}
  2731. },
  2732. "runtimeTargets": {
  2733. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2734. "assetType": "runtime",
  2735. "rid": "unix"
  2736. },
  2737. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2738. "assetType": "runtime",
  2739. "rid": "win"
  2740. }
  2741. }
  2742. },
  2743. "System.Security.Cryptography.Encoding/4.3.0": {
  2744. "type": "package",
  2745. "dependencies": {
  2746. "Microsoft.NETCore.Platforms": "1.1.0",
  2747. "System.Collections": "4.3.0",
  2748. "System.Collections.Concurrent": "4.3.0",
  2749. "System.Linq": "4.3.0",
  2750. "System.Resources.ResourceManager": "4.3.0",
  2751. "System.Runtime": "4.3.0",
  2752. "System.Runtime.Extensions": "4.3.0",
  2753. "System.Runtime.Handles": "4.3.0",
  2754. "System.Runtime.InteropServices": "4.3.0",
  2755. "System.Security.Cryptography.Primitives": "4.3.0",
  2756. "System.Text.Encoding": "4.3.0",
  2757. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2758. },
  2759. "compile": {
  2760. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2761. },
  2762. "runtimeTargets": {
  2763. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2764. "assetType": "runtime",
  2765. "rid": "unix"
  2766. },
  2767. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2768. "assetType": "runtime",
  2769. "rid": "win"
  2770. }
  2771. }
  2772. },
  2773. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2774. "type": "package",
  2775. "dependencies": {
  2776. "System.Collections": "4.3.0",
  2777. "System.IO": "4.3.0",
  2778. "System.Resources.ResourceManager": "4.3.0",
  2779. "System.Runtime": "4.3.0",
  2780. "System.Runtime.Extensions": "4.3.0",
  2781. "System.Runtime.Handles": "4.3.0",
  2782. "System.Runtime.InteropServices": "4.3.0",
  2783. "System.Runtime.Numerics": "4.3.0",
  2784. "System.Security.Cryptography.Algorithms": "4.3.0",
  2785. "System.Security.Cryptography.Encoding": "4.3.0",
  2786. "System.Security.Cryptography.Primitives": "4.3.0",
  2787. "System.Text.Encoding": "4.3.0",
  2788. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2789. },
  2790. "compile": {
  2791. "ref/netstandard1.6/_._": {}
  2792. },
  2793. "runtime": {
  2794. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2795. },
  2796. "runtimeTargets": {
  2797. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2798. "assetType": "runtime",
  2799. "rid": "unix"
  2800. }
  2801. }
  2802. },
  2803. "System.Security.Cryptography.Pkcs/5.0.0": {
  2804. "type": "package",
  2805. "dependencies": {
  2806. "System.Formats.Asn1": "5.0.0",
  2807. "System.Security.Cryptography.Cng": "5.0.0"
  2808. },
  2809. "compile": {
  2810. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {}
  2811. },
  2812. "runtime": {
  2813. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {}
  2814. },
  2815. "runtimeTargets": {
  2816. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll": {
  2817. "assetType": "runtime",
  2818. "rid": "win"
  2819. }
  2820. }
  2821. },
  2822. "System.Security.Cryptography.Primitives/4.3.0": {
  2823. "type": "package",
  2824. "dependencies": {
  2825. "System.Diagnostics.Debug": "4.3.0",
  2826. "System.Globalization": "4.3.0",
  2827. "System.IO": "4.3.0",
  2828. "System.Resources.ResourceManager": "4.3.0",
  2829. "System.Runtime": "4.3.0",
  2830. "System.Threading": "4.3.0",
  2831. "System.Threading.Tasks": "4.3.0"
  2832. },
  2833. "compile": {
  2834. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2835. },
  2836. "runtime": {
  2837. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2838. }
  2839. },
  2840. "System.Security.Cryptography.ProtectedData/4.7.0": {
  2841. "type": "package",
  2842. "compile": {
  2843. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2844. },
  2845. "runtime": {
  2846. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2847. },
  2848. "runtimeTargets": {
  2849. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2850. "assetType": "runtime",
  2851. "rid": "win"
  2852. }
  2853. }
  2854. },
  2855. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2856. "type": "package",
  2857. "dependencies": {
  2858. "Microsoft.NETCore.Platforms": "1.1.0",
  2859. "System.Collections": "4.3.0",
  2860. "System.Diagnostics.Debug": "4.3.0",
  2861. "System.Globalization": "4.3.0",
  2862. "System.Globalization.Calendars": "4.3.0",
  2863. "System.IO": "4.3.0",
  2864. "System.IO.FileSystem": "4.3.0",
  2865. "System.IO.FileSystem.Primitives": "4.3.0",
  2866. "System.Resources.ResourceManager": "4.3.0",
  2867. "System.Runtime": "4.3.0",
  2868. "System.Runtime.Extensions": "4.3.0",
  2869. "System.Runtime.Handles": "4.3.0",
  2870. "System.Runtime.InteropServices": "4.3.0",
  2871. "System.Runtime.Numerics": "4.3.0",
  2872. "System.Security.Cryptography.Algorithms": "4.3.0",
  2873. "System.Security.Cryptography.Cng": "4.3.0",
  2874. "System.Security.Cryptography.Csp": "4.3.0",
  2875. "System.Security.Cryptography.Encoding": "4.3.0",
  2876. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2877. "System.Security.Cryptography.Primitives": "4.3.0",
  2878. "System.Text.Encoding": "4.3.0",
  2879. "System.Threading": "4.3.0",
  2880. "runtime.native.System": "4.3.0",
  2881. "runtime.native.System.Net.Http": "4.3.0",
  2882. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2883. },
  2884. "compile": {
  2885. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2886. },
  2887. "runtimeTargets": {
  2888. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2889. "assetType": "runtime",
  2890. "rid": "unix"
  2891. },
  2892. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2893. "assetType": "runtime",
  2894. "rid": "win"
  2895. }
  2896. }
  2897. },
  2898. "System.Security.Permissions/4.7.0": {
  2899. "type": "package",
  2900. "dependencies": {
  2901. "System.Security.AccessControl": "4.7.0",
  2902. "System.Windows.Extensions": "4.7.0"
  2903. },
  2904. "compile": {
  2905. "ref/netcoreapp3.0/System.Security.Permissions.dll": {}
  2906. },
  2907. "runtime": {
  2908. "lib/netcoreapp3.0/System.Security.Permissions.dll": {}
  2909. }
  2910. },
  2911. "System.Security.Principal.Windows/4.7.0": {
  2912. "type": "package",
  2913. "compile": {
  2914. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {}
  2915. },
  2916. "runtime": {
  2917. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2918. },
  2919. "runtimeTargets": {
  2920. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2921. "assetType": "runtime",
  2922. "rid": "unix"
  2923. },
  2924. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  2925. "assetType": "runtime",
  2926. "rid": "win"
  2927. }
  2928. }
  2929. },
  2930. "System.Text.Encoding/4.3.0": {
  2931. "type": "package",
  2932. "dependencies": {
  2933. "Microsoft.NETCore.Platforms": "1.1.0",
  2934. "Microsoft.NETCore.Targets": "1.1.0",
  2935. "System.Runtime": "4.3.0"
  2936. },
  2937. "compile": {
  2938. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2939. }
  2940. },
  2941. "System.Text.Encoding.CodePages/4.7.0": {
  2942. "type": "package",
  2943. "dependencies": {
  2944. "Microsoft.NETCore.Platforms": "3.1.0"
  2945. },
  2946. "compile": {
  2947. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2948. },
  2949. "runtime": {
  2950. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2951. },
  2952. "runtimeTargets": {
  2953. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2954. "assetType": "runtime",
  2955. "rid": "win"
  2956. }
  2957. }
  2958. },
  2959. "System.Text.Encoding.Extensions/4.3.0": {
  2960. "type": "package",
  2961. "dependencies": {
  2962. "Microsoft.NETCore.Platforms": "1.1.0",
  2963. "Microsoft.NETCore.Targets": "1.1.0",
  2964. "System.Runtime": "4.3.0",
  2965. "System.Text.Encoding": "4.3.0"
  2966. },
  2967. "compile": {
  2968. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2969. }
  2970. },
  2971. "System.Text.Json/5.0.2": {
  2972. "type": "package",
  2973. "compile": {
  2974. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  2975. },
  2976. "runtime": {
  2977. "lib/netcoreapp3.0/System.Text.Json.dll": {}
  2978. }
  2979. },
  2980. "System.Text.RegularExpressions/4.3.0": {
  2981. "type": "package",
  2982. "dependencies": {
  2983. "System.Runtime": "4.3.0"
  2984. },
  2985. "compile": {
  2986. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2987. },
  2988. "runtime": {
  2989. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2990. }
  2991. },
  2992. "System.Threading/4.3.0": {
  2993. "type": "package",
  2994. "dependencies": {
  2995. "System.Runtime": "4.3.0",
  2996. "System.Threading.Tasks": "4.3.0"
  2997. },
  2998. "compile": {
  2999. "ref/netstandard1.3/System.Threading.dll": {}
  3000. },
  3001. "runtime": {
  3002. "lib/netstandard1.3/System.Threading.dll": {}
  3003. }
  3004. },
  3005. "System.Threading.Tasks/4.3.0": {
  3006. "type": "package",
  3007. "dependencies": {
  3008. "Microsoft.NETCore.Platforms": "1.1.0",
  3009. "Microsoft.NETCore.Targets": "1.1.0",
  3010. "System.Runtime": "4.3.0"
  3011. },
  3012. "compile": {
  3013. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  3014. }
  3015. },
  3016. "System.Threading.Tasks.Dataflow/4.9.0": {
  3017. "type": "package",
  3018. "compile": {
  3019. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": {}
  3020. },
  3021. "runtime": {
  3022. "lib/netstandard2.0/_._": {}
  3023. }
  3024. },
  3025. "System.Threading.Tasks.Extensions/4.5.4": {
  3026. "type": "package",
  3027. "compile": {
  3028. "ref/netcoreapp2.1/_._": {}
  3029. },
  3030. "runtime": {
  3031. "lib/netcoreapp2.1/_._": {}
  3032. }
  3033. },
  3034. "System.Threading.Timer/4.3.0": {
  3035. "type": "package",
  3036. "dependencies": {
  3037. "Microsoft.NETCore.Platforms": "1.1.0",
  3038. "Microsoft.NETCore.Targets": "1.1.0",
  3039. "System.Runtime": "4.3.0"
  3040. },
  3041. "compile": {
  3042. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  3043. }
  3044. },
  3045. "System.Windows.Extensions/4.7.0": {
  3046. "type": "package",
  3047. "dependencies": {
  3048. "System.Drawing.Common": "4.7.0"
  3049. },
  3050. "compile": {
  3051. "ref/netcoreapp3.0/System.Windows.Extensions.dll": {}
  3052. },
  3053. "runtime": {
  3054. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {}
  3055. },
  3056. "runtimeTargets": {
  3057. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3058. "assetType": "runtime",
  3059. "rid": "win"
  3060. }
  3061. }
  3062. },
  3063. "System.Xml.ReaderWriter/4.3.0": {
  3064. "type": "package",
  3065. "dependencies": {
  3066. "System.Collections": "4.3.0",
  3067. "System.Diagnostics.Debug": "4.3.0",
  3068. "System.Globalization": "4.3.0",
  3069. "System.IO": "4.3.0",
  3070. "System.IO.FileSystem": "4.3.0",
  3071. "System.IO.FileSystem.Primitives": "4.3.0",
  3072. "System.Resources.ResourceManager": "4.3.0",
  3073. "System.Runtime": "4.3.0",
  3074. "System.Runtime.Extensions": "4.3.0",
  3075. "System.Runtime.InteropServices": "4.3.0",
  3076. "System.Text.Encoding": "4.3.0",
  3077. "System.Text.Encoding.Extensions": "4.3.0",
  3078. "System.Text.RegularExpressions": "4.3.0",
  3079. "System.Threading.Tasks": "4.3.0",
  3080. "System.Threading.Tasks.Extensions": "4.3.0"
  3081. },
  3082. "compile": {
  3083. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3084. },
  3085. "runtime": {
  3086. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3087. }
  3088. },
  3089. "System.Xml.XDocument/4.3.0": {
  3090. "type": "package",
  3091. "dependencies": {
  3092. "System.Collections": "4.3.0",
  3093. "System.Diagnostics.Debug": "4.3.0",
  3094. "System.Diagnostics.Tools": "4.3.0",
  3095. "System.Globalization": "4.3.0",
  3096. "System.IO": "4.3.0",
  3097. "System.Reflection": "4.3.0",
  3098. "System.Resources.ResourceManager": "4.3.0",
  3099. "System.Runtime": "4.3.0",
  3100. "System.Runtime.Extensions": "4.3.0",
  3101. "System.Text.Encoding": "4.3.0",
  3102. "System.Threading": "4.3.0",
  3103. "System.Xml.ReaderWriter": "4.3.0"
  3104. },
  3105. "compile": {
  3106. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  3107. },
  3108. "runtime": {
  3109. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3110. }
  3111. }
  3112. }
  3113. },
  3114. "libraries": {
  3115. "Humanizer.Core/2.8.26": {
  3116. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  3117. "type": "package",
  3118. "path": "humanizer.core/2.8.26",
  3119. "files": [
  3120. ".nupkg.metadata",
  3121. ".signature.p7s",
  3122. "humanizer.core.2.8.26.nupkg.sha512",
  3123. "humanizer.core.nuspec",
  3124. "lib/netstandard1.0/Humanizer.dll",
  3125. "lib/netstandard1.0/Humanizer.xml",
  3126. "lib/netstandard2.0/Humanizer.dll",
  3127. "lib/netstandard2.0/Humanizer.xml",
  3128. "logo.png"
  3129. ]
  3130. },
  3131. "MessagePack/2.1.152": {
  3132. "sha512": "PlJ31qf42uGuJfwc61x/Pt4hJi01xh1rrBofj1MJSLzEot/2UAIRdSgxEHN/8qou5CV8OBeDM9HXKPi1Oj8rpQ==",
  3133. "type": "package",
  3134. "path": "messagepack/2.1.152",
  3135. "files": [
  3136. ".nupkg.metadata",
  3137. ".signature.p7s",
  3138. "LICENSE",
  3139. "lib/netcoreapp2.1/MessagePack.dll",
  3140. "lib/netcoreapp2.1/MessagePack.xml",
  3141. "lib/netstandard2.0/MessagePack.dll",
  3142. "lib/netstandard2.0/MessagePack.xml",
  3143. "messagepack.2.1.152.nupkg.sha512",
  3144. "messagepack.nuspec"
  3145. ]
  3146. },
  3147. "MessagePack.Annotations/2.1.152": {
  3148. "sha512": "RONktDA/HA641ds/2bfOqYSVew8o8EJMcQ1P4M1J77QGgbzWiWt3nBHvCAwlx0VfO6K9S8xq4b5OLD2CUnhtCg==",
  3149. "type": "package",
  3150. "path": "messagepack.annotations/2.1.152",
  3151. "files": [
  3152. ".nupkg.metadata",
  3153. ".signature.p7s",
  3154. "LICENSE",
  3155. "lib/netstandard2.0/MessagePack.Annotations.dll",
  3156. "lib/netstandard2.0/MessagePack.Annotations.xml",
  3157. "messagepack.annotations.2.1.152.nupkg.sha512",
  3158. "messagepack.annotations.nuspec"
  3159. ]
  3160. },
  3161. "MessagePackAnalyzer/2.1.152": {
  3162. "sha512": "uJhZlGMkXDaFYsH8V9S6o1EyvsUqB9mpU4DVBXNr0DXZVzZMhuLP1IkLj5xK3EKlaAcvkFkZv3eSvuz360wb3Q==",
  3163. "type": "package",
  3164. "path": "messagepackanalyzer/2.1.152",
  3165. "hasTools": true,
  3166. "files": [
  3167. ".nupkg.metadata",
  3168. ".signature.p7s",
  3169. "LICENSE",
  3170. "analyzers/dotnet/MessagePackAnalyzer.dll",
  3171. "messagepackanalyzer.2.1.152.nupkg.sha512",
  3172. "messagepackanalyzer.nuspec",
  3173. "tools/install.ps1",
  3174. "tools/uninstall.ps1"
  3175. ]
  3176. },
  3177. "Microsoft.AspNetCore.Razor.Language/6.0.0": {
  3178. "sha512": "yCtBr1GSGzJrrp1NJUb4ltwFYMKHw/tJLnIDvg9g/FnkGIEzmE19tbCQqXARIJv5kdtBgsoVIdGLL+zmjxvM/A==",
  3179. "type": "package",
  3180. "path": "microsoft.aspnetcore.razor.language/6.0.0",
  3181. "files": [
  3182. ".nupkg.metadata",
  3183. ".signature.p7s",
  3184. "Icon.png",
  3185. "THIRD-PARTY-NOTICES.TXT",
  3186. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  3187. "microsoft.aspnetcore.razor.language.6.0.0.nupkg.sha512",
  3188. "microsoft.aspnetcore.razor.language.nuspec"
  3189. ]
  3190. },
  3191. "Microsoft.Bcl.AsyncInterfaces/5.0.0": {
  3192. "sha512": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==",
  3193. "type": "package",
  3194. "path": "microsoft.bcl.asyncinterfaces/5.0.0",
  3195. "files": [
  3196. ".nupkg.metadata",
  3197. ".signature.p7s",
  3198. "Icon.png",
  3199. "LICENSE.TXT",
  3200. "THIRD-PARTY-NOTICES.TXT",
  3201. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  3202. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  3203. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  3204. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  3205. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  3206. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  3207. "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512",
  3208. "microsoft.bcl.asyncinterfaces.nuspec",
  3209. "useSharedDesignerContext.txt",
  3210. "version.txt"
  3211. ]
  3212. },
  3213. "Microsoft.Build/17.0.0": {
  3214. "sha512": "hCs9OzyCD/TYRid1LxPgghvUDqgXf+tEvV4qd8tBfOyp3zxAk+/rssgxtJnKLMZIu0CEZi3JegvfenaIXjEacQ==",
  3215. "type": "package",
  3216. "path": "microsoft.build/17.0.0",
  3217. "files": [
  3218. ".nupkg.metadata",
  3219. ".signature.p7s",
  3220. "MSBuild-NuGet-Icon.png",
  3221. "lib/net472/Microsoft.Build.dll",
  3222. "lib/net472/Microsoft.Build.pdb",
  3223. "lib/net472/Microsoft.Build.xml",
  3224. "lib/net6.0/Microsoft.Build.dll",
  3225. "lib/net6.0/Microsoft.Build.pdb",
  3226. "lib/net6.0/Microsoft.Build.xml",
  3227. "microsoft.build.17.0.0.nupkg.sha512",
  3228. "microsoft.build.nuspec",
  3229. "notices/THIRDPARTYNOTICES.txt"
  3230. ]
  3231. },
  3232. "Microsoft.Build.Framework/17.0.0": {
  3233. "sha512": "XbFA0z+6Ws2pNeRXYcDF3lKlNgRoSGMm2Q5HKzZD+EbwYMKPKrl/BJnnkMuDJHU0KravYHfhzBnLLJpPeZ3E7A==",
  3234. "type": "package",
  3235. "path": "microsoft.build.framework/17.0.0",
  3236. "files": [
  3237. ".nupkg.metadata",
  3238. ".signature.p7s",
  3239. "MSBuild-NuGet-Icon.png",
  3240. "lib/net472/Microsoft.Build.Framework.dll",
  3241. "lib/net472/Microsoft.Build.Framework.pdb",
  3242. "lib/net472/Microsoft.Build.Framework.xml",
  3243. "lib/netstandard2.0/Microsoft.Build.Framework.dll",
  3244. "lib/netstandard2.0/Microsoft.Build.Framework.pdb",
  3245. "lib/netstandard2.0/Microsoft.Build.Framework.xml",
  3246. "microsoft.build.framework.17.0.0.nupkg.sha512",
  3247. "microsoft.build.framework.nuspec",
  3248. "notices/THIRDPARTYNOTICES.txt"
  3249. ]
  3250. },
  3251. "Microsoft.Build.Locator/1.4.1": {
  3252. "sha512": "UfyGaxNTjw/r3uWMX/Cv1CPKELo7TCrR5VIahaSKL0WyqmbDT6og9pyjwuhyyUkxC9gk2ElB7oOEySL1OzTZ1g==",
  3253. "type": "package",
  3254. "path": "microsoft.build.locator/1.4.1",
  3255. "files": [
  3256. ".nupkg.metadata",
  3257. ".signature.p7s",
  3258. "MSBuild-NuGet-Icon.png",
  3259. "build/Microsoft.Build.Locator.props",
  3260. "build/Microsoft.Build.Locator.targets",
  3261. "lib/net46/Microsoft.Build.Locator.dll",
  3262. "lib/netcoreapp2.0/Microsoft.Build.Locator.dll",
  3263. "microsoft.build.locator.1.4.1.nupkg.sha512",
  3264. "microsoft.build.locator.nuspec"
  3265. ]
  3266. },
  3267. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  3268. "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==",
  3269. "type": "package",
  3270. "path": "microsoft.codeanalysis.analyzers/3.3.2",
  3271. "hasTools": true,
  3272. "files": [
  3273. ".nupkg.metadata",
  3274. ".signature.p7s",
  3275. "EULA.rtf",
  3276. "ThirdPartyNotices.rtf",
  3277. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  3278. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  3279. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3280. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3281. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3282. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3283. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3284. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3285. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3286. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3287. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3288. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3289. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3290. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3291. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3292. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  3293. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  3294. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3295. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3296. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3297. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3298. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3299. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3300. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3301. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3302. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3303. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3304. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3305. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3306. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  3307. "build/Microsoft.CodeAnalysis.Analyzers.props",
  3308. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  3309. "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig",
  3310. "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig",
  3311. "build/config/AnalysisLevel_2_9_8_Default.editorconfig",
  3312. "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig",
  3313. "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig",
  3314. "build/config/AnalysisLevel_3_3_Default.editorconfig",
  3315. "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig",
  3316. "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig",
  3317. "build/config/AnalysisLevel_3_Default.editorconfig",
  3318. "documentation/Analyzer Configuration.md",
  3319. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  3320. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  3321. "editorconfig/AllRulesDefault/.editorconfig",
  3322. "editorconfig/AllRulesDisabled/.editorconfig",
  3323. "editorconfig/AllRulesEnabled/.editorconfig",
  3324. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  3325. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  3326. "editorconfig/DataflowRulesDefault/.editorconfig",
  3327. "editorconfig/DataflowRulesEnabled/.editorconfig",
  3328. "editorconfig/LibraryRulesDefault/.editorconfig",
  3329. "editorconfig/LibraryRulesEnabled/.editorconfig",
  3330. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  3331. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  3332. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  3333. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  3334. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  3335. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  3336. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  3337. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  3338. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  3339. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  3340. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  3341. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  3342. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  3343. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  3344. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  3345. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  3346. "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512",
  3347. "microsoft.codeanalysis.analyzers.nuspec",
  3348. "rulesets/AllRulesDefault.ruleset",
  3349. "rulesets/AllRulesDisabled.ruleset",
  3350. "rulesets/AllRulesEnabled.ruleset",
  3351. "rulesets/CorrectnessRulesDefault.ruleset",
  3352. "rulesets/CorrectnessRulesEnabled.ruleset",
  3353. "rulesets/DataflowRulesDefault.ruleset",
  3354. "rulesets/DataflowRulesEnabled.ruleset",
  3355. "rulesets/LibraryRulesDefault.ruleset",
  3356. "rulesets/LibraryRulesEnabled.ruleset",
  3357. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  3358. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  3359. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  3360. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  3361. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  3362. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  3363. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  3364. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  3365. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  3366. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  3367. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  3368. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  3369. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  3370. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  3371. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  3372. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  3373. "tools/install.ps1",
  3374. "tools/uninstall.ps1"
  3375. ]
  3376. },
  3377. "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
  3378. "sha512": "gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==",
  3379. "type": "package",
  3380. "path": "microsoft.codeanalysis.analyzerutilities/3.3.0",
  3381. "hasTools": true,
  3382. "files": [
  3383. ".nupkg.metadata",
  3384. ".signature.p7s",
  3385. "EULA.rtf",
  3386. "ThirdPartyNotices.rtf",
  3387. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll",
  3388. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.xml",
  3389. "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512",
  3390. "microsoft.codeanalysis.analyzerutilities.nuspec",
  3391. "tools/install.ps1",
  3392. "tools/uninstall.ps1"
  3393. ]
  3394. },
  3395. "Microsoft.CodeAnalysis.Common/4.0.0": {
  3396. "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==",
  3397. "type": "package",
  3398. "path": "microsoft.codeanalysis.common/4.0.0",
  3399. "files": [
  3400. ".nupkg.metadata",
  3401. ".signature.p7s",
  3402. "Icon.png",
  3403. "ThirdPartyNotices.rtf",
  3404. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  3405. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  3406. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  3407. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  3408. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  3409. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  3410. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  3411. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  3412. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  3413. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  3414. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  3415. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  3416. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  3417. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  3418. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  3419. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  3420. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  3421. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  3422. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  3423. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  3424. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  3425. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  3426. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  3427. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  3428. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  3429. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  3430. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  3431. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  3432. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  3433. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  3434. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  3435. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  3436. "microsoft.codeanalysis.common.4.0.0.nupkg.sha512",
  3437. "microsoft.codeanalysis.common.nuspec"
  3438. ]
  3439. },
  3440. "Microsoft.CodeAnalysis.CSharp/4.0.0": {
  3441. "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==",
  3442. "type": "package",
  3443. "path": "microsoft.codeanalysis.csharp/4.0.0",
  3444. "files": [
  3445. ".nupkg.metadata",
  3446. ".signature.p7s",
  3447. "Icon.png",
  3448. "ThirdPartyNotices.rtf",
  3449. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  3450. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  3451. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  3452. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3453. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3454. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3455. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3456. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3457. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3458. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3459. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3460. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3461. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3462. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3463. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3464. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3465. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  3466. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  3467. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  3468. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3469. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3470. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3471. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3472. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3473. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3474. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3475. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3476. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3477. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3478. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3479. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3480. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  3481. "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512",
  3482. "microsoft.codeanalysis.csharp.nuspec"
  3483. ]
  3484. },
  3485. "Microsoft.CodeAnalysis.CSharp.Features/4.0.0": {
  3486. "sha512": "WOTeKJN0I4/AzylA+VuTtB7V7VvnM41GXqnyiiDRNa3QtKFAzJbQ7CwLG97pcme+oQLz708z+s4Nzd9g0irytw==",
  3487. "type": "package",
  3488. "path": "microsoft.codeanalysis.csharp.features/4.0.0",
  3489. "files": [
  3490. ".nupkg.metadata",
  3491. ".signature.p7s",
  3492. "Icon.png",
  3493. "ThirdPartyNotices.rtf",
  3494. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll",
  3495. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  3496. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.xml",
  3497. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3498. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3499. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3500. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3501. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3502. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3503. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3504. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3505. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3506. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3507. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3508. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3509. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3510. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
  3511. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  3512. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
  3513. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3514. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3515. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3516. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3517. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3518. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3519. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3520. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3521. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3522. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3523. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3524. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3525. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  3526. "microsoft.codeanalysis.csharp.features.4.0.0.nupkg.sha512",
  3527. "microsoft.codeanalysis.csharp.features.nuspec"
  3528. ]
  3529. },
  3530. "Microsoft.CodeAnalysis.CSharp.Scripting/4.0.0": {
  3531. "sha512": "Z8Y8Ye2snCqVQLLx7K6FcEs0hcvdPi4nTG2RDWdPpOfMH8ed1yxTabt252qAd4TH0jpyruuCnBfW4s6DXliMYg==",
  3532. "type": "package",
  3533. "path": "microsoft.codeanalysis.csharp.scripting/4.0.0",
  3534. "files": [
  3535. ".nupkg.metadata",
  3536. ".signature.p7s",
  3537. "Icon.png",
  3538. "ThirdPartyNotices.rtf",
  3539. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
  3540. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
  3541. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
  3542. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3543. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3544. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3545. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3546. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3547. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3548. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3549. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3550. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3551. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3552. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3553. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3554. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3555. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
  3556. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
  3557. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
  3558. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3559. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3560. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3561. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3562. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3563. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3564. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3565. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3566. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3567. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3568. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3569. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3570. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  3571. "microsoft.codeanalysis.csharp.scripting.4.0.0.nupkg.sha512",
  3572. "microsoft.codeanalysis.csharp.scripting.nuspec"
  3573. ]
  3574. },
  3575. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.0.0": {
  3576. "sha512": "RQMc1+2cIRdOvY8vp6ygkzfBrvlYphnbmhhluKNh9+X+PpprQDKlbPrn9fLn6v9RlCsfa87joS3zJyGBEeWTXQ==",
  3577. "type": "package",
  3578. "path": "microsoft.codeanalysis.csharp.workspaces/4.0.0",
  3579. "files": [
  3580. ".nupkg.metadata",
  3581. ".signature.p7s",
  3582. "Icon.png",
  3583. "ThirdPartyNotices.rtf",
  3584. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  3585. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  3586. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  3587. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3588. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3589. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3590. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3591. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3592. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3593. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3594. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3595. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3596. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3597. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3598. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3599. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3600. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  3601. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  3602. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  3603. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3604. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3605. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3606. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3607. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3608. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3609. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3610. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3611. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3612. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3613. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3614. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3615. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  3616. "microsoft.codeanalysis.csharp.workspaces.4.0.0.nupkg.sha512",
  3617. "microsoft.codeanalysis.csharp.workspaces.nuspec"
  3618. ]
  3619. },
  3620. "Microsoft.CodeAnalysis.Features/4.0.0": {
  3621. "sha512": "ci4pgjEgihb+fu2i1E12iOMGXU6GisYR3YrNd2aqt55ijjzLNqPV/+zt+cV3Qc0n08rJrIY2Bf6cTTMPY0bwJQ==",
  3622. "type": "package",
  3623. "path": "microsoft.codeanalysis.features/4.0.0",
  3624. "files": [
  3625. ".nupkg.metadata",
  3626. ".signature.p7s",
  3627. "Icon.png",
  3628. "ThirdPartyNotices.rtf",
  3629. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll",
  3630. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.pdb",
  3631. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.xml",
  3632. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  3633. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll",
  3634. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll",
  3635. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  3636. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll",
  3637. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  3638. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  3639. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  3640. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  3641. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  3642. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  3643. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  3644. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  3645. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.dll",
  3646. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.pdb",
  3647. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.xml",
  3648. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  3649. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
  3650. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
  3651. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  3652. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
  3653. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  3654. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  3655. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  3656. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  3657. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  3658. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  3659. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  3660. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  3661. "microsoft.codeanalysis.features.4.0.0.nupkg.sha512",
  3662. "microsoft.codeanalysis.features.nuspec"
  3663. ]
  3664. },
  3665. "Microsoft.CodeAnalysis.Razor/6.0.0": {
  3666. "sha512": "uqdzuQXxD7XrJCbIbbwpI/LOv0PBJ9VIR0gdvANTHOfK5pjTaCir+XcwvYvBZ5BIzd0KGzyiamzlEWw1cK1q0w==",
  3667. "type": "package",
  3668. "path": "microsoft.codeanalysis.razor/6.0.0",
  3669. "files": [
  3670. ".nupkg.metadata",
  3671. ".signature.p7s",
  3672. "Icon.png",
  3673. "THIRD-PARTY-NOTICES.TXT",
  3674. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  3675. "microsoft.codeanalysis.razor.6.0.0.nupkg.sha512",
  3676. "microsoft.codeanalysis.razor.nuspec"
  3677. ]
  3678. },
  3679. "Microsoft.CodeAnalysis.Scripting.Common/4.0.0": {
  3680. "sha512": "jU/ncoHSFnXU/L2iju9AFlOwmsAYByIxhCCpeLPNTguXwosJp1o13mtrboJOfkDhi7ebvzQmvcZ++yBu8cF4Sw==",
  3681. "type": "package",
  3682. "path": "microsoft.codeanalysis.scripting.common/4.0.0",
  3683. "files": [
  3684. ".nupkg.metadata",
  3685. ".signature.p7s",
  3686. "Icon.png",
  3687. "ThirdPartyNotices.rtf",
  3688. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll",
  3689. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.pdb",
  3690. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.xml",
  3691. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3692. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3693. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3694. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3695. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3696. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3697. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3698. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3699. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3700. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3701. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3702. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3703. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3704. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
  3705. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
  3706. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
  3707. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3708. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3709. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3710. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3711. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3712. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3713. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3714. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3715. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3716. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3717. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3718. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3719. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  3720. "microsoft.codeanalysis.scripting.common.4.0.0.nupkg.sha512",
  3721. "microsoft.codeanalysis.scripting.common.nuspec"
  3722. ]
  3723. },
  3724. "Microsoft.CodeAnalysis.VisualBasic/4.0.0": {
  3725. "sha512": "FK+OGUMUh9O6/GCwyIy4c/sOrarF36/yEY07BbXVYMql1qCqHGWfyWXyCQKQ6m/KqReCqW6aO4cK7kK/AYBpyA==",
  3726. "type": "package",
  3727. "path": "microsoft.codeanalysis.visualbasic/4.0.0",
  3728. "files": [
  3729. ".nupkg.metadata",
  3730. ".signature.p7s",
  3731. "Icon.png",
  3732. "ThirdPartyNotices.rtf",
  3733. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.dll",
  3734. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.pdb",
  3735. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.xml",
  3736. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3737. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3738. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3739. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3740. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3741. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3742. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3743. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3744. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3745. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3746. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3747. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3748. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3749. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll",
  3750. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.pdb",
  3751. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.xml",
  3752. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3753. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3754. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3755. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3756. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3757. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3758. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3759. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3760. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3761. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3762. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3763. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3764. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  3765. "microsoft.codeanalysis.visualbasic.4.0.0.nupkg.sha512",
  3766. "microsoft.codeanalysis.visualbasic.nuspec"
  3767. ]
  3768. },
  3769. "Microsoft.CodeAnalysis.VisualBasic.Features/4.0.0": {
  3770. "sha512": "GEJsXFcMd7o+D6OYCLPui2ZvNsonTmdPSluGK0wC3EXVB+gnrro7Lr/sjtTSOwVeiXPlhXgprRuO7zJiMn1uzw==",
  3771. "type": "package",
  3772. "path": "microsoft.codeanalysis.visualbasic.features/4.0.0",
  3773. "files": [
  3774. ".nupkg.metadata",
  3775. ".signature.p7s",
  3776. "Icon.png",
  3777. "ThirdPartyNotices.rtf",
  3778. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.dll",
  3779. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.pdb",
  3780. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.xml",
  3781. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3782. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3783. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3784. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3785. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3786. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3787. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3788. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3789. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3790. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3791. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3792. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3793. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3794. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll",
  3795. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Features.pdb",
  3796. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Features.xml",
  3797. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3798. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3799. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3800. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3801. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3802. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3803. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3804. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3805. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3806. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3807. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3808. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3809. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  3810. "microsoft.codeanalysis.visualbasic.features.4.0.0.nupkg.sha512",
  3811. "microsoft.codeanalysis.visualbasic.features.nuspec"
  3812. ]
  3813. },
  3814. "Microsoft.CodeAnalysis.VisualBasic.Workspaces/4.0.0": {
  3815. "sha512": "ozmB/thXGX5MoP/oiV9w5ZVGS08mz7fK3lRXiRSHHBeuiXZW1ZCGARwG2YkhylzAl1LlEwSQmlgrr8Irlu+3qQ==",
  3816. "type": "package",
  3817. "path": "microsoft.codeanalysis.visualbasic.workspaces/4.0.0",
  3818. "files": [
  3819. ".nupkg.metadata",
  3820. ".signature.p7s",
  3821. "Icon.png",
  3822. "ThirdPartyNotices.rtf",
  3823. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll",
  3824. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb",
  3825. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml",
  3826. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3827. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3828. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3829. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3830. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3831. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3832. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3833. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3834. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3835. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3836. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3837. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3838. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3839. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll",
  3840. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb",
  3841. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml",
  3842. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3843. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3844. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3845. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3846. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3847. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3848. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3849. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3850. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3851. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3852. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3853. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3854. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  3855. "microsoft.codeanalysis.visualbasic.workspaces.4.0.0.nupkg.sha512",
  3856. "microsoft.codeanalysis.visualbasic.workspaces.nuspec"
  3857. ]
  3858. },
  3859. "Microsoft.CodeAnalysis.Workspaces.Common/4.0.0": {
  3860. "sha512": "bEfHzx8PLmEN6aogVYHWmViHCWfms8emI43w9nNX+C8MLgtynOmVL/OJ4hbuONVp+4OuDAy5BDj69n5MnXQX8g==",
  3861. "type": "package",
  3862. "path": "microsoft.codeanalysis.workspaces.common/4.0.0",
  3863. "files": [
  3864. ".nupkg.metadata",
  3865. ".signature.p7s",
  3866. "Icon.png",
  3867. "ThirdPartyNotices.rtf",
  3868. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
  3869. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
  3870. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
  3871. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3872. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3873. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3874. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3875. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3876. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3877. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3878. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3879. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3880. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3881. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3882. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3883. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3884. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
  3885. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  3886. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
  3887. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3888. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3889. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3890. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3891. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3892. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3893. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3894. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3895. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3896. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3897. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3898. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3899. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  3900. "microsoft.codeanalysis.workspaces.common.4.0.0.nupkg.sha512",
  3901. "microsoft.codeanalysis.workspaces.common.nuspec"
  3902. ]
  3903. },
  3904. "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.0.0": {
  3905. "sha512": "0LYNKESZPK4AQmAXwn8l2e8UF/rYpT0pvceEhiTVjurjQ9Y7pGdUZ5E30r8knxYtT5/9ZESR7wKf/AU00r95Mw==",
  3906. "type": "package",
  3907. "path": "microsoft.codeanalysis.workspaces.msbuild/4.0.0",
  3908. "files": [
  3909. ".nupkg.metadata",
  3910. ".signature.p7s",
  3911. "Icon.png",
  3912. "ThirdPartyNotices.rtf",
  3913. "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
  3914. "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
  3915. "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
  3916. "lib/net472/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3917. "lib/net472/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3918. "lib/net472/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3919. "lib/net472/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3920. "lib/net472/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3921. "lib/net472/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3922. "lib/net472/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3923. "lib/net472/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3924. "lib/net472/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3925. "lib/net472/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3926. "lib/net472/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3927. "lib/net472/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3928. "lib/net472/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3929. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
  3930. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
  3931. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
  3932. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3933. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3934. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3935. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3936. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3937. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3938. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3939. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3940. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3941. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3942. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3943. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3944. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  3945. "microsoft.codeanalysis.workspaces.msbuild.4.0.0.nupkg.sha512",
  3946. "microsoft.codeanalysis.workspaces.msbuild.nuspec"
  3947. ]
  3948. },
  3949. "Microsoft.CSharp/4.5.0": {
  3950. "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
  3951. "type": "package",
  3952. "path": "microsoft.csharp/4.5.0",
  3953. "files": [
  3954. ".nupkg.metadata",
  3955. ".signature.p7s",
  3956. "LICENSE.TXT",
  3957. "THIRD-PARTY-NOTICES.TXT",
  3958. "lib/MonoAndroid10/_._",
  3959. "lib/MonoTouch10/_._",
  3960. "lib/net45/_._",
  3961. "lib/netcore50/Microsoft.CSharp.dll",
  3962. "lib/netcoreapp2.0/_._",
  3963. "lib/netstandard1.3/Microsoft.CSharp.dll",
  3964. "lib/netstandard2.0/Microsoft.CSharp.dll",
  3965. "lib/portable-net45+win8+wp8+wpa81/_._",
  3966. "lib/uap10.0.16299/_._",
  3967. "lib/win8/_._",
  3968. "lib/wp80/_._",
  3969. "lib/wpa81/_._",
  3970. "lib/xamarinios10/_._",
  3971. "lib/xamarinmac20/_._",
  3972. "lib/xamarintvos10/_._",
  3973. "lib/xamarinwatchos10/_._",
  3974. "microsoft.csharp.4.5.0.nupkg.sha512",
  3975. "microsoft.csharp.nuspec",
  3976. "ref/MonoAndroid10/_._",
  3977. "ref/MonoTouch10/_._",
  3978. "ref/net45/_._",
  3979. "ref/netcore50/Microsoft.CSharp.dll",
  3980. "ref/netcore50/Microsoft.CSharp.xml",
  3981. "ref/netcore50/de/Microsoft.CSharp.xml",
  3982. "ref/netcore50/es/Microsoft.CSharp.xml",
  3983. "ref/netcore50/fr/Microsoft.CSharp.xml",
  3984. "ref/netcore50/it/Microsoft.CSharp.xml",
  3985. "ref/netcore50/ja/Microsoft.CSharp.xml",
  3986. "ref/netcore50/ko/Microsoft.CSharp.xml",
  3987. "ref/netcore50/ru/Microsoft.CSharp.xml",
  3988. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  3989. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  3990. "ref/netcoreapp2.0/_._",
  3991. "ref/netstandard1.0/Microsoft.CSharp.dll",
  3992. "ref/netstandard1.0/Microsoft.CSharp.xml",
  3993. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  3994. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  3995. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  3996. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  3997. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  3998. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  3999. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4000. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4001. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4002. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4003. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4004. "ref/portable-net45+win8+wp8+wpa81/_._",
  4005. "ref/uap10.0.16299/_._",
  4006. "ref/win8/_._",
  4007. "ref/wp80/_._",
  4008. "ref/wpa81/_._",
  4009. "ref/xamarinios10/_._",
  4010. "ref/xamarinmac20/_._",
  4011. "ref/xamarintvos10/_._",
  4012. "ref/xamarinwatchos10/_._",
  4013. "useSharedDesignerContext.txt",
  4014. "version.txt"
  4015. ]
  4016. },
  4017. "Microsoft.Data.SqlClient/2.1.4": {
  4018. "sha512": "cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
  4019. "type": "package",
  4020. "path": "microsoft.data.sqlclient/2.1.4",
  4021. "files": [
  4022. ".nupkg.metadata",
  4023. ".signature.p7s",
  4024. "dotnet.png",
  4025. "lib/net46/Microsoft.Data.SqlClient.dll",
  4026. "lib/net46/Microsoft.Data.SqlClient.pdb",
  4027. "lib/net46/Microsoft.Data.SqlClient.xml",
  4028. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  4029. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  4030. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  4031. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  4032. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  4033. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  4034. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  4035. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  4036. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  4037. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  4038. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  4039. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  4040. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  4041. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  4042. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  4043. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  4044. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  4045. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  4046. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  4047. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  4048. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  4049. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  4050. "microsoft.data.sqlclient.2.1.4.nupkg.sha512",
  4051. "microsoft.data.sqlclient.nuspec",
  4052. "ref/net46/Microsoft.Data.SqlClient.dll",
  4053. "ref/net46/Microsoft.Data.SqlClient.pdb",
  4054. "ref/net46/Microsoft.Data.SqlClient.xml",
  4055. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  4056. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  4057. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  4058. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  4059. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  4060. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  4061. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  4062. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  4063. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  4064. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  4065. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  4066. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  4067. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  4068. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  4069. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  4070. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  4071. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  4072. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  4073. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  4074. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  4075. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  4076. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  4077. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  4078. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  4079. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  4080. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  4081. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  4082. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  4083. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  4084. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  4085. ]
  4086. },
  4087. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  4088. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  4089. "type": "package",
  4090. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  4091. "files": [
  4092. ".nupkg.metadata",
  4093. ".signature.p7s",
  4094. "LICENSE.txt",
  4095. "dotnet.png",
  4096. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  4097. "microsoft.data.sqlclient.sni.runtime.nuspec",
  4098. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  4099. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  4100. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  4101. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  4102. ]
  4103. },
  4104. "Microsoft.DiaSymReader/1.3.0": {
  4105. "sha512": "/fn1Tfo7j7k/slViPlM8azJuxQmri7FZ8dQ+gTeLbI29leN/1VK0U/BFcRdJNctsRCUgyKJ2q+I0Tjq07Rc1/Q==",
  4106. "type": "package",
  4107. "path": "microsoft.diasymreader/1.3.0",
  4108. "files": [
  4109. ".nupkg.metadata",
  4110. ".signature.p7s",
  4111. "lib/net20/Microsoft.DiaSymReader.dll",
  4112. "lib/net20/Microsoft.DiaSymReader.pdb",
  4113. "lib/net20/Microsoft.DiaSymReader.xml",
  4114. "lib/netstandard1.1/Microsoft.DiaSymReader.dll",
  4115. "lib/netstandard1.1/Microsoft.DiaSymReader.pdb",
  4116. "lib/netstandard1.1/Microsoft.DiaSymReader.xml",
  4117. "microsoft.diasymreader.1.3.0.nupkg.sha512",
  4118. "microsoft.diasymreader.nuspec"
  4119. ]
  4120. },
  4121. "Microsoft.DotNet.Scaffolding.Shared/6.0.3": {
  4122. "sha512": "MHPcl+Vm8tEyvCA0dSEMDd/DfEYW2VtkGs7DXEJBbeRToBmHoK/5djIQws4XWcdqcpuJNo1WqX+C35h7Y5G26w==",
  4123. "type": "package",
  4124. "path": "microsoft.dotnet.scaffolding.shared/6.0.3",
  4125. "files": [
  4126. ".nupkg.metadata",
  4127. ".signature.p7s",
  4128. "Icon.png",
  4129. "lib/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll",
  4130. "lib/net6.0/Microsoft.DotNet.Scaffolding.Shared.xml",
  4131. "microsoft.dotnet.scaffolding.shared.6.0.3.nupkg.sha512",
  4132. "microsoft.dotnet.scaffolding.shared.nuspec"
  4133. ]
  4134. },
  4135. "Microsoft.EntityFrameworkCore/6.0.4": {
  4136. "sha512": "gTh3SJsF5WNjEmG32kYc3U4tjeTIv55QOrwHAJcF/xtrIVMteDHMArGC35N0dw86WFY0v8yFkKYKOIOln4jkfQ==",
  4137. "type": "package",
  4138. "path": "microsoft.entityframeworkcore/6.0.4",
  4139. "files": [
  4140. ".nupkg.metadata",
  4141. ".signature.p7s",
  4142. "Icon.png",
  4143. "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
  4144. "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
  4145. "microsoft.entityframeworkcore.6.0.4.nupkg.sha512",
  4146. "microsoft.entityframeworkcore.nuspec"
  4147. ]
  4148. },
  4149. "Microsoft.EntityFrameworkCore.Abstractions/6.0.4": {
  4150. "sha512": "jycTQF0FUJp10cGWBmtsyFhQNeISU9CltDRKCaNiX4QRSEFzgRgaFN4vAFK0T+G5etmXugyddijE4NWCGtgznQ==",
  4151. "type": "package",
  4152. "path": "microsoft.entityframeworkcore.abstractions/6.0.4",
  4153. "files": [
  4154. ".nupkg.metadata",
  4155. ".signature.p7s",
  4156. "Icon.png",
  4157. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4158. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4159. "microsoft.entityframeworkcore.abstractions.6.0.4.nupkg.sha512",
  4160. "microsoft.entityframeworkcore.abstractions.nuspec"
  4161. ]
  4162. },
  4163. "Microsoft.EntityFrameworkCore.Analyzers/6.0.4": {
  4164. "sha512": "t12WodVyGGP2CuLo7R1qwcawHY5zlg+GiQzvkceZpsjcFJVyTFFBFDPg1isBtzurLzWsl+G3z5fVXeic90mPxg==",
  4165. "type": "package",
  4166. "path": "microsoft.entityframeworkcore.analyzers/6.0.4",
  4167. "files": [
  4168. ".nupkg.metadata",
  4169. ".signature.p7s",
  4170. "Icon.png",
  4171. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4172. "lib/netstandard2.0/_._",
  4173. "microsoft.entityframeworkcore.analyzers.6.0.4.nupkg.sha512",
  4174. "microsoft.entityframeworkcore.analyzers.nuspec"
  4175. ]
  4176. },
  4177. "Microsoft.EntityFrameworkCore.Design/6.0.4": {
  4178. "sha512": "NOAtatJPq/xDa+vqfxL5+OwCKv83N/JX/IPgY6VQZ95KUtV9uuC+mVPsremG3a9UM3tPfK4CXMh1rwiaZHYCPQ==",
  4179. "type": "package",
  4180. "path": "microsoft.entityframeworkcore.design/6.0.4",
  4181. "files": [
  4182. ".nupkg.metadata",
  4183. ".signature.p7s",
  4184. "Icon.png",
  4185. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
  4186. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
  4187. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
  4188. "microsoft.entityframeworkcore.design.6.0.4.nupkg.sha512",
  4189. "microsoft.entityframeworkcore.design.nuspec"
  4190. ]
  4191. },
  4192. "Microsoft.EntityFrameworkCore.Relational/6.0.4": {
  4193. "sha512": "E867NbEXYRTElBF5ff+1AN5Awa1jkORy/Rrm0ueibaTAV5uw89LsLoH6yTe+b9urZTWMHtLfGd1RDdNjk8+KzA==",
  4194. "type": "package",
  4195. "path": "microsoft.entityframeworkcore.relational/6.0.4",
  4196. "files": [
  4197. ".nupkg.metadata",
  4198. ".signature.p7s",
  4199. "Icon.png",
  4200. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
  4201. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
  4202. "microsoft.entityframeworkcore.relational.6.0.4.nupkg.sha512",
  4203. "microsoft.entityframeworkcore.relational.nuspec"
  4204. ]
  4205. },
  4206. "Microsoft.EntityFrameworkCore.SqlServer/6.0.4": {
  4207. "sha512": "rMJcVbMxrXmufywA1wYUMqLuxS7PvoPVxR8juUGwJcBdQ31rKyDBxII3i5B2JrgSgWXGiy8V7n9acxKRTX03fw==",
  4208. "type": "package",
  4209. "path": "microsoft.entityframeworkcore.sqlserver/6.0.4",
  4210. "files": [
  4211. ".nupkg.metadata",
  4212. ".signature.p7s",
  4213. "Icon.png",
  4214. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  4215. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  4216. "microsoft.entityframeworkcore.sqlserver.6.0.4.nupkg.sha512",
  4217. "microsoft.entityframeworkcore.sqlserver.nuspec"
  4218. ]
  4219. },
  4220. "Microsoft.EntityFrameworkCore.Tools/6.0.4": {
  4221. "sha512": "6uAir6kFgkZoM2xsmNxs3WhK03xN37u4fW44X8cAXzllkG4txMajbkYhT0jSh4D+YrnfdNCq3K8ol3MyCCGEug==",
  4222. "type": "package",
  4223. "path": "microsoft.entityframeworkcore.tools/6.0.4",
  4224. "hasTools": true,
  4225. "files": [
  4226. ".nupkg.metadata",
  4227. ".signature.p7s",
  4228. "Icon.png",
  4229. "lib/net6.0/_._",
  4230. "microsoft.entityframeworkcore.tools.6.0.4.nupkg.sha512",
  4231. "microsoft.entityframeworkcore.tools.nuspec",
  4232. "tools/EntityFrameworkCore.PS2.psd1",
  4233. "tools/EntityFrameworkCore.PS2.psm1",
  4234. "tools/EntityFrameworkCore.psd1",
  4235. "tools/EntityFrameworkCore.psm1",
  4236. "tools/about_EntityFrameworkCore.help.txt",
  4237. "tools/init.ps1",
  4238. "tools/net461/any/ef.exe",
  4239. "tools/net461/win-x86/ef.exe",
  4240. "tools/netcoreapp2.0/any/ef.dll",
  4241. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  4242. ]
  4243. },
  4244. "Microsoft.Extensions.ApiDescription.Server/3.0.0": {
  4245. "sha512": "LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==",
  4246. "type": "package",
  4247. "path": "microsoft.extensions.apidescription.server/3.0.0",
  4248. "hasTools": true,
  4249. "files": [
  4250. ".nupkg.metadata",
  4251. ".signature.p7s",
  4252. "build/Microsoft.Extensions.ApiDescription.Server.props",
  4253. "build/Microsoft.Extensions.ApiDescription.Server.targets",
  4254. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props",
  4255. "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets",
  4256. "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512",
  4257. "microsoft.extensions.apidescription.server.nuspec",
  4258. "tools/Newtonsoft.Json.dll",
  4259. "tools/dotnet-getdocument.deps.json",
  4260. "tools/dotnet-getdocument.dll",
  4261. "tools/dotnet-getdocument.runtimeconfig.json",
  4262. "tools/net461-x86/GetDocument.Insider.exe",
  4263. "tools/net461-x86/GetDocument.Insider.exe.config",
  4264. "tools/net461/GetDocument.Insider.exe",
  4265. "tools/net461/GetDocument.Insider.exe.config",
  4266. "tools/netcoreapp2.1/GetDocument.Insider.deps.json",
  4267. "tools/netcoreapp2.1/GetDocument.Insider.dll",
  4268. "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json"
  4269. ]
  4270. },
  4271. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  4272. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  4273. "type": "package",
  4274. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  4275. "files": [
  4276. ".nupkg.metadata",
  4277. ".signature.p7s",
  4278. "Icon.png",
  4279. "LICENSE.TXT",
  4280. "THIRD-PARTY-NOTICES.TXT",
  4281. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4282. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4283. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4284. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4285. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  4286. "microsoft.extensions.caching.abstractions.nuspec",
  4287. "useSharedDesignerContext.txt"
  4288. ]
  4289. },
  4290. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  4291. "sha512": "B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
  4292. "type": "package",
  4293. "path": "microsoft.extensions.caching.memory/6.0.1",
  4294. "files": [
  4295. ".nupkg.metadata",
  4296. ".signature.p7s",
  4297. "Icon.png",
  4298. "LICENSE.TXT",
  4299. "THIRD-PARTY-NOTICES.TXT",
  4300. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4301. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4302. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4303. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4304. "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
  4305. "microsoft.extensions.caching.memory.nuspec",
  4306. "useSharedDesignerContext.txt"
  4307. ]
  4308. },
  4309. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  4310. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  4311. "type": "package",
  4312. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  4313. "files": [
  4314. ".nupkg.metadata",
  4315. ".signature.p7s",
  4316. "Icon.png",
  4317. "LICENSE.TXT",
  4318. "THIRD-PARTY-NOTICES.TXT",
  4319. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4320. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4321. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4322. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4323. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  4324. "microsoft.extensions.configuration.abstractions.nuspec",
  4325. "useSharedDesignerContext.txt"
  4326. ]
  4327. },
  4328. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  4329. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  4330. "type": "package",
  4331. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  4332. "files": [
  4333. ".nupkg.metadata",
  4334. ".signature.p7s",
  4335. "Icon.png",
  4336. "LICENSE.TXT",
  4337. "THIRD-PARTY-NOTICES.TXT",
  4338. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  4339. "buildTransitive/netcoreapp3.1/_._",
  4340. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4341. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4342. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  4343. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  4344. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4345. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4346. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4347. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4348. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  4349. "microsoft.extensions.dependencyinjection.nuspec",
  4350. "useSharedDesignerContext.txt"
  4351. ]
  4352. },
  4353. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  4354. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  4355. "type": "package",
  4356. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  4357. "files": [
  4358. ".nupkg.metadata",
  4359. ".signature.p7s",
  4360. "Icon.png",
  4361. "LICENSE.TXT",
  4362. "THIRD-PARTY-NOTICES.TXT",
  4363. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  4364. "buildTransitive/netcoreapp3.1/_._",
  4365. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4366. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4367. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4368. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4369. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4370. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4371. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4372. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4373. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  4374. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4375. "useSharedDesignerContext.txt"
  4376. ]
  4377. },
  4378. "Microsoft.Extensions.Logging/6.0.0": {
  4379. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  4380. "type": "package",
  4381. "path": "microsoft.extensions.logging/6.0.0",
  4382. "files": [
  4383. ".nupkg.metadata",
  4384. ".signature.p7s",
  4385. "Icon.png",
  4386. "LICENSE.TXT",
  4387. "THIRD-PARTY-NOTICES.TXT",
  4388. "lib/net461/Microsoft.Extensions.Logging.dll",
  4389. "lib/net461/Microsoft.Extensions.Logging.xml",
  4390. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  4391. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  4392. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  4393. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  4394. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  4395. "microsoft.extensions.logging.nuspec",
  4396. "useSharedDesignerContext.txt"
  4397. ]
  4398. },
  4399. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  4400. "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==",
  4401. "type": "package",
  4402. "path": "microsoft.extensions.logging.abstractions/6.0.0",
  4403. "files": [
  4404. ".nupkg.metadata",
  4405. ".signature.p7s",
  4406. "Icon.png",
  4407. "LICENSE.TXT",
  4408. "THIRD-PARTY-NOTICES.TXT",
  4409. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  4410. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4411. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4412. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4413. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4414. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4415. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4416. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4417. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4418. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4419. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4420. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4421. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4422. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4423. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  4424. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  4425. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  4426. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  4427. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4428. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  4429. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  4430. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  4431. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  4432. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  4433. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  4434. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  4435. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  4436. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  4437. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  4438. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  4439. "buildTransitive/netcoreapp3.1/_._",
  4440. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  4441. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  4442. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4443. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4444. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  4445. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  4446. "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512",
  4447. "microsoft.extensions.logging.abstractions.nuspec",
  4448. "useSharedDesignerContext.txt"
  4449. ]
  4450. },
  4451. "Microsoft.Extensions.Options/6.0.0": {
  4452. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  4453. "type": "package",
  4454. "path": "microsoft.extensions.options/6.0.0",
  4455. "files": [
  4456. ".nupkg.metadata",
  4457. ".signature.p7s",
  4458. "Icon.png",
  4459. "LICENSE.TXT",
  4460. "THIRD-PARTY-NOTICES.TXT",
  4461. "lib/net461/Microsoft.Extensions.Options.dll",
  4462. "lib/net461/Microsoft.Extensions.Options.xml",
  4463. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  4464. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  4465. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  4466. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  4467. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  4468. "microsoft.extensions.options.nuspec",
  4469. "useSharedDesignerContext.txt"
  4470. ]
  4471. },
  4472. "Microsoft.Extensions.Primitives/6.0.0": {
  4473. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  4474. "type": "package",
  4475. "path": "microsoft.extensions.primitives/6.0.0",
  4476. "files": [
  4477. ".nupkg.metadata",
  4478. ".signature.p7s",
  4479. "Icon.png",
  4480. "LICENSE.TXT",
  4481. "THIRD-PARTY-NOTICES.TXT",
  4482. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  4483. "buildTransitive/netcoreapp3.1/_._",
  4484. "lib/net461/Microsoft.Extensions.Primitives.dll",
  4485. "lib/net461/Microsoft.Extensions.Primitives.xml",
  4486. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  4487. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  4488. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  4489. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  4490. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  4491. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  4492. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  4493. "microsoft.extensions.primitives.nuspec",
  4494. "useSharedDesignerContext.txt"
  4495. ]
  4496. },
  4497. "Microsoft.Identity.Client/4.21.1": {
  4498. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  4499. "type": "package",
  4500. "path": "microsoft.identity.client/4.21.1",
  4501. "files": [
  4502. ".nupkg.metadata",
  4503. ".signature.p7s",
  4504. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  4505. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  4506. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  4507. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  4508. "lib/net45/Microsoft.Identity.Client.dll",
  4509. "lib/net45/Microsoft.Identity.Client.xml",
  4510. "lib/net461/Microsoft.Identity.Client.dll",
  4511. "lib/net461/Microsoft.Identity.Client.xml",
  4512. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  4513. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  4514. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  4515. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  4516. "lib/uap10.0/Microsoft.Identity.Client.dll",
  4517. "lib/uap10.0/Microsoft.Identity.Client.pri",
  4518. "lib/uap10.0/Microsoft.Identity.Client.xml",
  4519. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  4520. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  4521. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  4522. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  4523. "microsoft.identity.client.4.21.1.nupkg.sha512",
  4524. "microsoft.identity.client.nuspec",
  4525. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  4526. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  4527. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  4528. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  4529. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  4530. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  4531. "ref/net45/Microsoft.Identity.Client.dll",
  4532. "ref/net45/Microsoft.Identity.Client.xml",
  4533. "ref/net461/Microsoft.Identity.Client.dll",
  4534. "ref/net461/Microsoft.Identity.Client.xml",
  4535. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  4536. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  4537. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  4538. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  4539. "ref/uap10.0/Microsoft.Identity.Client.dll",
  4540. "ref/uap10.0/Microsoft.Identity.Client.xml",
  4541. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  4542. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  4543. ]
  4544. },
  4545. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  4546. "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
  4547. "type": "package",
  4548. "path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
  4549. "files": [
  4550. ".nupkg.metadata",
  4551. ".signature.p7s",
  4552. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  4553. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  4554. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  4555. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  4556. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  4557. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  4558. "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
  4559. "microsoft.identitymodel.jsonwebtokens.nuspec"
  4560. ]
  4561. },
  4562. "Microsoft.IdentityModel.Logging/6.8.0": {
  4563. "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
  4564. "type": "package",
  4565. "path": "microsoft.identitymodel.logging/6.8.0",
  4566. "files": [
  4567. ".nupkg.metadata",
  4568. ".signature.p7s",
  4569. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  4570. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  4571. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  4572. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  4573. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  4574. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  4575. "microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
  4576. "microsoft.identitymodel.logging.nuspec"
  4577. ]
  4578. },
  4579. "Microsoft.IdentityModel.Protocols/6.8.0": {
  4580. "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
  4581. "type": "package",
  4582. "path": "microsoft.identitymodel.protocols/6.8.0",
  4583. "files": [
  4584. ".nupkg.metadata",
  4585. ".signature.p7s",
  4586. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  4587. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  4588. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  4589. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  4590. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  4591. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  4592. "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
  4593. "microsoft.identitymodel.protocols.nuspec"
  4594. ]
  4595. },
  4596. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  4597. "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
  4598. "type": "package",
  4599. "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
  4600. "files": [
  4601. ".nupkg.metadata",
  4602. ".signature.p7s",
  4603. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  4604. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  4605. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  4606. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  4607. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  4608. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  4609. "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
  4610. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  4611. ]
  4612. },
  4613. "Microsoft.IdentityModel.Tokens/6.8.0": {
  4614. "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
  4615. "type": "package",
  4616. "path": "microsoft.identitymodel.tokens/6.8.0",
  4617. "files": [
  4618. ".nupkg.metadata",
  4619. ".signature.p7s",
  4620. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  4621. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  4622. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  4623. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  4624. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  4625. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  4626. "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
  4627. "microsoft.identitymodel.tokens.nuspec"
  4628. ]
  4629. },
  4630. "Microsoft.NET.StringTools/1.0.0": {
  4631. "sha512": "ZYVcoDM0LnSyT5nWoRGfShYdOecCw2sOXWwP6j1Z0u48Xq3+BVvZ+EiPCX9/8Gz439giW+O1H1kWF9Eb/w6rVg==",
  4632. "type": "package",
  4633. "path": "microsoft.net.stringtools/1.0.0",
  4634. "files": [
  4635. ".nupkg.metadata",
  4636. ".signature.p7s",
  4637. "MSBuild-NuGet-Icon.png",
  4638. "lib/net35/Microsoft.NET.StringTools.net35.dll",
  4639. "lib/net35/Microsoft.NET.StringTools.net35.pdb",
  4640. "lib/net472/Microsoft.NET.StringTools.dll",
  4641. "lib/net472/Microsoft.NET.StringTools.pdb",
  4642. "lib/netstandard2.0/Microsoft.NET.StringTools.dll",
  4643. "lib/netstandard2.0/Microsoft.NET.StringTools.pdb",
  4644. "microsoft.net.stringtools.1.0.0.nupkg.sha512",
  4645. "microsoft.net.stringtools.nuspec",
  4646. "notices/THIRDPARTYNOTICES.txt"
  4647. ]
  4648. },
  4649. "Microsoft.NETCore.Platforms/3.1.0": {
  4650. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  4651. "type": "package",
  4652. "path": "microsoft.netcore.platforms/3.1.0",
  4653. "files": [
  4654. ".nupkg.metadata",
  4655. ".signature.p7s",
  4656. "LICENSE.TXT",
  4657. "THIRD-PARTY-NOTICES.TXT",
  4658. "lib/netstandard1.0/_._",
  4659. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  4660. "microsoft.netcore.platforms.nuspec",
  4661. "runtime.json",
  4662. "useSharedDesignerContext.txt",
  4663. "version.txt"
  4664. ]
  4665. },
  4666. "Microsoft.NETCore.Targets/1.1.3": {
  4667. "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
  4668. "type": "package",
  4669. "path": "microsoft.netcore.targets/1.1.3",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "ThirdPartyNotices.txt",
  4674. "dotnet_library_license.txt",
  4675. "lib/netstandard1.0/_._",
  4676. "microsoft.netcore.targets.1.1.3.nupkg.sha512",
  4677. "microsoft.netcore.targets.nuspec",
  4678. "runtime.json"
  4679. ]
  4680. },
  4681. "Microsoft.OpenApi/1.2.3": {
  4682. "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
  4683. "type": "package",
  4684. "path": "microsoft.openapi/1.2.3",
  4685. "files": [
  4686. ".nupkg.metadata",
  4687. ".signature.p7s",
  4688. "lib/net46/Microsoft.OpenApi.dll",
  4689. "lib/net46/Microsoft.OpenApi.pdb",
  4690. "lib/net46/Microsoft.OpenApi.xml",
  4691. "lib/netstandard2.0/Microsoft.OpenApi.dll",
  4692. "lib/netstandard2.0/Microsoft.OpenApi.pdb",
  4693. "lib/netstandard2.0/Microsoft.OpenApi.xml",
  4694. "microsoft.openapi.1.2.3.nupkg.sha512",
  4695. "microsoft.openapi.nuspec"
  4696. ]
  4697. },
  4698. "Microsoft.VisualStudio.Debugger.Contracts/17.2.0": {
  4699. "sha512": "br/qV/aHqLqVlqtcMKglCC8MHMMLey0yMkKSplnMl58F5gKjwnh7wjs8+g0j/vf4T6h4KK7JWrC0+oN70pbugg==",
  4700. "type": "package",
  4701. "path": "microsoft.visualstudio.debugger.contracts/17.2.0",
  4702. "files": [
  4703. ".nupkg.metadata",
  4704. ".signature.p7s",
  4705. "Icon.png",
  4706. "License.txt",
  4707. "lib/netstandard2.0/Microsoft.VisualStudio.Debugger.Contracts.dll",
  4708. "lib/netstandard2.0/Microsoft.VisualStudio.Debugger.Contracts.pdb",
  4709. "microsoft.visualstudio.debugger.contracts.17.2.0.nupkg.sha512",
  4710. "microsoft.visualstudio.debugger.contracts.nuspec"
  4711. ]
  4712. },
  4713. "Microsoft.VisualStudio.Web.CodeGeneration/6.0.3": {
  4714. "sha512": "rD1Lj6LljO7iEeZJuGtEp0O9rZHvr+tAZJx8QgwdmlrMReaYA0+KQCH/woEdcmBo+ifnwUUyNgG+9NUECYTT9g==",
  4715. "type": "package",
  4716. "path": "microsoft.visualstudio.web.codegeneration/6.0.3",
  4717. "files": [
  4718. ".nupkg.metadata",
  4719. ".signature.p7s",
  4720. "Icon.png",
  4721. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
  4722. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
  4723. "microsoft.visualstudio.web.codegeneration.6.0.3.nupkg.sha512",
  4724. "microsoft.visualstudio.web.codegeneration.nuspec"
  4725. ]
  4726. },
  4727. "Microsoft.VisualStudio.Web.CodeGeneration.Core/6.0.3": {
  4728. "sha512": "o+rN2+WrG4NTU4dzcExaMAGpQk84+SJMC8D3v7pe35f6DJQIXC3lc9V9npgNtiiD19aP+Pdto8L5nuwQ83dgTw==",
  4729. "type": "package",
  4730. "path": "microsoft.visualstudio.web.codegeneration.core/6.0.3",
  4731. "files": [
  4732. ".nupkg.metadata",
  4733. ".signature.p7s",
  4734. "Icon.png",
  4735. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
  4736. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
  4737. "microsoft.visualstudio.web.codegeneration.core.6.0.3.nupkg.sha512",
  4738. "microsoft.visualstudio.web.codegeneration.core.nuspec"
  4739. ]
  4740. },
  4741. "Microsoft.VisualStudio.Web.CodeGeneration.Design/6.0.3": {
  4742. "sha512": "cqxm2k5KF7T0KejRlxt71aizeR+2a/9qk94c1p7/CCOjns4cgwL92IxyrhhpILn0U+kylslBE2O/AJoi28wkSA==",
  4743. "type": "package",
  4744. "path": "microsoft.visualstudio.web.codegeneration.design/6.0.3",
  4745. "files": [
  4746. ".nupkg.metadata",
  4747. ".signature.p7s",
  4748. "Icon.png",
  4749. "lib/net6.0/dotnet-aspnet-codegenerator-design.dll",
  4750. "lib/net6.0/dotnet-aspnet-codegenerator-design.xml",
  4751. "microsoft.visualstudio.web.codegeneration.design.6.0.3.nupkg.sha512",
  4752. "microsoft.visualstudio.web.codegeneration.design.nuspec",
  4753. "runtimes/win-arm/lib/net6.0/dotnet-aspnet-codegenerator-design.exe",
  4754. "runtimes/win-arm/lib/net6.0/dotnet-aspnet-codegenerator-design.xml",
  4755. "runtimes/win-arm64/lib/net6.0/dotnet-aspnet-codegenerator-design.exe",
  4756. "runtimes/win-arm64/lib/net6.0/dotnet-aspnet-codegenerator-design.xml"
  4757. ]
  4758. },
  4759. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/6.0.3": {
  4760. "sha512": "Mg0HpwFZyOJQHtW04gbCLekZ8Lt3VSs9s9JqgGm6DXoeTbAbaHhJGZohuT296Z+0MuFJgl9mD1/j1Zof8hPgcA==",
  4761. "type": "package",
  4762. "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/6.0.3",
  4763. "files": [
  4764. ".nupkg.metadata",
  4765. ".signature.p7s",
  4766. "Icon.png",
  4767. "Templates/DbContext/NewLocalDbContext.cshtml",
  4768. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
  4769. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json",
  4770. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
  4771. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.6.0.3.nupkg.sha512",
  4772. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
  4773. ]
  4774. },
  4775. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/6.0.3": {
  4776. "sha512": "TMV1xzJSjNpiWCGkw6/8/XHmYF0HiimH/8kmPZfT/J+WBKABn4DRbZNpgTYNKmcuYxg4mKySFPVpblQ0XMf9Tg==",
  4777. "type": "package",
  4778. "path": "microsoft.visualstudio.web.codegeneration.templating/6.0.3",
  4779. "files": [
  4780. ".nupkg.metadata",
  4781. ".signature.p7s",
  4782. "Icon.png",
  4783. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
  4784. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
  4785. "microsoft.visualstudio.web.codegeneration.templating.6.0.3.nupkg.sha512",
  4786. "microsoft.visualstudio.web.codegeneration.templating.nuspec"
  4787. ]
  4788. },
  4789. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/6.0.3": {
  4790. "sha512": "M8k06jnZ0l7031mPYDbLaiiz20ju1MP+FJlpDKVilkAPOQVITSFRDm8Hhd2Pyd+BSj+nCzDC1ZMglK8z+lJ5ig==",
  4791. "type": "package",
  4792. "path": "microsoft.visualstudio.web.codegeneration.utils/6.0.3",
  4793. "files": [
  4794. ".nupkg.metadata",
  4795. ".signature.p7s",
  4796. "Icon.png",
  4797. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
  4798. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
  4799. "microsoft.visualstudio.web.codegeneration.utils.6.0.3.nupkg.sha512",
  4800. "microsoft.visualstudio.web.codegeneration.utils.nuspec"
  4801. ]
  4802. },
  4803. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/6.0.3": {
  4804. "sha512": "Oe3QkXildc2AFM33rN9WSLj53kzuQAPLAv7aduz+bnYc86SFBPA/qpYZ2ZJhlKYbrJUpztRqoWvLqGfDT6XkUw==",
  4805. "type": "package",
  4806. "path": "microsoft.visualstudio.web.codegenerators.mvc/6.0.3",
  4807. "files": [
  4808. ".nupkg.metadata",
  4809. ".signature.p7s",
  4810. "Generators/ParameterDefinitions/area.json",
  4811. "Generators/ParameterDefinitions/controller.json",
  4812. "Generators/ParameterDefinitions/identity.json",
  4813. "Generators/ParameterDefinitions/minimalapi.json",
  4814. "Generators/ParameterDefinitions/razorpage.json",
  4815. "Generators/ParameterDefinitions/view.json",
  4816. "Icon.png",
  4817. "Templates/ControllerGenerator/ApiControllerWithActions.cshtml",
  4818. "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
  4819. "Templates/ControllerGenerator/ApiEmptyController.cshtml",
  4820. "Templates/ControllerGenerator/ControllerWithActions.cshtml",
  4821. "Templates/ControllerGenerator/EmptyController.cshtml",
  4822. "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
  4823. "Templates/Identity/Data/ApplicationDbContext.cshtml",
  4824. "Templates/Identity/Data/ApplicationUser.cshtml",
  4825. "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
  4826. "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
  4827. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  4828. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
  4829. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  4830. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
  4831. "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
  4832. "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
  4833. "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
  4834. "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
  4835. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  4836. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  4837. "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
  4838. "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
  4839. "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
  4840. "Templates/Identity/Pages/Account/Account.Login.cshtml",
  4841. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  4842. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
  4843. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  4844. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  4845. "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
  4846. "Templates/Identity/Pages/Account/Account.Logout.cshtml",
  4847. "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
  4848. "Templates/Identity/Pages/Account/Account.Register.cshtml",
  4849. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  4850. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
  4851. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  4852. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  4853. "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
  4854. "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
  4855. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  4856. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  4857. "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
  4858. "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
  4859. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  4860. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  4861. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  4862. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  4863. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  4864. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  4865. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  4866. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  4867. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  4868. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
  4869. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  4870. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  4871. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  4872. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  4873. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  4874. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  4875. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  4876. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
  4877. "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  4878. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  4879. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  4880. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  4881. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  4882. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  4883. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  4884. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  4885. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  4886. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  4887. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  4888. "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  4889. "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  4890. "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  4891. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  4892. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewStart.cshtml",
  4893. "Templates/Identity/Pages/Error.cs.cshtml",
  4894. "Templates/Identity/Pages/Error.cshtml",
  4895. "Templates/Identity/Pages/_Layout.cshtml",
  4896. "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
  4897. "Templates/Identity/Pages/_ViewImports.cshtml",
  4898. "Templates/Identity/Pages/_ViewStart.cshtml",
  4899. "Templates/Identity/ScaffoldingReadme.cshtml",
  4900. "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
  4901. "Templates/Identity/SupportPages._ViewImports.cshtml",
  4902. "Templates/Identity/SupportPages._ViewStart.cshtml",
  4903. "Templates/Identity/_LoginPartial.cshtml",
  4904. "Templates/Identity/wwwroot/css/site.css",
  4905. "Templates/Identity/wwwroot/favicon.ico",
  4906. "Templates/Identity/wwwroot/js/site.js",
  4907. "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
  4908. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  4909. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  4910. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  4911. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  4912. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
  4913. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
  4914. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
  4915. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
  4916. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  4917. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  4918. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  4919. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  4920. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
  4921. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
  4922. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
  4923. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
  4924. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css",
  4925. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
  4926. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
  4927. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
  4928. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
  4929. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
  4930. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
  4931. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
  4932. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  4933. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  4934. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  4935. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  4936. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css",
  4937. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
  4938. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
  4939. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
  4940. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  4941. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  4942. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  4943. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  4944. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js",
  4945. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map",
  4946. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js",
  4947. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
  4948. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  4949. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  4950. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  4951. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  4952. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  4953. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  4954. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  4955. "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
  4956. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  4957. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  4958. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  4959. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  4960. "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
  4961. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
  4962. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
  4963. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
  4964. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml",
  4965. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml",
  4966. "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml",
  4967. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml",
  4968. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml",
  4969. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  4970. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml",
  4971. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  4972. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cshtml",
  4973. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml",
  4974. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml",
  4975. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml",
  4976. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml",
  4977. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  4978. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  4979. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml",
  4980. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml",
  4981. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml",
  4982. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml",
  4983. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  4984. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml",
  4985. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  4986. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  4987. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml",
  4988. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml",
  4989. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml",
  4990. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml",
  4991. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  4992. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cshtml",
  4993. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  4994. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  4995. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml",
  4996. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml",
  4997. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  4998. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  4999. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._StatusMessage.cshtml",
  5000. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml",
  5001. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  5002. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  5003. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  5004. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  5005. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  5006. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  5007. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  5008. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  5009. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  5010. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cshtml",
  5011. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  5012. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  5013. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  5014. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  5015. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  5016. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  5017. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  5018. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml",
  5019. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  5020. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  5021. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  5022. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  5023. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  5024. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  5025. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  5026. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  5027. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  5028. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  5029. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  5030. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  5031. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  5032. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  5033. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  5034. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml",
  5035. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml",
  5036. "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml",
  5037. "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml",
  5038. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml",
  5039. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml",
  5040. "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml",
  5041. "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml",
  5042. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml",
  5043. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml",
  5044. "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml",
  5045. "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css",
  5046. "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico",
  5047. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg",
  5048. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg",
  5049. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg",
  5050. "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js",
  5051. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE",
  5052. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css",
  5053. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map",
  5054. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css",
  5055. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map",
  5056. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  5057. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  5058. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  5059. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  5060. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot",
  5061. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg",
  5062. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf",
  5063. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff",
  5064. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2",
  5065. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  5066. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  5067. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js",
  5068. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  5069. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  5070. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  5071. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md",
  5072. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  5073. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  5074. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  5075. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  5076. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt",
  5077. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js",
  5078. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js",
  5079. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map",
  5080. "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationDbContext.cshtml",
  5081. "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationUser.cshtml",
  5082. "Templates/Identity_Versioned/Bootstrap4/IdentityHostingStartup.cshtml",
  5083. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cs.cshtml",
  5084. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cshtml",
  5085. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  5086. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cshtml",
  5087. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  5088. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cshtml",
  5089. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cs.cshtml",
  5090. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cshtml",
  5091. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cs.cshtml",
  5092. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cshtml",
  5093. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  5094. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  5095. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cs.cshtml",
  5096. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cshtml",
  5097. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cs.cshtml",
  5098. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cshtml",
  5099. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  5100. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cshtml",
  5101. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  5102. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  5103. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cs.cshtml",
  5104. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cshtml",
  5105. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cs.cshtml",
  5106. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cshtml",
  5107. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  5108. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cshtml",
  5109. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  5110. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  5111. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cs.cshtml",
  5112. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cshtml",
  5113. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  5114. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  5115. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._StatusMessage.cshtml",
  5116. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._ViewImports.cshtml",
  5117. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  5118. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  5119. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  5120. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  5121. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  5122. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  5123. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  5124. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  5125. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  5126. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cshtml",
  5127. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  5128. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  5129. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  5130. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  5131. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  5132. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  5133. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  5134. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cshtml",
  5135. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  5136. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  5137. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  5138. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  5139. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  5140. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  5141. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  5142. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  5143. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  5144. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  5145. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  5146. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  5147. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  5148. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  5149. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  5150. "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cs.cshtml",
  5151. "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cshtml",
  5152. "Templates/Identity_Versioned/Bootstrap4/Pages/_Layout.cshtml",
  5153. "Templates/Identity_Versioned/Bootstrap4/Pages/_ValidationScriptsPartial.cshtml",
  5154. "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewImports.cshtml",
  5155. "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewStart.cshtml",
  5156. "Templates/Identity_Versioned/Bootstrap4/ScaffoldingReadme.cshtml",
  5157. "Templates/Identity_Versioned/Bootstrap4/SupportPages._CookieConsentPartial.cshtml",
  5158. "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewImports.cshtml",
  5159. "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewStart.cshtml",
  5160. "Templates/Identity_Versioned/Bootstrap4/_LoginPartial.cshtml",
  5161. "Templates/Identity_Versioned/Bootstrap4/wwwroot/css/site.css",
  5162. "Templates/Identity_Versioned/Bootstrap4/wwwroot/favicon.ico",
  5163. "Templates/Identity_Versioned/Bootstrap4/wwwroot/js/site.js",
  5164. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/LICENSE",
  5165. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  5166. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  5167. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  5168. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  5169. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  5170. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  5171. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  5172. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  5173. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  5174. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  5175. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  5176. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  5177. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  5178. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  5179. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  5180. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  5181. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  5182. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  5183. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  5184. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  5185. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  5186. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  5187. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  5188. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/LICENSE.md",
  5189. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  5190. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  5191. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  5192. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  5193. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/LICENSE.txt",
  5194. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.js",
  5195. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.js",
  5196. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.map",
  5197. "Templates/MinimalApi/MinimalApi.cshtml",
  5198. "Templates/MinimalApi/MinimalApiEf.cshtml",
  5199. "Templates/MinimalApi/MinimalApiEfNoClass.cshtml",
  5200. "Templates/MinimalApi/MinimalApiNoClass.cshtml",
  5201. "Templates/MvcLayout/Error.cshtml",
  5202. "Templates/MvcLayout/_Layout.cshtml",
  5203. "Templates/RazorPageGenerator/Create.cshtml",
  5204. "Templates/RazorPageGenerator/CreatePageModel.cshtml",
  5205. "Templates/RazorPageGenerator/Delete.cshtml",
  5206. "Templates/RazorPageGenerator/DeletePageModel.cshtml",
  5207. "Templates/RazorPageGenerator/Details.cshtml",
  5208. "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
  5209. "Templates/RazorPageGenerator/Edit.cshtml",
  5210. "Templates/RazorPageGenerator/EditPageModel.cshtml",
  5211. "Templates/RazorPageGenerator/Empty.cshtml",
  5212. "Templates/RazorPageGenerator/EmptyPageModel.cshtml",
  5213. "Templates/RazorPageGenerator/List.cshtml",
  5214. "Templates/RazorPageGenerator/ListPageModel.cshtml",
  5215. "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
  5216. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml",
  5217. "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml",
  5218. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml",
  5219. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml",
  5220. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml",
  5221. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml",
  5222. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml",
  5223. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml",
  5224. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml",
  5225. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml",
  5226. "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml",
  5227. "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml",
  5228. "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  5229. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Create.cshtml",
  5230. "Templates/RazorPageGenerator_Versioned/Bootstrap4/CreatePageModel.cshtml",
  5231. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Delete.cshtml",
  5232. "Templates/RazorPageGenerator_Versioned/Bootstrap4/DeletePageModel.cshtml",
  5233. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Details.cshtml",
  5234. "Templates/RazorPageGenerator_Versioned/Bootstrap4/DetailsPageModel.cshtml",
  5235. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Edit.cshtml",
  5236. "Templates/RazorPageGenerator_Versioned/Bootstrap4/EditPageModel.cshtml",
  5237. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Empty.cshtml",
  5238. "Templates/RazorPageGenerator_Versioned/Bootstrap4/EmptyPageModel.cshtml",
  5239. "Templates/RazorPageGenerator_Versioned/Bootstrap4/List.cshtml",
  5240. "Templates/RazorPageGenerator_Versioned/Bootstrap4/ListPageModel.cshtml",
  5241. "Templates/RazorPageGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
  5242. "Templates/Startup/ReadMe.cshtml",
  5243. "Templates/Startup/Startup.cshtml",
  5244. "Templates/ViewGenerator/Create.cshtml",
  5245. "Templates/ViewGenerator/Delete.cshtml",
  5246. "Templates/ViewGenerator/Details.cshtml",
  5247. "Templates/ViewGenerator/Edit.cshtml",
  5248. "Templates/ViewGenerator/Empty.cshtml",
  5249. "Templates/ViewGenerator/List.cshtml",
  5250. "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
  5251. "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml",
  5252. "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml",
  5253. "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml",
  5254. "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml",
  5255. "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml",
  5256. "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml",
  5257. "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  5258. "Templates/ViewGenerator_Versioned/Bootstrap4/Create.cshtml",
  5259. "Templates/ViewGenerator_Versioned/Bootstrap4/Delete.cshtml",
  5260. "Templates/ViewGenerator_Versioned/Bootstrap4/Details.cshtml",
  5261. "Templates/ViewGenerator_Versioned/Bootstrap4/Edit.cshtml",
  5262. "Templates/ViewGenerator_Versioned/Bootstrap4/Empty.cshtml",
  5263. "Templates/ViewGenerator_Versioned/Bootstrap4/List.cshtml",
  5264. "Templates/ViewGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
  5265. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
  5266. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
  5267. "lib/net6.0/bootstrap3_identitygeneratorfilesconfig.json",
  5268. "lib/net6.0/bootstrap4_identitygeneratorfilesconfig.json",
  5269. "lib/net6.0/bootstrap5_identitygeneratorfilesconfig.json",
  5270. "lib/net6.0/identityMinimalHostingChanges.json",
  5271. "lib/net6.0/minimalApiChanges.json",
  5272. "microsoft.visualstudio.web.codegenerators.mvc.6.0.3.nupkg.sha512",
  5273. "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
  5274. ]
  5275. },
  5276. "Microsoft.Win32.Primitives/4.3.0": {
  5277. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5278. "type": "package",
  5279. "path": "microsoft.win32.primitives/4.3.0",
  5280. "files": [
  5281. ".nupkg.metadata",
  5282. ".signature.p7s",
  5283. "ThirdPartyNotices.txt",
  5284. "dotnet_library_license.txt",
  5285. "lib/MonoAndroid10/_._",
  5286. "lib/MonoTouch10/_._",
  5287. "lib/net46/Microsoft.Win32.Primitives.dll",
  5288. "lib/xamarinios10/_._",
  5289. "lib/xamarinmac20/_._",
  5290. "lib/xamarintvos10/_._",
  5291. "lib/xamarinwatchos10/_._",
  5292. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5293. "microsoft.win32.primitives.nuspec",
  5294. "ref/MonoAndroid10/_._",
  5295. "ref/MonoTouch10/_._",
  5296. "ref/net46/Microsoft.Win32.Primitives.dll",
  5297. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5298. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5299. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5300. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5301. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5302. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5303. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5304. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5305. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5306. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5307. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5308. "ref/xamarinios10/_._",
  5309. "ref/xamarinmac20/_._",
  5310. "ref/xamarintvos10/_._",
  5311. "ref/xamarinwatchos10/_._"
  5312. ]
  5313. },
  5314. "Microsoft.Win32.Registry/4.7.0": {
  5315. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  5316. "type": "package",
  5317. "path": "microsoft.win32.registry/4.7.0",
  5318. "files": [
  5319. ".nupkg.metadata",
  5320. ".signature.p7s",
  5321. "LICENSE.TXT",
  5322. "THIRD-PARTY-NOTICES.TXT",
  5323. "lib/net46/Microsoft.Win32.Registry.dll",
  5324. "lib/net461/Microsoft.Win32.Registry.dll",
  5325. "lib/net461/Microsoft.Win32.Registry.xml",
  5326. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5327. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5328. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5329. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  5330. "microsoft.win32.registry.nuspec",
  5331. "ref/net46/Microsoft.Win32.Registry.dll",
  5332. "ref/net461/Microsoft.Win32.Registry.dll",
  5333. "ref/net461/Microsoft.Win32.Registry.xml",
  5334. "ref/net472/Microsoft.Win32.Registry.dll",
  5335. "ref/net472/Microsoft.Win32.Registry.xml",
  5336. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  5337. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  5338. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  5339. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  5340. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  5341. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  5342. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  5343. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  5344. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  5345. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  5346. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  5347. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  5348. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  5349. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5350. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5351. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  5352. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  5353. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  5354. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5355. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5356. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5357. "useSharedDesignerContext.txt",
  5358. "version.txt"
  5359. ]
  5360. },
  5361. "Microsoft.Win32.SystemEvents/4.7.0": {
  5362. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  5363. "type": "package",
  5364. "path": "microsoft.win32.systemevents/4.7.0",
  5365. "files": [
  5366. ".nupkg.metadata",
  5367. ".signature.p7s",
  5368. "LICENSE.TXT",
  5369. "THIRD-PARTY-NOTICES.TXT",
  5370. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5371. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5372. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5373. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5374. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  5375. "microsoft.win32.systemevents.nuspec",
  5376. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5377. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5378. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  5379. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  5380. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5381. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5382. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5383. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5384. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5385. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5386. "useSharedDesignerContext.txt",
  5387. "version.txt"
  5388. ]
  5389. },
  5390. "NETStandard.Library/1.6.1": {
  5391. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5392. "type": "package",
  5393. "path": "netstandard.library/1.6.1",
  5394. "files": [
  5395. ".nupkg.metadata",
  5396. ".signature.p7s",
  5397. "ThirdPartyNotices.txt",
  5398. "dotnet_library_license.txt",
  5399. "netstandard.library.1.6.1.nupkg.sha512",
  5400. "netstandard.library.nuspec"
  5401. ]
  5402. },
  5403. "Newtonsoft.Json/13.0.1": {
  5404. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  5405. "type": "package",
  5406. "path": "newtonsoft.json/13.0.1",
  5407. "files": [
  5408. ".nupkg.metadata",
  5409. ".signature.p7s",
  5410. "LICENSE.md",
  5411. "lib/net20/Newtonsoft.Json.dll",
  5412. "lib/net20/Newtonsoft.Json.xml",
  5413. "lib/net35/Newtonsoft.Json.dll",
  5414. "lib/net35/Newtonsoft.Json.xml",
  5415. "lib/net40/Newtonsoft.Json.dll",
  5416. "lib/net40/Newtonsoft.Json.xml",
  5417. "lib/net45/Newtonsoft.Json.dll",
  5418. "lib/net45/Newtonsoft.Json.xml",
  5419. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5420. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5421. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5422. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5423. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5424. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5425. "newtonsoft.json.13.0.1.nupkg.sha512",
  5426. "newtonsoft.json.nuspec",
  5427. "packageIcon.png"
  5428. ]
  5429. },
  5430. "NuGet.Common/5.11.0": {
  5431. "sha512": "WCHexQBfSqBDRqP3PSDSUw7YM+PwuvMHGAkT/sXI5UHze4T41yLE+VB/km2Fe0z9y3m2mudcr2djFZezivjMJw==",
  5432. "type": "package",
  5433. "path": "nuget.common/5.11.0",
  5434. "files": [
  5435. ".nupkg.metadata",
  5436. ".signature.p7s",
  5437. "icon.png",
  5438. "lib/net45/NuGet.Common.dll",
  5439. "lib/net45/NuGet.Common.xml",
  5440. "lib/net472/NuGet.Common.dll",
  5441. "lib/net472/NuGet.Common.xml",
  5442. "lib/netstandard2.0/NuGet.Common.dll",
  5443. "lib/netstandard2.0/NuGet.Common.xml",
  5444. "nuget.common.5.11.0.nupkg.sha512",
  5445. "nuget.common.nuspec"
  5446. ]
  5447. },
  5448. "NuGet.Configuration/5.11.0": {
  5449. "sha512": "NqsQe198CTHoo7NMrKQL8utd6n9yVb9CPgJmpyF6kpEsLFo/9r0wqGL3ln8Mtcz8yuJpOPWFQEoOlzDzu3LfUg==",
  5450. "type": "package",
  5451. "path": "nuget.configuration/5.11.0",
  5452. "files": [
  5453. ".nupkg.metadata",
  5454. ".signature.p7s",
  5455. "icon.png",
  5456. "lib/net45/NuGet.Configuration.dll",
  5457. "lib/net45/NuGet.Configuration.xml",
  5458. "lib/net472/NuGet.Configuration.dll",
  5459. "lib/net472/NuGet.Configuration.xml",
  5460. "lib/netstandard2.0/NuGet.Configuration.dll",
  5461. "lib/netstandard2.0/NuGet.Configuration.xml",
  5462. "nuget.configuration.5.11.0.nupkg.sha512",
  5463. "nuget.configuration.nuspec"
  5464. ]
  5465. },
  5466. "NuGet.DependencyResolver.Core/5.11.0": {
  5467. "sha512": "kkWhU0msuCRyiIJeoL95j6bXUQMc1mTk8wZ3mMxl+0VzOf39eXSObmxKuJ7eh+6zOMQyzd0TAXU5u5aQSxOVSg==",
  5468. "type": "package",
  5469. "path": "nuget.dependencyresolver.core/5.11.0",
  5470. "files": [
  5471. ".nupkg.metadata",
  5472. ".signature.p7s",
  5473. "icon.png",
  5474. "lib/net472/NuGet.DependencyResolver.Core.dll",
  5475. "lib/net472/NuGet.DependencyResolver.Core.xml",
  5476. "lib/net5.0/NuGet.DependencyResolver.Core.dll",
  5477. "lib/net5.0/NuGet.DependencyResolver.Core.xml",
  5478. "lib/netstandard2.0/NuGet.DependencyResolver.Core.dll",
  5479. "lib/netstandard2.0/NuGet.DependencyResolver.Core.xml",
  5480. "nuget.dependencyresolver.core.5.11.0.nupkg.sha512",
  5481. "nuget.dependencyresolver.core.nuspec"
  5482. ]
  5483. },
  5484. "NuGet.Frameworks/5.11.0": {
  5485. "sha512": "eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==",
  5486. "type": "package",
  5487. "path": "nuget.frameworks/5.11.0",
  5488. "files": [
  5489. ".nupkg.metadata",
  5490. ".signature.p7s",
  5491. "icon.png",
  5492. "lib/net40/NuGet.Frameworks.dll",
  5493. "lib/net40/NuGet.Frameworks.xml",
  5494. "lib/net472/NuGet.Frameworks.dll",
  5495. "lib/net472/NuGet.Frameworks.xml",
  5496. "lib/netstandard2.0/NuGet.Frameworks.dll",
  5497. "lib/netstandard2.0/NuGet.Frameworks.xml",
  5498. "nuget.frameworks.5.11.0.nupkg.sha512",
  5499. "nuget.frameworks.nuspec"
  5500. ]
  5501. },
  5502. "NuGet.LibraryModel/5.11.0": {
  5503. "sha512": "Iq0tbX3Rsl4837VlWy90fliA7T2+g2FPdz/s/lK6H9g/5RCta/7AZADV0l/A/f0HDCDlMxBN2ha1hsmgxe1sGQ==",
  5504. "type": "package",
  5505. "path": "nuget.librarymodel/5.11.0",
  5506. "files": [
  5507. ".nupkg.metadata",
  5508. ".signature.p7s",
  5509. "icon.png",
  5510. "lib/net472/NuGet.LibraryModel.dll",
  5511. "lib/net472/NuGet.LibraryModel.xml",
  5512. "lib/netstandard2.0/NuGet.LibraryModel.dll",
  5513. "lib/netstandard2.0/NuGet.LibraryModel.xml",
  5514. "nuget.librarymodel.5.11.0.nupkg.sha512",
  5515. "nuget.librarymodel.nuspec"
  5516. ]
  5517. },
  5518. "NuGet.Packaging/5.11.0": {
  5519. "sha512": "knlpQuqTL8BEXUHTdZ9Wlz3pjck5nv0OYsCpSkaQAukl7fFcX4apAs8cwJgxHiEZjfWNG1npZOzpYdHG59v5xQ==",
  5520. "type": "package",
  5521. "path": "nuget.packaging/5.11.0",
  5522. "files": [
  5523. ".nupkg.metadata",
  5524. ".signature.p7s",
  5525. "icon.png",
  5526. "lib/net472/NuGet.Packaging.dll",
  5527. "lib/net472/NuGet.Packaging.xml",
  5528. "lib/net5.0/NuGet.Packaging.dll",
  5529. "lib/net5.0/NuGet.Packaging.xml",
  5530. "lib/netstandard2.0/NuGet.Packaging.dll",
  5531. "lib/netstandard2.0/NuGet.Packaging.xml",
  5532. "nuget.packaging.5.11.0.nupkg.sha512",
  5533. "nuget.packaging.nuspec"
  5534. ]
  5535. },
  5536. "NuGet.ProjectModel/5.11.0": {
  5537. "sha512": "8q7mAwHHP1/Ua1r3FQDg+kXcFvRgBmCCXQeqTkTVQoO5t3G/AwxzJVt7Jii0eNrM17Wzm975U0gnkNqlp+gdsw==",
  5538. "type": "package",
  5539. "path": "nuget.projectmodel/5.11.0",
  5540. "files": [
  5541. ".nupkg.metadata",
  5542. ".signature.p7s",
  5543. "icon.png",
  5544. "lib/net472/NuGet.ProjectModel.dll",
  5545. "lib/net472/NuGet.ProjectModel.xml",
  5546. "lib/net5.0/NuGet.ProjectModel.dll",
  5547. "lib/net5.0/NuGet.ProjectModel.xml",
  5548. "lib/netstandard2.0/NuGet.ProjectModel.dll",
  5549. "lib/netstandard2.0/NuGet.ProjectModel.xml",
  5550. "nuget.projectmodel.5.11.0.nupkg.sha512",
  5551. "nuget.projectmodel.nuspec"
  5552. ]
  5553. },
  5554. "NuGet.Protocol/5.11.0": {
  5555. "sha512": "eS/sJLqMzPz6gonD1zaXIcpDME/1DuKqv0Hlag8RuJcboZJliA15qjfg7UvuQB8/ineOleaEvrTzMjpKE0FdbQ==",
  5556. "type": "package",
  5557. "path": "nuget.protocol/5.11.0",
  5558. "files": [
  5559. ".nupkg.metadata",
  5560. ".signature.p7s",
  5561. "icon.png",
  5562. "lib/net472/NuGet.Protocol.dll",
  5563. "lib/net472/NuGet.Protocol.xml",
  5564. "lib/net5.0/NuGet.Protocol.dll",
  5565. "lib/net5.0/NuGet.Protocol.xml",
  5566. "lib/netstandard2.0/NuGet.Protocol.dll",
  5567. "lib/netstandard2.0/NuGet.Protocol.xml",
  5568. "nuget.protocol.5.11.0.nupkg.sha512",
  5569. "nuget.protocol.nuspec"
  5570. ]
  5571. },
  5572. "NuGet.Versioning/5.11.0": {
  5573. "sha512": "mCv/GzvMk5iatWoZY41PoIShEbwVxq9CDCc1fV/uqPFKZ4DD/1JuKZ5AL/FJJRsTanvMR3EOXKYCLdQ7PFYn8Q==",
  5574. "type": "package",
  5575. "path": "nuget.versioning/5.11.0",
  5576. "files": [
  5577. ".nupkg.metadata",
  5578. ".signature.p7s",
  5579. "icon.png",
  5580. "lib/net45/NuGet.Versioning.dll",
  5581. "lib/net45/NuGet.Versioning.xml",
  5582. "lib/net472/NuGet.Versioning.dll",
  5583. "lib/net472/NuGet.Versioning.xml",
  5584. "lib/netstandard2.0/NuGet.Versioning.dll",
  5585. "lib/netstandard2.0/NuGet.Versioning.xml",
  5586. "nuget.versioning.5.11.0.nupkg.sha512",
  5587. "nuget.versioning.nuspec"
  5588. ]
  5589. },
  5590. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5591. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5592. "type": "package",
  5593. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5594. "files": [
  5595. ".nupkg.metadata",
  5596. ".signature.p7s",
  5597. "ThirdPartyNotices.txt",
  5598. "dotnet_library_license.txt",
  5599. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5600. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5601. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5602. ]
  5603. },
  5604. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5605. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5606. "type": "package",
  5607. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5608. "files": [
  5609. ".nupkg.metadata",
  5610. ".signature.p7s",
  5611. "ThirdPartyNotices.txt",
  5612. "dotnet_library_license.txt",
  5613. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5614. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5615. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5616. ]
  5617. },
  5618. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5619. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5620. "type": "package",
  5621. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5622. "files": [
  5623. ".nupkg.metadata",
  5624. ".signature.p7s",
  5625. "ThirdPartyNotices.txt",
  5626. "dotnet_library_license.txt",
  5627. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5628. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5629. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5630. ]
  5631. },
  5632. "runtime.native.System/4.3.0": {
  5633. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5634. "type": "package",
  5635. "path": "runtime.native.system/4.3.0",
  5636. "files": [
  5637. ".nupkg.metadata",
  5638. ".signature.p7s",
  5639. "ThirdPartyNotices.txt",
  5640. "dotnet_library_license.txt",
  5641. "lib/netstandard1.0/_._",
  5642. "runtime.native.system.4.3.0.nupkg.sha512",
  5643. "runtime.native.system.nuspec"
  5644. ]
  5645. },
  5646. "runtime.native.System.IO.Compression/4.3.0": {
  5647. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5648. "type": "package",
  5649. "path": "runtime.native.system.io.compression/4.3.0",
  5650. "files": [
  5651. ".nupkg.metadata",
  5652. ".signature.p7s",
  5653. "ThirdPartyNotices.txt",
  5654. "dotnet_library_license.txt",
  5655. "lib/netstandard1.0/_._",
  5656. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5657. "runtime.native.system.io.compression.nuspec"
  5658. ]
  5659. },
  5660. "runtime.native.System.Net.Http/4.3.0": {
  5661. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  5662. "type": "package",
  5663. "path": "runtime.native.system.net.http/4.3.0",
  5664. "files": [
  5665. ".nupkg.metadata",
  5666. ".signature.p7s",
  5667. "ThirdPartyNotices.txt",
  5668. "dotnet_library_license.txt",
  5669. "lib/netstandard1.0/_._",
  5670. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  5671. "runtime.native.system.net.http.nuspec"
  5672. ]
  5673. },
  5674. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5675. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  5676. "type": "package",
  5677. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  5678. "files": [
  5679. ".nupkg.metadata",
  5680. ".signature.p7s",
  5681. "ThirdPartyNotices.txt",
  5682. "dotnet_library_license.txt",
  5683. "lib/netstandard1.0/_._",
  5684. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5685. "runtime.native.system.security.cryptography.apple.nuspec"
  5686. ]
  5687. },
  5688. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5689. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  5690. "type": "package",
  5691. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  5692. "files": [
  5693. ".nupkg.metadata",
  5694. ".signature.p7s",
  5695. "ThirdPartyNotices.txt",
  5696. "dotnet_library_license.txt",
  5697. "lib/netstandard1.0/_._",
  5698. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5699. "runtime.native.system.security.cryptography.openssl.nuspec"
  5700. ]
  5701. },
  5702. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5703. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  5704. "type": "package",
  5705. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5706. "files": [
  5707. ".nupkg.metadata",
  5708. ".signature.p7s",
  5709. "ThirdPartyNotices.txt",
  5710. "dotnet_library_license.txt",
  5711. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5712. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5713. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5714. ]
  5715. },
  5716. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5717. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  5718. "type": "package",
  5719. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5720. "files": [
  5721. ".nupkg.metadata",
  5722. ".signature.p7s",
  5723. "ThirdPartyNotices.txt",
  5724. "dotnet_library_license.txt",
  5725. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5726. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5727. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5728. ]
  5729. },
  5730. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5731. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  5732. "type": "package",
  5733. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  5734. "files": [
  5735. ".nupkg.metadata",
  5736. ".signature.p7s",
  5737. "ThirdPartyNotices.txt",
  5738. "dotnet_library_license.txt",
  5739. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  5740. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  5741. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5742. ]
  5743. },
  5744. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5745. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  5746. "type": "package",
  5747. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5748. "files": [
  5749. ".nupkg.metadata",
  5750. ".signature.p7s",
  5751. "ThirdPartyNotices.txt",
  5752. "dotnet_library_license.txt",
  5753. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5754. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5755. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5756. ]
  5757. },
  5758. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5759. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  5760. "type": "package",
  5761. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5762. "files": [
  5763. ".nupkg.metadata",
  5764. ".signature.p7s",
  5765. "ThirdPartyNotices.txt",
  5766. "dotnet_library_license.txt",
  5767. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5768. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5769. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5770. ]
  5771. },
  5772. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5773. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  5774. "type": "package",
  5775. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5776. "files": [
  5777. ".nupkg.metadata",
  5778. ".signature.p7s",
  5779. "ThirdPartyNotices.txt",
  5780. "dotnet_library_license.txt",
  5781. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5782. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5783. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5784. ]
  5785. },
  5786. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5787. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  5788. "type": "package",
  5789. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5790. "files": [
  5791. ".nupkg.metadata",
  5792. ".signature.p7s",
  5793. "ThirdPartyNotices.txt",
  5794. "dotnet_library_license.txt",
  5795. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5796. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5797. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5798. ]
  5799. },
  5800. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5801. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  5802. "type": "package",
  5803. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5804. "files": [
  5805. ".nupkg.metadata",
  5806. ".signature.p7s",
  5807. "ThirdPartyNotices.txt",
  5808. "dotnet_library_license.txt",
  5809. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5810. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5811. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5812. ]
  5813. },
  5814. "Swashbuckle.AspNetCore/6.3.0": {
  5815. "sha512": "3TAV6JqsJF2F5e5d/tiQuW/TlzKXB/n2IcL5QR1FP8ArmLhmPkpeHiLZ3+1YnJ5840/X5ApvpRRJpM9809IjTg==",
  5816. "type": "package",
  5817. "path": "swashbuckle.aspnetcore/6.3.0",
  5818. "files": [
  5819. ".nupkg.metadata",
  5820. ".signature.p7s",
  5821. "build/Swashbuckle.AspNetCore.props",
  5822. "swashbuckle.aspnetcore.6.3.0.nupkg.sha512",
  5823. "swashbuckle.aspnetcore.nuspec"
  5824. ]
  5825. },
  5826. "Swashbuckle.AspNetCore.Swagger/6.3.0": {
  5827. "sha512": "+taHh7kowNF+tQo9a82avwDtfqhAC82jTZTqZwypDpauPvwavyVtJ7+ERxE+yDb6U/nOcMicMmDAGbqbJ2Pc+Q==",
  5828. "type": "package",
  5829. "path": "swashbuckle.aspnetcore.swagger/6.3.0",
  5830. "files": [
  5831. ".nupkg.metadata",
  5832. ".signature.p7s",
  5833. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll",
  5834. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5835. "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml",
  5836. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll",
  5837. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5838. "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml",
  5839. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll",
  5840. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5841. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml",
  5842. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll",
  5843. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb",
  5844. "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml",
  5845. "swashbuckle.aspnetcore.swagger.6.3.0.nupkg.sha512",
  5846. "swashbuckle.aspnetcore.swagger.nuspec"
  5847. ]
  5848. },
  5849. "Swashbuckle.AspNetCore.SwaggerGen/6.3.0": {
  5850. "sha512": "8PRLtqCXTIfc+W/pcyab8GqHzHuFRZ3L+9/fix/ssVknwy/pbgkOqgzq9DGWfKz+MZReIp5ajZLR7bXioDdacQ==",
  5851. "type": "package",
  5852. "path": "swashbuckle.aspnetcore.swaggergen/6.3.0",
  5853. "files": [
  5854. ".nupkg.metadata",
  5855. ".signature.p7s",
  5856. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5857. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5858. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5859. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5860. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5861. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5862. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5863. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5864. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5865. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll",
  5866. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb",
  5867. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml",
  5868. "swashbuckle.aspnetcore.swaggergen.6.3.0.nupkg.sha512",
  5869. "swashbuckle.aspnetcore.swaggergen.nuspec"
  5870. ]
  5871. },
  5872. "Swashbuckle.AspNetCore.SwaggerUI/6.3.0": {
  5873. "sha512": "OmVLGzyeNBFUAx6E/bqrZW4uxfv9q2MtegYzeHv5Dj8N34ry8104d6OcyRIV4BhwHBSFD1rMvDlPciguFMtQ5w==",
  5874. "type": "package",
  5875. "path": "swashbuckle.aspnetcore.swaggerui/6.3.0",
  5876. "files": [
  5877. ".nupkg.metadata",
  5878. ".signature.p7s",
  5879. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5880. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5881. "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5882. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5883. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5884. "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5885. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5886. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5887. "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5888. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll",
  5889. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb",
  5890. "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml",
  5891. "swashbuckle.aspnetcore.swaggerui.6.3.0.nupkg.sha512",
  5892. "swashbuckle.aspnetcore.swaggerui.nuspec"
  5893. ]
  5894. },
  5895. "System.AppContext/4.3.0": {
  5896. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  5897. "type": "package",
  5898. "path": "system.appcontext/4.3.0",
  5899. "files": [
  5900. ".nupkg.metadata",
  5901. ".signature.p7s",
  5902. "ThirdPartyNotices.txt",
  5903. "dotnet_library_license.txt",
  5904. "lib/MonoAndroid10/_._",
  5905. "lib/MonoTouch10/_._",
  5906. "lib/net46/System.AppContext.dll",
  5907. "lib/net463/System.AppContext.dll",
  5908. "lib/netcore50/System.AppContext.dll",
  5909. "lib/netstandard1.6/System.AppContext.dll",
  5910. "lib/xamarinios10/_._",
  5911. "lib/xamarinmac20/_._",
  5912. "lib/xamarintvos10/_._",
  5913. "lib/xamarinwatchos10/_._",
  5914. "ref/MonoAndroid10/_._",
  5915. "ref/MonoTouch10/_._",
  5916. "ref/net46/System.AppContext.dll",
  5917. "ref/net463/System.AppContext.dll",
  5918. "ref/netstandard/_._",
  5919. "ref/netstandard1.3/System.AppContext.dll",
  5920. "ref/netstandard1.3/System.AppContext.xml",
  5921. "ref/netstandard1.3/de/System.AppContext.xml",
  5922. "ref/netstandard1.3/es/System.AppContext.xml",
  5923. "ref/netstandard1.3/fr/System.AppContext.xml",
  5924. "ref/netstandard1.3/it/System.AppContext.xml",
  5925. "ref/netstandard1.3/ja/System.AppContext.xml",
  5926. "ref/netstandard1.3/ko/System.AppContext.xml",
  5927. "ref/netstandard1.3/ru/System.AppContext.xml",
  5928. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5929. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5930. "ref/netstandard1.6/System.AppContext.dll",
  5931. "ref/netstandard1.6/System.AppContext.xml",
  5932. "ref/netstandard1.6/de/System.AppContext.xml",
  5933. "ref/netstandard1.6/es/System.AppContext.xml",
  5934. "ref/netstandard1.6/fr/System.AppContext.xml",
  5935. "ref/netstandard1.6/it/System.AppContext.xml",
  5936. "ref/netstandard1.6/ja/System.AppContext.xml",
  5937. "ref/netstandard1.6/ko/System.AppContext.xml",
  5938. "ref/netstandard1.6/ru/System.AppContext.xml",
  5939. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5940. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5941. "ref/xamarinios10/_._",
  5942. "ref/xamarinmac20/_._",
  5943. "ref/xamarintvos10/_._",
  5944. "ref/xamarinwatchos10/_._",
  5945. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  5946. "system.appcontext.4.3.0.nupkg.sha512",
  5947. "system.appcontext.nuspec"
  5948. ]
  5949. },
  5950. "System.Buffers/4.3.0": {
  5951. "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  5952. "type": "package",
  5953. "path": "system.buffers/4.3.0",
  5954. "files": [
  5955. ".nupkg.metadata",
  5956. ".signature.p7s",
  5957. "ThirdPartyNotices.txt",
  5958. "dotnet_library_license.txt",
  5959. "lib/netstandard1.1/.xml",
  5960. "lib/netstandard1.1/System.Buffers.dll",
  5961. "system.buffers.4.3.0.nupkg.sha512",
  5962. "system.buffers.nuspec"
  5963. ]
  5964. },
  5965. "System.Collections/4.3.0": {
  5966. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  5967. "type": "package",
  5968. "path": "system.collections/4.3.0",
  5969. "files": [
  5970. ".nupkg.metadata",
  5971. ".signature.p7s",
  5972. "ThirdPartyNotices.txt",
  5973. "dotnet_library_license.txt",
  5974. "lib/MonoAndroid10/_._",
  5975. "lib/MonoTouch10/_._",
  5976. "lib/net45/_._",
  5977. "lib/portable-net45+win8+wp8+wpa81/_._",
  5978. "lib/win8/_._",
  5979. "lib/wp80/_._",
  5980. "lib/wpa81/_._",
  5981. "lib/xamarinios10/_._",
  5982. "lib/xamarinmac20/_._",
  5983. "lib/xamarintvos10/_._",
  5984. "lib/xamarinwatchos10/_._",
  5985. "ref/MonoAndroid10/_._",
  5986. "ref/MonoTouch10/_._",
  5987. "ref/net45/_._",
  5988. "ref/netcore50/System.Collections.dll",
  5989. "ref/netcore50/System.Collections.xml",
  5990. "ref/netcore50/de/System.Collections.xml",
  5991. "ref/netcore50/es/System.Collections.xml",
  5992. "ref/netcore50/fr/System.Collections.xml",
  5993. "ref/netcore50/it/System.Collections.xml",
  5994. "ref/netcore50/ja/System.Collections.xml",
  5995. "ref/netcore50/ko/System.Collections.xml",
  5996. "ref/netcore50/ru/System.Collections.xml",
  5997. "ref/netcore50/zh-hans/System.Collections.xml",
  5998. "ref/netcore50/zh-hant/System.Collections.xml",
  5999. "ref/netstandard1.0/System.Collections.dll",
  6000. "ref/netstandard1.0/System.Collections.xml",
  6001. "ref/netstandard1.0/de/System.Collections.xml",
  6002. "ref/netstandard1.0/es/System.Collections.xml",
  6003. "ref/netstandard1.0/fr/System.Collections.xml",
  6004. "ref/netstandard1.0/it/System.Collections.xml",
  6005. "ref/netstandard1.0/ja/System.Collections.xml",
  6006. "ref/netstandard1.0/ko/System.Collections.xml",
  6007. "ref/netstandard1.0/ru/System.Collections.xml",
  6008. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6009. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6010. "ref/netstandard1.3/System.Collections.dll",
  6011. "ref/netstandard1.3/System.Collections.xml",
  6012. "ref/netstandard1.3/de/System.Collections.xml",
  6013. "ref/netstandard1.3/es/System.Collections.xml",
  6014. "ref/netstandard1.3/fr/System.Collections.xml",
  6015. "ref/netstandard1.3/it/System.Collections.xml",
  6016. "ref/netstandard1.3/ja/System.Collections.xml",
  6017. "ref/netstandard1.3/ko/System.Collections.xml",
  6018. "ref/netstandard1.3/ru/System.Collections.xml",
  6019. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6020. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6021. "ref/portable-net45+win8+wp8+wpa81/_._",
  6022. "ref/win8/_._",
  6023. "ref/wp80/_._",
  6024. "ref/wpa81/_._",
  6025. "ref/xamarinios10/_._",
  6026. "ref/xamarinmac20/_._",
  6027. "ref/xamarintvos10/_._",
  6028. "ref/xamarinwatchos10/_._",
  6029. "system.collections.4.3.0.nupkg.sha512",
  6030. "system.collections.nuspec"
  6031. ]
  6032. },
  6033. "System.Collections.Concurrent/4.3.0": {
  6034. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6035. "type": "package",
  6036. "path": "system.collections.concurrent/4.3.0",
  6037. "files": [
  6038. ".nupkg.metadata",
  6039. ".signature.p7s",
  6040. "ThirdPartyNotices.txt",
  6041. "dotnet_library_license.txt",
  6042. "lib/MonoAndroid10/_._",
  6043. "lib/MonoTouch10/_._",
  6044. "lib/net45/_._",
  6045. "lib/netcore50/System.Collections.Concurrent.dll",
  6046. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6047. "lib/portable-net45+win8+wpa81/_._",
  6048. "lib/win8/_._",
  6049. "lib/wpa81/_._",
  6050. "lib/xamarinios10/_._",
  6051. "lib/xamarinmac20/_._",
  6052. "lib/xamarintvos10/_._",
  6053. "lib/xamarinwatchos10/_._",
  6054. "ref/MonoAndroid10/_._",
  6055. "ref/MonoTouch10/_._",
  6056. "ref/net45/_._",
  6057. "ref/netcore50/System.Collections.Concurrent.dll",
  6058. "ref/netcore50/System.Collections.Concurrent.xml",
  6059. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6060. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6061. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6062. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6063. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6064. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6065. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6066. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6067. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6068. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6069. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6070. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6071. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6072. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6073. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6074. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6075. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6076. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6077. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6078. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6079. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6080. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6081. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6082. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6083. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6084. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6085. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6086. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6087. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6088. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6089. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6090. "ref/portable-net45+win8+wpa81/_._",
  6091. "ref/win8/_._",
  6092. "ref/wpa81/_._",
  6093. "ref/xamarinios10/_._",
  6094. "ref/xamarinmac20/_._",
  6095. "ref/xamarintvos10/_._",
  6096. "ref/xamarinwatchos10/_._",
  6097. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6098. "system.collections.concurrent.nuspec"
  6099. ]
  6100. },
  6101. "System.Collections.Immutable/6.0.0": {
  6102. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  6103. "type": "package",
  6104. "path": "system.collections.immutable/6.0.0",
  6105. "files": [
  6106. ".nupkg.metadata",
  6107. ".signature.p7s",
  6108. "Icon.png",
  6109. "LICENSE.TXT",
  6110. "THIRD-PARTY-NOTICES.TXT",
  6111. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  6112. "buildTransitive/netcoreapp3.1/_._",
  6113. "lib/net461/System.Collections.Immutable.dll",
  6114. "lib/net461/System.Collections.Immutable.xml",
  6115. "lib/net6.0/System.Collections.Immutable.dll",
  6116. "lib/net6.0/System.Collections.Immutable.xml",
  6117. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6118. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6119. "system.collections.immutable.6.0.0.nupkg.sha512",
  6120. "system.collections.immutable.nuspec",
  6121. "useSharedDesignerContext.txt"
  6122. ]
  6123. },
  6124. "System.Composition/1.0.31": {
  6125. "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
  6126. "type": "package",
  6127. "path": "system.composition/1.0.31",
  6128. "files": [
  6129. ".nupkg.metadata",
  6130. ".signature.p7s",
  6131. "ThirdPartyNotices.txt",
  6132. "dotnet_library_license.txt",
  6133. "system.composition.1.0.31.nupkg.sha512",
  6134. "system.composition.nuspec"
  6135. ]
  6136. },
  6137. "System.Composition.AttributedModel/1.0.31": {
  6138. "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
  6139. "type": "package",
  6140. "path": "system.composition.attributedmodel/1.0.31",
  6141. "files": [
  6142. ".nupkg.metadata",
  6143. ".signature.p7s",
  6144. "ThirdPartyNotices.txt",
  6145. "dotnet_library_license.txt",
  6146. "lib/netstandard1.0/System.Composition.AttributedModel.dll",
  6147. "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll",
  6148. "system.composition.attributedmodel.1.0.31.nupkg.sha512",
  6149. "system.composition.attributedmodel.nuspec"
  6150. ]
  6151. },
  6152. "System.Composition.Convention/1.0.31": {
  6153. "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
  6154. "type": "package",
  6155. "path": "system.composition.convention/1.0.31",
  6156. "files": [
  6157. ".nupkg.metadata",
  6158. ".signature.p7s",
  6159. "ThirdPartyNotices.txt",
  6160. "dotnet_library_license.txt",
  6161. "lib/netstandard1.0/System.Composition.Convention.dll",
  6162. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll",
  6163. "system.composition.convention.1.0.31.nupkg.sha512",
  6164. "system.composition.convention.nuspec"
  6165. ]
  6166. },
  6167. "System.Composition.Hosting/1.0.31": {
  6168. "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
  6169. "type": "package",
  6170. "path": "system.composition.hosting/1.0.31",
  6171. "files": [
  6172. ".nupkg.metadata",
  6173. ".signature.p7s",
  6174. "ThirdPartyNotices.txt",
  6175. "dotnet_library_license.txt",
  6176. "lib/netstandard1.0/System.Composition.Hosting.dll",
  6177. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll",
  6178. "system.composition.hosting.1.0.31.nupkg.sha512",
  6179. "system.composition.hosting.nuspec"
  6180. ]
  6181. },
  6182. "System.Composition.Runtime/1.0.31": {
  6183. "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
  6184. "type": "package",
  6185. "path": "system.composition.runtime/1.0.31",
  6186. "files": [
  6187. ".nupkg.metadata",
  6188. ".signature.p7s",
  6189. "ThirdPartyNotices.txt",
  6190. "dotnet_library_license.txt",
  6191. "lib/netstandard1.0/System.Composition.Runtime.dll",
  6192. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll",
  6193. "system.composition.runtime.1.0.31.nupkg.sha512",
  6194. "system.composition.runtime.nuspec"
  6195. ]
  6196. },
  6197. "System.Composition.TypedParts/1.0.31": {
  6198. "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
  6199. "type": "package",
  6200. "path": "system.composition.typedparts/1.0.31",
  6201. "files": [
  6202. ".nupkg.metadata",
  6203. ".signature.p7s",
  6204. "ThirdPartyNotices.txt",
  6205. "dotnet_library_license.txt",
  6206. "lib/netstandard1.0/System.Composition.TypedParts.dll",
  6207. "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll",
  6208. "system.composition.typedparts.1.0.31.nupkg.sha512",
  6209. "system.composition.typedparts.nuspec"
  6210. ]
  6211. },
  6212. "System.Configuration.ConfigurationManager/4.7.0": {
  6213. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  6214. "type": "package",
  6215. "path": "system.configuration.configurationmanager/4.7.0",
  6216. "files": [
  6217. ".nupkg.metadata",
  6218. ".signature.p7s",
  6219. "LICENSE.TXT",
  6220. "THIRD-PARTY-NOTICES.TXT",
  6221. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6222. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6223. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6224. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6225. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6226. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6227. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6228. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6229. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  6230. "system.configuration.configurationmanager.nuspec",
  6231. "useSharedDesignerContext.txt",
  6232. "version.txt"
  6233. ]
  6234. },
  6235. "System.Console/4.3.0": {
  6236. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6237. "type": "package",
  6238. "path": "system.console/4.3.0",
  6239. "files": [
  6240. ".nupkg.metadata",
  6241. ".signature.p7s",
  6242. "ThirdPartyNotices.txt",
  6243. "dotnet_library_license.txt",
  6244. "lib/MonoAndroid10/_._",
  6245. "lib/MonoTouch10/_._",
  6246. "lib/net46/System.Console.dll",
  6247. "lib/xamarinios10/_._",
  6248. "lib/xamarinmac20/_._",
  6249. "lib/xamarintvos10/_._",
  6250. "lib/xamarinwatchos10/_._",
  6251. "ref/MonoAndroid10/_._",
  6252. "ref/MonoTouch10/_._",
  6253. "ref/net46/System.Console.dll",
  6254. "ref/netstandard1.3/System.Console.dll",
  6255. "ref/netstandard1.3/System.Console.xml",
  6256. "ref/netstandard1.3/de/System.Console.xml",
  6257. "ref/netstandard1.3/es/System.Console.xml",
  6258. "ref/netstandard1.3/fr/System.Console.xml",
  6259. "ref/netstandard1.3/it/System.Console.xml",
  6260. "ref/netstandard1.3/ja/System.Console.xml",
  6261. "ref/netstandard1.3/ko/System.Console.xml",
  6262. "ref/netstandard1.3/ru/System.Console.xml",
  6263. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6264. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6265. "ref/xamarinios10/_._",
  6266. "ref/xamarinmac20/_._",
  6267. "ref/xamarintvos10/_._",
  6268. "ref/xamarinwatchos10/_._",
  6269. "system.console.4.3.0.nupkg.sha512",
  6270. "system.console.nuspec"
  6271. ]
  6272. },
  6273. "System.Diagnostics.Debug/4.3.0": {
  6274. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6275. "type": "package",
  6276. "path": "system.diagnostics.debug/4.3.0",
  6277. "files": [
  6278. ".nupkg.metadata",
  6279. ".signature.p7s",
  6280. "ThirdPartyNotices.txt",
  6281. "dotnet_library_license.txt",
  6282. "lib/MonoAndroid10/_._",
  6283. "lib/MonoTouch10/_._",
  6284. "lib/net45/_._",
  6285. "lib/portable-net45+win8+wp8+wpa81/_._",
  6286. "lib/win8/_._",
  6287. "lib/wp80/_._",
  6288. "lib/wpa81/_._",
  6289. "lib/xamarinios10/_._",
  6290. "lib/xamarinmac20/_._",
  6291. "lib/xamarintvos10/_._",
  6292. "lib/xamarinwatchos10/_._",
  6293. "ref/MonoAndroid10/_._",
  6294. "ref/MonoTouch10/_._",
  6295. "ref/net45/_._",
  6296. "ref/netcore50/System.Diagnostics.Debug.dll",
  6297. "ref/netcore50/System.Diagnostics.Debug.xml",
  6298. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6299. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6300. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6301. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6302. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6303. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6304. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6305. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6306. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6307. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6308. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6309. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6310. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6311. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6312. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6313. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6314. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6315. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6316. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6317. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6318. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6319. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6320. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6321. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6322. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6323. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6324. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6325. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6326. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6327. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6328. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6329. "ref/portable-net45+win8+wp8+wpa81/_._",
  6330. "ref/win8/_._",
  6331. "ref/wp80/_._",
  6332. "ref/wpa81/_._",
  6333. "ref/xamarinios10/_._",
  6334. "ref/xamarinmac20/_._",
  6335. "ref/xamarintvos10/_._",
  6336. "ref/xamarinwatchos10/_._",
  6337. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6338. "system.diagnostics.debug.nuspec"
  6339. ]
  6340. },
  6341. "System.Diagnostics.DiagnosticSource/6.0.0": {
  6342. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  6343. "type": "package",
  6344. "path": "system.diagnostics.diagnosticsource/6.0.0",
  6345. "files": [
  6346. ".nupkg.metadata",
  6347. ".signature.p7s",
  6348. "Icon.png",
  6349. "LICENSE.TXT",
  6350. "THIRD-PARTY-NOTICES.TXT",
  6351. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  6352. "buildTransitive/netcoreapp3.1/_._",
  6353. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  6354. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  6355. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6356. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6357. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  6358. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  6359. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  6360. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  6361. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  6362. "system.diagnostics.diagnosticsource.nuspec",
  6363. "useSharedDesignerContext.txt"
  6364. ]
  6365. },
  6366. "System.Diagnostics.Tools/4.3.0": {
  6367. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6368. "type": "package",
  6369. "path": "system.diagnostics.tools/4.3.0",
  6370. "files": [
  6371. ".nupkg.metadata",
  6372. ".signature.p7s",
  6373. "ThirdPartyNotices.txt",
  6374. "dotnet_library_license.txt",
  6375. "lib/MonoAndroid10/_._",
  6376. "lib/MonoTouch10/_._",
  6377. "lib/net45/_._",
  6378. "lib/portable-net45+win8+wp8+wpa81/_._",
  6379. "lib/win8/_._",
  6380. "lib/wp80/_._",
  6381. "lib/wpa81/_._",
  6382. "lib/xamarinios10/_._",
  6383. "lib/xamarinmac20/_._",
  6384. "lib/xamarintvos10/_._",
  6385. "lib/xamarinwatchos10/_._",
  6386. "ref/MonoAndroid10/_._",
  6387. "ref/MonoTouch10/_._",
  6388. "ref/net45/_._",
  6389. "ref/netcore50/System.Diagnostics.Tools.dll",
  6390. "ref/netcore50/System.Diagnostics.Tools.xml",
  6391. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6392. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6393. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6394. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6395. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6396. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6397. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6398. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6399. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6400. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6401. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6402. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6403. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6404. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6405. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6406. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6407. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6408. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6409. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6410. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6411. "ref/portable-net45+win8+wp8+wpa81/_._",
  6412. "ref/win8/_._",
  6413. "ref/wp80/_._",
  6414. "ref/wpa81/_._",
  6415. "ref/xamarinios10/_._",
  6416. "ref/xamarinmac20/_._",
  6417. "ref/xamarintvos10/_._",
  6418. "ref/xamarinwatchos10/_._",
  6419. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6420. "system.diagnostics.tools.nuspec"
  6421. ]
  6422. },
  6423. "System.Diagnostics.Tracing/4.3.0": {
  6424. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  6425. "type": "package",
  6426. "path": "system.diagnostics.tracing/4.3.0",
  6427. "files": [
  6428. ".nupkg.metadata",
  6429. ".signature.p7s",
  6430. "ThirdPartyNotices.txt",
  6431. "dotnet_library_license.txt",
  6432. "lib/MonoAndroid10/_._",
  6433. "lib/MonoTouch10/_._",
  6434. "lib/net45/_._",
  6435. "lib/net462/System.Diagnostics.Tracing.dll",
  6436. "lib/portable-net45+win8+wpa81/_._",
  6437. "lib/win8/_._",
  6438. "lib/wpa81/_._",
  6439. "lib/xamarinios10/_._",
  6440. "lib/xamarinmac20/_._",
  6441. "lib/xamarintvos10/_._",
  6442. "lib/xamarinwatchos10/_._",
  6443. "ref/MonoAndroid10/_._",
  6444. "ref/MonoTouch10/_._",
  6445. "ref/net45/_._",
  6446. "ref/net462/System.Diagnostics.Tracing.dll",
  6447. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6448. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6449. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6450. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6451. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6452. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6453. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6454. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6455. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6456. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6457. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6458. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6459. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6460. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6461. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6462. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6463. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6464. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6465. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6466. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6467. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6468. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6469. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6470. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6471. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6472. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6473. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6474. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6475. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6476. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6477. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6478. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6479. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6480. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6481. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6482. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6483. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6484. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6485. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6486. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6487. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6488. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6489. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6490. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6491. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6492. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6493. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6494. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6495. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6496. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6497. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6498. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6499. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6500. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6501. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6502. "ref/portable-net45+win8+wpa81/_._",
  6503. "ref/win8/_._",
  6504. "ref/wpa81/_._",
  6505. "ref/xamarinios10/_._",
  6506. "ref/xamarinmac20/_._",
  6507. "ref/xamarintvos10/_._",
  6508. "ref/xamarinwatchos10/_._",
  6509. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  6510. "system.diagnostics.tracing.nuspec"
  6511. ]
  6512. },
  6513. "System.Drawing.Common/4.7.0": {
  6514. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  6515. "type": "package",
  6516. "path": "system.drawing.common/4.7.0",
  6517. "files": [
  6518. ".nupkg.metadata",
  6519. ".signature.p7s",
  6520. "LICENSE.TXT",
  6521. "THIRD-PARTY-NOTICES.TXT",
  6522. "lib/MonoAndroid10/_._",
  6523. "lib/MonoTouch10/_._",
  6524. "lib/net461/System.Drawing.Common.dll",
  6525. "lib/netstandard2.0/System.Drawing.Common.dll",
  6526. "lib/xamarinios10/_._",
  6527. "lib/xamarinmac20/_._",
  6528. "lib/xamarintvos10/_._",
  6529. "lib/xamarinwatchos10/_._",
  6530. "ref/MonoAndroid10/_._",
  6531. "ref/MonoTouch10/_._",
  6532. "ref/net461/System.Drawing.Common.dll",
  6533. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  6534. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  6535. "ref/netstandard2.0/System.Drawing.Common.dll",
  6536. "ref/xamarinios10/_._",
  6537. "ref/xamarinmac20/_._",
  6538. "ref/xamarintvos10/_._",
  6539. "ref/xamarinwatchos10/_._",
  6540. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6541. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6542. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6543. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  6544. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  6545. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  6546. "system.drawing.common.4.7.0.nupkg.sha512",
  6547. "system.drawing.common.nuspec",
  6548. "useSharedDesignerContext.txt",
  6549. "version.txt"
  6550. ]
  6551. },
  6552. "System.Formats.Asn1/5.0.0": {
  6553. "sha512": "MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
  6554. "type": "package",
  6555. "path": "system.formats.asn1/5.0.0",
  6556. "files": [
  6557. ".nupkg.metadata",
  6558. ".signature.p7s",
  6559. "Icon.png",
  6560. "LICENSE.TXT",
  6561. "THIRD-PARTY-NOTICES.TXT",
  6562. "lib/net461/System.Formats.Asn1.dll",
  6563. "lib/net461/System.Formats.Asn1.xml",
  6564. "lib/netstandard2.0/System.Formats.Asn1.dll",
  6565. "lib/netstandard2.0/System.Formats.Asn1.xml",
  6566. "system.formats.asn1.5.0.0.nupkg.sha512",
  6567. "system.formats.asn1.nuspec",
  6568. "useSharedDesignerContext.txt",
  6569. "version.txt"
  6570. ]
  6571. },
  6572. "System.Globalization/4.3.0": {
  6573. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  6574. "type": "package",
  6575. "path": "system.globalization/4.3.0",
  6576. "files": [
  6577. ".nupkg.metadata",
  6578. ".signature.p7s",
  6579. "ThirdPartyNotices.txt",
  6580. "dotnet_library_license.txt",
  6581. "lib/MonoAndroid10/_._",
  6582. "lib/MonoTouch10/_._",
  6583. "lib/net45/_._",
  6584. "lib/portable-net45+win8+wp8+wpa81/_._",
  6585. "lib/win8/_._",
  6586. "lib/wp80/_._",
  6587. "lib/wpa81/_._",
  6588. "lib/xamarinios10/_._",
  6589. "lib/xamarinmac20/_._",
  6590. "lib/xamarintvos10/_._",
  6591. "lib/xamarinwatchos10/_._",
  6592. "ref/MonoAndroid10/_._",
  6593. "ref/MonoTouch10/_._",
  6594. "ref/net45/_._",
  6595. "ref/netcore50/System.Globalization.dll",
  6596. "ref/netcore50/System.Globalization.xml",
  6597. "ref/netcore50/de/System.Globalization.xml",
  6598. "ref/netcore50/es/System.Globalization.xml",
  6599. "ref/netcore50/fr/System.Globalization.xml",
  6600. "ref/netcore50/it/System.Globalization.xml",
  6601. "ref/netcore50/ja/System.Globalization.xml",
  6602. "ref/netcore50/ko/System.Globalization.xml",
  6603. "ref/netcore50/ru/System.Globalization.xml",
  6604. "ref/netcore50/zh-hans/System.Globalization.xml",
  6605. "ref/netcore50/zh-hant/System.Globalization.xml",
  6606. "ref/netstandard1.0/System.Globalization.dll",
  6607. "ref/netstandard1.0/System.Globalization.xml",
  6608. "ref/netstandard1.0/de/System.Globalization.xml",
  6609. "ref/netstandard1.0/es/System.Globalization.xml",
  6610. "ref/netstandard1.0/fr/System.Globalization.xml",
  6611. "ref/netstandard1.0/it/System.Globalization.xml",
  6612. "ref/netstandard1.0/ja/System.Globalization.xml",
  6613. "ref/netstandard1.0/ko/System.Globalization.xml",
  6614. "ref/netstandard1.0/ru/System.Globalization.xml",
  6615. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6616. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6617. "ref/netstandard1.3/System.Globalization.dll",
  6618. "ref/netstandard1.3/System.Globalization.xml",
  6619. "ref/netstandard1.3/de/System.Globalization.xml",
  6620. "ref/netstandard1.3/es/System.Globalization.xml",
  6621. "ref/netstandard1.3/fr/System.Globalization.xml",
  6622. "ref/netstandard1.3/it/System.Globalization.xml",
  6623. "ref/netstandard1.3/ja/System.Globalization.xml",
  6624. "ref/netstandard1.3/ko/System.Globalization.xml",
  6625. "ref/netstandard1.3/ru/System.Globalization.xml",
  6626. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6627. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6628. "ref/portable-net45+win8+wp8+wpa81/_._",
  6629. "ref/win8/_._",
  6630. "ref/wp80/_._",
  6631. "ref/wpa81/_._",
  6632. "ref/xamarinios10/_._",
  6633. "ref/xamarinmac20/_._",
  6634. "ref/xamarintvos10/_._",
  6635. "ref/xamarinwatchos10/_._",
  6636. "system.globalization.4.3.0.nupkg.sha512",
  6637. "system.globalization.nuspec"
  6638. ]
  6639. },
  6640. "System.Globalization.Calendars/4.3.0": {
  6641. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  6642. "type": "package",
  6643. "path": "system.globalization.calendars/4.3.0",
  6644. "files": [
  6645. ".nupkg.metadata",
  6646. ".signature.p7s",
  6647. "ThirdPartyNotices.txt",
  6648. "dotnet_library_license.txt",
  6649. "lib/MonoAndroid10/_._",
  6650. "lib/MonoTouch10/_._",
  6651. "lib/net46/System.Globalization.Calendars.dll",
  6652. "lib/xamarinios10/_._",
  6653. "lib/xamarinmac20/_._",
  6654. "lib/xamarintvos10/_._",
  6655. "lib/xamarinwatchos10/_._",
  6656. "ref/MonoAndroid10/_._",
  6657. "ref/MonoTouch10/_._",
  6658. "ref/net46/System.Globalization.Calendars.dll",
  6659. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6660. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6661. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6662. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6663. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6664. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6665. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6666. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6667. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6668. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6669. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6670. "ref/xamarinios10/_._",
  6671. "ref/xamarinmac20/_._",
  6672. "ref/xamarintvos10/_._",
  6673. "ref/xamarinwatchos10/_._",
  6674. "system.globalization.calendars.4.3.0.nupkg.sha512",
  6675. "system.globalization.calendars.nuspec"
  6676. ]
  6677. },
  6678. "System.Globalization.Extensions/4.3.0": {
  6679. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  6680. "type": "package",
  6681. "path": "system.globalization.extensions/4.3.0",
  6682. "files": [
  6683. ".nupkg.metadata",
  6684. ".signature.p7s",
  6685. "ThirdPartyNotices.txt",
  6686. "dotnet_library_license.txt",
  6687. "lib/MonoAndroid10/_._",
  6688. "lib/MonoTouch10/_._",
  6689. "lib/net46/System.Globalization.Extensions.dll",
  6690. "lib/xamarinios10/_._",
  6691. "lib/xamarinmac20/_._",
  6692. "lib/xamarintvos10/_._",
  6693. "lib/xamarinwatchos10/_._",
  6694. "ref/MonoAndroid10/_._",
  6695. "ref/MonoTouch10/_._",
  6696. "ref/net46/System.Globalization.Extensions.dll",
  6697. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6698. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6699. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6700. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6701. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6702. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6703. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6704. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6705. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6706. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6707. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6708. "ref/xamarinios10/_._",
  6709. "ref/xamarinmac20/_._",
  6710. "ref/xamarintvos10/_._",
  6711. "ref/xamarinwatchos10/_._",
  6712. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6713. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6714. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6715. "system.globalization.extensions.4.3.0.nupkg.sha512",
  6716. "system.globalization.extensions.nuspec"
  6717. ]
  6718. },
  6719. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  6720. "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
  6721. "type": "package",
  6722. "path": "system.identitymodel.tokens.jwt/6.8.0",
  6723. "files": [
  6724. ".nupkg.metadata",
  6725. ".signature.p7s",
  6726. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  6727. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  6728. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  6729. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  6730. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  6731. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  6732. "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
  6733. "system.identitymodel.tokens.jwt.nuspec"
  6734. ]
  6735. },
  6736. "System.IO/4.3.0": {
  6737. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  6738. "type": "package",
  6739. "path": "system.io/4.3.0",
  6740. "files": [
  6741. ".nupkg.metadata",
  6742. ".signature.p7s",
  6743. "ThirdPartyNotices.txt",
  6744. "dotnet_library_license.txt",
  6745. "lib/MonoAndroid10/_._",
  6746. "lib/MonoTouch10/_._",
  6747. "lib/net45/_._",
  6748. "lib/net462/System.IO.dll",
  6749. "lib/portable-net45+win8+wp8+wpa81/_._",
  6750. "lib/win8/_._",
  6751. "lib/wp80/_._",
  6752. "lib/wpa81/_._",
  6753. "lib/xamarinios10/_._",
  6754. "lib/xamarinmac20/_._",
  6755. "lib/xamarintvos10/_._",
  6756. "lib/xamarinwatchos10/_._",
  6757. "ref/MonoAndroid10/_._",
  6758. "ref/MonoTouch10/_._",
  6759. "ref/net45/_._",
  6760. "ref/net462/System.IO.dll",
  6761. "ref/netcore50/System.IO.dll",
  6762. "ref/netcore50/System.IO.xml",
  6763. "ref/netcore50/de/System.IO.xml",
  6764. "ref/netcore50/es/System.IO.xml",
  6765. "ref/netcore50/fr/System.IO.xml",
  6766. "ref/netcore50/it/System.IO.xml",
  6767. "ref/netcore50/ja/System.IO.xml",
  6768. "ref/netcore50/ko/System.IO.xml",
  6769. "ref/netcore50/ru/System.IO.xml",
  6770. "ref/netcore50/zh-hans/System.IO.xml",
  6771. "ref/netcore50/zh-hant/System.IO.xml",
  6772. "ref/netstandard1.0/System.IO.dll",
  6773. "ref/netstandard1.0/System.IO.xml",
  6774. "ref/netstandard1.0/de/System.IO.xml",
  6775. "ref/netstandard1.0/es/System.IO.xml",
  6776. "ref/netstandard1.0/fr/System.IO.xml",
  6777. "ref/netstandard1.0/it/System.IO.xml",
  6778. "ref/netstandard1.0/ja/System.IO.xml",
  6779. "ref/netstandard1.0/ko/System.IO.xml",
  6780. "ref/netstandard1.0/ru/System.IO.xml",
  6781. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6782. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6783. "ref/netstandard1.3/System.IO.dll",
  6784. "ref/netstandard1.3/System.IO.xml",
  6785. "ref/netstandard1.3/de/System.IO.xml",
  6786. "ref/netstandard1.3/es/System.IO.xml",
  6787. "ref/netstandard1.3/fr/System.IO.xml",
  6788. "ref/netstandard1.3/it/System.IO.xml",
  6789. "ref/netstandard1.3/ja/System.IO.xml",
  6790. "ref/netstandard1.3/ko/System.IO.xml",
  6791. "ref/netstandard1.3/ru/System.IO.xml",
  6792. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6793. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6794. "ref/netstandard1.5/System.IO.dll",
  6795. "ref/netstandard1.5/System.IO.xml",
  6796. "ref/netstandard1.5/de/System.IO.xml",
  6797. "ref/netstandard1.5/es/System.IO.xml",
  6798. "ref/netstandard1.5/fr/System.IO.xml",
  6799. "ref/netstandard1.5/it/System.IO.xml",
  6800. "ref/netstandard1.5/ja/System.IO.xml",
  6801. "ref/netstandard1.5/ko/System.IO.xml",
  6802. "ref/netstandard1.5/ru/System.IO.xml",
  6803. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6804. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6805. "ref/portable-net45+win8+wp8+wpa81/_._",
  6806. "ref/win8/_._",
  6807. "ref/wp80/_._",
  6808. "ref/wpa81/_._",
  6809. "ref/xamarinios10/_._",
  6810. "ref/xamarinmac20/_._",
  6811. "ref/xamarintvos10/_._",
  6812. "ref/xamarinwatchos10/_._",
  6813. "system.io.4.3.0.nupkg.sha512",
  6814. "system.io.nuspec"
  6815. ]
  6816. },
  6817. "System.IO.Compression/4.3.0": {
  6818. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  6819. "type": "package",
  6820. "path": "system.io.compression/4.3.0",
  6821. "files": [
  6822. ".nupkg.metadata",
  6823. ".signature.p7s",
  6824. "ThirdPartyNotices.txt",
  6825. "dotnet_library_license.txt",
  6826. "lib/MonoAndroid10/_._",
  6827. "lib/MonoTouch10/_._",
  6828. "lib/net45/_._",
  6829. "lib/net46/System.IO.Compression.dll",
  6830. "lib/portable-net45+win8+wpa81/_._",
  6831. "lib/win8/_._",
  6832. "lib/wpa81/_._",
  6833. "lib/xamarinios10/_._",
  6834. "lib/xamarinmac20/_._",
  6835. "lib/xamarintvos10/_._",
  6836. "lib/xamarinwatchos10/_._",
  6837. "ref/MonoAndroid10/_._",
  6838. "ref/MonoTouch10/_._",
  6839. "ref/net45/_._",
  6840. "ref/net46/System.IO.Compression.dll",
  6841. "ref/netcore50/System.IO.Compression.dll",
  6842. "ref/netcore50/System.IO.Compression.xml",
  6843. "ref/netcore50/de/System.IO.Compression.xml",
  6844. "ref/netcore50/es/System.IO.Compression.xml",
  6845. "ref/netcore50/fr/System.IO.Compression.xml",
  6846. "ref/netcore50/it/System.IO.Compression.xml",
  6847. "ref/netcore50/ja/System.IO.Compression.xml",
  6848. "ref/netcore50/ko/System.IO.Compression.xml",
  6849. "ref/netcore50/ru/System.IO.Compression.xml",
  6850. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6851. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6852. "ref/netstandard1.1/System.IO.Compression.dll",
  6853. "ref/netstandard1.1/System.IO.Compression.xml",
  6854. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6855. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6856. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6857. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6858. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6859. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6860. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6861. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6862. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6863. "ref/netstandard1.3/System.IO.Compression.dll",
  6864. "ref/netstandard1.3/System.IO.Compression.xml",
  6865. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6866. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6867. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6868. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6869. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6870. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6871. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6872. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6873. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6874. "ref/portable-net45+win8+wpa81/_._",
  6875. "ref/win8/_._",
  6876. "ref/wpa81/_._",
  6877. "ref/xamarinios10/_._",
  6878. "ref/xamarinmac20/_._",
  6879. "ref/xamarintvos10/_._",
  6880. "ref/xamarinwatchos10/_._",
  6881. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6882. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6883. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  6884. "system.io.compression.4.3.0.nupkg.sha512",
  6885. "system.io.compression.nuspec"
  6886. ]
  6887. },
  6888. "System.IO.Compression.ZipFile/4.3.0": {
  6889. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  6890. "type": "package",
  6891. "path": "system.io.compression.zipfile/4.3.0",
  6892. "files": [
  6893. ".nupkg.metadata",
  6894. ".signature.p7s",
  6895. "ThirdPartyNotices.txt",
  6896. "dotnet_library_license.txt",
  6897. "lib/MonoAndroid10/_._",
  6898. "lib/MonoTouch10/_._",
  6899. "lib/net46/System.IO.Compression.ZipFile.dll",
  6900. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6901. "lib/xamarinios10/_._",
  6902. "lib/xamarinmac20/_._",
  6903. "lib/xamarintvos10/_._",
  6904. "lib/xamarinwatchos10/_._",
  6905. "ref/MonoAndroid10/_._",
  6906. "ref/MonoTouch10/_._",
  6907. "ref/net46/System.IO.Compression.ZipFile.dll",
  6908. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6909. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6910. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6911. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6912. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6913. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6914. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6915. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6916. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6917. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6918. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6919. "ref/xamarinios10/_._",
  6920. "ref/xamarinmac20/_._",
  6921. "ref/xamarintvos10/_._",
  6922. "ref/xamarinwatchos10/_._",
  6923. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  6924. "system.io.compression.zipfile.nuspec"
  6925. ]
  6926. },
  6927. "System.IO.FileSystem/4.3.0": {
  6928. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  6929. "type": "package",
  6930. "path": "system.io.filesystem/4.3.0",
  6931. "files": [
  6932. ".nupkg.metadata",
  6933. ".signature.p7s",
  6934. "ThirdPartyNotices.txt",
  6935. "dotnet_library_license.txt",
  6936. "lib/MonoAndroid10/_._",
  6937. "lib/MonoTouch10/_._",
  6938. "lib/net46/System.IO.FileSystem.dll",
  6939. "lib/xamarinios10/_._",
  6940. "lib/xamarinmac20/_._",
  6941. "lib/xamarintvos10/_._",
  6942. "lib/xamarinwatchos10/_._",
  6943. "ref/MonoAndroid10/_._",
  6944. "ref/MonoTouch10/_._",
  6945. "ref/net46/System.IO.FileSystem.dll",
  6946. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6947. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6948. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6949. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6950. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6951. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6952. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6953. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6954. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6955. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6956. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6957. "ref/xamarinios10/_._",
  6958. "ref/xamarinmac20/_._",
  6959. "ref/xamarintvos10/_._",
  6960. "ref/xamarinwatchos10/_._",
  6961. "system.io.filesystem.4.3.0.nupkg.sha512",
  6962. "system.io.filesystem.nuspec"
  6963. ]
  6964. },
  6965. "System.IO.FileSystem.Primitives/4.3.0": {
  6966. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  6967. "type": "package",
  6968. "path": "system.io.filesystem.primitives/4.3.0",
  6969. "files": [
  6970. ".nupkg.metadata",
  6971. ".signature.p7s",
  6972. "ThirdPartyNotices.txt",
  6973. "dotnet_library_license.txt",
  6974. "lib/MonoAndroid10/_._",
  6975. "lib/MonoTouch10/_._",
  6976. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6977. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6978. "lib/xamarinios10/_._",
  6979. "lib/xamarinmac20/_._",
  6980. "lib/xamarintvos10/_._",
  6981. "lib/xamarinwatchos10/_._",
  6982. "ref/MonoAndroid10/_._",
  6983. "ref/MonoTouch10/_._",
  6984. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6985. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6986. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6987. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6988. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6989. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6990. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6991. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6992. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6993. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6994. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6995. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6996. "ref/xamarinios10/_._",
  6997. "ref/xamarinmac20/_._",
  6998. "ref/xamarintvos10/_._",
  6999. "ref/xamarinwatchos10/_._",
  7000. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7001. "system.io.filesystem.primitives.nuspec"
  7002. ]
  7003. },
  7004. "System.IO.Pipelines/5.0.1": {
  7005. "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  7006. "type": "package",
  7007. "path": "system.io.pipelines/5.0.1",
  7008. "files": [
  7009. ".nupkg.metadata",
  7010. ".signature.p7s",
  7011. "Icon.png",
  7012. "LICENSE.TXT",
  7013. "THIRD-PARTY-NOTICES.TXT",
  7014. "lib/net461/System.IO.Pipelines.dll",
  7015. "lib/net461/System.IO.Pipelines.xml",
  7016. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7017. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7018. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7019. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7020. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7021. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7022. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7023. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7024. "system.io.pipelines.5.0.1.nupkg.sha512",
  7025. "system.io.pipelines.nuspec",
  7026. "useSharedDesignerContext.txt",
  7027. "version.txt"
  7028. ]
  7029. },
  7030. "System.Linq/4.3.0": {
  7031. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7032. "type": "package",
  7033. "path": "system.linq/4.3.0",
  7034. "files": [
  7035. ".nupkg.metadata",
  7036. ".signature.p7s",
  7037. "ThirdPartyNotices.txt",
  7038. "dotnet_library_license.txt",
  7039. "lib/MonoAndroid10/_._",
  7040. "lib/MonoTouch10/_._",
  7041. "lib/net45/_._",
  7042. "lib/net463/System.Linq.dll",
  7043. "lib/netcore50/System.Linq.dll",
  7044. "lib/netstandard1.6/System.Linq.dll",
  7045. "lib/portable-net45+win8+wp8+wpa81/_._",
  7046. "lib/win8/_._",
  7047. "lib/wp80/_._",
  7048. "lib/wpa81/_._",
  7049. "lib/xamarinios10/_._",
  7050. "lib/xamarinmac20/_._",
  7051. "lib/xamarintvos10/_._",
  7052. "lib/xamarinwatchos10/_._",
  7053. "ref/MonoAndroid10/_._",
  7054. "ref/MonoTouch10/_._",
  7055. "ref/net45/_._",
  7056. "ref/net463/System.Linq.dll",
  7057. "ref/netcore50/System.Linq.dll",
  7058. "ref/netcore50/System.Linq.xml",
  7059. "ref/netcore50/de/System.Linq.xml",
  7060. "ref/netcore50/es/System.Linq.xml",
  7061. "ref/netcore50/fr/System.Linq.xml",
  7062. "ref/netcore50/it/System.Linq.xml",
  7063. "ref/netcore50/ja/System.Linq.xml",
  7064. "ref/netcore50/ko/System.Linq.xml",
  7065. "ref/netcore50/ru/System.Linq.xml",
  7066. "ref/netcore50/zh-hans/System.Linq.xml",
  7067. "ref/netcore50/zh-hant/System.Linq.xml",
  7068. "ref/netstandard1.0/System.Linq.dll",
  7069. "ref/netstandard1.0/System.Linq.xml",
  7070. "ref/netstandard1.0/de/System.Linq.xml",
  7071. "ref/netstandard1.0/es/System.Linq.xml",
  7072. "ref/netstandard1.0/fr/System.Linq.xml",
  7073. "ref/netstandard1.0/it/System.Linq.xml",
  7074. "ref/netstandard1.0/ja/System.Linq.xml",
  7075. "ref/netstandard1.0/ko/System.Linq.xml",
  7076. "ref/netstandard1.0/ru/System.Linq.xml",
  7077. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7078. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7079. "ref/netstandard1.6/System.Linq.dll",
  7080. "ref/netstandard1.6/System.Linq.xml",
  7081. "ref/netstandard1.6/de/System.Linq.xml",
  7082. "ref/netstandard1.6/es/System.Linq.xml",
  7083. "ref/netstandard1.6/fr/System.Linq.xml",
  7084. "ref/netstandard1.6/it/System.Linq.xml",
  7085. "ref/netstandard1.6/ja/System.Linq.xml",
  7086. "ref/netstandard1.6/ko/System.Linq.xml",
  7087. "ref/netstandard1.6/ru/System.Linq.xml",
  7088. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7089. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7090. "ref/portable-net45+win8+wp8+wpa81/_._",
  7091. "ref/win8/_._",
  7092. "ref/wp80/_._",
  7093. "ref/wpa81/_._",
  7094. "ref/xamarinios10/_._",
  7095. "ref/xamarinmac20/_._",
  7096. "ref/xamarintvos10/_._",
  7097. "ref/xamarinwatchos10/_._",
  7098. "system.linq.4.3.0.nupkg.sha512",
  7099. "system.linq.nuspec"
  7100. ]
  7101. },
  7102. "System.Linq.Expressions/4.3.0": {
  7103. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7104. "type": "package",
  7105. "path": "system.linq.expressions/4.3.0",
  7106. "files": [
  7107. ".nupkg.metadata",
  7108. ".signature.p7s",
  7109. "ThirdPartyNotices.txt",
  7110. "dotnet_library_license.txt",
  7111. "lib/MonoAndroid10/_._",
  7112. "lib/MonoTouch10/_._",
  7113. "lib/net45/_._",
  7114. "lib/net463/System.Linq.Expressions.dll",
  7115. "lib/netcore50/System.Linq.Expressions.dll",
  7116. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7117. "lib/portable-net45+win8+wp8+wpa81/_._",
  7118. "lib/win8/_._",
  7119. "lib/wp80/_._",
  7120. "lib/wpa81/_._",
  7121. "lib/xamarinios10/_._",
  7122. "lib/xamarinmac20/_._",
  7123. "lib/xamarintvos10/_._",
  7124. "lib/xamarinwatchos10/_._",
  7125. "ref/MonoAndroid10/_._",
  7126. "ref/MonoTouch10/_._",
  7127. "ref/net45/_._",
  7128. "ref/net463/System.Linq.Expressions.dll",
  7129. "ref/netcore50/System.Linq.Expressions.dll",
  7130. "ref/netcore50/System.Linq.Expressions.xml",
  7131. "ref/netcore50/de/System.Linq.Expressions.xml",
  7132. "ref/netcore50/es/System.Linq.Expressions.xml",
  7133. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7134. "ref/netcore50/it/System.Linq.Expressions.xml",
  7135. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7136. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7137. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7138. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7139. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7140. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7141. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7142. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7143. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7144. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7145. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7146. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7147. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7148. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7149. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7150. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7151. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7152. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7153. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7154. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7155. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7156. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7157. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7158. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7159. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7160. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7161. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7162. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7163. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7164. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7165. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7166. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7167. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7168. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7169. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7170. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7171. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7172. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7173. "ref/portable-net45+win8+wp8+wpa81/_._",
  7174. "ref/win8/_._",
  7175. "ref/wp80/_._",
  7176. "ref/wpa81/_._",
  7177. "ref/xamarinios10/_._",
  7178. "ref/xamarinmac20/_._",
  7179. "ref/xamarintvos10/_._",
  7180. "ref/xamarinwatchos10/_._",
  7181. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7182. "system.linq.expressions.4.3.0.nupkg.sha512",
  7183. "system.linq.expressions.nuspec"
  7184. ]
  7185. },
  7186. "System.Memory/4.5.4": {
  7187. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  7188. "type": "package",
  7189. "path": "system.memory/4.5.4",
  7190. "files": [
  7191. ".nupkg.metadata",
  7192. ".signature.p7s",
  7193. "LICENSE.TXT",
  7194. "THIRD-PARTY-NOTICES.TXT",
  7195. "lib/net461/System.Memory.dll",
  7196. "lib/net461/System.Memory.xml",
  7197. "lib/netcoreapp2.1/_._",
  7198. "lib/netstandard1.1/System.Memory.dll",
  7199. "lib/netstandard1.1/System.Memory.xml",
  7200. "lib/netstandard2.0/System.Memory.dll",
  7201. "lib/netstandard2.0/System.Memory.xml",
  7202. "ref/netcoreapp2.1/_._",
  7203. "system.memory.4.5.4.nupkg.sha512",
  7204. "system.memory.nuspec",
  7205. "useSharedDesignerContext.txt",
  7206. "version.txt"
  7207. ]
  7208. },
  7209. "System.Net.Http/4.3.0": {
  7210. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  7211. "type": "package",
  7212. "path": "system.net.http/4.3.0",
  7213. "files": [
  7214. ".nupkg.metadata",
  7215. ".signature.p7s",
  7216. "ThirdPartyNotices.txt",
  7217. "dotnet_library_license.txt",
  7218. "lib/Xamarinmac20/_._",
  7219. "lib/monoandroid10/_._",
  7220. "lib/monotouch10/_._",
  7221. "lib/net45/_._",
  7222. "lib/net46/System.Net.Http.dll",
  7223. "lib/portable-net45+win8+wpa81/_._",
  7224. "lib/win8/_._",
  7225. "lib/wpa81/_._",
  7226. "lib/xamarinios10/_._",
  7227. "lib/xamarintvos10/_._",
  7228. "lib/xamarinwatchos10/_._",
  7229. "ref/Xamarinmac20/_._",
  7230. "ref/monoandroid10/_._",
  7231. "ref/monotouch10/_._",
  7232. "ref/net45/_._",
  7233. "ref/net46/System.Net.Http.dll",
  7234. "ref/net46/System.Net.Http.xml",
  7235. "ref/net46/de/System.Net.Http.xml",
  7236. "ref/net46/es/System.Net.Http.xml",
  7237. "ref/net46/fr/System.Net.Http.xml",
  7238. "ref/net46/it/System.Net.Http.xml",
  7239. "ref/net46/ja/System.Net.Http.xml",
  7240. "ref/net46/ko/System.Net.Http.xml",
  7241. "ref/net46/ru/System.Net.Http.xml",
  7242. "ref/net46/zh-hans/System.Net.Http.xml",
  7243. "ref/net46/zh-hant/System.Net.Http.xml",
  7244. "ref/netcore50/System.Net.Http.dll",
  7245. "ref/netcore50/System.Net.Http.xml",
  7246. "ref/netcore50/de/System.Net.Http.xml",
  7247. "ref/netcore50/es/System.Net.Http.xml",
  7248. "ref/netcore50/fr/System.Net.Http.xml",
  7249. "ref/netcore50/it/System.Net.Http.xml",
  7250. "ref/netcore50/ja/System.Net.Http.xml",
  7251. "ref/netcore50/ko/System.Net.Http.xml",
  7252. "ref/netcore50/ru/System.Net.Http.xml",
  7253. "ref/netcore50/zh-hans/System.Net.Http.xml",
  7254. "ref/netcore50/zh-hant/System.Net.Http.xml",
  7255. "ref/netstandard1.1/System.Net.Http.dll",
  7256. "ref/netstandard1.1/System.Net.Http.xml",
  7257. "ref/netstandard1.1/de/System.Net.Http.xml",
  7258. "ref/netstandard1.1/es/System.Net.Http.xml",
  7259. "ref/netstandard1.1/fr/System.Net.Http.xml",
  7260. "ref/netstandard1.1/it/System.Net.Http.xml",
  7261. "ref/netstandard1.1/ja/System.Net.Http.xml",
  7262. "ref/netstandard1.1/ko/System.Net.Http.xml",
  7263. "ref/netstandard1.1/ru/System.Net.Http.xml",
  7264. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  7265. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  7266. "ref/netstandard1.3/System.Net.Http.dll",
  7267. "ref/netstandard1.3/System.Net.Http.xml",
  7268. "ref/netstandard1.3/de/System.Net.Http.xml",
  7269. "ref/netstandard1.3/es/System.Net.Http.xml",
  7270. "ref/netstandard1.3/fr/System.Net.Http.xml",
  7271. "ref/netstandard1.3/it/System.Net.Http.xml",
  7272. "ref/netstandard1.3/ja/System.Net.Http.xml",
  7273. "ref/netstandard1.3/ko/System.Net.Http.xml",
  7274. "ref/netstandard1.3/ru/System.Net.Http.xml",
  7275. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  7276. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  7277. "ref/portable-net45+win8+wpa81/_._",
  7278. "ref/win8/_._",
  7279. "ref/wpa81/_._",
  7280. "ref/xamarinios10/_._",
  7281. "ref/xamarintvos10/_._",
  7282. "ref/xamarinwatchos10/_._",
  7283. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7284. "runtimes/win/lib/net46/System.Net.Http.dll",
  7285. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7286. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7287. "system.net.http.4.3.0.nupkg.sha512",
  7288. "system.net.http.nuspec"
  7289. ]
  7290. },
  7291. "System.Net.Primitives/4.3.0": {
  7292. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7293. "type": "package",
  7294. "path": "system.net.primitives/4.3.0",
  7295. "files": [
  7296. ".nupkg.metadata",
  7297. ".signature.p7s",
  7298. "ThirdPartyNotices.txt",
  7299. "dotnet_library_license.txt",
  7300. "lib/MonoAndroid10/_._",
  7301. "lib/MonoTouch10/_._",
  7302. "lib/net45/_._",
  7303. "lib/portable-net45+win8+wp8+wpa81/_._",
  7304. "lib/win8/_._",
  7305. "lib/wp80/_._",
  7306. "lib/wpa81/_._",
  7307. "lib/xamarinios10/_._",
  7308. "lib/xamarinmac20/_._",
  7309. "lib/xamarintvos10/_._",
  7310. "lib/xamarinwatchos10/_._",
  7311. "ref/MonoAndroid10/_._",
  7312. "ref/MonoTouch10/_._",
  7313. "ref/net45/_._",
  7314. "ref/netcore50/System.Net.Primitives.dll",
  7315. "ref/netcore50/System.Net.Primitives.xml",
  7316. "ref/netcore50/de/System.Net.Primitives.xml",
  7317. "ref/netcore50/es/System.Net.Primitives.xml",
  7318. "ref/netcore50/fr/System.Net.Primitives.xml",
  7319. "ref/netcore50/it/System.Net.Primitives.xml",
  7320. "ref/netcore50/ja/System.Net.Primitives.xml",
  7321. "ref/netcore50/ko/System.Net.Primitives.xml",
  7322. "ref/netcore50/ru/System.Net.Primitives.xml",
  7323. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7324. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7325. "ref/netstandard1.0/System.Net.Primitives.dll",
  7326. "ref/netstandard1.0/System.Net.Primitives.xml",
  7327. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7328. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7329. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7330. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7331. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7332. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7333. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7334. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7335. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7336. "ref/netstandard1.1/System.Net.Primitives.dll",
  7337. "ref/netstandard1.1/System.Net.Primitives.xml",
  7338. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7339. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7340. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7341. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7342. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7343. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7344. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7345. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7346. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7347. "ref/netstandard1.3/System.Net.Primitives.dll",
  7348. "ref/netstandard1.3/System.Net.Primitives.xml",
  7349. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7350. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7351. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7352. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7353. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7354. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7355. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7356. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7357. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7358. "ref/portable-net45+win8+wp8+wpa81/_._",
  7359. "ref/win8/_._",
  7360. "ref/wp80/_._",
  7361. "ref/wpa81/_._",
  7362. "ref/xamarinios10/_._",
  7363. "ref/xamarinmac20/_._",
  7364. "ref/xamarintvos10/_._",
  7365. "ref/xamarinwatchos10/_._",
  7366. "system.net.primitives.4.3.0.nupkg.sha512",
  7367. "system.net.primitives.nuspec"
  7368. ]
  7369. },
  7370. "System.Net.Sockets/4.3.0": {
  7371. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  7372. "type": "package",
  7373. "path": "system.net.sockets/4.3.0",
  7374. "files": [
  7375. ".nupkg.metadata",
  7376. ".signature.p7s",
  7377. "ThirdPartyNotices.txt",
  7378. "dotnet_library_license.txt",
  7379. "lib/MonoAndroid10/_._",
  7380. "lib/MonoTouch10/_._",
  7381. "lib/net46/System.Net.Sockets.dll",
  7382. "lib/xamarinios10/_._",
  7383. "lib/xamarinmac20/_._",
  7384. "lib/xamarintvos10/_._",
  7385. "lib/xamarinwatchos10/_._",
  7386. "ref/MonoAndroid10/_._",
  7387. "ref/MonoTouch10/_._",
  7388. "ref/net46/System.Net.Sockets.dll",
  7389. "ref/netstandard1.3/System.Net.Sockets.dll",
  7390. "ref/netstandard1.3/System.Net.Sockets.xml",
  7391. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7392. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7393. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7394. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7395. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7396. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7397. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7398. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7399. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7400. "ref/xamarinios10/_._",
  7401. "ref/xamarinmac20/_._",
  7402. "ref/xamarintvos10/_._",
  7403. "ref/xamarinwatchos10/_._",
  7404. "system.net.sockets.4.3.0.nupkg.sha512",
  7405. "system.net.sockets.nuspec"
  7406. ]
  7407. },
  7408. "System.ObjectModel/4.3.0": {
  7409. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  7410. "type": "package",
  7411. "path": "system.objectmodel/4.3.0",
  7412. "files": [
  7413. ".nupkg.metadata",
  7414. ".signature.p7s",
  7415. "ThirdPartyNotices.txt",
  7416. "dotnet_library_license.txt",
  7417. "lib/MonoAndroid10/_._",
  7418. "lib/MonoTouch10/_._",
  7419. "lib/net45/_._",
  7420. "lib/netcore50/System.ObjectModel.dll",
  7421. "lib/netstandard1.3/System.ObjectModel.dll",
  7422. "lib/portable-net45+win8+wp8+wpa81/_._",
  7423. "lib/win8/_._",
  7424. "lib/wp80/_._",
  7425. "lib/wpa81/_._",
  7426. "lib/xamarinios10/_._",
  7427. "lib/xamarinmac20/_._",
  7428. "lib/xamarintvos10/_._",
  7429. "lib/xamarinwatchos10/_._",
  7430. "ref/MonoAndroid10/_._",
  7431. "ref/MonoTouch10/_._",
  7432. "ref/net45/_._",
  7433. "ref/netcore50/System.ObjectModel.dll",
  7434. "ref/netcore50/System.ObjectModel.xml",
  7435. "ref/netcore50/de/System.ObjectModel.xml",
  7436. "ref/netcore50/es/System.ObjectModel.xml",
  7437. "ref/netcore50/fr/System.ObjectModel.xml",
  7438. "ref/netcore50/it/System.ObjectModel.xml",
  7439. "ref/netcore50/ja/System.ObjectModel.xml",
  7440. "ref/netcore50/ko/System.ObjectModel.xml",
  7441. "ref/netcore50/ru/System.ObjectModel.xml",
  7442. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7443. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7444. "ref/netstandard1.0/System.ObjectModel.dll",
  7445. "ref/netstandard1.0/System.ObjectModel.xml",
  7446. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7447. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7448. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7449. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7450. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7451. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7452. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7453. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7454. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7455. "ref/netstandard1.3/System.ObjectModel.dll",
  7456. "ref/netstandard1.3/System.ObjectModel.xml",
  7457. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7458. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7459. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7460. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7461. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7462. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7463. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7464. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7465. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7466. "ref/portable-net45+win8+wp8+wpa81/_._",
  7467. "ref/win8/_._",
  7468. "ref/wp80/_._",
  7469. "ref/wpa81/_._",
  7470. "ref/xamarinios10/_._",
  7471. "ref/xamarinmac20/_._",
  7472. "ref/xamarintvos10/_._",
  7473. "ref/xamarinwatchos10/_._",
  7474. "system.objectmodel.4.3.0.nupkg.sha512",
  7475. "system.objectmodel.nuspec"
  7476. ]
  7477. },
  7478. "System.Private.Uri/4.3.2": {
  7479. "sha512": "o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
  7480. "type": "package",
  7481. "path": "system.private.uri/4.3.2",
  7482. "files": [
  7483. ".nupkg.metadata",
  7484. ".signature.p7s",
  7485. "ThirdPartyNotices.txt",
  7486. "dotnet_library_license.txt",
  7487. "ref/netstandard/_._",
  7488. "system.private.uri.4.3.2.nupkg.sha512",
  7489. "system.private.uri.nuspec"
  7490. ]
  7491. },
  7492. "System.Reflection/4.3.0": {
  7493. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  7494. "type": "package",
  7495. "path": "system.reflection/4.3.0",
  7496. "files": [
  7497. ".nupkg.metadata",
  7498. ".signature.p7s",
  7499. "ThirdPartyNotices.txt",
  7500. "dotnet_library_license.txt",
  7501. "lib/MonoAndroid10/_._",
  7502. "lib/MonoTouch10/_._",
  7503. "lib/net45/_._",
  7504. "lib/net462/System.Reflection.dll",
  7505. "lib/portable-net45+win8+wp8+wpa81/_._",
  7506. "lib/win8/_._",
  7507. "lib/wp80/_._",
  7508. "lib/wpa81/_._",
  7509. "lib/xamarinios10/_._",
  7510. "lib/xamarinmac20/_._",
  7511. "lib/xamarintvos10/_._",
  7512. "lib/xamarinwatchos10/_._",
  7513. "ref/MonoAndroid10/_._",
  7514. "ref/MonoTouch10/_._",
  7515. "ref/net45/_._",
  7516. "ref/net462/System.Reflection.dll",
  7517. "ref/netcore50/System.Reflection.dll",
  7518. "ref/netcore50/System.Reflection.xml",
  7519. "ref/netcore50/de/System.Reflection.xml",
  7520. "ref/netcore50/es/System.Reflection.xml",
  7521. "ref/netcore50/fr/System.Reflection.xml",
  7522. "ref/netcore50/it/System.Reflection.xml",
  7523. "ref/netcore50/ja/System.Reflection.xml",
  7524. "ref/netcore50/ko/System.Reflection.xml",
  7525. "ref/netcore50/ru/System.Reflection.xml",
  7526. "ref/netcore50/zh-hans/System.Reflection.xml",
  7527. "ref/netcore50/zh-hant/System.Reflection.xml",
  7528. "ref/netstandard1.0/System.Reflection.dll",
  7529. "ref/netstandard1.0/System.Reflection.xml",
  7530. "ref/netstandard1.0/de/System.Reflection.xml",
  7531. "ref/netstandard1.0/es/System.Reflection.xml",
  7532. "ref/netstandard1.0/fr/System.Reflection.xml",
  7533. "ref/netstandard1.0/it/System.Reflection.xml",
  7534. "ref/netstandard1.0/ja/System.Reflection.xml",
  7535. "ref/netstandard1.0/ko/System.Reflection.xml",
  7536. "ref/netstandard1.0/ru/System.Reflection.xml",
  7537. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7538. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7539. "ref/netstandard1.3/System.Reflection.dll",
  7540. "ref/netstandard1.3/System.Reflection.xml",
  7541. "ref/netstandard1.3/de/System.Reflection.xml",
  7542. "ref/netstandard1.3/es/System.Reflection.xml",
  7543. "ref/netstandard1.3/fr/System.Reflection.xml",
  7544. "ref/netstandard1.3/it/System.Reflection.xml",
  7545. "ref/netstandard1.3/ja/System.Reflection.xml",
  7546. "ref/netstandard1.3/ko/System.Reflection.xml",
  7547. "ref/netstandard1.3/ru/System.Reflection.xml",
  7548. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7549. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7550. "ref/netstandard1.5/System.Reflection.dll",
  7551. "ref/netstandard1.5/System.Reflection.xml",
  7552. "ref/netstandard1.5/de/System.Reflection.xml",
  7553. "ref/netstandard1.5/es/System.Reflection.xml",
  7554. "ref/netstandard1.5/fr/System.Reflection.xml",
  7555. "ref/netstandard1.5/it/System.Reflection.xml",
  7556. "ref/netstandard1.5/ja/System.Reflection.xml",
  7557. "ref/netstandard1.5/ko/System.Reflection.xml",
  7558. "ref/netstandard1.5/ru/System.Reflection.xml",
  7559. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7560. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7561. "ref/portable-net45+win8+wp8+wpa81/_._",
  7562. "ref/win8/_._",
  7563. "ref/wp80/_._",
  7564. "ref/wpa81/_._",
  7565. "ref/xamarinios10/_._",
  7566. "ref/xamarinmac20/_._",
  7567. "ref/xamarintvos10/_._",
  7568. "ref/xamarinwatchos10/_._",
  7569. "system.reflection.4.3.0.nupkg.sha512",
  7570. "system.reflection.nuspec"
  7571. ]
  7572. },
  7573. "System.Reflection.Emit/4.6.0": {
  7574. "sha512": "qAo4jyXtC9i71iElngX7P2r+zLaiHzxKwf66sc3X91tL5Ks6fnQ1vxL04o7ZSm3sYfLExySL7GN8aTpNYpU1qw==",
  7575. "type": "package",
  7576. "path": "system.reflection.emit/4.6.0",
  7577. "files": [
  7578. ".nupkg.metadata",
  7579. ".signature.p7s",
  7580. "LICENSE.TXT",
  7581. "THIRD-PARTY-NOTICES.TXT",
  7582. "lib/monoandroid10/_._",
  7583. "lib/net45/_._",
  7584. "lib/netcore50/System.Reflection.Emit.dll",
  7585. "lib/netcoreapp2.0/_._",
  7586. "lib/netstandard1.1/System.Reflection.Emit.dll",
  7587. "lib/netstandard1.1/System.Reflection.Emit.xml",
  7588. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7589. "lib/netstandard2.0/System.Reflection.Emit.dll",
  7590. "lib/netstandard2.0/System.Reflection.Emit.xml",
  7591. "lib/netstandard2.1/_._",
  7592. "lib/xamarinmac20/_._",
  7593. "ref/monoandroid10/_._",
  7594. "ref/net45/_._",
  7595. "ref/netcoreapp2.0/_._",
  7596. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7597. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7598. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7599. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7600. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7601. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7602. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7603. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7604. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7605. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7606. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7607. "ref/netstandard2.0/System.Reflection.Emit.dll",
  7608. "ref/netstandard2.0/System.Reflection.Emit.xml",
  7609. "ref/netstandard2.1/_._",
  7610. "ref/xamarinmac20/_._",
  7611. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  7612. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  7613. "system.reflection.emit.4.6.0.nupkg.sha512",
  7614. "system.reflection.emit.nuspec",
  7615. "useSharedDesignerContext.txt",
  7616. "version.txt"
  7617. ]
  7618. },
  7619. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7620. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  7621. "type": "package",
  7622. "path": "system.reflection.emit.ilgeneration/4.3.0",
  7623. "files": [
  7624. ".nupkg.metadata",
  7625. ".signature.p7s",
  7626. "ThirdPartyNotices.txt",
  7627. "dotnet_library_license.txt",
  7628. "lib/MonoAndroid10/_._",
  7629. "lib/MonoTouch10/_._",
  7630. "lib/net45/_._",
  7631. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7632. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7633. "lib/portable-net45+wp8/_._",
  7634. "lib/wp80/_._",
  7635. "lib/xamarinios10/_._",
  7636. "lib/xamarinmac20/_._",
  7637. "lib/xamarintvos10/_._",
  7638. "lib/xamarinwatchos10/_._",
  7639. "ref/MonoAndroid10/_._",
  7640. "ref/MonoTouch10/_._",
  7641. "ref/net45/_._",
  7642. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7643. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7644. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7645. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7646. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7647. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7648. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7649. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7650. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7651. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7652. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7653. "ref/portable-net45+wp8/_._",
  7654. "ref/wp80/_._",
  7655. "ref/xamarinios10/_._",
  7656. "ref/xamarinmac20/_._",
  7657. "ref/xamarintvos10/_._",
  7658. "ref/xamarinwatchos10/_._",
  7659. "runtimes/aot/lib/netcore50/_._",
  7660. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  7661. "system.reflection.emit.ilgeneration.nuspec"
  7662. ]
  7663. },
  7664. "System.Reflection.Emit.Lightweight/4.6.0": {
  7665. "sha512": "j/V5HVvxvBQ7uubYD0PptQW2KGsi1Pc2kZ9yfwLixv3ADdjL/4M78KyC5e+ymW612DY8ZE4PFoZmWpoNmN2mqg==",
  7666. "type": "package",
  7667. "path": "system.reflection.emit.lightweight/4.6.0",
  7668. "files": [
  7669. ".nupkg.metadata",
  7670. ".signature.p7s",
  7671. "LICENSE.TXT",
  7672. "THIRD-PARTY-NOTICES.TXT",
  7673. "lib/MonoAndroid10/_._",
  7674. "lib/MonoTouch10/_._",
  7675. "lib/net45/_._",
  7676. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7677. "lib/netcoreapp2.0/_._",
  7678. "lib/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7679. "lib/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7680. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  7681. "lib/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
  7682. "lib/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
  7683. "lib/netstandard2.1/_._",
  7684. "lib/portable-net45+wp8/_._",
  7685. "lib/wp80/_._",
  7686. "lib/xamarinios10/_._",
  7687. "lib/xamarinmac20/_._",
  7688. "lib/xamarintvos10/_._",
  7689. "lib/xamarinwatchos10/_._",
  7690. "ref/MonoAndroid10/_._",
  7691. "ref/MonoTouch10/_._",
  7692. "ref/net45/_._",
  7693. "ref/netcoreapp2.0/_._",
  7694. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  7695. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  7696. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  7697. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  7698. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  7699. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  7700. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  7701. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  7702. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  7703. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  7704. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  7705. "ref/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
  7706. "ref/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
  7707. "ref/netstandard2.1/_._",
  7708. "ref/portable-net45+wp8/_._",
  7709. "ref/wp80/_._",
  7710. "ref/xamarinios10/_._",
  7711. "ref/xamarinmac20/_._",
  7712. "ref/xamarintvos10/_._",
  7713. "ref/xamarinwatchos10/_._",
  7714. "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  7715. "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.xml",
  7716. "system.reflection.emit.lightweight.4.6.0.nupkg.sha512",
  7717. "system.reflection.emit.lightweight.nuspec",
  7718. "useSharedDesignerContext.txt",
  7719. "version.txt"
  7720. ]
  7721. },
  7722. "System.Reflection.Extensions/4.3.0": {
  7723. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  7724. "type": "package",
  7725. "path": "system.reflection.extensions/4.3.0",
  7726. "files": [
  7727. ".nupkg.metadata",
  7728. ".signature.p7s",
  7729. "ThirdPartyNotices.txt",
  7730. "dotnet_library_license.txt",
  7731. "lib/MonoAndroid10/_._",
  7732. "lib/MonoTouch10/_._",
  7733. "lib/net45/_._",
  7734. "lib/portable-net45+win8+wp8+wpa81/_._",
  7735. "lib/win8/_._",
  7736. "lib/wp80/_._",
  7737. "lib/wpa81/_._",
  7738. "lib/xamarinios10/_._",
  7739. "lib/xamarinmac20/_._",
  7740. "lib/xamarintvos10/_._",
  7741. "lib/xamarinwatchos10/_._",
  7742. "ref/MonoAndroid10/_._",
  7743. "ref/MonoTouch10/_._",
  7744. "ref/net45/_._",
  7745. "ref/netcore50/System.Reflection.Extensions.dll",
  7746. "ref/netcore50/System.Reflection.Extensions.xml",
  7747. "ref/netcore50/de/System.Reflection.Extensions.xml",
  7748. "ref/netcore50/es/System.Reflection.Extensions.xml",
  7749. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  7750. "ref/netcore50/it/System.Reflection.Extensions.xml",
  7751. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  7752. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  7753. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  7754. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  7755. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  7756. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  7757. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  7758. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  7759. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  7760. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  7761. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  7762. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  7763. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  7764. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  7765. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  7766. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  7767. "ref/portable-net45+win8+wp8+wpa81/_._",
  7768. "ref/win8/_._",
  7769. "ref/wp80/_._",
  7770. "ref/wpa81/_._",
  7771. "ref/xamarinios10/_._",
  7772. "ref/xamarinmac20/_._",
  7773. "ref/xamarintvos10/_._",
  7774. "ref/xamarinwatchos10/_._",
  7775. "system.reflection.extensions.4.3.0.nupkg.sha512",
  7776. "system.reflection.extensions.nuspec"
  7777. ]
  7778. },
  7779. "System.Reflection.Metadata/5.0.0": {
  7780. "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  7781. "type": "package",
  7782. "path": "system.reflection.metadata/5.0.0",
  7783. "files": [
  7784. ".nupkg.metadata",
  7785. ".signature.p7s",
  7786. "Icon.png",
  7787. "LICENSE.TXT",
  7788. "THIRD-PARTY-NOTICES.TXT",
  7789. "lib/net461/System.Reflection.Metadata.dll",
  7790. "lib/net461/System.Reflection.Metadata.xml",
  7791. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  7792. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  7793. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  7794. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  7795. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  7796. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  7797. "system.reflection.metadata.5.0.0.nupkg.sha512",
  7798. "system.reflection.metadata.nuspec",
  7799. "useSharedDesignerContext.txt",
  7800. "version.txt"
  7801. ]
  7802. },
  7803. "System.Reflection.Primitives/4.3.0": {
  7804. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  7805. "type": "package",
  7806. "path": "system.reflection.primitives/4.3.0",
  7807. "files": [
  7808. ".nupkg.metadata",
  7809. ".signature.p7s",
  7810. "ThirdPartyNotices.txt",
  7811. "dotnet_library_license.txt",
  7812. "lib/MonoAndroid10/_._",
  7813. "lib/MonoTouch10/_._",
  7814. "lib/net45/_._",
  7815. "lib/portable-net45+win8+wp8+wpa81/_._",
  7816. "lib/win8/_._",
  7817. "lib/wp80/_._",
  7818. "lib/wpa81/_._",
  7819. "lib/xamarinios10/_._",
  7820. "lib/xamarinmac20/_._",
  7821. "lib/xamarintvos10/_._",
  7822. "lib/xamarinwatchos10/_._",
  7823. "ref/MonoAndroid10/_._",
  7824. "ref/MonoTouch10/_._",
  7825. "ref/net45/_._",
  7826. "ref/netcore50/System.Reflection.Primitives.dll",
  7827. "ref/netcore50/System.Reflection.Primitives.xml",
  7828. "ref/netcore50/de/System.Reflection.Primitives.xml",
  7829. "ref/netcore50/es/System.Reflection.Primitives.xml",
  7830. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  7831. "ref/netcore50/it/System.Reflection.Primitives.xml",
  7832. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  7833. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  7834. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  7835. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  7836. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  7837. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  7838. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  7839. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  7840. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  7841. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  7842. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  7843. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  7844. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  7845. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  7846. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  7847. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  7848. "ref/portable-net45+win8+wp8+wpa81/_._",
  7849. "ref/win8/_._",
  7850. "ref/wp80/_._",
  7851. "ref/wpa81/_._",
  7852. "ref/xamarinios10/_._",
  7853. "ref/xamarinmac20/_._",
  7854. "ref/xamarintvos10/_._",
  7855. "ref/xamarinwatchos10/_._",
  7856. "system.reflection.primitives.4.3.0.nupkg.sha512",
  7857. "system.reflection.primitives.nuspec"
  7858. ]
  7859. },
  7860. "System.Reflection.TypeExtensions/4.3.0": {
  7861. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  7862. "type": "package",
  7863. "path": "system.reflection.typeextensions/4.3.0",
  7864. "files": [
  7865. ".nupkg.metadata",
  7866. ".signature.p7s",
  7867. "ThirdPartyNotices.txt",
  7868. "dotnet_library_license.txt",
  7869. "lib/MonoAndroid10/_._",
  7870. "lib/MonoTouch10/_._",
  7871. "lib/net46/System.Reflection.TypeExtensions.dll",
  7872. "lib/net462/System.Reflection.TypeExtensions.dll",
  7873. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  7874. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7875. "lib/xamarinios10/_._",
  7876. "lib/xamarinmac20/_._",
  7877. "lib/xamarintvos10/_._",
  7878. "lib/xamarinwatchos10/_._",
  7879. "ref/MonoAndroid10/_._",
  7880. "ref/MonoTouch10/_._",
  7881. "ref/net46/System.Reflection.TypeExtensions.dll",
  7882. "ref/net462/System.Reflection.TypeExtensions.dll",
  7883. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  7884. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  7885. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  7886. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  7887. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  7888. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  7889. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  7890. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  7891. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  7892. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  7893. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  7894. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  7895. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  7896. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  7897. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  7898. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  7899. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  7900. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  7901. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  7902. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  7903. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  7904. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  7905. "ref/xamarinios10/_._",
  7906. "ref/xamarinmac20/_._",
  7907. "ref/xamarintvos10/_._",
  7908. "ref/xamarinwatchos10/_._",
  7909. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  7910. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  7911. "system.reflection.typeextensions.nuspec"
  7912. ]
  7913. },
  7914. "System.Resources.ResourceManager/4.3.0": {
  7915. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  7916. "type": "package",
  7917. "path": "system.resources.resourcemanager/4.3.0",
  7918. "files": [
  7919. ".nupkg.metadata",
  7920. ".signature.p7s",
  7921. "ThirdPartyNotices.txt",
  7922. "dotnet_library_license.txt",
  7923. "lib/MonoAndroid10/_._",
  7924. "lib/MonoTouch10/_._",
  7925. "lib/net45/_._",
  7926. "lib/portable-net45+win8+wp8+wpa81/_._",
  7927. "lib/win8/_._",
  7928. "lib/wp80/_._",
  7929. "lib/wpa81/_._",
  7930. "lib/xamarinios10/_._",
  7931. "lib/xamarinmac20/_._",
  7932. "lib/xamarintvos10/_._",
  7933. "lib/xamarinwatchos10/_._",
  7934. "ref/MonoAndroid10/_._",
  7935. "ref/MonoTouch10/_._",
  7936. "ref/net45/_._",
  7937. "ref/netcore50/System.Resources.ResourceManager.dll",
  7938. "ref/netcore50/System.Resources.ResourceManager.xml",
  7939. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  7940. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  7941. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  7942. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  7943. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  7944. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  7945. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  7946. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  7947. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  7948. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  7949. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  7950. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  7951. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  7952. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  7953. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  7954. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  7955. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  7956. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  7957. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  7958. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  7959. "ref/portable-net45+win8+wp8+wpa81/_._",
  7960. "ref/win8/_._",
  7961. "ref/wp80/_._",
  7962. "ref/wpa81/_._",
  7963. "ref/xamarinios10/_._",
  7964. "ref/xamarinmac20/_._",
  7965. "ref/xamarintvos10/_._",
  7966. "ref/xamarinwatchos10/_._",
  7967. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  7968. "system.resources.resourcemanager.nuspec"
  7969. ]
  7970. },
  7971. "System.Runtime/4.3.0": {
  7972. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  7973. "type": "package",
  7974. "path": "system.runtime/4.3.0",
  7975. "files": [
  7976. ".nupkg.metadata",
  7977. ".signature.p7s",
  7978. "ThirdPartyNotices.txt",
  7979. "dotnet_library_license.txt",
  7980. "lib/MonoAndroid10/_._",
  7981. "lib/MonoTouch10/_._",
  7982. "lib/net45/_._",
  7983. "lib/net462/System.Runtime.dll",
  7984. "lib/portable-net45+win8+wp80+wpa81/_._",
  7985. "lib/win8/_._",
  7986. "lib/wp80/_._",
  7987. "lib/wpa81/_._",
  7988. "lib/xamarinios10/_._",
  7989. "lib/xamarinmac20/_._",
  7990. "lib/xamarintvos10/_._",
  7991. "lib/xamarinwatchos10/_._",
  7992. "ref/MonoAndroid10/_._",
  7993. "ref/MonoTouch10/_._",
  7994. "ref/net45/_._",
  7995. "ref/net462/System.Runtime.dll",
  7996. "ref/netcore50/System.Runtime.dll",
  7997. "ref/netcore50/System.Runtime.xml",
  7998. "ref/netcore50/de/System.Runtime.xml",
  7999. "ref/netcore50/es/System.Runtime.xml",
  8000. "ref/netcore50/fr/System.Runtime.xml",
  8001. "ref/netcore50/it/System.Runtime.xml",
  8002. "ref/netcore50/ja/System.Runtime.xml",
  8003. "ref/netcore50/ko/System.Runtime.xml",
  8004. "ref/netcore50/ru/System.Runtime.xml",
  8005. "ref/netcore50/zh-hans/System.Runtime.xml",
  8006. "ref/netcore50/zh-hant/System.Runtime.xml",
  8007. "ref/netstandard1.0/System.Runtime.dll",
  8008. "ref/netstandard1.0/System.Runtime.xml",
  8009. "ref/netstandard1.0/de/System.Runtime.xml",
  8010. "ref/netstandard1.0/es/System.Runtime.xml",
  8011. "ref/netstandard1.0/fr/System.Runtime.xml",
  8012. "ref/netstandard1.0/it/System.Runtime.xml",
  8013. "ref/netstandard1.0/ja/System.Runtime.xml",
  8014. "ref/netstandard1.0/ko/System.Runtime.xml",
  8015. "ref/netstandard1.0/ru/System.Runtime.xml",
  8016. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8017. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8018. "ref/netstandard1.2/System.Runtime.dll",
  8019. "ref/netstandard1.2/System.Runtime.xml",
  8020. "ref/netstandard1.2/de/System.Runtime.xml",
  8021. "ref/netstandard1.2/es/System.Runtime.xml",
  8022. "ref/netstandard1.2/fr/System.Runtime.xml",
  8023. "ref/netstandard1.2/it/System.Runtime.xml",
  8024. "ref/netstandard1.2/ja/System.Runtime.xml",
  8025. "ref/netstandard1.2/ko/System.Runtime.xml",
  8026. "ref/netstandard1.2/ru/System.Runtime.xml",
  8027. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8028. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8029. "ref/netstandard1.3/System.Runtime.dll",
  8030. "ref/netstandard1.3/System.Runtime.xml",
  8031. "ref/netstandard1.3/de/System.Runtime.xml",
  8032. "ref/netstandard1.3/es/System.Runtime.xml",
  8033. "ref/netstandard1.3/fr/System.Runtime.xml",
  8034. "ref/netstandard1.3/it/System.Runtime.xml",
  8035. "ref/netstandard1.3/ja/System.Runtime.xml",
  8036. "ref/netstandard1.3/ko/System.Runtime.xml",
  8037. "ref/netstandard1.3/ru/System.Runtime.xml",
  8038. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8039. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8040. "ref/netstandard1.5/System.Runtime.dll",
  8041. "ref/netstandard1.5/System.Runtime.xml",
  8042. "ref/netstandard1.5/de/System.Runtime.xml",
  8043. "ref/netstandard1.5/es/System.Runtime.xml",
  8044. "ref/netstandard1.5/fr/System.Runtime.xml",
  8045. "ref/netstandard1.5/it/System.Runtime.xml",
  8046. "ref/netstandard1.5/ja/System.Runtime.xml",
  8047. "ref/netstandard1.5/ko/System.Runtime.xml",
  8048. "ref/netstandard1.5/ru/System.Runtime.xml",
  8049. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8050. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8051. "ref/portable-net45+win8+wp80+wpa81/_._",
  8052. "ref/win8/_._",
  8053. "ref/wp80/_._",
  8054. "ref/wpa81/_._",
  8055. "ref/xamarinios10/_._",
  8056. "ref/xamarinmac20/_._",
  8057. "ref/xamarintvos10/_._",
  8058. "ref/xamarinwatchos10/_._",
  8059. "system.runtime.4.3.0.nupkg.sha512",
  8060. "system.runtime.nuspec"
  8061. ]
  8062. },
  8063. "System.Runtime.Caching/4.7.0": {
  8064. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  8065. "type": "package",
  8066. "path": "system.runtime.caching/4.7.0",
  8067. "files": [
  8068. ".nupkg.metadata",
  8069. ".signature.p7s",
  8070. "LICENSE.TXT",
  8071. "THIRD-PARTY-NOTICES.TXT",
  8072. "lib/MonoAndroid10/_._",
  8073. "lib/MonoTouch10/_._",
  8074. "lib/net45/_._",
  8075. "lib/netstandard2.0/System.Runtime.Caching.dll",
  8076. "lib/netstandard2.0/System.Runtime.Caching.xml",
  8077. "lib/xamarinios10/_._",
  8078. "lib/xamarinmac20/_._",
  8079. "lib/xamarintvos10/_._",
  8080. "lib/xamarinwatchos10/_._",
  8081. "ref/MonoAndroid10/_._",
  8082. "ref/MonoTouch10/_._",
  8083. "ref/net45/_._",
  8084. "ref/netstandard2.0/System.Runtime.Caching.dll",
  8085. "ref/netstandard2.0/System.Runtime.Caching.xml",
  8086. "ref/xamarinios10/_._",
  8087. "ref/xamarinmac20/_._",
  8088. "ref/xamarintvos10/_._",
  8089. "ref/xamarinwatchos10/_._",
  8090. "runtimes/win/lib/net45/_._",
  8091. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  8092. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  8093. "system.runtime.caching.4.7.0.nupkg.sha512",
  8094. "system.runtime.caching.nuspec",
  8095. "useSharedDesignerContext.txt",
  8096. "version.txt"
  8097. ]
  8098. },
  8099. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  8100. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  8101. "type": "package",
  8102. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  8103. "files": [
  8104. ".nupkg.metadata",
  8105. ".signature.p7s",
  8106. "Icon.png",
  8107. "LICENSE.TXT",
  8108. "THIRD-PARTY-NOTICES.TXT",
  8109. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  8110. "buildTransitive/netcoreapp3.1/_._",
  8111. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8112. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8113. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  8114. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  8115. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  8116. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  8117. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8118. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8119. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  8120. "system.runtime.compilerservices.unsafe.nuspec",
  8121. "useSharedDesignerContext.txt"
  8122. ]
  8123. },
  8124. "System.Runtime.Extensions/4.3.0": {
  8125. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8126. "type": "package",
  8127. "path": "system.runtime.extensions/4.3.0",
  8128. "files": [
  8129. ".nupkg.metadata",
  8130. ".signature.p7s",
  8131. "ThirdPartyNotices.txt",
  8132. "dotnet_library_license.txt",
  8133. "lib/MonoAndroid10/_._",
  8134. "lib/MonoTouch10/_._",
  8135. "lib/net45/_._",
  8136. "lib/net462/System.Runtime.Extensions.dll",
  8137. "lib/portable-net45+win8+wp8+wpa81/_._",
  8138. "lib/win8/_._",
  8139. "lib/wp80/_._",
  8140. "lib/wpa81/_._",
  8141. "lib/xamarinios10/_._",
  8142. "lib/xamarinmac20/_._",
  8143. "lib/xamarintvos10/_._",
  8144. "lib/xamarinwatchos10/_._",
  8145. "ref/MonoAndroid10/_._",
  8146. "ref/MonoTouch10/_._",
  8147. "ref/net45/_._",
  8148. "ref/net462/System.Runtime.Extensions.dll",
  8149. "ref/netcore50/System.Runtime.Extensions.dll",
  8150. "ref/netcore50/System.Runtime.Extensions.xml",
  8151. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8152. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8153. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8154. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8155. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8156. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8157. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8158. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8159. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8160. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8161. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8162. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8163. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8164. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8165. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8166. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8167. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8168. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8169. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8170. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8171. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8172. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8173. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8174. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8175. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8176. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8177. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8178. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8179. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8180. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8181. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8182. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8183. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8184. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8185. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8186. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8187. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8188. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8189. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8190. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8191. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8192. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8193. "ref/portable-net45+win8+wp8+wpa81/_._",
  8194. "ref/win8/_._",
  8195. "ref/wp80/_._",
  8196. "ref/wpa81/_._",
  8197. "ref/xamarinios10/_._",
  8198. "ref/xamarinmac20/_._",
  8199. "ref/xamarintvos10/_._",
  8200. "ref/xamarinwatchos10/_._",
  8201. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8202. "system.runtime.extensions.nuspec"
  8203. ]
  8204. },
  8205. "System.Runtime.Handles/4.3.0": {
  8206. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8207. "type": "package",
  8208. "path": "system.runtime.handles/4.3.0",
  8209. "files": [
  8210. ".nupkg.metadata",
  8211. ".signature.p7s",
  8212. "ThirdPartyNotices.txt",
  8213. "dotnet_library_license.txt",
  8214. "lib/MonoAndroid10/_._",
  8215. "lib/MonoTouch10/_._",
  8216. "lib/net46/_._",
  8217. "lib/xamarinios10/_._",
  8218. "lib/xamarinmac20/_._",
  8219. "lib/xamarintvos10/_._",
  8220. "lib/xamarinwatchos10/_._",
  8221. "ref/MonoAndroid10/_._",
  8222. "ref/MonoTouch10/_._",
  8223. "ref/net46/_._",
  8224. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8225. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8226. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8227. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8228. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8229. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8230. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8231. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8232. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8233. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8234. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8235. "ref/xamarinios10/_._",
  8236. "ref/xamarinmac20/_._",
  8237. "ref/xamarintvos10/_._",
  8238. "ref/xamarinwatchos10/_._",
  8239. "system.runtime.handles.4.3.0.nupkg.sha512",
  8240. "system.runtime.handles.nuspec"
  8241. ]
  8242. },
  8243. "System.Runtime.InteropServices/4.3.0": {
  8244. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8245. "type": "package",
  8246. "path": "system.runtime.interopservices/4.3.0",
  8247. "files": [
  8248. ".nupkg.metadata",
  8249. ".signature.p7s",
  8250. "ThirdPartyNotices.txt",
  8251. "dotnet_library_license.txt",
  8252. "lib/MonoAndroid10/_._",
  8253. "lib/MonoTouch10/_._",
  8254. "lib/net45/_._",
  8255. "lib/net462/System.Runtime.InteropServices.dll",
  8256. "lib/net463/System.Runtime.InteropServices.dll",
  8257. "lib/portable-net45+win8+wpa81/_._",
  8258. "lib/win8/_._",
  8259. "lib/wpa81/_._",
  8260. "lib/xamarinios10/_._",
  8261. "lib/xamarinmac20/_._",
  8262. "lib/xamarintvos10/_._",
  8263. "lib/xamarinwatchos10/_._",
  8264. "ref/MonoAndroid10/_._",
  8265. "ref/MonoTouch10/_._",
  8266. "ref/net45/_._",
  8267. "ref/net462/System.Runtime.InteropServices.dll",
  8268. "ref/net463/System.Runtime.InteropServices.dll",
  8269. "ref/netcore50/System.Runtime.InteropServices.dll",
  8270. "ref/netcore50/System.Runtime.InteropServices.xml",
  8271. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8272. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8273. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8274. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8275. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8276. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8277. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8278. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8279. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8280. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8281. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8282. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8283. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8284. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8285. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8286. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8287. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8288. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8289. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8290. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8291. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8292. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8293. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8294. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8295. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8296. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8297. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8298. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8299. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8300. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8301. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8302. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8303. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8304. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8305. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8306. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8307. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8308. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8309. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8310. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8311. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8312. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8313. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8314. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8315. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8316. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8317. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8318. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8319. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8320. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8321. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8322. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8323. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8324. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8325. "ref/portable-net45+win8+wpa81/_._",
  8326. "ref/win8/_._",
  8327. "ref/wpa81/_._",
  8328. "ref/xamarinios10/_._",
  8329. "ref/xamarinmac20/_._",
  8330. "ref/xamarintvos10/_._",
  8331. "ref/xamarinwatchos10/_._",
  8332. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8333. "system.runtime.interopservices.nuspec"
  8334. ]
  8335. },
  8336. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8337. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8338. "type": "package",
  8339. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8340. "files": [
  8341. ".nupkg.metadata",
  8342. ".signature.p7s",
  8343. "ThirdPartyNotices.txt",
  8344. "dotnet_library_license.txt",
  8345. "lib/MonoAndroid10/_._",
  8346. "lib/MonoTouch10/_._",
  8347. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8348. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8349. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8350. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8351. "lib/xamarinios10/_._",
  8352. "lib/xamarinmac20/_._",
  8353. "lib/xamarintvos10/_._",
  8354. "lib/xamarinwatchos10/_._",
  8355. "ref/MonoAndroid10/_._",
  8356. "ref/MonoTouch10/_._",
  8357. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8358. "ref/xamarinios10/_._",
  8359. "ref/xamarinmac20/_._",
  8360. "ref/xamarintvos10/_._",
  8361. "ref/xamarinwatchos10/_._",
  8362. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8363. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8364. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8365. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8366. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8367. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  8368. "system.runtime.interopservices.runtimeinformation.nuspec"
  8369. ]
  8370. },
  8371. "System.Runtime.Numerics/4.3.0": {
  8372. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  8373. "type": "package",
  8374. "path": "system.runtime.numerics/4.3.0",
  8375. "files": [
  8376. ".nupkg.metadata",
  8377. ".signature.p7s",
  8378. "ThirdPartyNotices.txt",
  8379. "dotnet_library_license.txt",
  8380. "lib/MonoAndroid10/_._",
  8381. "lib/MonoTouch10/_._",
  8382. "lib/net45/_._",
  8383. "lib/netcore50/System.Runtime.Numerics.dll",
  8384. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8385. "lib/portable-net45+win8+wpa81/_._",
  8386. "lib/win8/_._",
  8387. "lib/wpa81/_._",
  8388. "lib/xamarinios10/_._",
  8389. "lib/xamarinmac20/_._",
  8390. "lib/xamarintvos10/_._",
  8391. "lib/xamarinwatchos10/_._",
  8392. "ref/MonoAndroid10/_._",
  8393. "ref/MonoTouch10/_._",
  8394. "ref/net45/_._",
  8395. "ref/netcore50/System.Runtime.Numerics.dll",
  8396. "ref/netcore50/System.Runtime.Numerics.xml",
  8397. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8398. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8399. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8400. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8401. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8402. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8403. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8404. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8405. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8406. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8407. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8408. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8409. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8410. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8411. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8412. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8413. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8414. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8415. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8416. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8417. "ref/portable-net45+win8+wpa81/_._",
  8418. "ref/win8/_._",
  8419. "ref/wpa81/_._",
  8420. "ref/xamarinios10/_._",
  8421. "ref/xamarinmac20/_._",
  8422. "ref/xamarintvos10/_._",
  8423. "ref/xamarinwatchos10/_._",
  8424. "system.runtime.numerics.4.3.0.nupkg.sha512",
  8425. "system.runtime.numerics.nuspec"
  8426. ]
  8427. },
  8428. "System.Security.AccessControl/4.7.0": {
  8429. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  8430. "type": "package",
  8431. "path": "system.security.accesscontrol/4.7.0",
  8432. "files": [
  8433. ".nupkg.metadata",
  8434. ".signature.p7s",
  8435. "LICENSE.TXT",
  8436. "THIRD-PARTY-NOTICES.TXT",
  8437. "lib/net46/System.Security.AccessControl.dll",
  8438. "lib/net461/System.Security.AccessControl.dll",
  8439. "lib/net461/System.Security.AccessControl.xml",
  8440. "lib/netstandard1.3/System.Security.AccessControl.dll",
  8441. "lib/netstandard2.0/System.Security.AccessControl.dll",
  8442. "lib/netstandard2.0/System.Security.AccessControl.xml",
  8443. "lib/uap10.0.16299/_._",
  8444. "ref/net46/System.Security.AccessControl.dll",
  8445. "ref/net461/System.Security.AccessControl.dll",
  8446. "ref/net461/System.Security.AccessControl.xml",
  8447. "ref/netstandard1.3/System.Security.AccessControl.dll",
  8448. "ref/netstandard1.3/System.Security.AccessControl.xml",
  8449. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  8450. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  8451. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  8452. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  8453. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  8454. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  8455. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  8456. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  8457. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  8458. "ref/netstandard2.0/System.Security.AccessControl.dll",
  8459. "ref/netstandard2.0/System.Security.AccessControl.xml",
  8460. "ref/uap10.0.16299/_._",
  8461. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  8462. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  8463. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  8464. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  8465. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  8466. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  8467. "runtimes/win/lib/uap10.0.16299/_._",
  8468. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  8469. "system.security.accesscontrol.nuspec",
  8470. "useSharedDesignerContext.txt",
  8471. "version.txt"
  8472. ]
  8473. },
  8474. "System.Security.Cryptography.Algorithms/4.3.0": {
  8475. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  8476. "type": "package",
  8477. "path": "system.security.cryptography.algorithms/4.3.0",
  8478. "files": [
  8479. ".nupkg.metadata",
  8480. ".signature.p7s",
  8481. "ThirdPartyNotices.txt",
  8482. "dotnet_library_license.txt",
  8483. "lib/MonoAndroid10/_._",
  8484. "lib/MonoTouch10/_._",
  8485. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8486. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8487. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8488. "lib/xamarinios10/_._",
  8489. "lib/xamarinmac20/_._",
  8490. "lib/xamarintvos10/_._",
  8491. "lib/xamarinwatchos10/_._",
  8492. "ref/MonoAndroid10/_._",
  8493. "ref/MonoTouch10/_._",
  8494. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8495. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8496. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8497. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8498. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8499. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8500. "ref/xamarinios10/_._",
  8501. "ref/xamarinmac20/_._",
  8502. "ref/xamarintvos10/_._",
  8503. "ref/xamarinwatchos10/_._",
  8504. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8505. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8506. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8507. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8508. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8509. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8510. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8511. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  8512. "system.security.cryptography.algorithms.nuspec"
  8513. ]
  8514. },
  8515. "System.Security.Cryptography.Cng/5.0.0": {
  8516. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  8517. "type": "package",
  8518. "path": "system.security.cryptography.cng/5.0.0",
  8519. "files": [
  8520. ".nupkg.metadata",
  8521. ".signature.p7s",
  8522. "Icon.png",
  8523. "LICENSE.TXT",
  8524. "THIRD-PARTY-NOTICES.TXT",
  8525. "lib/MonoAndroid10/_._",
  8526. "lib/MonoTouch10/_._",
  8527. "lib/net46/System.Security.Cryptography.Cng.dll",
  8528. "lib/net461/System.Security.Cryptography.Cng.dll",
  8529. "lib/net461/System.Security.Cryptography.Cng.xml",
  8530. "lib/net462/System.Security.Cryptography.Cng.dll",
  8531. "lib/net462/System.Security.Cryptography.Cng.xml",
  8532. "lib/net47/System.Security.Cryptography.Cng.dll",
  8533. "lib/net47/System.Security.Cryptography.Cng.xml",
  8534. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8535. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8536. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8537. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8538. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8539. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8540. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8541. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8542. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  8543. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  8544. "lib/uap10.0.16299/_._",
  8545. "lib/xamarinios10/_._",
  8546. "lib/xamarinmac20/_._",
  8547. "lib/xamarintvos10/_._",
  8548. "lib/xamarinwatchos10/_._",
  8549. "ref/MonoAndroid10/_._",
  8550. "ref/MonoTouch10/_._",
  8551. "ref/net46/System.Security.Cryptography.Cng.dll",
  8552. "ref/net461/System.Security.Cryptography.Cng.dll",
  8553. "ref/net461/System.Security.Cryptography.Cng.xml",
  8554. "ref/net462/System.Security.Cryptography.Cng.dll",
  8555. "ref/net462/System.Security.Cryptography.Cng.xml",
  8556. "ref/net47/System.Security.Cryptography.Cng.dll",
  8557. "ref/net47/System.Security.Cryptography.Cng.xml",
  8558. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8559. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  8560. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8561. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  8562. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8563. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8564. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8565. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8566. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8567. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  8568. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  8569. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  8570. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  8571. "ref/uap10.0.16299/_._",
  8572. "ref/xamarinios10/_._",
  8573. "ref/xamarinmac20/_._",
  8574. "ref/xamarintvos10/_._",
  8575. "ref/xamarinwatchos10/_._",
  8576. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8577. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8578. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  8579. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  8580. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  8581. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  8582. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  8583. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  8584. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  8585. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  8586. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  8587. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8588. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8589. "runtimes/win/lib/uap10.0.16299/_._",
  8590. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  8591. "system.security.cryptography.cng.nuspec",
  8592. "useSharedDesignerContext.txt",
  8593. "version.txt"
  8594. ]
  8595. },
  8596. "System.Security.Cryptography.Csp/4.3.0": {
  8597. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  8598. "type": "package",
  8599. "path": "system.security.cryptography.csp/4.3.0",
  8600. "files": [
  8601. ".nupkg.metadata",
  8602. ".signature.p7s",
  8603. "ThirdPartyNotices.txt",
  8604. "dotnet_library_license.txt",
  8605. "lib/MonoAndroid10/_._",
  8606. "lib/MonoTouch10/_._",
  8607. "lib/net46/System.Security.Cryptography.Csp.dll",
  8608. "lib/xamarinios10/_._",
  8609. "lib/xamarinmac20/_._",
  8610. "lib/xamarintvos10/_._",
  8611. "lib/xamarinwatchos10/_._",
  8612. "ref/MonoAndroid10/_._",
  8613. "ref/MonoTouch10/_._",
  8614. "ref/net46/System.Security.Cryptography.Csp.dll",
  8615. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8616. "ref/xamarinios10/_._",
  8617. "ref/xamarinmac20/_._",
  8618. "ref/xamarintvos10/_._",
  8619. "ref/xamarinwatchos10/_._",
  8620. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8621. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8622. "runtimes/win/lib/netcore50/_._",
  8623. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8624. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  8625. "system.security.cryptography.csp.nuspec"
  8626. ]
  8627. },
  8628. "System.Security.Cryptography.Encoding/4.3.0": {
  8629. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  8630. "type": "package",
  8631. "path": "system.security.cryptography.encoding/4.3.0",
  8632. "files": [
  8633. ".nupkg.metadata",
  8634. ".signature.p7s",
  8635. "ThirdPartyNotices.txt",
  8636. "dotnet_library_license.txt",
  8637. "lib/MonoAndroid10/_._",
  8638. "lib/MonoTouch10/_._",
  8639. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8640. "lib/xamarinios10/_._",
  8641. "lib/xamarinmac20/_._",
  8642. "lib/xamarintvos10/_._",
  8643. "lib/xamarinwatchos10/_._",
  8644. "ref/MonoAndroid10/_._",
  8645. "ref/MonoTouch10/_._",
  8646. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8647. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8648. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8649. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8650. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8651. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8652. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8653. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8654. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8655. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8656. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8657. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8658. "ref/xamarinios10/_._",
  8659. "ref/xamarinmac20/_._",
  8660. "ref/xamarintvos10/_._",
  8661. "ref/xamarinwatchos10/_._",
  8662. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8663. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8664. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8665. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  8666. "system.security.cryptography.encoding.nuspec"
  8667. ]
  8668. },
  8669. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8670. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  8671. "type": "package",
  8672. "path": "system.security.cryptography.openssl/4.3.0",
  8673. "files": [
  8674. ".nupkg.metadata",
  8675. ".signature.p7s",
  8676. "ThirdPartyNotices.txt",
  8677. "dotnet_library_license.txt",
  8678. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8679. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8680. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8681. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  8682. "system.security.cryptography.openssl.nuspec"
  8683. ]
  8684. },
  8685. "System.Security.Cryptography.Pkcs/5.0.0": {
  8686. "sha512": "9TPLGjBCGKmNvG8pjwPeuYy0SMVmGZRwlTZvyPHDbYv/DRkoeumJdfumaaDNQzVGMEmbWtg07zUpSW9q70IlDQ==",
  8687. "type": "package",
  8688. "path": "system.security.cryptography.pkcs/5.0.0",
  8689. "files": [
  8690. ".nupkg.metadata",
  8691. ".signature.p7s",
  8692. "Icon.png",
  8693. "LICENSE.TXT",
  8694. "THIRD-PARTY-NOTICES.TXT",
  8695. "lib/net46/System.Security.Cryptography.Pkcs.dll",
  8696. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  8697. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  8698. "lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  8699. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  8700. "lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  8701. "lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  8702. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8703. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  8704. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  8705. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  8706. "ref/net46/System.Security.Cryptography.Pkcs.dll",
  8707. "ref/net461/System.Security.Cryptography.Pkcs.dll",
  8708. "ref/net461/System.Security.Cryptography.Pkcs.xml",
  8709. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  8710. "ref/netcoreapp2.1/System.Security.Cryptography.Pkcs.xml",
  8711. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  8712. "ref/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  8713. "ref/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  8714. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8715. "ref/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  8716. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  8717. "ref/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  8718. "runtimes/win/lib/net46/System.Security.Cryptography.Pkcs.dll",
  8719. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  8720. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  8721. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Pkcs.dll",
  8722. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.dll",
  8723. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Pkcs.xml",
  8724. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Pkcs.dll",
  8725. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  8726. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  8727. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  8728. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  8729. "system.security.cryptography.pkcs.5.0.0.nupkg.sha512",
  8730. "system.security.cryptography.pkcs.nuspec",
  8731. "useSharedDesignerContext.txt",
  8732. "version.txt"
  8733. ]
  8734. },
  8735. "System.Security.Cryptography.Primitives/4.3.0": {
  8736. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  8737. "type": "package",
  8738. "path": "system.security.cryptography.primitives/4.3.0",
  8739. "files": [
  8740. ".nupkg.metadata",
  8741. ".signature.p7s",
  8742. "ThirdPartyNotices.txt",
  8743. "dotnet_library_license.txt",
  8744. "lib/MonoAndroid10/_._",
  8745. "lib/MonoTouch10/_._",
  8746. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8747. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8748. "lib/xamarinios10/_._",
  8749. "lib/xamarinmac20/_._",
  8750. "lib/xamarintvos10/_._",
  8751. "lib/xamarinwatchos10/_._",
  8752. "ref/MonoAndroid10/_._",
  8753. "ref/MonoTouch10/_._",
  8754. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8755. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8756. "ref/xamarinios10/_._",
  8757. "ref/xamarinmac20/_._",
  8758. "ref/xamarintvos10/_._",
  8759. "ref/xamarinwatchos10/_._",
  8760. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  8761. "system.security.cryptography.primitives.nuspec"
  8762. ]
  8763. },
  8764. "System.Security.Cryptography.ProtectedData/4.7.0": {
  8765. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  8766. "type": "package",
  8767. "path": "system.security.cryptography.protecteddata/4.7.0",
  8768. "files": [
  8769. ".nupkg.metadata",
  8770. ".signature.p7s",
  8771. "LICENSE.TXT",
  8772. "THIRD-PARTY-NOTICES.TXT",
  8773. "lib/MonoAndroid10/_._",
  8774. "lib/MonoTouch10/_._",
  8775. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8776. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8777. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8778. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8779. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8780. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8781. "lib/xamarinios10/_._",
  8782. "lib/xamarinmac20/_._",
  8783. "lib/xamarintvos10/_._",
  8784. "lib/xamarinwatchos10/_._",
  8785. "ref/MonoAndroid10/_._",
  8786. "ref/MonoTouch10/_._",
  8787. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  8788. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  8789. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  8790. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8791. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8792. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8793. "ref/xamarinios10/_._",
  8794. "ref/xamarinmac20/_._",
  8795. "ref/xamarintvos10/_._",
  8796. "ref/xamarinwatchos10/_._",
  8797. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  8798. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  8799. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  8800. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  8801. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  8802. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  8803. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  8804. "system.security.cryptography.protecteddata.nuspec",
  8805. "useSharedDesignerContext.txt",
  8806. "version.txt"
  8807. ]
  8808. },
  8809. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8810. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  8811. "type": "package",
  8812. "path": "system.security.cryptography.x509certificates/4.3.0",
  8813. "files": [
  8814. ".nupkg.metadata",
  8815. ".signature.p7s",
  8816. "ThirdPartyNotices.txt",
  8817. "dotnet_library_license.txt",
  8818. "lib/MonoAndroid10/_._",
  8819. "lib/MonoTouch10/_._",
  8820. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8821. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8822. "lib/xamarinios10/_._",
  8823. "lib/xamarinmac20/_._",
  8824. "lib/xamarintvos10/_._",
  8825. "lib/xamarinwatchos10/_._",
  8826. "ref/MonoAndroid10/_._",
  8827. "ref/MonoTouch10/_._",
  8828. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  8829. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  8830. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  8831. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  8832. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  8833. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  8834. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  8835. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  8836. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  8837. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  8838. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  8839. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8840. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8841. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  8842. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  8843. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  8844. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  8845. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  8846. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  8847. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  8848. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  8849. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  8850. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  8851. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  8852. "ref/xamarinios10/_._",
  8853. "ref/xamarinmac20/_._",
  8854. "ref/xamarintvos10/_._",
  8855. "ref/xamarinwatchos10/_._",
  8856. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8857. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8858. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8859. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  8860. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  8861. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  8862. "system.security.cryptography.x509certificates.nuspec"
  8863. ]
  8864. },
  8865. "System.Security.Permissions/4.7.0": {
  8866. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  8867. "type": "package",
  8868. "path": "system.security.permissions/4.7.0",
  8869. "files": [
  8870. ".nupkg.metadata",
  8871. ".signature.p7s",
  8872. "LICENSE.TXT",
  8873. "THIRD-PARTY-NOTICES.TXT",
  8874. "lib/net461/System.Security.Permissions.dll",
  8875. "lib/net461/System.Security.Permissions.xml",
  8876. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  8877. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  8878. "lib/netstandard2.0/System.Security.Permissions.dll",
  8879. "lib/netstandard2.0/System.Security.Permissions.xml",
  8880. "ref/net461/System.Security.Permissions.dll",
  8881. "ref/net461/System.Security.Permissions.xml",
  8882. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  8883. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  8884. "ref/netstandard2.0/System.Security.Permissions.dll",
  8885. "ref/netstandard2.0/System.Security.Permissions.xml",
  8886. "system.security.permissions.4.7.0.nupkg.sha512",
  8887. "system.security.permissions.nuspec",
  8888. "useSharedDesignerContext.txt",
  8889. "version.txt"
  8890. ]
  8891. },
  8892. "System.Security.Principal.Windows/4.7.0": {
  8893. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  8894. "type": "package",
  8895. "path": "system.security.principal.windows/4.7.0",
  8896. "files": [
  8897. ".nupkg.metadata",
  8898. ".signature.p7s",
  8899. "LICENSE.TXT",
  8900. "THIRD-PARTY-NOTICES.TXT",
  8901. "lib/net46/System.Security.Principal.Windows.dll",
  8902. "lib/net461/System.Security.Principal.Windows.dll",
  8903. "lib/net461/System.Security.Principal.Windows.xml",
  8904. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8905. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  8906. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  8907. "lib/uap10.0.16299/_._",
  8908. "ref/net46/System.Security.Principal.Windows.dll",
  8909. "ref/net461/System.Security.Principal.Windows.dll",
  8910. "ref/net461/System.Security.Principal.Windows.xml",
  8911. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  8912. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  8913. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  8914. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  8915. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  8916. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  8917. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  8918. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  8919. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  8920. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  8921. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  8922. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  8923. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  8924. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  8925. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  8926. "ref/uap10.0.16299/_._",
  8927. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8928. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8929. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8930. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8931. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  8932. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  8933. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  8934. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  8935. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  8936. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  8937. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  8938. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  8939. "runtimes/win/lib/uap10.0.16299/_._",
  8940. "system.security.principal.windows.4.7.0.nupkg.sha512",
  8941. "system.security.principal.windows.nuspec",
  8942. "useSharedDesignerContext.txt",
  8943. "version.txt"
  8944. ]
  8945. },
  8946. "System.Text.Encoding/4.3.0": {
  8947. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  8948. "type": "package",
  8949. "path": "system.text.encoding/4.3.0",
  8950. "files": [
  8951. ".nupkg.metadata",
  8952. ".signature.p7s",
  8953. "ThirdPartyNotices.txt",
  8954. "dotnet_library_license.txt",
  8955. "lib/MonoAndroid10/_._",
  8956. "lib/MonoTouch10/_._",
  8957. "lib/net45/_._",
  8958. "lib/portable-net45+win8+wp8+wpa81/_._",
  8959. "lib/win8/_._",
  8960. "lib/wp80/_._",
  8961. "lib/wpa81/_._",
  8962. "lib/xamarinios10/_._",
  8963. "lib/xamarinmac20/_._",
  8964. "lib/xamarintvos10/_._",
  8965. "lib/xamarinwatchos10/_._",
  8966. "ref/MonoAndroid10/_._",
  8967. "ref/MonoTouch10/_._",
  8968. "ref/net45/_._",
  8969. "ref/netcore50/System.Text.Encoding.dll",
  8970. "ref/netcore50/System.Text.Encoding.xml",
  8971. "ref/netcore50/de/System.Text.Encoding.xml",
  8972. "ref/netcore50/es/System.Text.Encoding.xml",
  8973. "ref/netcore50/fr/System.Text.Encoding.xml",
  8974. "ref/netcore50/it/System.Text.Encoding.xml",
  8975. "ref/netcore50/ja/System.Text.Encoding.xml",
  8976. "ref/netcore50/ko/System.Text.Encoding.xml",
  8977. "ref/netcore50/ru/System.Text.Encoding.xml",
  8978. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  8979. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  8980. "ref/netstandard1.0/System.Text.Encoding.dll",
  8981. "ref/netstandard1.0/System.Text.Encoding.xml",
  8982. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  8983. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  8984. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  8985. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  8986. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  8987. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  8988. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  8989. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  8990. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  8991. "ref/netstandard1.3/System.Text.Encoding.dll",
  8992. "ref/netstandard1.3/System.Text.Encoding.xml",
  8993. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  8994. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  8995. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  8996. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  8997. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  8998. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  8999. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9000. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9001. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9002. "ref/portable-net45+win8+wp8+wpa81/_._",
  9003. "ref/win8/_._",
  9004. "ref/wp80/_._",
  9005. "ref/wpa81/_._",
  9006. "ref/xamarinios10/_._",
  9007. "ref/xamarinmac20/_._",
  9008. "ref/xamarintvos10/_._",
  9009. "ref/xamarinwatchos10/_._",
  9010. "system.text.encoding.4.3.0.nupkg.sha512",
  9011. "system.text.encoding.nuspec"
  9012. ]
  9013. },
  9014. "System.Text.Encoding.CodePages/4.7.0": {
  9015. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  9016. "type": "package",
  9017. "path": "system.text.encoding.codepages/4.7.0",
  9018. "files": [
  9019. ".nupkg.metadata",
  9020. ".signature.p7s",
  9021. "LICENSE.TXT",
  9022. "THIRD-PARTY-NOTICES.TXT",
  9023. "lib/MonoAndroid10/_._",
  9024. "lib/MonoTouch10/_._",
  9025. "lib/net46/System.Text.Encoding.CodePages.dll",
  9026. "lib/net461/System.Text.Encoding.CodePages.dll",
  9027. "lib/net461/System.Text.Encoding.CodePages.xml",
  9028. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9029. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9030. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9031. "lib/xamarinios10/_._",
  9032. "lib/xamarinmac20/_._",
  9033. "lib/xamarintvos10/_._",
  9034. "lib/xamarinwatchos10/_._",
  9035. "ref/MonoAndroid10/_._",
  9036. "ref/MonoTouch10/_._",
  9037. "ref/xamarinios10/_._",
  9038. "ref/xamarinmac20/_._",
  9039. "ref/xamarintvos10/_._",
  9040. "ref/xamarinwatchos10/_._",
  9041. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9042. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9043. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9044. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9045. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9046. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9047. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9048. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  9049. "system.text.encoding.codepages.nuspec",
  9050. "useSharedDesignerContext.txt",
  9051. "version.txt"
  9052. ]
  9053. },
  9054. "System.Text.Encoding.Extensions/4.3.0": {
  9055. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9056. "type": "package",
  9057. "path": "system.text.encoding.extensions/4.3.0",
  9058. "files": [
  9059. ".nupkg.metadata",
  9060. ".signature.p7s",
  9061. "ThirdPartyNotices.txt",
  9062. "dotnet_library_license.txt",
  9063. "lib/MonoAndroid10/_._",
  9064. "lib/MonoTouch10/_._",
  9065. "lib/net45/_._",
  9066. "lib/portable-net45+win8+wp8+wpa81/_._",
  9067. "lib/win8/_._",
  9068. "lib/wp80/_._",
  9069. "lib/wpa81/_._",
  9070. "lib/xamarinios10/_._",
  9071. "lib/xamarinmac20/_._",
  9072. "lib/xamarintvos10/_._",
  9073. "lib/xamarinwatchos10/_._",
  9074. "ref/MonoAndroid10/_._",
  9075. "ref/MonoTouch10/_._",
  9076. "ref/net45/_._",
  9077. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9078. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9079. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9080. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9081. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9082. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9083. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9084. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9085. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9086. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9087. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9088. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9089. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9090. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9091. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9092. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9093. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9094. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9095. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9096. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9097. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9098. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9099. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9100. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9101. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9102. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9103. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9104. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9105. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9106. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9107. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9108. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9109. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9110. "ref/portable-net45+win8+wp8+wpa81/_._",
  9111. "ref/win8/_._",
  9112. "ref/wp80/_._",
  9113. "ref/wpa81/_._",
  9114. "ref/xamarinios10/_._",
  9115. "ref/xamarinmac20/_._",
  9116. "ref/xamarintvos10/_._",
  9117. "ref/xamarinwatchos10/_._",
  9118. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9119. "system.text.encoding.extensions.nuspec"
  9120. ]
  9121. },
  9122. "System.Text.Json/5.0.2": {
  9123. "sha512": "I47dVIGiV6SfAyppphxqupertT/5oZkYLDCX6vC3HpOI4ZLjyoKAreUoem2ie6G0RbRuFrlqz/PcTQjfb2DOfQ==",
  9124. "type": "package",
  9125. "path": "system.text.json/5.0.2",
  9126. "files": [
  9127. ".nupkg.metadata",
  9128. ".signature.p7s",
  9129. "Icon.png",
  9130. "LICENSE.TXT",
  9131. "THIRD-PARTY-NOTICES.TXT",
  9132. "lib/net461/System.Text.Json.dll",
  9133. "lib/net461/System.Text.Json.xml",
  9134. "lib/netcoreapp3.0/System.Text.Json.dll",
  9135. "lib/netcoreapp3.0/System.Text.Json.xml",
  9136. "lib/netstandard2.0/System.Text.Json.dll",
  9137. "lib/netstandard2.0/System.Text.Json.xml",
  9138. "system.text.json.5.0.2.nupkg.sha512",
  9139. "system.text.json.nuspec",
  9140. "useSharedDesignerContext.txt",
  9141. "version.txt"
  9142. ]
  9143. },
  9144. "System.Text.RegularExpressions/4.3.0": {
  9145. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9146. "type": "package",
  9147. "path": "system.text.regularexpressions/4.3.0",
  9148. "files": [
  9149. ".nupkg.metadata",
  9150. ".signature.p7s",
  9151. "ThirdPartyNotices.txt",
  9152. "dotnet_library_license.txt",
  9153. "lib/MonoAndroid10/_._",
  9154. "lib/MonoTouch10/_._",
  9155. "lib/net45/_._",
  9156. "lib/net463/System.Text.RegularExpressions.dll",
  9157. "lib/netcore50/System.Text.RegularExpressions.dll",
  9158. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9159. "lib/portable-net45+win8+wp8+wpa81/_._",
  9160. "lib/win8/_._",
  9161. "lib/wp80/_._",
  9162. "lib/wpa81/_._",
  9163. "lib/xamarinios10/_._",
  9164. "lib/xamarinmac20/_._",
  9165. "lib/xamarintvos10/_._",
  9166. "lib/xamarinwatchos10/_._",
  9167. "ref/MonoAndroid10/_._",
  9168. "ref/MonoTouch10/_._",
  9169. "ref/net45/_._",
  9170. "ref/net463/System.Text.RegularExpressions.dll",
  9171. "ref/netcore50/System.Text.RegularExpressions.dll",
  9172. "ref/netcore50/System.Text.RegularExpressions.xml",
  9173. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9174. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9175. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9176. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9177. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9178. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9179. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9180. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9181. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9182. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9183. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9184. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9185. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9186. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9187. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9188. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9189. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9190. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9191. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9192. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9193. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9194. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9195. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9196. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9197. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9198. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9199. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9200. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9201. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9202. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9203. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9204. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9205. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9206. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9207. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9208. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9209. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9210. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9211. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9212. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9213. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9214. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9215. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9216. "ref/portable-net45+win8+wp8+wpa81/_._",
  9217. "ref/win8/_._",
  9218. "ref/wp80/_._",
  9219. "ref/wpa81/_._",
  9220. "ref/xamarinios10/_._",
  9221. "ref/xamarinmac20/_._",
  9222. "ref/xamarintvos10/_._",
  9223. "ref/xamarinwatchos10/_._",
  9224. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  9225. "system.text.regularexpressions.nuspec"
  9226. ]
  9227. },
  9228. "System.Threading/4.3.0": {
  9229. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  9230. "type": "package",
  9231. "path": "system.threading/4.3.0",
  9232. "files": [
  9233. ".nupkg.metadata",
  9234. ".signature.p7s",
  9235. "ThirdPartyNotices.txt",
  9236. "dotnet_library_license.txt",
  9237. "lib/MonoAndroid10/_._",
  9238. "lib/MonoTouch10/_._",
  9239. "lib/net45/_._",
  9240. "lib/netcore50/System.Threading.dll",
  9241. "lib/netstandard1.3/System.Threading.dll",
  9242. "lib/portable-net45+win8+wp8+wpa81/_._",
  9243. "lib/win8/_._",
  9244. "lib/wp80/_._",
  9245. "lib/wpa81/_._",
  9246. "lib/xamarinios10/_._",
  9247. "lib/xamarinmac20/_._",
  9248. "lib/xamarintvos10/_._",
  9249. "lib/xamarinwatchos10/_._",
  9250. "ref/MonoAndroid10/_._",
  9251. "ref/MonoTouch10/_._",
  9252. "ref/net45/_._",
  9253. "ref/netcore50/System.Threading.dll",
  9254. "ref/netcore50/System.Threading.xml",
  9255. "ref/netcore50/de/System.Threading.xml",
  9256. "ref/netcore50/es/System.Threading.xml",
  9257. "ref/netcore50/fr/System.Threading.xml",
  9258. "ref/netcore50/it/System.Threading.xml",
  9259. "ref/netcore50/ja/System.Threading.xml",
  9260. "ref/netcore50/ko/System.Threading.xml",
  9261. "ref/netcore50/ru/System.Threading.xml",
  9262. "ref/netcore50/zh-hans/System.Threading.xml",
  9263. "ref/netcore50/zh-hant/System.Threading.xml",
  9264. "ref/netstandard1.0/System.Threading.dll",
  9265. "ref/netstandard1.0/System.Threading.xml",
  9266. "ref/netstandard1.0/de/System.Threading.xml",
  9267. "ref/netstandard1.0/es/System.Threading.xml",
  9268. "ref/netstandard1.0/fr/System.Threading.xml",
  9269. "ref/netstandard1.0/it/System.Threading.xml",
  9270. "ref/netstandard1.0/ja/System.Threading.xml",
  9271. "ref/netstandard1.0/ko/System.Threading.xml",
  9272. "ref/netstandard1.0/ru/System.Threading.xml",
  9273. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9274. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9275. "ref/netstandard1.3/System.Threading.dll",
  9276. "ref/netstandard1.3/System.Threading.xml",
  9277. "ref/netstandard1.3/de/System.Threading.xml",
  9278. "ref/netstandard1.3/es/System.Threading.xml",
  9279. "ref/netstandard1.3/fr/System.Threading.xml",
  9280. "ref/netstandard1.3/it/System.Threading.xml",
  9281. "ref/netstandard1.3/ja/System.Threading.xml",
  9282. "ref/netstandard1.3/ko/System.Threading.xml",
  9283. "ref/netstandard1.3/ru/System.Threading.xml",
  9284. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9285. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9286. "ref/portable-net45+win8+wp8+wpa81/_._",
  9287. "ref/win8/_._",
  9288. "ref/wp80/_._",
  9289. "ref/wpa81/_._",
  9290. "ref/xamarinios10/_._",
  9291. "ref/xamarinmac20/_._",
  9292. "ref/xamarintvos10/_._",
  9293. "ref/xamarinwatchos10/_._",
  9294. "runtimes/aot/lib/netcore50/System.Threading.dll",
  9295. "system.threading.4.3.0.nupkg.sha512",
  9296. "system.threading.nuspec"
  9297. ]
  9298. },
  9299. "System.Threading.Tasks/4.3.0": {
  9300. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  9301. "type": "package",
  9302. "path": "system.threading.tasks/4.3.0",
  9303. "files": [
  9304. ".nupkg.metadata",
  9305. ".signature.p7s",
  9306. "ThirdPartyNotices.txt",
  9307. "dotnet_library_license.txt",
  9308. "lib/MonoAndroid10/_._",
  9309. "lib/MonoTouch10/_._",
  9310. "lib/net45/_._",
  9311. "lib/portable-net45+win8+wp8+wpa81/_._",
  9312. "lib/win8/_._",
  9313. "lib/wp80/_._",
  9314. "lib/wpa81/_._",
  9315. "lib/xamarinios10/_._",
  9316. "lib/xamarinmac20/_._",
  9317. "lib/xamarintvos10/_._",
  9318. "lib/xamarinwatchos10/_._",
  9319. "ref/MonoAndroid10/_._",
  9320. "ref/MonoTouch10/_._",
  9321. "ref/net45/_._",
  9322. "ref/netcore50/System.Threading.Tasks.dll",
  9323. "ref/netcore50/System.Threading.Tasks.xml",
  9324. "ref/netcore50/de/System.Threading.Tasks.xml",
  9325. "ref/netcore50/es/System.Threading.Tasks.xml",
  9326. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9327. "ref/netcore50/it/System.Threading.Tasks.xml",
  9328. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9329. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9330. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9331. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9332. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9333. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9334. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9335. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9336. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9337. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9338. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9339. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9340. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9341. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9342. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9343. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9344. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9345. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9346. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9347. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9348. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9349. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9350. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9351. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9352. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9353. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9354. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9355. "ref/portable-net45+win8+wp8+wpa81/_._",
  9356. "ref/win8/_._",
  9357. "ref/wp80/_._",
  9358. "ref/wpa81/_._",
  9359. "ref/xamarinios10/_._",
  9360. "ref/xamarinmac20/_._",
  9361. "ref/xamarintvos10/_._",
  9362. "ref/xamarinwatchos10/_._",
  9363. "system.threading.tasks.4.3.0.nupkg.sha512",
  9364. "system.threading.tasks.nuspec"
  9365. ]
  9366. },
  9367. "System.Threading.Tasks.Dataflow/4.9.0": {
  9368. "sha512": "dTS+3D/GtG2/Pvc3E5YzVvAa7aQJgLDlZDIzukMOJjYudVOQOUXEU68y6Zi3Nn/jqIeB5kOCwrGbQFAKHVzXEQ==",
  9369. "type": "package",
  9370. "path": "system.threading.tasks.dataflow/4.9.0",
  9371. "files": [
  9372. ".nupkg.metadata",
  9373. ".signature.p7s",
  9374. "LICENSE.TXT",
  9375. "THIRD-PARTY-NOTICES.TXT",
  9376. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
  9377. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.xml",
  9378. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll",
  9379. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.xml",
  9380. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll",
  9381. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml",
  9382. "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll",
  9383. "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.xml",
  9384. "system.threading.tasks.dataflow.4.9.0.nupkg.sha512",
  9385. "system.threading.tasks.dataflow.nuspec",
  9386. "useSharedDesignerContext.txt",
  9387. "version.txt"
  9388. ]
  9389. },
  9390. "System.Threading.Tasks.Extensions/4.5.4": {
  9391. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  9392. "type": "package",
  9393. "path": "system.threading.tasks.extensions/4.5.4",
  9394. "files": [
  9395. ".nupkg.metadata",
  9396. ".signature.p7s",
  9397. "LICENSE.TXT",
  9398. "THIRD-PARTY-NOTICES.TXT",
  9399. "lib/MonoAndroid10/_._",
  9400. "lib/MonoTouch10/_._",
  9401. "lib/net461/System.Threading.Tasks.Extensions.dll",
  9402. "lib/net461/System.Threading.Tasks.Extensions.xml",
  9403. "lib/netcoreapp2.1/_._",
  9404. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9405. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9406. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  9407. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  9408. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9409. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  9410. "lib/xamarinios10/_._",
  9411. "lib/xamarinmac20/_._",
  9412. "lib/xamarintvos10/_._",
  9413. "lib/xamarinwatchos10/_._",
  9414. "ref/MonoAndroid10/_._",
  9415. "ref/MonoTouch10/_._",
  9416. "ref/netcoreapp2.1/_._",
  9417. "ref/xamarinios10/_._",
  9418. "ref/xamarinmac20/_._",
  9419. "ref/xamarintvos10/_._",
  9420. "ref/xamarinwatchos10/_._",
  9421. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  9422. "system.threading.tasks.extensions.nuspec",
  9423. "useSharedDesignerContext.txt",
  9424. "version.txt"
  9425. ]
  9426. },
  9427. "System.Threading.Timer/4.3.0": {
  9428. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  9429. "type": "package",
  9430. "path": "system.threading.timer/4.3.0",
  9431. "files": [
  9432. ".nupkg.metadata",
  9433. ".signature.p7s",
  9434. "ThirdPartyNotices.txt",
  9435. "dotnet_library_license.txt",
  9436. "lib/MonoAndroid10/_._",
  9437. "lib/MonoTouch10/_._",
  9438. "lib/net451/_._",
  9439. "lib/portable-net451+win81+wpa81/_._",
  9440. "lib/win81/_._",
  9441. "lib/wpa81/_._",
  9442. "lib/xamarinios10/_._",
  9443. "lib/xamarinmac20/_._",
  9444. "lib/xamarintvos10/_._",
  9445. "lib/xamarinwatchos10/_._",
  9446. "ref/MonoAndroid10/_._",
  9447. "ref/MonoTouch10/_._",
  9448. "ref/net451/_._",
  9449. "ref/netcore50/System.Threading.Timer.dll",
  9450. "ref/netcore50/System.Threading.Timer.xml",
  9451. "ref/netcore50/de/System.Threading.Timer.xml",
  9452. "ref/netcore50/es/System.Threading.Timer.xml",
  9453. "ref/netcore50/fr/System.Threading.Timer.xml",
  9454. "ref/netcore50/it/System.Threading.Timer.xml",
  9455. "ref/netcore50/ja/System.Threading.Timer.xml",
  9456. "ref/netcore50/ko/System.Threading.Timer.xml",
  9457. "ref/netcore50/ru/System.Threading.Timer.xml",
  9458. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9459. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9460. "ref/netstandard1.2/System.Threading.Timer.dll",
  9461. "ref/netstandard1.2/System.Threading.Timer.xml",
  9462. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9463. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9464. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9465. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9466. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9467. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9468. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9469. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9470. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9471. "ref/portable-net451+win81+wpa81/_._",
  9472. "ref/win81/_._",
  9473. "ref/wpa81/_._",
  9474. "ref/xamarinios10/_._",
  9475. "ref/xamarinmac20/_._",
  9476. "ref/xamarintvos10/_._",
  9477. "ref/xamarinwatchos10/_._",
  9478. "system.threading.timer.4.3.0.nupkg.sha512",
  9479. "system.threading.timer.nuspec"
  9480. ]
  9481. },
  9482. "System.Windows.Extensions/4.7.0": {
  9483. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  9484. "type": "package",
  9485. "path": "system.windows.extensions/4.7.0",
  9486. "files": [
  9487. ".nupkg.metadata",
  9488. ".signature.p7s",
  9489. "LICENSE.TXT",
  9490. "THIRD-PARTY-NOTICES.TXT",
  9491. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9492. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9493. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  9494. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  9495. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  9496. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  9497. "system.windows.extensions.4.7.0.nupkg.sha512",
  9498. "system.windows.extensions.nuspec",
  9499. "useSharedDesignerContext.txt",
  9500. "version.txt"
  9501. ]
  9502. },
  9503. "System.Xml.ReaderWriter/4.3.0": {
  9504. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  9505. "type": "package",
  9506. "path": "system.xml.readerwriter/4.3.0",
  9507. "files": [
  9508. ".nupkg.metadata",
  9509. ".signature.p7s",
  9510. "ThirdPartyNotices.txt",
  9511. "dotnet_library_license.txt",
  9512. "lib/MonoAndroid10/_._",
  9513. "lib/MonoTouch10/_._",
  9514. "lib/net45/_._",
  9515. "lib/net46/System.Xml.ReaderWriter.dll",
  9516. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9517. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9518. "lib/portable-net45+win8+wp8+wpa81/_._",
  9519. "lib/win8/_._",
  9520. "lib/wp80/_._",
  9521. "lib/wpa81/_._",
  9522. "lib/xamarinios10/_._",
  9523. "lib/xamarinmac20/_._",
  9524. "lib/xamarintvos10/_._",
  9525. "lib/xamarinwatchos10/_._",
  9526. "ref/MonoAndroid10/_._",
  9527. "ref/MonoTouch10/_._",
  9528. "ref/net45/_._",
  9529. "ref/net46/System.Xml.ReaderWriter.dll",
  9530. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9531. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9532. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9533. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9534. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9535. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9536. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9537. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9538. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9539. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9540. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9541. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9542. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9543. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9544. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9545. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9546. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9547. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9548. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9549. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9550. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9551. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9552. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9553. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9554. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9555. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9556. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9557. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9558. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9559. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9560. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9561. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9562. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9563. "ref/portable-net45+win8+wp8+wpa81/_._",
  9564. "ref/win8/_._",
  9565. "ref/wp80/_._",
  9566. "ref/wpa81/_._",
  9567. "ref/xamarinios10/_._",
  9568. "ref/xamarinmac20/_._",
  9569. "ref/xamarintvos10/_._",
  9570. "ref/xamarinwatchos10/_._",
  9571. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  9572. "system.xml.readerwriter.nuspec"
  9573. ]
  9574. },
  9575. "System.Xml.XDocument/4.3.0": {
  9576. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  9577. "type": "package",
  9578. "path": "system.xml.xdocument/4.3.0",
  9579. "files": [
  9580. ".nupkg.metadata",
  9581. ".signature.p7s",
  9582. "ThirdPartyNotices.txt",
  9583. "dotnet_library_license.txt",
  9584. "lib/MonoAndroid10/_._",
  9585. "lib/MonoTouch10/_._",
  9586. "lib/net45/_._",
  9587. "lib/netcore50/System.Xml.XDocument.dll",
  9588. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9589. "lib/portable-net45+win8+wp8+wpa81/_._",
  9590. "lib/win8/_._",
  9591. "lib/wp80/_._",
  9592. "lib/wpa81/_._",
  9593. "lib/xamarinios10/_._",
  9594. "lib/xamarinmac20/_._",
  9595. "lib/xamarintvos10/_._",
  9596. "lib/xamarinwatchos10/_._",
  9597. "ref/MonoAndroid10/_._",
  9598. "ref/MonoTouch10/_._",
  9599. "ref/net45/_._",
  9600. "ref/netcore50/System.Xml.XDocument.dll",
  9601. "ref/netcore50/System.Xml.XDocument.xml",
  9602. "ref/netcore50/de/System.Xml.XDocument.xml",
  9603. "ref/netcore50/es/System.Xml.XDocument.xml",
  9604. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9605. "ref/netcore50/it/System.Xml.XDocument.xml",
  9606. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9607. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9608. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9609. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9610. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9611. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9612. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9613. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9614. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9615. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9616. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9617. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9618. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9619. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9620. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9621. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9622. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9623. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9624. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9625. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9626. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9627. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9628. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9629. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9630. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9631. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9632. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9633. "ref/portable-net45+win8+wp8+wpa81/_._",
  9634. "ref/win8/_._",
  9635. "ref/wp80/_._",
  9636. "ref/wpa81/_._",
  9637. "ref/xamarinios10/_._",
  9638. "ref/xamarinmac20/_._",
  9639. "ref/xamarintvos10/_._",
  9640. "ref/xamarinwatchos10/_._",
  9641. "system.xml.xdocument.4.3.0.nupkg.sha512",
  9642. "system.xml.xdocument.nuspec"
  9643. ]
  9644. }
  9645. },
  9646. "projectFileDependencyGroups": {
  9647. "net6.0": [
  9648. "Microsoft.EntityFrameworkCore >= 6.0.4",
  9649. "Microsoft.EntityFrameworkCore.SqlServer >= 6.0.4",
  9650. "Microsoft.EntityFrameworkCore.Tools >= 6.0.4",
  9651. "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 6.0.3",
  9652. "Swashbuckle.AspNetCore >= 6.3.0"
  9653. ]
  9654. },
  9655. "packageFolders": {
  9656. "C:\\Users\\Acer\\.nuget\\packages\\": {},
  9657. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
  9658. "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {}
  9659. },
  9660. "project": {
  9661. "version": "1.0.0",
  9662. "restore": {
  9663. "projectUniqueName": "C:\\Users\\Acer\\Desktop\\HallOfFame\\HallOfFame\\HallOfFame.csproj",
  9664. "projectName": "HallOfFame",
  9665. "projectPath": "C:\\Users\\Acer\\Desktop\\HallOfFame\\HallOfFame\\HallOfFame.csproj",
  9666. "packagesPath": "C:\\Users\\Acer\\.nuget\\packages\\",
  9667. "outputPath": "C:\\Users\\Acer\\Desktop\\HallOfFame\\HallOfFame\\obj\\",
  9668. "projectStyle": "PackageReference",
  9669. "fallbackFolders": [
  9670. "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
  9671. "C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
  9672. ],
  9673. "configFilePaths": [
  9674. "C:\\Users\\Acer\\AppData\\Roaming\\NuGet\\NuGet.Config",
  9675. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  9676. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
  9677. "C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
  9678. ],
  9679. "originalTargetFrameworks": [
  9680. "net6.0"
  9681. ],
  9682. "sources": {
  9683. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  9684. "https://api.nuget.org/v3/index.json": {}
  9685. },
  9686. "frameworks": {
  9687. "net6.0": {
  9688. "targetAlias": "net6.0",
  9689. "projectReferences": {}
  9690. }
  9691. },
  9692. "warningProperties": {
  9693. "warnAsError": [
  9694. "NU1605"
  9695. ]
  9696. }
  9697. },
  9698. "frameworks": {
  9699. "net6.0": {
  9700. "targetAlias": "net6.0",
  9701. "dependencies": {
  9702. "Microsoft.EntityFrameworkCore": {
  9703. "target": "Package",
  9704. "version": "[6.0.4, )"
  9705. },
  9706. "Microsoft.EntityFrameworkCore.SqlServer": {
  9707. "target": "Package",
  9708. "version": "[6.0.4, )"
  9709. },
  9710. "Microsoft.EntityFrameworkCore.Tools": {
  9711. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  9712. "suppressParent": "All",
  9713. "target": "Package",
  9714. "version": "[6.0.4, )"
  9715. },
  9716. "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
  9717. "target": "Package",
  9718. "version": "[6.0.3, )"
  9719. },
  9720. "Swashbuckle.AspNetCore": {
  9721. "target": "Package",
  9722. "version": "[6.3.0, )"
  9723. }
  9724. },
  9725. "imports": [
  9726. "net461",
  9727. "net462",
  9728. "net47",
  9729. "net471",
  9730. "net472",
  9731. "net48"
  9732. ],
  9733. "assetTargetFallback": true,
  9734. "warn": true,
  9735. "frameworkReferences": {
  9736. "Microsoft.AspNetCore.App": {
  9737. "privateAssets": "none"
  9738. },
  9739. "Microsoft.NETCore.App": {
  9740. "privateAssets": "all"
  9741. }
  9742. },
  9743. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.202\\RuntimeIdentifierGraph.json"
  9744. }
  9745. }
  9746. }
  9747. }