You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

project.assets.json 503KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net6.0": {
  5. "AutoMapper/11.0.1": {
  6. "type": "package",
  7. "dependencies": {
  8. "Microsoft.CSharp": "4.7.0"
  9. },
  10. "compile": {
  11. "lib/netstandard2.1/AutoMapper.dll": {
  12. "related": ".xml"
  13. }
  14. },
  15. "runtime": {
  16. "lib/netstandard2.1/AutoMapper.dll": {
  17. "related": ".xml"
  18. }
  19. }
  20. },
  21. "Humanizer.Core/2.8.26": {
  22. "type": "package",
  23. "compile": {
  24. "lib/netstandard2.0/_._": {
  25. "related": ".xml"
  26. }
  27. },
  28. "runtime": {
  29. "lib/netstandard2.0/Humanizer.dll": {
  30. "related": ".xml"
  31. }
  32. }
  33. },
  34. "MailKit/3.4.1": {
  35. "type": "package",
  36. "dependencies": {
  37. "MimeKit": "3.4.1"
  38. },
  39. "compile": {
  40. "lib/net6.0/MailKit.dll": {
  41. "related": ".pdb;.xml"
  42. }
  43. },
  44. "runtime": {
  45. "lib/net6.0/MailKit.dll": {
  46. "related": ".pdb;.xml"
  47. }
  48. }
  49. },
  50. "MessagePack/2.1.152": {
  51. "type": "package",
  52. "dependencies": {
  53. "MessagePack.Annotations": "2.1.152",
  54. "Microsoft.Bcl.AsyncInterfaces": "1.0.0",
  55. "System.Memory": "4.5.3",
  56. "System.Reflection.Emit": "4.6.0",
  57. "System.Reflection.Emit.Lightweight": "4.6.0",
  58. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  59. "System.Threading.Tasks.Extensions": "4.5.3"
  60. },
  61. "compile": {
  62. "lib/netcoreapp2.1/MessagePack.dll": {
  63. "related": ".xml"
  64. }
  65. },
  66. "runtime": {
  67. "lib/netcoreapp2.1/MessagePack.dll": {
  68. "related": ".xml"
  69. }
  70. }
  71. },
  72. "MessagePack.Annotations/2.1.152": {
  73. "type": "package",
  74. "compile": {
  75. "lib/netstandard2.0/MessagePack.Annotations.dll": {
  76. "related": ".xml"
  77. }
  78. },
  79. "runtime": {
  80. "lib/netstandard2.0/MessagePack.Annotations.dll": {
  81. "related": ".xml"
  82. }
  83. }
  84. },
  85. "MessagePackAnalyzer/2.1.152": {
  86. "type": "package"
  87. },
  88. "Microsoft.AspNet.Identity.Core/2.2.3": {
  89. "type": "package",
  90. "compile": {
  91. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {
  92. "related": ".xml"
  93. }
  94. },
  95. "runtime": {
  96. "lib/net45/Microsoft.AspNet.Identity.Core.dll": {
  97. "related": ".xml"
  98. }
  99. }
  100. },
  101. "Microsoft.AspNetCore.Authentication.Google/6.0.9": {
  102. "type": "package",
  103. "compile": {
  104. "lib/net6.0/Microsoft.AspNetCore.Authentication.Google.dll": {
  105. "related": ".xml"
  106. }
  107. },
  108. "runtime": {
  109. "lib/net6.0/Microsoft.AspNetCore.Authentication.Google.dll": {
  110. "related": ".xml"
  111. }
  112. },
  113. "frameworkReferences": [
  114. "Microsoft.AspNetCore.App"
  115. ]
  116. },
  117. "Microsoft.AspNetCore.Cryptography.Internal/6.0.9": {
  118. "type": "package",
  119. "compile": {
  120. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  121. "related": ".xml"
  122. }
  123. },
  124. "runtime": {
  125. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  126. "related": ".xml"
  127. }
  128. }
  129. },
  130. "Microsoft.AspNetCore.Cryptography.KeyDerivation/6.0.9": {
  131. "type": "package",
  132. "dependencies": {
  133. "Microsoft.AspNetCore.Cryptography.Internal": "6.0.9"
  134. },
  135. "compile": {
  136. "lib/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  137. "related": ".xml"
  138. }
  139. },
  140. "runtime": {
  141. "lib/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {
  142. "related": ".xml"
  143. }
  144. }
  145. },
  146. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/6.0.9": {
  147. "type": "package",
  148. "dependencies": {
  149. "Microsoft.EntityFrameworkCore.Relational": "6.0.9",
  150. "Microsoft.Extensions.Identity.Stores": "6.0.9"
  151. },
  152. "compile": {
  153. "lib/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  154. "related": ".xml"
  155. }
  156. },
  157. "runtime": {
  158. "lib/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {
  159. "related": ".xml"
  160. }
  161. }
  162. },
  163. "Microsoft.AspNetCore.Identity.UI/6.0.9": {
  164. "type": "package",
  165. "dependencies": {
  166. "Microsoft.Extensions.FileProviders.Embedded": "6.0.9",
  167. "Microsoft.Extensions.Identity.Stores": "6.0.9"
  168. },
  169. "compile": {
  170. "lib/net6.0/Microsoft.AspNetCore.Identity.UI.dll": {
  171. "related": ".xml"
  172. }
  173. },
  174. "runtime": {
  175. "lib/net6.0/Microsoft.AspNetCore.Identity.UI.dll": {
  176. "related": ".xml"
  177. }
  178. },
  179. "frameworkReferences": [
  180. "Microsoft.AspNetCore.App"
  181. ],
  182. "build": {
  183. "build/Microsoft.AspNetCore.Identity.UI.props": {},
  184. "buildTransitive/Microsoft.AspNetCore.Identity.UI.targets": {}
  185. },
  186. "buildMultiTargeting": {
  187. "buildMultiTargeting/Microsoft.AspNetCore.Identity.UI.targets": {}
  188. }
  189. },
  190. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.9": {
  191. "type": "package",
  192. "dependencies": {
  193. "Microsoft.AspNetCore.Razor.Language": "6.0.9",
  194. "Microsoft.CodeAnalysis.Razor": "6.0.9"
  195. },
  196. "compile": {
  197. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  198. },
  199. "runtime": {
  200. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {}
  201. }
  202. },
  203. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/6.0.9": {
  204. "type": "package",
  205. "dependencies": {
  206. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "6.0.9",
  207. "Microsoft.CodeAnalysis.Razor": "6.0.9",
  208. "Microsoft.Extensions.DependencyModel": "6.0.0"
  209. },
  210. "compile": {
  211. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {
  212. "related": ".xml"
  213. }
  214. },
  215. "runtime": {
  216. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll": {
  217. "related": ".xml"
  218. }
  219. },
  220. "frameworkReferences": [
  221. "Microsoft.AspNetCore.App"
  222. ],
  223. "build": {
  224. "buildTransitive/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets": {}
  225. }
  226. },
  227. "Microsoft.AspNetCore.Razor.Language/6.0.9": {
  228. "type": "package",
  229. "compile": {
  230. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  231. },
  232. "runtime": {
  233. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  234. }
  235. },
  236. "Microsoft.Bcl.AsyncInterfaces/5.0.0": {
  237. "type": "package",
  238. "compile": {
  239. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  240. "related": ".xml"
  241. }
  242. },
  243. "runtime": {
  244. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  245. "related": ".xml"
  246. }
  247. }
  248. },
  249. "Microsoft.Build/17.0.0": {
  250. "type": "package",
  251. "dependencies": {
  252. "Microsoft.Build.Framework": "17.0.0",
  253. "Microsoft.NET.StringTools": "1.0.0",
  254. "Microsoft.Win32.Registry": "4.3.0",
  255. "System.Collections.Immutable": "5.0.0",
  256. "System.Configuration.ConfigurationManager": "4.7.0",
  257. "System.Reflection.Metadata": "1.6.0",
  258. "System.Security.Principal.Windows": "4.7.0",
  259. "System.Text.Encoding.CodePages": "4.0.1",
  260. "System.Text.Json": "5.0.2",
  261. "System.Threading.Tasks.Dataflow": "4.9.0"
  262. },
  263. "compile": {
  264. "lib/net6.0/Microsoft.Build.dll": {
  265. "related": ".pdb;.xml"
  266. }
  267. },
  268. "runtime": {
  269. "lib/net6.0/Microsoft.Build.dll": {
  270. "related": ".pdb;.xml"
  271. }
  272. }
  273. },
  274. "Microsoft.Build.Framework/17.0.0": {
  275. "type": "package",
  276. "dependencies": {
  277. "System.Security.Permissions": "4.7.0"
  278. },
  279. "compile": {
  280. "lib/netstandard2.0/Microsoft.Build.Framework.dll": {
  281. "related": ".pdb;.xml"
  282. }
  283. },
  284. "runtime": {
  285. "lib/netstandard2.0/Microsoft.Build.Framework.dll": {
  286. "related": ".pdb;.xml"
  287. }
  288. }
  289. },
  290. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  291. "type": "package",
  292. "build": {
  293. "build/_._": {}
  294. }
  295. },
  296. "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
  297. "type": "package",
  298. "compile": {
  299. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
  300. "related": ".xml"
  301. }
  302. },
  303. "runtime": {
  304. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": {
  305. "related": ".xml"
  306. }
  307. }
  308. },
  309. "Microsoft.CodeAnalysis.Common/4.0.0": {
  310. "type": "package",
  311. "dependencies": {
  312. "Microsoft.CodeAnalysis.Analyzers": "3.3.2",
  313. "System.Collections.Immutable": "5.0.0",
  314. "System.Memory": "4.5.4",
  315. "System.Reflection.Metadata": "5.0.0",
  316. "System.Runtime.CompilerServices.Unsafe": "5.0.0",
  317. "System.Text.Encoding.CodePages": "4.5.1",
  318. "System.Threading.Tasks.Extensions": "4.5.4"
  319. },
  320. "compile": {
  321. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  322. "related": ".pdb;.xml"
  323. }
  324. },
  325. "runtime": {
  326. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  327. "related": ".pdb;.xml"
  328. }
  329. },
  330. "resource": {
  331. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  332. "locale": "cs"
  333. },
  334. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  335. "locale": "de"
  336. },
  337. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  338. "locale": "es"
  339. },
  340. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  341. "locale": "fr"
  342. },
  343. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  344. "locale": "it"
  345. },
  346. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  347. "locale": "ja"
  348. },
  349. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  350. "locale": "ko"
  351. },
  352. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  353. "locale": "pl"
  354. },
  355. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  356. "locale": "pt-BR"
  357. },
  358. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  359. "locale": "ru"
  360. },
  361. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  362. "locale": "tr"
  363. },
  364. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  365. "locale": "zh-Hans"
  366. },
  367. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  368. "locale": "zh-Hant"
  369. }
  370. }
  371. },
  372. "Microsoft.CodeAnalysis.CSharp/4.0.0": {
  373. "type": "package",
  374. "dependencies": {
  375. "Microsoft.CodeAnalysis.Common": "[4.0.0]"
  376. },
  377. "compile": {
  378. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  379. "related": ".pdb;.xml"
  380. }
  381. },
  382. "runtime": {
  383. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  384. "related": ".pdb;.xml"
  385. }
  386. },
  387. "resource": {
  388. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  389. "locale": "cs"
  390. },
  391. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  392. "locale": "de"
  393. },
  394. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  395. "locale": "es"
  396. },
  397. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  398. "locale": "fr"
  399. },
  400. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  401. "locale": "it"
  402. },
  403. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  404. "locale": "ja"
  405. },
  406. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  407. "locale": "ko"
  408. },
  409. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  410. "locale": "pl"
  411. },
  412. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  413. "locale": "pt-BR"
  414. },
  415. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  416. "locale": "ru"
  417. },
  418. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  419. "locale": "tr"
  420. },
  421. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  422. "locale": "zh-Hans"
  423. },
  424. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  425. "locale": "zh-Hant"
  426. }
  427. }
  428. },
  429. "Microsoft.CodeAnalysis.CSharp.Features/4.0.0": {
  430. "type": "package",
  431. "dependencies": {
  432. "Humanizer.Core": "2.2.0",
  433. "Microsoft.CodeAnalysis.CSharp": "[4.0.0]",
  434. "Microsoft.CodeAnalysis.CSharp.Workspaces": "[4.0.0]",
  435. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  436. "Microsoft.CodeAnalysis.Features": "[4.0.0]",
  437. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]"
  438. },
  439. "compile": {
  440. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": {
  441. "related": ".pdb;.xml"
  442. }
  443. },
  444. "runtime": {
  445. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll": {
  446. "related": ".pdb;.xml"
  447. }
  448. },
  449. "resource": {
  450. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  451. "locale": "cs"
  452. },
  453. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  454. "locale": "de"
  455. },
  456. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  457. "locale": "es"
  458. },
  459. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  460. "locale": "fr"
  461. },
  462. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  463. "locale": "it"
  464. },
  465. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  466. "locale": "ja"
  467. },
  468. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  469. "locale": "ko"
  470. },
  471. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  472. "locale": "pl"
  473. },
  474. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  475. "locale": "pt-BR"
  476. },
  477. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  478. "locale": "ru"
  479. },
  480. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  481. "locale": "tr"
  482. },
  483. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  484. "locale": "zh-Hans"
  485. },
  486. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": {
  487. "locale": "zh-Hant"
  488. }
  489. }
  490. },
  491. "Microsoft.CodeAnalysis.CSharp.Scripting/4.0.0": {
  492. "type": "package",
  493. "dependencies": {
  494. "Microsoft.CSharp": "4.3.0",
  495. "Microsoft.CodeAnalysis.CSharp": "[4.0.0]",
  496. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  497. "Microsoft.CodeAnalysis.Scripting.Common": "[4.0.0]"
  498. },
  499. "compile": {
  500. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
  501. "related": ".pdb;.xml"
  502. }
  503. },
  504. "runtime": {
  505. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
  506. "related": ".pdb;.xml"
  507. }
  508. },
  509. "resource": {
  510. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  511. "locale": "cs"
  512. },
  513. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  514. "locale": "de"
  515. },
  516. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  517. "locale": "es"
  518. },
  519. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  520. "locale": "fr"
  521. },
  522. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  523. "locale": "it"
  524. },
  525. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  526. "locale": "ja"
  527. },
  528. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  529. "locale": "ko"
  530. },
  531. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  532. "locale": "pl"
  533. },
  534. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  535. "locale": "pt-BR"
  536. },
  537. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  538. "locale": "ru"
  539. },
  540. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  541. "locale": "tr"
  542. },
  543. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  544. "locale": "zh-Hans"
  545. },
  546. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
  547. "locale": "zh-Hant"
  548. }
  549. }
  550. },
  551. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.0.0": {
  552. "type": "package",
  553. "dependencies": {
  554. "Humanizer.Core": "2.2.0",
  555. "Microsoft.CodeAnalysis.CSharp": "[4.0.0]",
  556. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  557. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]"
  558. },
  559. "compile": {
  560. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  561. "related": ".pdb;.xml"
  562. }
  563. },
  564. "runtime": {
  565. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  566. "related": ".pdb;.xml"
  567. }
  568. },
  569. "resource": {
  570. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  571. "locale": "cs"
  572. },
  573. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  574. "locale": "de"
  575. },
  576. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  577. "locale": "es"
  578. },
  579. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  580. "locale": "fr"
  581. },
  582. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  583. "locale": "it"
  584. },
  585. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  586. "locale": "ja"
  587. },
  588. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  589. "locale": "ko"
  590. },
  591. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  592. "locale": "pl"
  593. },
  594. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  595. "locale": "pt-BR"
  596. },
  597. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  598. "locale": "ru"
  599. },
  600. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  601. "locale": "tr"
  602. },
  603. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  604. "locale": "zh-Hans"
  605. },
  606. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  607. "locale": "zh-Hant"
  608. }
  609. }
  610. },
  611. "Microsoft.CodeAnalysis.Features/4.0.0": {
  612. "type": "package",
  613. "dependencies": {
  614. "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0",
  615. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  616. "Microsoft.CodeAnalysis.Scripting.Common": "[4.0.0]",
  617. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]",
  618. "Microsoft.DiaSymReader": "1.3.0",
  619. "Microsoft.VisualStudio.Debugger.Contracts": "17.2.0",
  620. "System.Threading.Tasks.Extensions": "4.5.4"
  621. },
  622. "compile": {
  623. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": {
  624. "related": ".pdb;.xml"
  625. }
  626. },
  627. "runtime": {
  628. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll": {
  629. "related": ".pdb;.xml"
  630. }
  631. },
  632. "resource": {
  633. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll": {
  634. "locale": "cs"
  635. },
  636. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll": {
  637. "locale": "de"
  638. },
  639. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll": {
  640. "locale": "es"
  641. },
  642. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll": {
  643. "locale": "fr"
  644. },
  645. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll": {
  646. "locale": "it"
  647. },
  648. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll": {
  649. "locale": "ja"
  650. },
  651. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll": {
  652. "locale": "ko"
  653. },
  654. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll": {
  655. "locale": "pl"
  656. },
  657. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": {
  658. "locale": "pt-BR"
  659. },
  660. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll": {
  661. "locale": "ru"
  662. },
  663. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll": {
  664. "locale": "tr"
  665. },
  666. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": {
  667. "locale": "zh-Hans"
  668. },
  669. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": {
  670. "locale": "zh-Hant"
  671. }
  672. }
  673. },
  674. "Microsoft.CodeAnalysis.Razor/6.0.9": {
  675. "type": "package",
  676. "dependencies": {
  677. "Microsoft.AspNetCore.Razor.Language": "6.0.9",
  678. "Microsoft.CodeAnalysis.CSharp": "4.0.0",
  679. "Microsoft.CodeAnalysis.Common": "4.0.0"
  680. },
  681. "compile": {
  682. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  683. },
  684. "runtime": {
  685. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  686. }
  687. },
  688. "Microsoft.CodeAnalysis.Scripting.Common/4.0.0": {
  689. "type": "package",
  690. "dependencies": {
  691. "Microsoft.CodeAnalysis.Common": "[4.0.0]"
  692. },
  693. "compile": {
  694. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
  695. "related": ".pdb;.xml"
  696. }
  697. },
  698. "runtime": {
  699. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
  700. "related": ".pdb;.xml"
  701. }
  702. },
  703. "resource": {
  704. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  705. "locale": "cs"
  706. },
  707. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  708. "locale": "de"
  709. },
  710. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  711. "locale": "es"
  712. },
  713. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  714. "locale": "fr"
  715. },
  716. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  717. "locale": "it"
  718. },
  719. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  720. "locale": "ja"
  721. },
  722. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  723. "locale": "ko"
  724. },
  725. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  726. "locale": "pl"
  727. },
  728. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  729. "locale": "pt-BR"
  730. },
  731. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  732. "locale": "ru"
  733. },
  734. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  735. "locale": "tr"
  736. },
  737. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  738. "locale": "zh-Hans"
  739. },
  740. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
  741. "locale": "zh-Hant"
  742. }
  743. }
  744. },
  745. "Microsoft.CodeAnalysis.VisualBasic/4.0.0": {
  746. "type": "package",
  747. "dependencies": {
  748. "Microsoft.CodeAnalysis.Common": "[4.0.0]"
  749. },
  750. "compile": {
  751. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.dll": {
  752. "related": ".pdb;.xml"
  753. }
  754. },
  755. "runtime": {
  756. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.dll": {
  757. "related": ".pdb;.xml"
  758. }
  759. },
  760. "resource": {
  761. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  762. "locale": "cs"
  763. },
  764. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  765. "locale": "de"
  766. },
  767. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  768. "locale": "es"
  769. },
  770. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  771. "locale": "fr"
  772. },
  773. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  774. "locale": "it"
  775. },
  776. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  777. "locale": "ja"
  778. },
  779. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  780. "locale": "ko"
  781. },
  782. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  783. "locale": "pl"
  784. },
  785. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  786. "locale": "pt-BR"
  787. },
  788. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  789. "locale": "ru"
  790. },
  791. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  792. "locale": "tr"
  793. },
  794. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  795. "locale": "zh-Hans"
  796. },
  797. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll": {
  798. "locale": "zh-Hant"
  799. }
  800. }
  801. },
  802. "Microsoft.CodeAnalysis.VisualBasic.Features/4.0.0": {
  803. "type": "package",
  804. "dependencies": {
  805. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  806. "Microsoft.CodeAnalysis.Features": "[4.0.0]",
  807. "Microsoft.CodeAnalysis.VisualBasic": "[4.0.0]",
  808. "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "[4.0.0]",
  809. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]"
  810. },
  811. "compile": {
  812. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.dll": {
  813. "related": ".pdb;.xml"
  814. }
  815. },
  816. "runtime": {
  817. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.dll": {
  818. "related": ".pdb;.xml"
  819. }
  820. },
  821. "resource": {
  822. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  823. "locale": "cs"
  824. },
  825. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  826. "locale": "de"
  827. },
  828. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  829. "locale": "es"
  830. },
  831. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  832. "locale": "fr"
  833. },
  834. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  835. "locale": "it"
  836. },
  837. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  838. "locale": "ja"
  839. },
  840. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  841. "locale": "ko"
  842. },
  843. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  844. "locale": "pl"
  845. },
  846. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  847. "locale": "pt-BR"
  848. },
  849. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  850. "locale": "ru"
  851. },
  852. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  853. "locale": "tr"
  854. },
  855. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  856. "locale": "zh-Hans"
  857. },
  858. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll": {
  859. "locale": "zh-Hant"
  860. }
  861. }
  862. },
  863. "Microsoft.CodeAnalysis.VisualBasic.Workspaces/4.0.0": {
  864. "type": "package",
  865. "dependencies": {
  866. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  867. "Microsoft.CodeAnalysis.VisualBasic": "[4.0.0]",
  868. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]"
  869. },
  870. "compile": {
  871. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": {
  872. "related": ".pdb;.xml"
  873. }
  874. },
  875. "runtime": {
  876. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll": {
  877. "related": ".pdb;.xml"
  878. }
  879. },
  880. "resource": {
  881. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  882. "locale": "cs"
  883. },
  884. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  885. "locale": "de"
  886. },
  887. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  888. "locale": "es"
  889. },
  890. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  891. "locale": "fr"
  892. },
  893. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  894. "locale": "it"
  895. },
  896. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  897. "locale": "ja"
  898. },
  899. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  900. "locale": "ko"
  901. },
  902. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  903. "locale": "pl"
  904. },
  905. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  906. "locale": "pt-BR"
  907. },
  908. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  909. "locale": "ru"
  910. },
  911. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  912. "locale": "tr"
  913. },
  914. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  915. "locale": "zh-Hans"
  916. },
  917. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll": {
  918. "locale": "zh-Hant"
  919. }
  920. }
  921. },
  922. "Microsoft.CodeAnalysis.Workspaces.Common/4.0.0": {
  923. "type": "package",
  924. "dependencies": {
  925. "Humanizer.Core": "2.2.0",
  926. "Microsoft.Bcl.AsyncInterfaces": "5.0.0",
  927. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  928. "System.Composition": "1.0.31",
  929. "System.IO.Pipelines": "5.0.1"
  930. },
  931. "compile": {
  932. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  933. "related": ".pdb;.xml"
  934. }
  935. },
  936. "runtime": {
  937. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  938. "related": ".pdb;.xml"
  939. }
  940. },
  941. "resource": {
  942. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  943. "locale": "cs"
  944. },
  945. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  946. "locale": "de"
  947. },
  948. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  949. "locale": "es"
  950. },
  951. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  952. "locale": "fr"
  953. },
  954. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  955. "locale": "it"
  956. },
  957. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  958. "locale": "ja"
  959. },
  960. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  961. "locale": "ko"
  962. },
  963. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  964. "locale": "pl"
  965. },
  966. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  967. "locale": "pt-BR"
  968. },
  969. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  970. "locale": "ru"
  971. },
  972. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  973. "locale": "tr"
  974. },
  975. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  976. "locale": "zh-Hans"
  977. },
  978. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  979. "locale": "zh-Hant"
  980. }
  981. }
  982. },
  983. "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.0.0": {
  984. "type": "package",
  985. "dependencies": {
  986. "Microsoft.Build.Framework": "16.5.0",
  987. "Microsoft.CodeAnalysis.Common": "[4.0.0]",
  988. "Microsoft.CodeAnalysis.Workspaces.Common": "[4.0.0]",
  989. "System.Text.Json": "4.7.0"
  990. },
  991. "compile": {
  992. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {
  993. "related": ".pdb;.xml"
  994. }
  995. },
  996. "runtime": {
  997. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {
  998. "related": ".pdb;.xml"
  999. }
  1000. },
  1001. "resource": {
  1002. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1003. "locale": "cs"
  1004. },
  1005. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1006. "locale": "de"
  1007. },
  1008. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1009. "locale": "es"
  1010. },
  1011. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1012. "locale": "fr"
  1013. },
  1014. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1015. "locale": "it"
  1016. },
  1017. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1018. "locale": "ja"
  1019. },
  1020. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1021. "locale": "ko"
  1022. },
  1023. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1024. "locale": "pl"
  1025. },
  1026. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1027. "locale": "pt-BR"
  1028. },
  1029. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1030. "locale": "ru"
  1031. },
  1032. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1033. "locale": "tr"
  1034. },
  1035. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1036. "locale": "zh-Hans"
  1037. },
  1038. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": {
  1039. "locale": "zh-Hant"
  1040. }
  1041. }
  1042. },
  1043. "Microsoft.CSharp/4.7.0": {
  1044. "type": "package",
  1045. "compile": {
  1046. "ref/netcoreapp2.0/_._": {}
  1047. },
  1048. "runtime": {
  1049. "lib/netcoreapp2.0/_._": {}
  1050. }
  1051. },
  1052. "Microsoft.Data.SqlClient/2.1.4": {
  1053. "type": "package",
  1054. "dependencies": {
  1055. "Microsoft.Data.SqlClient.SNI.runtime": "2.1.1",
  1056. "Microsoft.Identity.Client": "4.21.1",
  1057. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  1058. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.8.0",
  1059. "Microsoft.Win32.Registry": "4.7.0",
  1060. "System.Configuration.ConfigurationManager": "4.7.0",
  1061. "System.Diagnostics.DiagnosticSource": "4.7.0",
  1062. "System.Runtime.Caching": "4.7.0",
  1063. "System.Security.Principal.Windows": "4.7.0",
  1064. "System.Text.Encoding.CodePages": "4.7.0"
  1065. },
  1066. "compile": {
  1067. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  1068. "related": ".pdb;.xml"
  1069. }
  1070. },
  1071. "runtime": {
  1072. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  1073. "related": ".pdb;.xml"
  1074. }
  1075. },
  1076. "runtimeTargets": {
  1077. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  1078. "assetType": "runtime",
  1079. "rid": "unix"
  1080. },
  1081. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  1082. "assetType": "runtime",
  1083. "rid": "win"
  1084. }
  1085. }
  1086. },
  1087. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  1088. "type": "package",
  1089. "runtimeTargets": {
  1090. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  1091. "assetType": "native",
  1092. "rid": "win-arm"
  1093. },
  1094. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  1095. "assetType": "native",
  1096. "rid": "win-arm64"
  1097. },
  1098. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  1099. "assetType": "native",
  1100. "rid": "win-x64"
  1101. },
  1102. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  1103. "assetType": "native",
  1104. "rid": "win-x86"
  1105. }
  1106. }
  1107. },
  1108. "Microsoft.DiaSymReader/1.3.0": {
  1109. "type": "package",
  1110. "dependencies": {
  1111. "NETStandard.Library": "1.6.1"
  1112. },
  1113. "compile": {
  1114. "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {
  1115. "related": ".pdb;.xml"
  1116. }
  1117. },
  1118. "runtime": {
  1119. "lib/netstandard1.1/Microsoft.DiaSymReader.dll": {
  1120. "related": ".pdb;.xml"
  1121. }
  1122. }
  1123. },
  1124. "Microsoft.DotNet.Scaffolding.Shared/6.0.9": {
  1125. "type": "package",
  1126. "dependencies": {
  1127. "Microsoft.CodeAnalysis.CSharp.Features": "4.0.0",
  1128. "Microsoft.CodeAnalysis.CSharp.Scripting": "4.0.0",
  1129. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.0.0",
  1130. "Microsoft.CodeAnalysis.Features": "4.0.0",
  1131. "Microsoft.CodeAnalysis.VisualBasic.Features": "4.0.0",
  1132. "Microsoft.CodeAnalysis.VisualBasic.Workspaces": "4.0.0",
  1133. "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.0.0",
  1134. "Newtonsoft.Json": "13.0.1",
  1135. "NuGet.Packaging": "6.2.1",
  1136. "NuGet.ProjectModel": "5.11.0",
  1137. "System.Collections.Immutable": "6.0.0",
  1138. "System.Configuration.ConfigurationManager": "6.0.0",
  1139. "System.Private.Uri": "4.3.2",
  1140. "System.Security.Cryptography.X509Certificates": "4.3.0"
  1141. },
  1142. "compile": {
  1143. "lib/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
  1144. "related": ".xml"
  1145. }
  1146. },
  1147. "runtime": {
  1148. "lib/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll": {
  1149. "related": ".xml"
  1150. }
  1151. }
  1152. },
  1153. "Microsoft.EntityFrameworkCore/6.0.9": {
  1154. "type": "package",
  1155. "dependencies": {
  1156. "Microsoft.EntityFrameworkCore.Abstractions": "6.0.9",
  1157. "Microsoft.EntityFrameworkCore.Analyzers": "6.0.9",
  1158. "Microsoft.Extensions.Caching.Memory": "6.0.1",
  1159. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1160. "Microsoft.Extensions.Logging": "6.0.0",
  1161. "System.Collections.Immutable": "6.0.0",
  1162. "System.Diagnostics.DiagnosticSource": "6.0.0"
  1163. },
  1164. "compile": {
  1165. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  1166. "related": ".xml"
  1167. }
  1168. },
  1169. "runtime": {
  1170. "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
  1171. "related": ".xml"
  1172. }
  1173. },
  1174. "build": {
  1175. "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {}
  1176. }
  1177. },
  1178. "Microsoft.EntityFrameworkCore.Abstractions/6.0.9": {
  1179. "type": "package",
  1180. "compile": {
  1181. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  1182. "related": ".xml"
  1183. }
  1184. },
  1185. "runtime": {
  1186. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  1187. "related": ".xml"
  1188. }
  1189. }
  1190. },
  1191. "Microsoft.EntityFrameworkCore.Analyzers/6.0.9": {
  1192. "type": "package",
  1193. "compile": {
  1194. "lib/netstandard2.0/_._": {}
  1195. },
  1196. "runtime": {
  1197. "lib/netstandard2.0/_._": {}
  1198. }
  1199. },
  1200. "Microsoft.EntityFrameworkCore.Design/6.0.9": {
  1201. "type": "package",
  1202. "dependencies": {
  1203. "Humanizer.Core": "2.8.26",
  1204. "Microsoft.EntityFrameworkCore.Relational": "6.0.9"
  1205. },
  1206. "compile": {
  1207. "lib/net6.0/_._": {
  1208. "related": ".xml"
  1209. }
  1210. },
  1211. "runtime": {
  1212. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
  1213. "related": ".xml"
  1214. }
  1215. },
  1216. "build": {
  1217. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
  1218. }
  1219. },
  1220. "Microsoft.EntityFrameworkCore.Relational/6.0.9": {
  1221. "type": "package",
  1222. "dependencies": {
  1223. "Microsoft.EntityFrameworkCore": "6.0.9",
  1224. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  1225. },
  1226. "compile": {
  1227. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  1228. "related": ".xml"
  1229. }
  1230. },
  1231. "runtime": {
  1232. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
  1233. "related": ".xml"
  1234. }
  1235. }
  1236. },
  1237. "Microsoft.EntityFrameworkCore.SqlServer/6.0.9": {
  1238. "type": "package",
  1239. "dependencies": {
  1240. "Microsoft.Data.SqlClient": "2.1.4",
  1241. "Microsoft.EntityFrameworkCore.Relational": "6.0.9"
  1242. },
  1243. "compile": {
  1244. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  1245. "related": ".xml"
  1246. }
  1247. },
  1248. "runtime": {
  1249. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  1250. "related": ".xml"
  1251. }
  1252. }
  1253. },
  1254. "Microsoft.EntityFrameworkCore.Tools/6.0.9": {
  1255. "type": "package",
  1256. "dependencies": {
  1257. "Microsoft.EntityFrameworkCore.Design": "6.0.9"
  1258. },
  1259. "compile": {
  1260. "lib/net6.0/_._": {}
  1261. },
  1262. "runtime": {
  1263. "lib/net6.0/_._": {}
  1264. }
  1265. },
  1266. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  1267. "type": "package",
  1268. "dependencies": {
  1269. "Microsoft.Extensions.Primitives": "6.0.0"
  1270. },
  1271. "compile": {
  1272. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1273. "related": ".xml"
  1274. }
  1275. },
  1276. "runtime": {
  1277. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1278. "related": ".xml"
  1279. }
  1280. }
  1281. },
  1282. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  1283. "type": "package",
  1284. "dependencies": {
  1285. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  1286. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1287. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1288. "Microsoft.Extensions.Options": "6.0.0",
  1289. "Microsoft.Extensions.Primitives": "6.0.0"
  1290. },
  1291. "compile": {
  1292. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  1293. "related": ".xml"
  1294. }
  1295. },
  1296. "runtime": {
  1297. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  1298. "related": ".xml"
  1299. }
  1300. }
  1301. },
  1302. "Microsoft.Extensions.Configuration/6.0.1": {
  1303. "type": "package",
  1304. "dependencies": {
  1305. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1306. "Microsoft.Extensions.Primitives": "6.0.0"
  1307. },
  1308. "compile": {
  1309. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1310. "related": ".xml"
  1311. }
  1312. },
  1313. "runtime": {
  1314. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
  1315. "related": ".xml"
  1316. }
  1317. }
  1318. },
  1319. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  1320. "type": "package",
  1321. "dependencies": {
  1322. "Microsoft.Extensions.Primitives": "6.0.0"
  1323. },
  1324. "compile": {
  1325. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1326. "related": ".xml"
  1327. }
  1328. },
  1329. "runtime": {
  1330. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1331. "related": ".xml"
  1332. }
  1333. }
  1334. },
  1335. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  1336. "type": "package",
  1337. "dependencies": {
  1338. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
  1339. },
  1340. "compile": {
  1341. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1342. "related": ".xml"
  1343. }
  1344. },
  1345. "runtime": {
  1346. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
  1347. "related": ".xml"
  1348. }
  1349. }
  1350. },
  1351. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  1352. "type": "package",
  1353. "dependencies": {
  1354. "Microsoft.Extensions.Configuration": "6.0.0",
  1355. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1356. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  1357. "Microsoft.Extensions.FileProviders.Physical": "6.0.0",
  1358. "Microsoft.Extensions.Primitives": "6.0.0"
  1359. },
  1360. "compile": {
  1361. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1362. "related": ".xml"
  1363. }
  1364. },
  1365. "runtime": {
  1366. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
  1367. "related": ".xml"
  1368. }
  1369. }
  1370. },
  1371. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  1372. "type": "package",
  1373. "dependencies": {
  1374. "Microsoft.Extensions.Configuration": "6.0.0",
  1375. "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
  1376. "Microsoft.Extensions.Configuration.FileExtensions": "6.0.0",
  1377. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  1378. "System.Text.Json": "6.0.0"
  1379. },
  1380. "compile": {
  1381. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1382. "related": ".xml"
  1383. }
  1384. },
  1385. "runtime": {
  1386. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll": {
  1387. "related": ".xml"
  1388. }
  1389. }
  1390. },
  1391. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  1392. "type": "package",
  1393. "dependencies": {
  1394. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1395. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1396. },
  1397. "compile": {
  1398. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  1399. "related": ".xml"
  1400. }
  1401. },
  1402. "runtime": {
  1403. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {
  1404. "related": ".xml"
  1405. }
  1406. },
  1407. "build": {
  1408. "buildTransitive/netcoreapp3.1/_._": {}
  1409. }
  1410. },
  1411. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  1412. "type": "package",
  1413. "compile": {
  1414. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1415. "related": ".xml"
  1416. }
  1417. },
  1418. "runtime": {
  1419. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1420. "related": ".xml"
  1421. }
  1422. },
  1423. "build": {
  1424. "buildTransitive/netcoreapp3.1/_._": {}
  1425. }
  1426. },
  1427. "Microsoft.Extensions.DependencyModel/6.0.0": {
  1428. "type": "package",
  1429. "dependencies": {
  1430. "System.Buffers": "4.5.1",
  1431. "System.Memory": "4.5.4",
  1432. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  1433. "System.Text.Encodings.Web": "6.0.0",
  1434. "System.Text.Json": "6.0.0"
  1435. },
  1436. "compile": {
  1437. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  1438. "related": ".xml"
  1439. }
  1440. },
  1441. "runtime": {
  1442. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {
  1443. "related": ".xml"
  1444. }
  1445. }
  1446. },
  1447. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  1448. "type": "package",
  1449. "dependencies": {
  1450. "Microsoft.Extensions.Primitives": "6.0.0"
  1451. },
  1452. "compile": {
  1453. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1454. "related": ".xml"
  1455. }
  1456. },
  1457. "runtime": {
  1458. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1459. "related": ".xml"
  1460. }
  1461. },
  1462. "build": {
  1463. "buildTransitive/netcoreapp3.1/_._": {}
  1464. }
  1465. },
  1466. "Microsoft.Extensions.FileProviders.Embedded/6.0.9": {
  1467. "type": "package",
  1468. "dependencies": {
  1469. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0"
  1470. },
  1471. "compile": {
  1472. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1473. "related": ".xml"
  1474. }
  1475. },
  1476. "runtime": {
  1477. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll": {
  1478. "related": ".xml"
  1479. }
  1480. },
  1481. "build": {
  1482. "build/netstandard2.0/_._": {}
  1483. },
  1484. "buildMultiTargeting": {
  1485. "buildMultiTargeting/_._": {}
  1486. }
  1487. },
  1488. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  1489. "type": "package",
  1490. "dependencies": {
  1491. "Microsoft.Extensions.FileProviders.Abstractions": "6.0.0",
  1492. "Microsoft.Extensions.FileSystemGlobbing": "6.0.0",
  1493. "Microsoft.Extensions.Primitives": "6.0.0"
  1494. },
  1495. "compile": {
  1496. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1497. "related": ".xml"
  1498. }
  1499. },
  1500. "runtime": {
  1501. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll": {
  1502. "related": ".xml"
  1503. }
  1504. },
  1505. "build": {
  1506. "buildTransitive/netcoreapp3.1/_._": {}
  1507. }
  1508. },
  1509. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  1510. "type": "package",
  1511. "compile": {
  1512. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1513. "related": ".xml"
  1514. }
  1515. },
  1516. "runtime": {
  1517. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1518. "related": ".xml"
  1519. }
  1520. },
  1521. "build": {
  1522. "buildTransitive/netcoreapp3.1/_._": {}
  1523. }
  1524. },
  1525. "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
  1526. "type": "package",
  1527. "dependencies": {
  1528. "Microsoft.Extensions.Configuration.Abstractions": "3.1.8",
  1529. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
  1530. "Microsoft.Extensions.FileProviders.Abstractions": "3.1.8",
  1531. "Microsoft.Extensions.Logging.Abstractions": "3.1.8"
  1532. },
  1533. "compile": {
  1534. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1535. "related": ".xml"
  1536. }
  1537. },
  1538. "runtime": {
  1539. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1540. "related": ".xml"
  1541. }
  1542. }
  1543. },
  1544. "Microsoft.Extensions.Identity.Core/6.0.9": {
  1545. "type": "package",
  1546. "dependencies": {
  1547. "Microsoft.AspNetCore.Cryptography.KeyDerivation": "6.0.9",
  1548. "Microsoft.Extensions.Logging": "6.0.0",
  1549. "Microsoft.Extensions.Options": "6.0.0"
  1550. },
  1551. "compile": {
  1552. "lib/net6.0/Microsoft.Extensions.Identity.Core.dll": {
  1553. "related": ".xml"
  1554. }
  1555. },
  1556. "runtime": {
  1557. "lib/net6.0/Microsoft.Extensions.Identity.Core.dll": {
  1558. "related": ".xml"
  1559. }
  1560. }
  1561. },
  1562. "Microsoft.Extensions.Identity.Stores/6.0.9": {
  1563. "type": "package",
  1564. "dependencies": {
  1565. "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
  1566. "Microsoft.Extensions.Identity.Core": "6.0.9",
  1567. "Microsoft.Extensions.Logging": "6.0.0"
  1568. },
  1569. "compile": {
  1570. "lib/net6.0/Microsoft.Extensions.Identity.Stores.dll": {
  1571. "related": ".xml"
  1572. }
  1573. },
  1574. "runtime": {
  1575. "lib/net6.0/Microsoft.Extensions.Identity.Stores.dll": {
  1576. "related": ".xml"
  1577. }
  1578. }
  1579. },
  1580. "Microsoft.Extensions.Logging/6.0.0": {
  1581. "type": "package",
  1582. "dependencies": {
  1583. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1584. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1585. "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
  1586. "Microsoft.Extensions.Options": "6.0.0",
  1587. "System.Diagnostics.DiagnosticSource": "6.0.0"
  1588. },
  1589. "compile": {
  1590. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1591. "related": ".xml"
  1592. }
  1593. },
  1594. "runtime": {
  1595. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1596. "related": ".xml"
  1597. }
  1598. }
  1599. },
  1600. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  1601. "type": "package",
  1602. "compile": {
  1603. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1604. "related": ".xml"
  1605. }
  1606. },
  1607. "runtime": {
  1608. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1609. "related": ".xml"
  1610. }
  1611. },
  1612. "build": {
  1613. "buildTransitive/netcoreapp3.1/_._": {}
  1614. }
  1615. },
  1616. "Microsoft.Extensions.Options/6.0.0": {
  1617. "type": "package",
  1618. "dependencies": {
  1619. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  1620. "Microsoft.Extensions.Primitives": "6.0.0"
  1621. },
  1622. "compile": {
  1623. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1624. "related": ".xml"
  1625. }
  1626. },
  1627. "runtime": {
  1628. "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {
  1629. "related": ".xml"
  1630. }
  1631. }
  1632. },
  1633. "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.0": {
  1634. "type": "package",
  1635. "dependencies": {
  1636. "Microsoft.Extensions.Configuration.Abstractions": "2.0.0",
  1637. "Microsoft.Extensions.Configuration.Binder": "2.0.0",
  1638. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
  1639. "Microsoft.Extensions.Options": "2.0.0"
  1640. },
  1641. "compile": {
  1642. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1643. "related": ".xml"
  1644. }
  1645. },
  1646. "runtime": {
  1647. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
  1648. "related": ".xml"
  1649. }
  1650. }
  1651. },
  1652. "Microsoft.Extensions.Primitives/6.0.0": {
  1653. "type": "package",
  1654. "dependencies": {
  1655. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  1656. },
  1657. "compile": {
  1658. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  1659. "related": ".xml"
  1660. }
  1661. },
  1662. "runtime": {
  1663. "lib/net6.0/Microsoft.Extensions.Primitives.dll": {
  1664. "related": ".xml"
  1665. }
  1666. },
  1667. "build": {
  1668. "buildTransitive/netcoreapp3.1/_._": {}
  1669. }
  1670. },
  1671. "Microsoft.Identity.Client/4.21.1": {
  1672. "type": "package",
  1673. "compile": {
  1674. "ref/netcoreapp2.1/_._": {
  1675. "related": ".xml"
  1676. }
  1677. },
  1678. "runtime": {
  1679. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  1680. "related": ".xml"
  1681. }
  1682. }
  1683. },
  1684. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  1685. "type": "package",
  1686. "dependencies": {
  1687. "Microsoft.IdentityModel.Tokens": "6.8.0"
  1688. },
  1689. "compile": {
  1690. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1691. "related": ".xml"
  1692. }
  1693. },
  1694. "runtime": {
  1695. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1696. "related": ".xml"
  1697. }
  1698. }
  1699. },
  1700. "Microsoft.IdentityModel.Logging/6.8.0": {
  1701. "type": "package",
  1702. "compile": {
  1703. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1704. "related": ".xml"
  1705. }
  1706. },
  1707. "runtime": {
  1708. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1709. "related": ".xml"
  1710. }
  1711. }
  1712. },
  1713. "Microsoft.IdentityModel.Protocols/6.8.0": {
  1714. "type": "package",
  1715. "dependencies": {
  1716. "Microsoft.IdentityModel.Logging": "6.8.0",
  1717. "Microsoft.IdentityModel.Tokens": "6.8.0"
  1718. },
  1719. "compile": {
  1720. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1721. "related": ".xml"
  1722. }
  1723. },
  1724. "runtime": {
  1725. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1726. "related": ".xml"
  1727. }
  1728. }
  1729. },
  1730. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  1731. "type": "package",
  1732. "dependencies": {
  1733. "Microsoft.IdentityModel.Protocols": "6.8.0",
  1734. "System.IdentityModel.Tokens.Jwt": "6.8.0"
  1735. },
  1736. "compile": {
  1737. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1738. "related": ".xml"
  1739. }
  1740. },
  1741. "runtime": {
  1742. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1743. "related": ".xml"
  1744. }
  1745. }
  1746. },
  1747. "Microsoft.IdentityModel.Tokens/6.8.0": {
  1748. "type": "package",
  1749. "dependencies": {
  1750. "Microsoft.CSharp": "4.5.0",
  1751. "Microsoft.IdentityModel.Logging": "6.8.0",
  1752. "System.Security.Cryptography.Cng": "4.5.0"
  1753. },
  1754. "compile": {
  1755. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1756. "related": ".xml"
  1757. }
  1758. },
  1759. "runtime": {
  1760. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1761. "related": ".xml"
  1762. }
  1763. }
  1764. },
  1765. "Microsoft.NET.StringTools/1.0.0": {
  1766. "type": "package",
  1767. "dependencies": {
  1768. "System.Memory": "4.5.4",
  1769. "System.Runtime.CompilerServices.Unsafe": "5.0.0"
  1770. },
  1771. "compile": {
  1772. "lib/netstandard2.0/Microsoft.NET.StringTools.dll": {
  1773. "related": ".pdb"
  1774. }
  1775. },
  1776. "runtime": {
  1777. "lib/netstandard2.0/Microsoft.NET.StringTools.dll": {
  1778. "related": ".pdb"
  1779. }
  1780. }
  1781. },
  1782. "Microsoft.NETCore.Platforms/3.1.0": {
  1783. "type": "package",
  1784. "compile": {
  1785. "lib/netstandard1.0/_._": {}
  1786. },
  1787. "runtime": {
  1788. "lib/netstandard1.0/_._": {}
  1789. }
  1790. },
  1791. "Microsoft.NETCore.Targets/1.1.3": {
  1792. "type": "package",
  1793. "compile": {
  1794. "lib/netstandard1.0/_._": {}
  1795. },
  1796. "runtime": {
  1797. "lib/netstandard1.0/_._": {}
  1798. }
  1799. },
  1800. "Microsoft.VisualStudio.Debugger.Contracts/17.2.0": {
  1801. "type": "package",
  1802. "dependencies": {
  1803. "MessagePack": "2.1.152",
  1804. "MessagePackAnalyzer": "2.1.152",
  1805. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  1806. "System.Collections.Immutable": "5.0.0"
  1807. },
  1808. "compile": {
  1809. "lib/netstandard2.0/Microsoft.VisualStudio.Debugger.Contracts.dll": {
  1810. "related": ".pdb"
  1811. }
  1812. },
  1813. "runtime": {
  1814. "lib/netstandard2.0/Microsoft.VisualStudio.Debugger.Contracts.dll": {
  1815. "related": ".pdb"
  1816. }
  1817. }
  1818. },
  1819. "Microsoft.VisualStudio.Web.CodeGeneration/6.0.9": {
  1820. "type": "package",
  1821. "dependencies": {
  1822. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1823. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "6.0.9",
  1824. "NuGet.Packaging": "6.2.1",
  1825. "System.Collections.Immutable": "6.0.0",
  1826. "System.Configuration.ConfigurationManager": "6.0.0",
  1827. "System.Private.Uri": "4.3.2",
  1828. "System.Security.Cryptography.X509Certificates": "4.3.0"
  1829. },
  1830. "compile": {
  1831. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
  1832. "related": ".xml"
  1833. }
  1834. },
  1835. "runtime": {
  1836. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
  1837. "related": ".xml"
  1838. }
  1839. }
  1840. },
  1841. "Microsoft.VisualStudio.Web.CodeGeneration.Core/6.0.9": {
  1842. "type": "package",
  1843. "dependencies": {
  1844. "Microsoft.Extensions.DependencyInjection": "6.0.0",
  1845. "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "6.0.9",
  1846. "Newtonsoft.Json": "13.0.1",
  1847. "NuGet.Packaging": "6.2.1",
  1848. "System.Configuration.ConfigurationManager": "6.0.0",
  1849. "System.Private.Uri": "4.3.2",
  1850. "System.Security.Cryptography.X509Certificates": "4.3.0"
  1851. },
  1852. "compile": {
  1853. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
  1854. "related": ".xml"
  1855. }
  1856. },
  1857. "runtime": {
  1858. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
  1859. "related": ".xml"
  1860. }
  1861. }
  1862. },
  1863. "Microsoft.VisualStudio.Web.CodeGeneration.Design/6.0.9": {
  1864. "type": "package",
  1865. "dependencies": {
  1866. "Microsoft.DotNet.Scaffolding.Shared": "6.0.9",
  1867. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "6.0.9",
  1868. "NuGet.Packaging": "6.2.1",
  1869. "System.Configuration.ConfigurationManager": "6.0.0",
  1870. "System.Private.Uri": "4.3.2",
  1871. "System.Security.Cryptography.X509Certificates": "4.3.0"
  1872. },
  1873. "compile": {
  1874. "lib/net6.0/dotnet-aspnet-codegenerator-design.dll": {
  1875. "related": ".xml"
  1876. }
  1877. },
  1878. "runtime": {
  1879. "lib/net6.0/dotnet-aspnet-codegenerator-design.dll": {
  1880. "related": ".xml"
  1881. }
  1882. }
  1883. },
  1884. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/6.0.9": {
  1885. "type": "package",
  1886. "dependencies": {
  1887. "Microsoft.DotNet.Scaffolding.Shared": "6.0.9",
  1888. "Microsoft.VisualStudio.Web.CodeGeneration.Core": "6.0.9",
  1889. "NuGet.Packaging": "6.2.1",
  1890. "System.Configuration.ConfigurationManager": "6.0.0",
  1891. "System.Private.Uri": "4.3.2",
  1892. "System.Security.Cryptography.X509Certificates": "4.3.0"
  1893. },
  1894. "compile": {
  1895. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
  1896. "related": ".runtimeconfig.json;.xml"
  1897. }
  1898. },
  1899. "runtime": {
  1900. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
  1901. "related": ".runtimeconfig.json;.xml"
  1902. }
  1903. }
  1904. },
  1905. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/6.0.9": {
  1906. "type": "package",
  1907. "dependencies": {
  1908. "Microsoft.AspNetCore.Razor.Language": "6.0.0",
  1909. "Microsoft.CodeAnalysis.CSharp": "4.0.0",
  1910. "Microsoft.CodeAnalysis.Razor": "6.0.0",
  1911. "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "6.0.9",
  1912. "NuGet.Packaging": "6.2.1",
  1913. "System.Configuration.ConfigurationManager": "6.0.0",
  1914. "System.Private.Uri": "4.3.2",
  1915. "System.Security.Cryptography.X509Certificates": "4.3.0"
  1916. },
  1917. "compile": {
  1918. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
  1919. "related": ".xml"
  1920. }
  1921. },
  1922. "runtime": {
  1923. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
  1924. "related": ".xml"
  1925. }
  1926. }
  1927. },
  1928. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/6.0.9": {
  1929. "type": "package",
  1930. "dependencies": {
  1931. "Microsoft.Build": "17.0.0",
  1932. "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.0.0",
  1933. "Microsoft.DotNet.Scaffolding.Shared": "6.0.9",
  1934. "Newtonsoft.Json": "13.0.1",
  1935. "NuGet.Packaging": "6.2.1",
  1936. "System.Configuration.ConfigurationManager": "6.0.0",
  1937. "System.Private.Uri": "4.3.2",
  1938. "System.Security.Cryptography.X509Certificates": "4.3.0"
  1939. },
  1940. "compile": {
  1941. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
  1942. "related": ".xml"
  1943. }
  1944. },
  1945. "runtime": {
  1946. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
  1947. "related": ".xml"
  1948. }
  1949. }
  1950. },
  1951. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/6.0.9": {
  1952. "type": "package",
  1953. "dependencies": {
  1954. "Microsoft.DotNet.Scaffolding.Shared": "6.0.9",
  1955. "Microsoft.VisualStudio.Web.CodeGeneration": "6.0.9",
  1956. "NuGet.Packaging": "6.2.1",
  1957. "System.Configuration.ConfigurationManager": "6.0.0",
  1958. "System.Private.Uri": "4.3.2",
  1959. "System.Security.Cryptography.X509Certificates": "4.3.0"
  1960. },
  1961. "compile": {
  1962. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
  1963. "related": ".xml"
  1964. }
  1965. },
  1966. "runtime": {
  1967. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
  1968. "related": ".xml"
  1969. }
  1970. }
  1971. },
  1972. "Microsoft.Win32.Primitives/4.3.0": {
  1973. "type": "package",
  1974. "dependencies": {
  1975. "Microsoft.NETCore.Platforms": "1.1.0",
  1976. "Microsoft.NETCore.Targets": "1.1.0",
  1977. "System.Runtime": "4.3.0"
  1978. },
  1979. "compile": {
  1980. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1981. "related": ".xml"
  1982. }
  1983. }
  1984. },
  1985. "Microsoft.Win32.Registry/4.7.0": {
  1986. "type": "package",
  1987. "dependencies": {
  1988. "System.Security.AccessControl": "4.7.0",
  1989. "System.Security.Principal.Windows": "4.7.0"
  1990. },
  1991. "compile": {
  1992. "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1993. "related": ".xml"
  1994. }
  1995. },
  1996. "runtime": {
  1997. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1998. "related": ".xml"
  1999. }
  2000. },
  2001. "runtimeTargets": {
  2002. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  2003. "assetType": "runtime",
  2004. "rid": "unix"
  2005. },
  2006. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  2007. "assetType": "runtime",
  2008. "rid": "win"
  2009. }
  2010. }
  2011. },
  2012. "Microsoft.Win32.SystemEvents/6.0.0": {
  2013. "type": "package",
  2014. "compile": {
  2015. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  2016. "related": ".xml"
  2017. }
  2018. },
  2019. "runtime": {
  2020. "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  2021. "related": ".xml"
  2022. }
  2023. },
  2024. "build": {
  2025. "buildTransitive/netcoreapp3.1/_._": {}
  2026. },
  2027. "runtimeTargets": {
  2028. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
  2029. "assetType": "runtime",
  2030. "rid": "win"
  2031. }
  2032. }
  2033. },
  2034. "MimeKit/3.4.1": {
  2035. "type": "package",
  2036. "dependencies": {
  2037. "Portable.BouncyCastle": "1.9.0",
  2038. "System.Security.Cryptography.Pkcs": "6.0.0"
  2039. },
  2040. "compile": {
  2041. "lib/net6.0/MimeKit.dll": {
  2042. "related": ".pdb;.xml"
  2043. }
  2044. },
  2045. "runtime": {
  2046. "lib/net6.0/MimeKit.dll": {
  2047. "related": ".pdb;.xml"
  2048. }
  2049. }
  2050. },
  2051. "NETStandard.Library/1.6.1": {
  2052. "type": "package",
  2053. "dependencies": {
  2054. "Microsoft.NETCore.Platforms": "1.1.0",
  2055. "Microsoft.Win32.Primitives": "4.3.0",
  2056. "System.AppContext": "4.3.0",
  2057. "System.Collections": "4.3.0",
  2058. "System.Collections.Concurrent": "4.3.0",
  2059. "System.Console": "4.3.0",
  2060. "System.Diagnostics.Debug": "4.3.0",
  2061. "System.Diagnostics.Tools": "4.3.0",
  2062. "System.Diagnostics.Tracing": "4.3.0",
  2063. "System.Globalization": "4.3.0",
  2064. "System.Globalization.Calendars": "4.3.0",
  2065. "System.IO": "4.3.0",
  2066. "System.IO.Compression": "4.3.0",
  2067. "System.IO.Compression.ZipFile": "4.3.0",
  2068. "System.IO.FileSystem": "4.3.0",
  2069. "System.IO.FileSystem.Primitives": "4.3.0",
  2070. "System.Linq": "4.3.0",
  2071. "System.Linq.Expressions": "4.3.0",
  2072. "System.Net.Http": "4.3.0",
  2073. "System.Net.Primitives": "4.3.0",
  2074. "System.Net.Sockets": "4.3.0",
  2075. "System.ObjectModel": "4.3.0",
  2076. "System.Reflection": "4.3.0",
  2077. "System.Reflection.Extensions": "4.3.0",
  2078. "System.Reflection.Primitives": "4.3.0",
  2079. "System.Resources.ResourceManager": "4.3.0",
  2080. "System.Runtime": "4.3.0",
  2081. "System.Runtime.Extensions": "4.3.0",
  2082. "System.Runtime.Handles": "4.3.0",
  2083. "System.Runtime.InteropServices": "4.3.0",
  2084. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  2085. "System.Runtime.Numerics": "4.3.0",
  2086. "System.Security.Cryptography.Algorithms": "4.3.0",
  2087. "System.Security.Cryptography.Encoding": "4.3.0",
  2088. "System.Security.Cryptography.Primitives": "4.3.0",
  2089. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2090. "System.Text.Encoding": "4.3.0",
  2091. "System.Text.Encoding.Extensions": "4.3.0",
  2092. "System.Text.RegularExpressions": "4.3.0",
  2093. "System.Threading": "4.3.0",
  2094. "System.Threading.Tasks": "4.3.0",
  2095. "System.Threading.Timer": "4.3.0",
  2096. "System.Xml.ReaderWriter": "4.3.0",
  2097. "System.Xml.XDocument": "4.3.0"
  2098. }
  2099. },
  2100. "Newtonsoft.Json/13.0.1": {
  2101. "type": "package",
  2102. "compile": {
  2103. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  2104. "related": ".xml"
  2105. }
  2106. },
  2107. "runtime": {
  2108. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  2109. "related": ".xml"
  2110. }
  2111. }
  2112. },
  2113. "NuGet.Common/6.2.1": {
  2114. "type": "package",
  2115. "dependencies": {
  2116. "NuGet.Frameworks": "6.2.1"
  2117. },
  2118. "compile": {
  2119. "lib/netstandard2.0/NuGet.Common.dll": {
  2120. "related": ".xml"
  2121. }
  2122. },
  2123. "runtime": {
  2124. "lib/netstandard2.0/NuGet.Common.dll": {
  2125. "related": ".xml"
  2126. }
  2127. }
  2128. },
  2129. "NuGet.Configuration/6.2.1": {
  2130. "type": "package",
  2131. "dependencies": {
  2132. "NuGet.Common": "6.2.1",
  2133. "System.Security.Cryptography.ProtectedData": "4.4.0"
  2134. },
  2135. "compile": {
  2136. "lib/netstandard2.0/NuGet.Configuration.dll": {
  2137. "related": ".xml"
  2138. }
  2139. },
  2140. "runtime": {
  2141. "lib/netstandard2.0/NuGet.Configuration.dll": {
  2142. "related": ".xml"
  2143. }
  2144. }
  2145. },
  2146. "NuGet.DependencyResolver.Core/5.11.0": {
  2147. "type": "package",
  2148. "dependencies": {
  2149. "NuGet.LibraryModel": "5.11.0",
  2150. "NuGet.Protocol": "5.11.0"
  2151. },
  2152. "compile": {
  2153. "lib/net5.0/NuGet.DependencyResolver.Core.dll": {
  2154. "related": ".xml"
  2155. }
  2156. },
  2157. "runtime": {
  2158. "lib/net5.0/NuGet.DependencyResolver.Core.dll": {
  2159. "related": ".xml"
  2160. }
  2161. }
  2162. },
  2163. "NuGet.Frameworks/6.2.1": {
  2164. "type": "package",
  2165. "compile": {
  2166. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  2167. "related": ".xml"
  2168. }
  2169. },
  2170. "runtime": {
  2171. "lib/netstandard2.0/NuGet.Frameworks.dll": {
  2172. "related": ".xml"
  2173. }
  2174. }
  2175. },
  2176. "NuGet.LibraryModel/5.11.0": {
  2177. "type": "package",
  2178. "dependencies": {
  2179. "NuGet.Common": "5.11.0",
  2180. "NuGet.Versioning": "5.11.0"
  2181. },
  2182. "compile": {
  2183. "lib/netstandard2.0/NuGet.LibraryModel.dll": {
  2184. "related": ".xml"
  2185. }
  2186. },
  2187. "runtime": {
  2188. "lib/netstandard2.0/NuGet.LibraryModel.dll": {
  2189. "related": ".xml"
  2190. }
  2191. }
  2192. },
  2193. "NuGet.Packaging/6.2.1": {
  2194. "type": "package",
  2195. "dependencies": {
  2196. "Newtonsoft.Json": "13.0.1",
  2197. "NuGet.Configuration": "6.2.1",
  2198. "NuGet.Versioning": "6.2.1",
  2199. "System.Security.Cryptography.Cng": "5.0.0",
  2200. "System.Security.Cryptography.Pkcs": "5.0.0"
  2201. },
  2202. "compile": {
  2203. "lib/net5.0/NuGet.Packaging.dll": {
  2204. "related": ".xml"
  2205. }
  2206. },
  2207. "runtime": {
  2208. "lib/net5.0/NuGet.Packaging.dll": {
  2209. "related": ".xml"
  2210. }
  2211. }
  2212. },
  2213. "NuGet.ProjectModel/5.11.0": {
  2214. "type": "package",
  2215. "dependencies": {
  2216. "NuGet.DependencyResolver.Core": "5.11.0"
  2217. },
  2218. "compile": {
  2219. "lib/net5.0/NuGet.ProjectModel.dll": {
  2220. "related": ".xml"
  2221. }
  2222. },
  2223. "runtime": {
  2224. "lib/net5.0/NuGet.ProjectModel.dll": {
  2225. "related": ".xml"
  2226. }
  2227. }
  2228. },
  2229. "NuGet.Protocol/5.11.0": {
  2230. "type": "package",
  2231. "dependencies": {
  2232. "NuGet.Packaging": "5.11.0"
  2233. },
  2234. "compile": {
  2235. "lib/net5.0/NuGet.Protocol.dll": {
  2236. "related": ".xml"
  2237. }
  2238. },
  2239. "runtime": {
  2240. "lib/net5.0/NuGet.Protocol.dll": {
  2241. "related": ".xml"
  2242. }
  2243. }
  2244. },
  2245. "NuGet.Versioning/6.2.1": {
  2246. "type": "package",
  2247. "compile": {
  2248. "lib/netstandard2.0/NuGet.Versioning.dll": {
  2249. "related": ".xml"
  2250. }
  2251. },
  2252. "runtime": {
  2253. "lib/netstandard2.0/NuGet.Versioning.dll": {
  2254. "related": ".xml"
  2255. }
  2256. }
  2257. },
  2258. "Portable.BouncyCastle/1.9.0": {
  2259. "type": "package",
  2260. "compile": {
  2261. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  2262. "related": ".xml"
  2263. }
  2264. },
  2265. "runtime": {
  2266. "lib/netstandard2.0/BouncyCastle.Crypto.dll": {
  2267. "related": ".xml"
  2268. }
  2269. }
  2270. },
  2271. "Quartz/3.5.0": {
  2272. "type": "package",
  2273. "dependencies": {
  2274. "Microsoft.Extensions.Logging.Abstractions": "2.1.1",
  2275. "System.Configuration.ConfigurationManager": "4.7.0",
  2276. "System.Diagnostics.DiagnosticSource": "4.7.1"
  2277. },
  2278. "compile": {
  2279. "lib/netstandard2.0/Quartz.dll": {
  2280. "related": ".xml"
  2281. }
  2282. },
  2283. "runtime": {
  2284. "lib/netstandard2.0/Quartz.dll": {
  2285. "related": ".xml"
  2286. }
  2287. }
  2288. },
  2289. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2290. "type": "package",
  2291. "runtimeTargets": {
  2292. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2293. "assetType": "native",
  2294. "rid": "debian.8-x64"
  2295. }
  2296. }
  2297. },
  2298. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2299. "type": "package",
  2300. "runtimeTargets": {
  2301. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2302. "assetType": "native",
  2303. "rid": "fedora.23-x64"
  2304. }
  2305. }
  2306. },
  2307. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2308. "type": "package",
  2309. "runtimeTargets": {
  2310. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2311. "assetType": "native",
  2312. "rid": "fedora.24-x64"
  2313. }
  2314. }
  2315. },
  2316. "runtime.native.System/4.3.0": {
  2317. "type": "package",
  2318. "dependencies": {
  2319. "Microsoft.NETCore.Platforms": "1.1.0",
  2320. "Microsoft.NETCore.Targets": "1.1.0"
  2321. },
  2322. "compile": {
  2323. "lib/netstandard1.0/_._": {}
  2324. },
  2325. "runtime": {
  2326. "lib/netstandard1.0/_._": {}
  2327. }
  2328. },
  2329. "runtime.native.System.IO.Compression/4.3.0": {
  2330. "type": "package",
  2331. "dependencies": {
  2332. "Microsoft.NETCore.Platforms": "1.1.0",
  2333. "Microsoft.NETCore.Targets": "1.1.0"
  2334. },
  2335. "compile": {
  2336. "lib/netstandard1.0/_._": {}
  2337. },
  2338. "runtime": {
  2339. "lib/netstandard1.0/_._": {}
  2340. }
  2341. },
  2342. "runtime.native.System.Net.Http/4.3.0": {
  2343. "type": "package",
  2344. "dependencies": {
  2345. "Microsoft.NETCore.Platforms": "1.1.0",
  2346. "Microsoft.NETCore.Targets": "1.1.0"
  2347. },
  2348. "compile": {
  2349. "lib/netstandard1.0/_._": {}
  2350. },
  2351. "runtime": {
  2352. "lib/netstandard1.0/_._": {}
  2353. }
  2354. },
  2355. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2356. "type": "package",
  2357. "dependencies": {
  2358. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  2359. },
  2360. "compile": {
  2361. "lib/netstandard1.0/_._": {}
  2362. },
  2363. "runtime": {
  2364. "lib/netstandard1.0/_._": {}
  2365. }
  2366. },
  2367. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2368. "type": "package",
  2369. "dependencies": {
  2370. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2371. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2372. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2373. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2374. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2375. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2376. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2377. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2378. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  2379. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2380. },
  2381. "compile": {
  2382. "lib/netstandard1.0/_._": {}
  2383. },
  2384. "runtime": {
  2385. "lib/netstandard1.0/_._": {}
  2386. }
  2387. },
  2388. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2389. "type": "package",
  2390. "runtimeTargets": {
  2391. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2392. "assetType": "native",
  2393. "rid": "opensuse.13.2-x64"
  2394. }
  2395. }
  2396. },
  2397. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2398. "type": "package",
  2399. "runtimeTargets": {
  2400. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2401. "assetType": "native",
  2402. "rid": "opensuse.42.1-x64"
  2403. }
  2404. }
  2405. },
  2406. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  2407. "type": "package",
  2408. "runtimeTargets": {
  2409. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  2410. "assetType": "native",
  2411. "rid": "osx.10.10-x64"
  2412. }
  2413. }
  2414. },
  2415. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2416. "type": "package",
  2417. "runtimeTargets": {
  2418. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  2419. "assetType": "native",
  2420. "rid": "osx.10.10-x64"
  2421. }
  2422. }
  2423. },
  2424. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2425. "type": "package",
  2426. "runtimeTargets": {
  2427. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2428. "assetType": "native",
  2429. "rid": "rhel.7-x64"
  2430. }
  2431. }
  2432. },
  2433. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2434. "type": "package",
  2435. "runtimeTargets": {
  2436. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2437. "assetType": "native",
  2438. "rid": "ubuntu.14.04-x64"
  2439. }
  2440. }
  2441. },
  2442. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2443. "type": "package",
  2444. "runtimeTargets": {
  2445. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2446. "assetType": "native",
  2447. "rid": "ubuntu.16.04-x64"
  2448. }
  2449. }
  2450. },
  2451. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  2452. "type": "package",
  2453. "runtimeTargets": {
  2454. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  2455. "assetType": "native",
  2456. "rid": "ubuntu.16.10-x64"
  2457. }
  2458. }
  2459. },
  2460. "Serilog/2.12.0": {
  2461. "type": "package",
  2462. "compile": {
  2463. "lib/net6.0/Serilog.dll": {
  2464. "related": ".xml"
  2465. }
  2466. },
  2467. "runtime": {
  2468. "lib/net6.0/Serilog.dll": {
  2469. "related": ".xml"
  2470. }
  2471. }
  2472. },
  2473. "Serilog.AspNetCore/6.0.1": {
  2474. "type": "package",
  2475. "dependencies": {
  2476. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  2477. "Microsoft.Extensions.Logging": "5.0.0",
  2478. "Serilog": "2.10.0",
  2479. "Serilog.Extensions.Hosting": "5.0.1",
  2480. "Serilog.Formatting.Compact": "1.1.0",
  2481. "Serilog.Settings.Configuration": "3.3.0",
  2482. "Serilog.Sinks.Console": "4.0.1",
  2483. "Serilog.Sinks.Debug": "2.0.0",
  2484. "Serilog.Sinks.File": "5.0.0"
  2485. },
  2486. "compile": {
  2487. "lib/net5.0/Serilog.AspNetCore.dll": {
  2488. "related": ".xml"
  2489. }
  2490. },
  2491. "runtime": {
  2492. "lib/net5.0/Serilog.AspNetCore.dll": {
  2493. "related": ".xml"
  2494. }
  2495. },
  2496. "frameworkReferences": [
  2497. "Microsoft.AspNetCore.App"
  2498. ]
  2499. },
  2500. "Serilog.Extensions.Hosting/5.0.1": {
  2501. "type": "package",
  2502. "dependencies": {
  2503. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.8",
  2504. "Microsoft.Extensions.Hosting.Abstractions": "3.1.8",
  2505. "Microsoft.Extensions.Logging.Abstractions": "3.1.8",
  2506. "Serilog": "2.10.0",
  2507. "Serilog.Extensions.Logging": "3.1.0"
  2508. },
  2509. "compile": {
  2510. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  2511. "related": ".xml"
  2512. }
  2513. },
  2514. "runtime": {
  2515. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": {
  2516. "related": ".xml"
  2517. }
  2518. }
  2519. },
  2520. "Serilog.Extensions.Logging/3.1.0": {
  2521. "type": "package",
  2522. "dependencies": {
  2523. "Microsoft.Extensions.Logging": "2.0.0",
  2524. "Serilog": "2.9.0"
  2525. },
  2526. "compile": {
  2527. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  2528. "related": ".xml"
  2529. }
  2530. },
  2531. "runtime": {
  2532. "lib/netstandard2.0/Serilog.Extensions.Logging.dll": {
  2533. "related": ".xml"
  2534. }
  2535. }
  2536. },
  2537. "Serilog.Formatting.Compact/1.1.0": {
  2538. "type": "package",
  2539. "dependencies": {
  2540. "Serilog": "2.8.0"
  2541. },
  2542. "compile": {
  2543. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  2544. "related": ".xml"
  2545. }
  2546. },
  2547. "runtime": {
  2548. "lib/netstandard2.0/Serilog.Formatting.Compact.dll": {
  2549. "related": ".xml"
  2550. }
  2551. }
  2552. },
  2553. "Serilog.Settings.Configuration/3.3.0": {
  2554. "type": "package",
  2555. "dependencies": {
  2556. "Microsoft.Extensions.DependencyModel": "3.0.0",
  2557. "Microsoft.Extensions.Options.ConfigurationExtensions": "2.0.0",
  2558. "Serilog": "2.10.0"
  2559. },
  2560. "compile": {
  2561. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  2562. "related": ".xml"
  2563. }
  2564. },
  2565. "runtime": {
  2566. "lib/netstandard2.0/Serilog.Settings.Configuration.dll": {
  2567. "related": ".xml"
  2568. }
  2569. }
  2570. },
  2571. "Serilog.Sinks.Console/4.0.1": {
  2572. "type": "package",
  2573. "dependencies": {
  2574. "Serilog": "2.10.0"
  2575. },
  2576. "compile": {
  2577. "lib/net5.0/Serilog.Sinks.Console.dll": {
  2578. "related": ".xml"
  2579. }
  2580. },
  2581. "runtime": {
  2582. "lib/net5.0/Serilog.Sinks.Console.dll": {
  2583. "related": ".xml"
  2584. }
  2585. }
  2586. },
  2587. "Serilog.Sinks.Debug/2.0.0": {
  2588. "type": "package",
  2589. "dependencies": {
  2590. "Serilog": "2.10.0"
  2591. },
  2592. "compile": {
  2593. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  2594. "related": ".xml"
  2595. }
  2596. },
  2597. "runtime": {
  2598. "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {
  2599. "related": ".xml"
  2600. }
  2601. }
  2602. },
  2603. "Serilog.Sinks.File/5.0.0": {
  2604. "type": "package",
  2605. "dependencies": {
  2606. "Serilog": "2.10.0"
  2607. },
  2608. "compile": {
  2609. "lib/net5.0/Serilog.Sinks.File.dll": {
  2610. "related": ".pdb;.xml"
  2611. }
  2612. },
  2613. "runtime": {
  2614. "lib/net5.0/Serilog.Sinks.File.dll": {
  2615. "related": ".pdb;.xml"
  2616. }
  2617. }
  2618. },
  2619. "System.AppContext/4.3.0": {
  2620. "type": "package",
  2621. "dependencies": {
  2622. "System.Runtime": "4.3.0"
  2623. },
  2624. "compile": {
  2625. "ref/netstandard1.6/System.AppContext.dll": {
  2626. "related": ".xml"
  2627. }
  2628. },
  2629. "runtime": {
  2630. "lib/netstandard1.6/System.AppContext.dll": {}
  2631. }
  2632. },
  2633. "System.Buffers/4.5.1": {
  2634. "type": "package",
  2635. "compile": {
  2636. "ref/netcoreapp2.0/_._": {}
  2637. },
  2638. "runtime": {
  2639. "lib/netcoreapp2.0/_._": {}
  2640. }
  2641. },
  2642. "System.Collections/4.3.0": {
  2643. "type": "package",
  2644. "dependencies": {
  2645. "Microsoft.NETCore.Platforms": "1.1.0",
  2646. "Microsoft.NETCore.Targets": "1.1.0",
  2647. "System.Runtime": "4.3.0"
  2648. },
  2649. "compile": {
  2650. "ref/netstandard1.3/System.Collections.dll": {
  2651. "related": ".xml"
  2652. }
  2653. }
  2654. },
  2655. "System.Collections.Concurrent/4.3.0": {
  2656. "type": "package",
  2657. "dependencies": {
  2658. "System.Collections": "4.3.0",
  2659. "System.Diagnostics.Debug": "4.3.0",
  2660. "System.Diagnostics.Tracing": "4.3.0",
  2661. "System.Globalization": "4.3.0",
  2662. "System.Reflection": "4.3.0",
  2663. "System.Resources.ResourceManager": "4.3.0",
  2664. "System.Runtime": "4.3.0",
  2665. "System.Runtime.Extensions": "4.3.0",
  2666. "System.Threading": "4.3.0",
  2667. "System.Threading.Tasks": "4.3.0"
  2668. },
  2669. "compile": {
  2670. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  2671. "related": ".xml"
  2672. }
  2673. },
  2674. "runtime": {
  2675. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  2676. }
  2677. },
  2678. "System.Collections.Immutable/6.0.0": {
  2679. "type": "package",
  2680. "dependencies": {
  2681. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2682. },
  2683. "compile": {
  2684. "lib/net6.0/System.Collections.Immutable.dll": {
  2685. "related": ".xml"
  2686. }
  2687. },
  2688. "runtime": {
  2689. "lib/net6.0/System.Collections.Immutable.dll": {
  2690. "related": ".xml"
  2691. }
  2692. },
  2693. "build": {
  2694. "buildTransitive/netcoreapp3.1/_._": {}
  2695. }
  2696. },
  2697. "System.Composition/1.0.31": {
  2698. "type": "package",
  2699. "dependencies": {
  2700. "System.Composition.AttributedModel": "1.0.31",
  2701. "System.Composition.Convention": "1.0.31",
  2702. "System.Composition.Hosting": "1.0.31",
  2703. "System.Composition.Runtime": "1.0.31",
  2704. "System.Composition.TypedParts": "1.0.31"
  2705. }
  2706. },
  2707. "System.Composition.AttributedModel/1.0.31": {
  2708. "type": "package",
  2709. "dependencies": {
  2710. "System.Reflection": "4.3.0",
  2711. "System.Runtime": "4.3.0"
  2712. },
  2713. "compile": {
  2714. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  2715. },
  2716. "runtime": {
  2717. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  2718. }
  2719. },
  2720. "System.Composition.Convention/1.0.31": {
  2721. "type": "package",
  2722. "dependencies": {
  2723. "System.Collections": "4.3.0",
  2724. "System.Composition.AttributedModel": "1.0.31",
  2725. "System.Diagnostics.Debug": "4.3.0",
  2726. "System.Diagnostics.Tools": "4.3.0",
  2727. "System.Globalization": "4.3.0",
  2728. "System.Linq": "4.3.0",
  2729. "System.Linq.Expressions": "4.3.0",
  2730. "System.Reflection": "4.3.0",
  2731. "System.Reflection.Extensions": "4.3.0",
  2732. "System.Resources.ResourceManager": "4.3.0",
  2733. "System.Runtime": "4.3.0",
  2734. "System.Threading": "4.3.0"
  2735. },
  2736. "compile": {
  2737. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  2738. },
  2739. "runtime": {
  2740. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  2741. }
  2742. },
  2743. "System.Composition.Hosting/1.0.31": {
  2744. "type": "package",
  2745. "dependencies": {
  2746. "System.Collections": "4.3.0",
  2747. "System.Composition.Runtime": "1.0.31",
  2748. "System.Diagnostics.Debug": "4.3.0",
  2749. "System.Diagnostics.Tools": "4.3.0",
  2750. "System.Globalization": "4.3.0",
  2751. "System.Linq": "4.3.0",
  2752. "System.Linq.Expressions": "4.3.0",
  2753. "System.ObjectModel": "4.3.0",
  2754. "System.Reflection": "4.3.0",
  2755. "System.Reflection.Extensions": "4.3.0",
  2756. "System.Resources.ResourceManager": "4.3.0",
  2757. "System.Runtime": "4.3.0",
  2758. "System.Threading": "4.3.0"
  2759. },
  2760. "compile": {
  2761. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  2762. },
  2763. "runtime": {
  2764. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  2765. }
  2766. },
  2767. "System.Composition.Runtime/1.0.31": {
  2768. "type": "package",
  2769. "dependencies": {
  2770. "System.Collections": "4.3.0",
  2771. "System.Diagnostics.Debug": "4.3.0",
  2772. "System.Diagnostics.Tools": "4.3.0",
  2773. "System.Globalization": "4.3.0",
  2774. "System.Linq": "4.3.0",
  2775. "System.Reflection": "4.3.0",
  2776. "System.Resources.ResourceManager": "4.3.0",
  2777. "System.Runtime": "4.3.0"
  2778. },
  2779. "compile": {
  2780. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  2781. },
  2782. "runtime": {
  2783. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  2784. }
  2785. },
  2786. "System.Composition.TypedParts/1.0.31": {
  2787. "type": "package",
  2788. "dependencies": {
  2789. "System.Collections": "4.3.0",
  2790. "System.Composition.AttributedModel": "1.0.31",
  2791. "System.Composition.Hosting": "1.0.31",
  2792. "System.Composition.Runtime": "1.0.31",
  2793. "System.Diagnostics.Debug": "4.3.0",
  2794. "System.Diagnostics.Tools": "4.3.0",
  2795. "System.Globalization": "4.3.0",
  2796. "System.Linq": "4.3.0",
  2797. "System.Linq.Expressions": "4.3.0",
  2798. "System.Reflection": "4.3.0",
  2799. "System.Reflection.Extensions": "4.3.0",
  2800. "System.Resources.ResourceManager": "4.3.0",
  2801. "System.Runtime": "4.3.0",
  2802. "System.Runtime.Extensions": "4.3.0"
  2803. },
  2804. "compile": {
  2805. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  2806. },
  2807. "runtime": {
  2808. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  2809. }
  2810. },
  2811. "System.Configuration.ConfigurationManager/6.0.0": {
  2812. "type": "package",
  2813. "dependencies": {
  2814. "System.Security.Cryptography.ProtectedData": "6.0.0",
  2815. "System.Security.Permissions": "6.0.0"
  2816. },
  2817. "compile": {
  2818. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  2819. "related": ".xml"
  2820. }
  2821. },
  2822. "runtime": {
  2823. "lib/net6.0/System.Configuration.ConfigurationManager.dll": {
  2824. "related": ".xml"
  2825. }
  2826. },
  2827. "build": {
  2828. "buildTransitive/netcoreapp3.1/_._": {}
  2829. }
  2830. },
  2831. "System.Console/4.3.0": {
  2832. "type": "package",
  2833. "dependencies": {
  2834. "Microsoft.NETCore.Platforms": "1.1.0",
  2835. "Microsoft.NETCore.Targets": "1.1.0",
  2836. "System.IO": "4.3.0",
  2837. "System.Runtime": "4.3.0",
  2838. "System.Text.Encoding": "4.3.0"
  2839. },
  2840. "compile": {
  2841. "ref/netstandard1.3/System.Console.dll": {
  2842. "related": ".xml"
  2843. }
  2844. }
  2845. },
  2846. "System.Diagnostics.Debug/4.3.0": {
  2847. "type": "package",
  2848. "dependencies": {
  2849. "Microsoft.NETCore.Platforms": "1.1.0",
  2850. "Microsoft.NETCore.Targets": "1.1.0",
  2851. "System.Runtime": "4.3.0"
  2852. },
  2853. "compile": {
  2854. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2855. "related": ".xml"
  2856. }
  2857. }
  2858. },
  2859. "System.Diagnostics.DiagnosticSource/6.0.0": {
  2860. "type": "package",
  2861. "dependencies": {
  2862. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  2863. },
  2864. "compile": {
  2865. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2866. "related": ".xml"
  2867. }
  2868. },
  2869. "runtime": {
  2870. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {
  2871. "related": ".xml"
  2872. }
  2873. },
  2874. "build": {
  2875. "buildTransitive/netcoreapp3.1/_._": {}
  2876. }
  2877. },
  2878. "System.Diagnostics.Tools/4.3.0": {
  2879. "type": "package",
  2880. "dependencies": {
  2881. "Microsoft.NETCore.Platforms": "1.1.0",
  2882. "Microsoft.NETCore.Targets": "1.1.0",
  2883. "System.Runtime": "4.3.0"
  2884. },
  2885. "compile": {
  2886. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2887. "related": ".xml"
  2888. }
  2889. }
  2890. },
  2891. "System.Diagnostics.Tracing/4.3.0": {
  2892. "type": "package",
  2893. "dependencies": {
  2894. "Microsoft.NETCore.Platforms": "1.1.0",
  2895. "Microsoft.NETCore.Targets": "1.1.0",
  2896. "System.Runtime": "4.3.0"
  2897. },
  2898. "compile": {
  2899. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2900. "related": ".xml"
  2901. }
  2902. }
  2903. },
  2904. "System.Drawing.Common/6.0.0": {
  2905. "type": "package",
  2906. "dependencies": {
  2907. "Microsoft.Win32.SystemEvents": "6.0.0"
  2908. },
  2909. "compile": {
  2910. "lib/net6.0/System.Drawing.Common.dll": {
  2911. "related": ".xml"
  2912. }
  2913. },
  2914. "runtime": {
  2915. "lib/net6.0/System.Drawing.Common.dll": {
  2916. "related": ".xml"
  2917. }
  2918. },
  2919. "build": {
  2920. "buildTransitive/netcoreapp3.1/_._": {}
  2921. },
  2922. "runtimeTargets": {
  2923. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
  2924. "assetType": "runtime",
  2925. "rid": "unix"
  2926. },
  2927. "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
  2928. "assetType": "runtime",
  2929. "rid": "win"
  2930. }
  2931. }
  2932. },
  2933. "System.Formats.Asn1/6.0.0": {
  2934. "type": "package",
  2935. "compile": {
  2936. "lib/net6.0/System.Formats.Asn1.dll": {
  2937. "related": ".xml"
  2938. }
  2939. },
  2940. "runtime": {
  2941. "lib/net6.0/System.Formats.Asn1.dll": {
  2942. "related": ".xml"
  2943. }
  2944. },
  2945. "build": {
  2946. "buildTransitive/netcoreapp3.1/_._": {}
  2947. }
  2948. },
  2949. "System.Globalization/4.3.0": {
  2950. "type": "package",
  2951. "dependencies": {
  2952. "Microsoft.NETCore.Platforms": "1.1.0",
  2953. "Microsoft.NETCore.Targets": "1.1.0",
  2954. "System.Runtime": "4.3.0"
  2955. },
  2956. "compile": {
  2957. "ref/netstandard1.3/System.Globalization.dll": {
  2958. "related": ".xml"
  2959. }
  2960. }
  2961. },
  2962. "System.Globalization.Calendars/4.3.0": {
  2963. "type": "package",
  2964. "dependencies": {
  2965. "Microsoft.NETCore.Platforms": "1.1.0",
  2966. "Microsoft.NETCore.Targets": "1.1.0",
  2967. "System.Globalization": "4.3.0",
  2968. "System.Runtime": "4.3.0"
  2969. },
  2970. "compile": {
  2971. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2972. "related": ".xml"
  2973. }
  2974. }
  2975. },
  2976. "System.Globalization.Extensions/4.3.0": {
  2977. "type": "package",
  2978. "dependencies": {
  2979. "Microsoft.NETCore.Platforms": "1.1.0",
  2980. "System.Globalization": "4.3.0",
  2981. "System.Resources.ResourceManager": "4.3.0",
  2982. "System.Runtime": "4.3.0",
  2983. "System.Runtime.Extensions": "4.3.0",
  2984. "System.Runtime.InteropServices": "4.3.0"
  2985. },
  2986. "compile": {
  2987. "ref/netstandard1.3/_._": {
  2988. "related": ".xml"
  2989. }
  2990. },
  2991. "runtimeTargets": {
  2992. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2993. "assetType": "runtime",
  2994. "rid": "unix"
  2995. },
  2996. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2997. "assetType": "runtime",
  2998. "rid": "win"
  2999. }
  3000. }
  3001. },
  3002. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  3003. "type": "package",
  3004. "dependencies": {
  3005. "Microsoft.IdentityModel.JsonWebTokens": "6.8.0",
  3006. "Microsoft.IdentityModel.Tokens": "6.8.0"
  3007. },
  3008. "compile": {
  3009. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  3010. "related": ".xml"
  3011. }
  3012. },
  3013. "runtime": {
  3014. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  3015. "related": ".xml"
  3016. }
  3017. }
  3018. },
  3019. "System.IO/4.3.0": {
  3020. "type": "package",
  3021. "dependencies": {
  3022. "Microsoft.NETCore.Platforms": "1.1.0",
  3023. "Microsoft.NETCore.Targets": "1.1.0",
  3024. "System.Runtime": "4.3.0",
  3025. "System.Text.Encoding": "4.3.0",
  3026. "System.Threading.Tasks": "4.3.0"
  3027. },
  3028. "compile": {
  3029. "ref/netstandard1.5/System.IO.dll": {
  3030. "related": ".xml"
  3031. }
  3032. }
  3033. },
  3034. "System.IO.Compression/4.3.0": {
  3035. "type": "package",
  3036. "dependencies": {
  3037. "Microsoft.NETCore.Platforms": "1.1.0",
  3038. "System.Buffers": "4.3.0",
  3039. "System.Collections": "4.3.0",
  3040. "System.Diagnostics.Debug": "4.3.0",
  3041. "System.IO": "4.3.0",
  3042. "System.Resources.ResourceManager": "4.3.0",
  3043. "System.Runtime": "4.3.0",
  3044. "System.Runtime.Extensions": "4.3.0",
  3045. "System.Runtime.Handles": "4.3.0",
  3046. "System.Runtime.InteropServices": "4.3.0",
  3047. "System.Text.Encoding": "4.3.0",
  3048. "System.Threading": "4.3.0",
  3049. "System.Threading.Tasks": "4.3.0",
  3050. "runtime.native.System": "4.3.0",
  3051. "runtime.native.System.IO.Compression": "4.3.0"
  3052. },
  3053. "compile": {
  3054. "ref/netstandard1.3/System.IO.Compression.dll": {
  3055. "related": ".xml"
  3056. }
  3057. },
  3058. "runtimeTargets": {
  3059. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  3060. "assetType": "runtime",
  3061. "rid": "unix"
  3062. },
  3063. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  3064. "assetType": "runtime",
  3065. "rid": "win"
  3066. }
  3067. }
  3068. },
  3069. "System.IO.Compression.ZipFile/4.3.0": {
  3070. "type": "package",
  3071. "dependencies": {
  3072. "System.Buffers": "4.3.0",
  3073. "System.IO": "4.3.0",
  3074. "System.IO.Compression": "4.3.0",
  3075. "System.IO.FileSystem": "4.3.0",
  3076. "System.IO.FileSystem.Primitives": "4.3.0",
  3077. "System.Resources.ResourceManager": "4.3.0",
  3078. "System.Runtime": "4.3.0",
  3079. "System.Runtime.Extensions": "4.3.0",
  3080. "System.Text.Encoding": "4.3.0"
  3081. },
  3082. "compile": {
  3083. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  3084. "related": ".xml"
  3085. }
  3086. },
  3087. "runtime": {
  3088. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  3089. }
  3090. },
  3091. "System.IO.FileSystem/4.3.0": {
  3092. "type": "package",
  3093. "dependencies": {
  3094. "Microsoft.NETCore.Platforms": "1.1.0",
  3095. "Microsoft.NETCore.Targets": "1.1.0",
  3096. "System.IO": "4.3.0",
  3097. "System.IO.FileSystem.Primitives": "4.3.0",
  3098. "System.Runtime": "4.3.0",
  3099. "System.Runtime.Handles": "4.3.0",
  3100. "System.Text.Encoding": "4.3.0",
  3101. "System.Threading.Tasks": "4.3.0"
  3102. },
  3103. "compile": {
  3104. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  3105. "related": ".xml"
  3106. }
  3107. }
  3108. },
  3109. "System.IO.FileSystem.Primitives/4.3.0": {
  3110. "type": "package",
  3111. "dependencies": {
  3112. "System.Runtime": "4.3.0"
  3113. },
  3114. "compile": {
  3115. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  3116. "related": ".xml"
  3117. }
  3118. },
  3119. "runtime": {
  3120. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  3121. }
  3122. },
  3123. "System.IO.Pipelines/5.0.1": {
  3124. "type": "package",
  3125. "compile": {
  3126. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  3127. "related": ".xml"
  3128. }
  3129. },
  3130. "runtime": {
  3131. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  3132. "related": ".xml"
  3133. }
  3134. }
  3135. },
  3136. "System.Linq/4.3.0": {
  3137. "type": "package",
  3138. "dependencies": {
  3139. "System.Collections": "4.3.0",
  3140. "System.Diagnostics.Debug": "4.3.0",
  3141. "System.Resources.ResourceManager": "4.3.0",
  3142. "System.Runtime": "4.3.0",
  3143. "System.Runtime.Extensions": "4.3.0"
  3144. },
  3145. "compile": {
  3146. "ref/netstandard1.6/System.Linq.dll": {
  3147. "related": ".xml"
  3148. }
  3149. },
  3150. "runtime": {
  3151. "lib/netstandard1.6/System.Linq.dll": {}
  3152. }
  3153. },
  3154. "System.Linq.Expressions/4.3.0": {
  3155. "type": "package",
  3156. "dependencies": {
  3157. "System.Collections": "4.3.0",
  3158. "System.Diagnostics.Debug": "4.3.0",
  3159. "System.Globalization": "4.3.0",
  3160. "System.IO": "4.3.0",
  3161. "System.Linq": "4.3.0",
  3162. "System.ObjectModel": "4.3.0",
  3163. "System.Reflection": "4.3.0",
  3164. "System.Reflection.Emit": "4.3.0",
  3165. "System.Reflection.Emit.ILGeneration": "4.3.0",
  3166. "System.Reflection.Emit.Lightweight": "4.3.0",
  3167. "System.Reflection.Extensions": "4.3.0",
  3168. "System.Reflection.Primitives": "4.3.0",
  3169. "System.Reflection.TypeExtensions": "4.3.0",
  3170. "System.Resources.ResourceManager": "4.3.0",
  3171. "System.Runtime": "4.3.0",
  3172. "System.Runtime.Extensions": "4.3.0",
  3173. "System.Threading": "4.3.0"
  3174. },
  3175. "compile": {
  3176. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  3177. "related": ".xml"
  3178. }
  3179. },
  3180. "runtime": {
  3181. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  3182. }
  3183. },
  3184. "System.Memory/4.5.4": {
  3185. "type": "package",
  3186. "compile": {
  3187. "ref/netcoreapp2.1/_._": {}
  3188. },
  3189. "runtime": {
  3190. "lib/netcoreapp2.1/_._": {}
  3191. }
  3192. },
  3193. "System.Net.Http/4.3.0": {
  3194. "type": "package",
  3195. "dependencies": {
  3196. "Microsoft.NETCore.Platforms": "1.1.0",
  3197. "System.Collections": "4.3.0",
  3198. "System.Diagnostics.Debug": "4.3.0",
  3199. "System.Diagnostics.DiagnosticSource": "4.3.0",
  3200. "System.Diagnostics.Tracing": "4.3.0",
  3201. "System.Globalization": "4.3.0",
  3202. "System.Globalization.Extensions": "4.3.0",
  3203. "System.IO": "4.3.0",
  3204. "System.IO.FileSystem": "4.3.0",
  3205. "System.Net.Primitives": "4.3.0",
  3206. "System.Resources.ResourceManager": "4.3.0",
  3207. "System.Runtime": "4.3.0",
  3208. "System.Runtime.Extensions": "4.3.0",
  3209. "System.Runtime.Handles": "4.3.0",
  3210. "System.Runtime.InteropServices": "4.3.0",
  3211. "System.Security.Cryptography.Algorithms": "4.3.0",
  3212. "System.Security.Cryptography.Encoding": "4.3.0",
  3213. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3214. "System.Security.Cryptography.Primitives": "4.3.0",
  3215. "System.Security.Cryptography.X509Certificates": "4.3.0",
  3216. "System.Text.Encoding": "4.3.0",
  3217. "System.Threading": "4.3.0",
  3218. "System.Threading.Tasks": "4.3.0",
  3219. "runtime.native.System": "4.3.0",
  3220. "runtime.native.System.Net.Http": "4.3.0",
  3221. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3222. },
  3223. "compile": {
  3224. "ref/netstandard1.3/System.Net.Http.dll": {
  3225. "related": ".xml"
  3226. }
  3227. },
  3228. "runtimeTargets": {
  3229. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  3230. "assetType": "runtime",
  3231. "rid": "unix"
  3232. },
  3233. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  3234. "assetType": "runtime",
  3235. "rid": "win"
  3236. }
  3237. }
  3238. },
  3239. "System.Net.Primitives/4.3.0": {
  3240. "type": "package",
  3241. "dependencies": {
  3242. "Microsoft.NETCore.Platforms": "1.1.0",
  3243. "Microsoft.NETCore.Targets": "1.1.0",
  3244. "System.Runtime": "4.3.0",
  3245. "System.Runtime.Handles": "4.3.0"
  3246. },
  3247. "compile": {
  3248. "ref/netstandard1.3/System.Net.Primitives.dll": {
  3249. "related": ".xml"
  3250. }
  3251. }
  3252. },
  3253. "System.Net.Sockets/4.3.0": {
  3254. "type": "package",
  3255. "dependencies": {
  3256. "Microsoft.NETCore.Platforms": "1.1.0",
  3257. "Microsoft.NETCore.Targets": "1.1.0",
  3258. "System.IO": "4.3.0",
  3259. "System.Net.Primitives": "4.3.0",
  3260. "System.Runtime": "4.3.0",
  3261. "System.Threading.Tasks": "4.3.0"
  3262. },
  3263. "compile": {
  3264. "ref/netstandard1.3/System.Net.Sockets.dll": {
  3265. "related": ".xml"
  3266. }
  3267. }
  3268. },
  3269. "System.ObjectModel/4.3.0": {
  3270. "type": "package",
  3271. "dependencies": {
  3272. "System.Collections": "4.3.0",
  3273. "System.Diagnostics.Debug": "4.3.0",
  3274. "System.Resources.ResourceManager": "4.3.0",
  3275. "System.Runtime": "4.3.0",
  3276. "System.Threading": "4.3.0"
  3277. },
  3278. "compile": {
  3279. "ref/netstandard1.3/System.ObjectModel.dll": {
  3280. "related": ".xml"
  3281. }
  3282. },
  3283. "runtime": {
  3284. "lib/netstandard1.3/System.ObjectModel.dll": {}
  3285. }
  3286. },
  3287. "System.Private.Uri/4.3.2": {
  3288. "type": "package",
  3289. "dependencies": {
  3290. "Microsoft.NETCore.Platforms": "1.1.1",
  3291. "Microsoft.NETCore.Targets": "1.1.3"
  3292. },
  3293. "compile": {
  3294. "ref/netstandard/_._": {}
  3295. }
  3296. },
  3297. "System.Reflection/4.3.0": {
  3298. "type": "package",
  3299. "dependencies": {
  3300. "Microsoft.NETCore.Platforms": "1.1.0",
  3301. "Microsoft.NETCore.Targets": "1.1.0",
  3302. "System.IO": "4.3.0",
  3303. "System.Reflection.Primitives": "4.3.0",
  3304. "System.Runtime": "4.3.0"
  3305. },
  3306. "compile": {
  3307. "ref/netstandard1.5/System.Reflection.dll": {
  3308. "related": ".xml"
  3309. }
  3310. }
  3311. },
  3312. "System.Reflection.Emit/4.6.0": {
  3313. "type": "package",
  3314. "compile": {
  3315. "ref/netcoreapp2.0/_._": {}
  3316. },
  3317. "runtime": {
  3318. "lib/netcoreapp2.0/_._": {}
  3319. }
  3320. },
  3321. "System.Reflection.Emit.ILGeneration/4.3.0": {
  3322. "type": "package",
  3323. "dependencies": {
  3324. "System.Reflection": "4.3.0",
  3325. "System.Reflection.Primitives": "4.3.0",
  3326. "System.Runtime": "4.3.0"
  3327. },
  3328. "compile": {
  3329. "ref/netstandard1.0/_._": {
  3330. "related": ".xml"
  3331. }
  3332. },
  3333. "runtime": {
  3334. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  3335. }
  3336. },
  3337. "System.Reflection.Emit.Lightweight/4.6.0": {
  3338. "type": "package",
  3339. "compile": {
  3340. "ref/netcoreapp2.0/_._": {}
  3341. },
  3342. "runtime": {
  3343. "lib/netcoreapp2.0/_._": {}
  3344. }
  3345. },
  3346. "System.Reflection.Extensions/4.3.0": {
  3347. "type": "package",
  3348. "dependencies": {
  3349. "Microsoft.NETCore.Platforms": "1.1.0",
  3350. "Microsoft.NETCore.Targets": "1.1.0",
  3351. "System.Reflection": "4.3.0",
  3352. "System.Runtime": "4.3.0"
  3353. },
  3354. "compile": {
  3355. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  3356. "related": ".xml"
  3357. }
  3358. }
  3359. },
  3360. "System.Reflection.Metadata/5.0.0": {
  3361. "type": "package",
  3362. "compile": {
  3363. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  3364. "related": ".xml"
  3365. }
  3366. },
  3367. "runtime": {
  3368. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  3369. "related": ".xml"
  3370. }
  3371. }
  3372. },
  3373. "System.Reflection.Primitives/4.3.0": {
  3374. "type": "package",
  3375. "dependencies": {
  3376. "Microsoft.NETCore.Platforms": "1.1.0",
  3377. "Microsoft.NETCore.Targets": "1.1.0",
  3378. "System.Runtime": "4.3.0"
  3379. },
  3380. "compile": {
  3381. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  3382. "related": ".xml"
  3383. }
  3384. }
  3385. },
  3386. "System.Reflection.TypeExtensions/4.3.0": {
  3387. "type": "package",
  3388. "dependencies": {
  3389. "System.Reflection": "4.3.0",
  3390. "System.Runtime": "4.3.0"
  3391. },
  3392. "compile": {
  3393. "ref/netstandard1.5/_._": {
  3394. "related": ".xml"
  3395. }
  3396. },
  3397. "runtime": {
  3398. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  3399. }
  3400. },
  3401. "System.Resources.ResourceManager/4.3.0": {
  3402. "type": "package",
  3403. "dependencies": {
  3404. "Microsoft.NETCore.Platforms": "1.1.0",
  3405. "Microsoft.NETCore.Targets": "1.1.0",
  3406. "System.Globalization": "4.3.0",
  3407. "System.Reflection": "4.3.0",
  3408. "System.Runtime": "4.3.0"
  3409. },
  3410. "compile": {
  3411. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  3412. "related": ".xml"
  3413. }
  3414. }
  3415. },
  3416. "System.Runtime/4.3.0": {
  3417. "type": "package",
  3418. "dependencies": {
  3419. "Microsoft.NETCore.Platforms": "1.1.0",
  3420. "Microsoft.NETCore.Targets": "1.1.0"
  3421. },
  3422. "compile": {
  3423. "ref/netstandard1.5/System.Runtime.dll": {
  3424. "related": ".xml"
  3425. }
  3426. }
  3427. },
  3428. "System.Runtime.Caching/4.7.0": {
  3429. "type": "package",
  3430. "dependencies": {
  3431. "System.Configuration.ConfigurationManager": "4.7.0"
  3432. },
  3433. "compile": {
  3434. "ref/netstandard2.0/_._": {
  3435. "related": ".xml"
  3436. }
  3437. },
  3438. "runtime": {
  3439. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  3440. "related": ".xml"
  3441. }
  3442. },
  3443. "runtimeTargets": {
  3444. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  3445. "assetType": "runtime",
  3446. "rid": "win"
  3447. }
  3448. }
  3449. },
  3450. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  3451. "type": "package",
  3452. "compile": {
  3453. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  3454. "related": ".xml"
  3455. }
  3456. },
  3457. "runtime": {
  3458. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
  3459. "related": ".xml"
  3460. }
  3461. },
  3462. "build": {
  3463. "buildTransitive/netcoreapp3.1/_._": {}
  3464. }
  3465. },
  3466. "System.Runtime.Extensions/4.3.0": {
  3467. "type": "package",
  3468. "dependencies": {
  3469. "Microsoft.NETCore.Platforms": "1.1.0",
  3470. "Microsoft.NETCore.Targets": "1.1.0",
  3471. "System.Runtime": "4.3.0"
  3472. },
  3473. "compile": {
  3474. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  3475. "related": ".xml"
  3476. }
  3477. }
  3478. },
  3479. "System.Runtime.Handles/4.3.0": {
  3480. "type": "package",
  3481. "dependencies": {
  3482. "Microsoft.NETCore.Platforms": "1.1.0",
  3483. "Microsoft.NETCore.Targets": "1.1.0",
  3484. "System.Runtime": "4.3.0"
  3485. },
  3486. "compile": {
  3487. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  3488. "related": ".xml"
  3489. }
  3490. }
  3491. },
  3492. "System.Runtime.InteropServices/4.3.0": {
  3493. "type": "package",
  3494. "dependencies": {
  3495. "Microsoft.NETCore.Platforms": "1.1.0",
  3496. "Microsoft.NETCore.Targets": "1.1.0",
  3497. "System.Reflection": "4.3.0",
  3498. "System.Reflection.Primitives": "4.3.0",
  3499. "System.Runtime": "4.3.0",
  3500. "System.Runtime.Handles": "4.3.0"
  3501. },
  3502. "compile": {
  3503. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  3504. }
  3505. },
  3506. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  3507. "type": "package",
  3508. "dependencies": {
  3509. "System.Reflection": "4.3.0",
  3510. "System.Reflection.Extensions": "4.3.0",
  3511. "System.Resources.ResourceManager": "4.3.0",
  3512. "System.Runtime": "4.3.0",
  3513. "System.Runtime.InteropServices": "4.3.0",
  3514. "System.Threading": "4.3.0",
  3515. "runtime.native.System": "4.3.0"
  3516. },
  3517. "compile": {
  3518. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3519. },
  3520. "runtime": {
  3521. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3522. },
  3523. "runtimeTargets": {
  3524. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3525. "assetType": "runtime",
  3526. "rid": "unix"
  3527. },
  3528. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3529. "assetType": "runtime",
  3530. "rid": "win"
  3531. }
  3532. }
  3533. },
  3534. "System.Runtime.Numerics/4.3.0": {
  3535. "type": "package",
  3536. "dependencies": {
  3537. "System.Globalization": "4.3.0",
  3538. "System.Resources.ResourceManager": "4.3.0",
  3539. "System.Runtime": "4.3.0",
  3540. "System.Runtime.Extensions": "4.3.0"
  3541. },
  3542. "compile": {
  3543. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  3544. "related": ".xml"
  3545. }
  3546. },
  3547. "runtime": {
  3548. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  3549. }
  3550. },
  3551. "System.Security.AccessControl/6.0.0": {
  3552. "type": "package",
  3553. "compile": {
  3554. "lib/net6.0/System.Security.AccessControl.dll": {
  3555. "related": ".xml"
  3556. }
  3557. },
  3558. "runtime": {
  3559. "lib/net6.0/System.Security.AccessControl.dll": {
  3560. "related": ".xml"
  3561. }
  3562. },
  3563. "build": {
  3564. "buildTransitive/netcoreapp3.1/_._": {}
  3565. },
  3566. "runtimeTargets": {
  3567. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": {
  3568. "assetType": "runtime",
  3569. "rid": "win"
  3570. }
  3571. }
  3572. },
  3573. "System.Security.Cryptography.Algorithms/4.3.0": {
  3574. "type": "package",
  3575. "dependencies": {
  3576. "Microsoft.NETCore.Platforms": "1.1.0",
  3577. "System.Collections": "4.3.0",
  3578. "System.IO": "4.3.0",
  3579. "System.Resources.ResourceManager": "4.3.0",
  3580. "System.Runtime": "4.3.0",
  3581. "System.Runtime.Extensions": "4.3.0",
  3582. "System.Runtime.Handles": "4.3.0",
  3583. "System.Runtime.InteropServices": "4.3.0",
  3584. "System.Runtime.Numerics": "4.3.0",
  3585. "System.Security.Cryptography.Encoding": "4.3.0",
  3586. "System.Security.Cryptography.Primitives": "4.3.0",
  3587. "System.Text.Encoding": "4.3.0",
  3588. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  3589. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3590. },
  3591. "compile": {
  3592. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3593. },
  3594. "runtimeTargets": {
  3595. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3596. "assetType": "runtime",
  3597. "rid": "osx"
  3598. },
  3599. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3600. "assetType": "runtime",
  3601. "rid": "unix"
  3602. },
  3603. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3604. "assetType": "runtime",
  3605. "rid": "win"
  3606. }
  3607. }
  3608. },
  3609. "System.Security.Cryptography.Cng/5.0.0": {
  3610. "type": "package",
  3611. "dependencies": {
  3612. "System.Formats.Asn1": "5.0.0"
  3613. },
  3614. "compile": {
  3615. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  3616. "related": ".xml"
  3617. }
  3618. },
  3619. "runtime": {
  3620. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  3621. "related": ".xml"
  3622. }
  3623. },
  3624. "runtimeTargets": {
  3625. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
  3626. "assetType": "runtime",
  3627. "rid": "win"
  3628. }
  3629. }
  3630. },
  3631. "System.Security.Cryptography.Csp/4.3.0": {
  3632. "type": "package",
  3633. "dependencies": {
  3634. "Microsoft.NETCore.Platforms": "1.1.0",
  3635. "System.IO": "4.3.0",
  3636. "System.Reflection": "4.3.0",
  3637. "System.Resources.ResourceManager": "4.3.0",
  3638. "System.Runtime": "4.3.0",
  3639. "System.Runtime.Extensions": "4.3.0",
  3640. "System.Runtime.Handles": "4.3.0",
  3641. "System.Runtime.InteropServices": "4.3.0",
  3642. "System.Security.Cryptography.Algorithms": "4.3.0",
  3643. "System.Security.Cryptography.Encoding": "4.3.0",
  3644. "System.Security.Cryptography.Primitives": "4.3.0",
  3645. "System.Text.Encoding": "4.3.0",
  3646. "System.Threading": "4.3.0"
  3647. },
  3648. "compile": {
  3649. "ref/netstandard1.3/_._": {}
  3650. },
  3651. "runtimeTargets": {
  3652. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3653. "assetType": "runtime",
  3654. "rid": "unix"
  3655. },
  3656. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3657. "assetType": "runtime",
  3658. "rid": "win"
  3659. }
  3660. }
  3661. },
  3662. "System.Security.Cryptography.Encoding/4.3.0": {
  3663. "type": "package",
  3664. "dependencies": {
  3665. "Microsoft.NETCore.Platforms": "1.1.0",
  3666. "System.Collections": "4.3.0",
  3667. "System.Collections.Concurrent": "4.3.0",
  3668. "System.Linq": "4.3.0",
  3669. "System.Resources.ResourceManager": "4.3.0",
  3670. "System.Runtime": "4.3.0",
  3671. "System.Runtime.Extensions": "4.3.0",
  3672. "System.Runtime.Handles": "4.3.0",
  3673. "System.Runtime.InteropServices": "4.3.0",
  3674. "System.Security.Cryptography.Primitives": "4.3.0",
  3675. "System.Text.Encoding": "4.3.0",
  3676. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3677. },
  3678. "compile": {
  3679. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3680. "related": ".xml"
  3681. }
  3682. },
  3683. "runtimeTargets": {
  3684. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3685. "assetType": "runtime",
  3686. "rid": "unix"
  3687. },
  3688. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3689. "assetType": "runtime",
  3690. "rid": "win"
  3691. }
  3692. }
  3693. },
  3694. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3695. "type": "package",
  3696. "dependencies": {
  3697. "System.Collections": "4.3.0",
  3698. "System.IO": "4.3.0",
  3699. "System.Resources.ResourceManager": "4.3.0",
  3700. "System.Runtime": "4.3.0",
  3701. "System.Runtime.Extensions": "4.3.0",
  3702. "System.Runtime.Handles": "4.3.0",
  3703. "System.Runtime.InteropServices": "4.3.0",
  3704. "System.Runtime.Numerics": "4.3.0",
  3705. "System.Security.Cryptography.Algorithms": "4.3.0",
  3706. "System.Security.Cryptography.Encoding": "4.3.0",
  3707. "System.Security.Cryptography.Primitives": "4.3.0",
  3708. "System.Text.Encoding": "4.3.0",
  3709. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3710. },
  3711. "compile": {
  3712. "ref/netstandard1.6/_._": {}
  3713. },
  3714. "runtime": {
  3715. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3716. },
  3717. "runtimeTargets": {
  3718. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3719. "assetType": "runtime",
  3720. "rid": "unix"
  3721. }
  3722. }
  3723. },
  3724. "System.Security.Cryptography.Pkcs/6.0.0": {
  3725. "type": "package",
  3726. "dependencies": {
  3727. "System.Formats.Asn1": "6.0.0"
  3728. },
  3729. "compile": {
  3730. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  3731. "related": ".xml"
  3732. }
  3733. },
  3734. "runtime": {
  3735. "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  3736. "related": ".xml"
  3737. }
  3738. },
  3739. "build": {
  3740. "buildTransitive/netcoreapp3.1/_._": {}
  3741. },
  3742. "runtimeTargets": {
  3743. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": {
  3744. "assetType": "runtime",
  3745. "rid": "win"
  3746. }
  3747. }
  3748. },
  3749. "System.Security.Cryptography.Primitives/4.3.0": {
  3750. "type": "package",
  3751. "dependencies": {
  3752. "System.Diagnostics.Debug": "4.3.0",
  3753. "System.Globalization": "4.3.0",
  3754. "System.IO": "4.3.0",
  3755. "System.Resources.ResourceManager": "4.3.0",
  3756. "System.Runtime": "4.3.0",
  3757. "System.Threading": "4.3.0",
  3758. "System.Threading.Tasks": "4.3.0"
  3759. },
  3760. "compile": {
  3761. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3762. },
  3763. "runtime": {
  3764. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3765. }
  3766. },
  3767. "System.Security.Cryptography.ProtectedData/6.0.0": {
  3768. "type": "package",
  3769. "compile": {
  3770. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  3771. "related": ".xml"
  3772. }
  3773. },
  3774. "runtime": {
  3775. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  3776. "related": ".xml"
  3777. }
  3778. },
  3779. "build": {
  3780. "buildTransitive/netcoreapp3.1/_._": {}
  3781. },
  3782. "runtimeTargets": {
  3783. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {
  3784. "assetType": "runtime",
  3785. "rid": "win"
  3786. }
  3787. }
  3788. },
  3789. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3790. "type": "package",
  3791. "dependencies": {
  3792. "Microsoft.NETCore.Platforms": "1.1.0",
  3793. "System.Collections": "4.3.0",
  3794. "System.Diagnostics.Debug": "4.3.0",
  3795. "System.Globalization": "4.3.0",
  3796. "System.Globalization.Calendars": "4.3.0",
  3797. "System.IO": "4.3.0",
  3798. "System.IO.FileSystem": "4.3.0",
  3799. "System.IO.FileSystem.Primitives": "4.3.0",
  3800. "System.Resources.ResourceManager": "4.3.0",
  3801. "System.Runtime": "4.3.0",
  3802. "System.Runtime.Extensions": "4.3.0",
  3803. "System.Runtime.Handles": "4.3.0",
  3804. "System.Runtime.InteropServices": "4.3.0",
  3805. "System.Runtime.Numerics": "4.3.0",
  3806. "System.Security.Cryptography.Algorithms": "4.3.0",
  3807. "System.Security.Cryptography.Cng": "4.3.0",
  3808. "System.Security.Cryptography.Csp": "4.3.0",
  3809. "System.Security.Cryptography.Encoding": "4.3.0",
  3810. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3811. "System.Security.Cryptography.Primitives": "4.3.0",
  3812. "System.Text.Encoding": "4.3.0",
  3813. "System.Threading": "4.3.0",
  3814. "runtime.native.System": "4.3.0",
  3815. "runtime.native.System.Net.Http": "4.3.0",
  3816. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3817. },
  3818. "compile": {
  3819. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3820. "related": ".xml"
  3821. }
  3822. },
  3823. "runtimeTargets": {
  3824. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3825. "assetType": "runtime",
  3826. "rid": "unix"
  3827. },
  3828. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3829. "assetType": "runtime",
  3830. "rid": "win"
  3831. }
  3832. }
  3833. },
  3834. "System.Security.Permissions/6.0.0": {
  3835. "type": "package",
  3836. "dependencies": {
  3837. "System.Security.AccessControl": "6.0.0",
  3838. "System.Windows.Extensions": "6.0.0"
  3839. },
  3840. "compile": {
  3841. "lib/net6.0/System.Security.Permissions.dll": {
  3842. "related": ".xml"
  3843. }
  3844. },
  3845. "runtime": {
  3846. "lib/net6.0/System.Security.Permissions.dll": {
  3847. "related": ".xml"
  3848. }
  3849. },
  3850. "build": {
  3851. "buildTransitive/netcoreapp3.1/_._": {}
  3852. }
  3853. },
  3854. "System.Security.Principal.Windows/4.7.0": {
  3855. "type": "package",
  3856. "compile": {
  3857. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3858. "related": ".xml"
  3859. }
  3860. },
  3861. "runtime": {
  3862. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3863. "related": ".xml"
  3864. }
  3865. },
  3866. "runtimeTargets": {
  3867. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3868. "assetType": "runtime",
  3869. "rid": "unix"
  3870. },
  3871. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3872. "assetType": "runtime",
  3873. "rid": "win"
  3874. }
  3875. }
  3876. },
  3877. "System.Text.Encoding/4.3.0": {
  3878. "type": "package",
  3879. "dependencies": {
  3880. "Microsoft.NETCore.Platforms": "1.1.0",
  3881. "Microsoft.NETCore.Targets": "1.1.0",
  3882. "System.Runtime": "4.3.0"
  3883. },
  3884. "compile": {
  3885. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3886. "related": ".xml"
  3887. }
  3888. }
  3889. },
  3890. "System.Text.Encoding.CodePages/4.7.0": {
  3891. "type": "package",
  3892. "dependencies": {
  3893. "Microsoft.NETCore.Platforms": "3.1.0"
  3894. },
  3895. "compile": {
  3896. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3897. "related": ".xml"
  3898. }
  3899. },
  3900. "runtime": {
  3901. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3902. "related": ".xml"
  3903. }
  3904. },
  3905. "runtimeTargets": {
  3906. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3907. "assetType": "runtime",
  3908. "rid": "win"
  3909. }
  3910. }
  3911. },
  3912. "System.Text.Encoding.Extensions/4.3.0": {
  3913. "type": "package",
  3914. "dependencies": {
  3915. "Microsoft.NETCore.Platforms": "1.1.0",
  3916. "Microsoft.NETCore.Targets": "1.1.0",
  3917. "System.Runtime": "4.3.0",
  3918. "System.Text.Encoding": "4.3.0"
  3919. },
  3920. "compile": {
  3921. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3922. "related": ".xml"
  3923. }
  3924. }
  3925. },
  3926. "System.Text.Encodings.Web/6.0.0": {
  3927. "type": "package",
  3928. "dependencies": {
  3929. "System.Runtime.CompilerServices.Unsafe": "6.0.0"
  3930. },
  3931. "compile": {
  3932. "lib/net6.0/System.Text.Encodings.Web.dll": {
  3933. "related": ".xml"
  3934. }
  3935. },
  3936. "runtime": {
  3937. "lib/net6.0/System.Text.Encodings.Web.dll": {
  3938. "related": ".xml"
  3939. }
  3940. },
  3941. "build": {
  3942. "buildTransitive/netcoreapp3.1/_._": {}
  3943. },
  3944. "runtimeTargets": {
  3945. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": {
  3946. "assetType": "runtime",
  3947. "rid": "browser"
  3948. }
  3949. }
  3950. },
  3951. "System.Text.Json/6.0.0": {
  3952. "type": "package",
  3953. "dependencies": {
  3954. "System.Runtime.CompilerServices.Unsafe": "6.0.0",
  3955. "System.Text.Encodings.Web": "6.0.0"
  3956. },
  3957. "compile": {
  3958. "lib/net6.0/System.Text.Json.dll": {
  3959. "related": ".xml"
  3960. }
  3961. },
  3962. "runtime": {
  3963. "lib/net6.0/System.Text.Json.dll": {
  3964. "related": ".xml"
  3965. }
  3966. },
  3967. "build": {
  3968. "buildTransitive/netcoreapp3.1/_._": {}
  3969. }
  3970. },
  3971. "System.Text.RegularExpressions/4.3.0": {
  3972. "type": "package",
  3973. "dependencies": {
  3974. "System.Runtime": "4.3.0"
  3975. },
  3976. "compile": {
  3977. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3978. },
  3979. "runtime": {
  3980. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3981. }
  3982. },
  3983. "System.Threading/4.3.0": {
  3984. "type": "package",
  3985. "dependencies": {
  3986. "System.Runtime": "4.3.0",
  3987. "System.Threading.Tasks": "4.3.0"
  3988. },
  3989. "compile": {
  3990. "ref/netstandard1.3/System.Threading.dll": {
  3991. "related": ".xml"
  3992. }
  3993. },
  3994. "runtime": {
  3995. "lib/netstandard1.3/System.Threading.dll": {}
  3996. }
  3997. },
  3998. "System.Threading.Tasks/4.3.0": {
  3999. "type": "package",
  4000. "dependencies": {
  4001. "Microsoft.NETCore.Platforms": "1.1.0",
  4002. "Microsoft.NETCore.Targets": "1.1.0",
  4003. "System.Runtime": "4.3.0"
  4004. },
  4005. "compile": {
  4006. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  4007. "related": ".xml"
  4008. }
  4009. }
  4010. },
  4011. "System.Threading.Tasks.Dataflow/4.9.0": {
  4012. "type": "package",
  4013. "compile": {
  4014. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": {
  4015. "related": ".xml"
  4016. }
  4017. },
  4018. "runtime": {
  4019. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll": {
  4020. "related": ".xml"
  4021. }
  4022. }
  4023. },
  4024. "System.Threading.Tasks.Extensions/4.5.4": {
  4025. "type": "package",
  4026. "compile": {
  4027. "ref/netcoreapp2.1/_._": {}
  4028. },
  4029. "runtime": {
  4030. "lib/netcoreapp2.1/_._": {}
  4031. }
  4032. },
  4033. "System.Threading.Timer/4.3.0": {
  4034. "type": "package",
  4035. "dependencies": {
  4036. "Microsoft.NETCore.Platforms": "1.1.0",
  4037. "Microsoft.NETCore.Targets": "1.1.0",
  4038. "System.Runtime": "4.3.0"
  4039. },
  4040. "compile": {
  4041. "ref/netstandard1.2/System.Threading.Timer.dll": {
  4042. "related": ".xml"
  4043. }
  4044. }
  4045. },
  4046. "System.Windows.Extensions/6.0.0": {
  4047. "type": "package",
  4048. "dependencies": {
  4049. "System.Drawing.Common": "6.0.0"
  4050. },
  4051. "compile": {
  4052. "lib/net6.0/System.Windows.Extensions.dll": {
  4053. "related": ".xml"
  4054. }
  4055. },
  4056. "runtime": {
  4057. "lib/net6.0/System.Windows.Extensions.dll": {
  4058. "related": ".xml"
  4059. }
  4060. },
  4061. "runtimeTargets": {
  4062. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": {
  4063. "assetType": "runtime",
  4064. "rid": "win"
  4065. }
  4066. }
  4067. },
  4068. "System.Xml.ReaderWriter/4.3.0": {
  4069. "type": "package",
  4070. "dependencies": {
  4071. "System.Collections": "4.3.0",
  4072. "System.Diagnostics.Debug": "4.3.0",
  4073. "System.Globalization": "4.3.0",
  4074. "System.IO": "4.3.0",
  4075. "System.IO.FileSystem": "4.3.0",
  4076. "System.IO.FileSystem.Primitives": "4.3.0",
  4077. "System.Resources.ResourceManager": "4.3.0",
  4078. "System.Runtime": "4.3.0",
  4079. "System.Runtime.Extensions": "4.3.0",
  4080. "System.Runtime.InteropServices": "4.3.0",
  4081. "System.Text.Encoding": "4.3.0",
  4082. "System.Text.Encoding.Extensions": "4.3.0",
  4083. "System.Text.RegularExpressions": "4.3.0",
  4084. "System.Threading.Tasks": "4.3.0",
  4085. "System.Threading.Tasks.Extensions": "4.3.0"
  4086. },
  4087. "compile": {
  4088. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  4089. "related": ".xml"
  4090. }
  4091. },
  4092. "runtime": {
  4093. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  4094. }
  4095. },
  4096. "System.Xml.XDocument/4.3.0": {
  4097. "type": "package",
  4098. "dependencies": {
  4099. "System.Collections": "4.3.0",
  4100. "System.Diagnostics.Debug": "4.3.0",
  4101. "System.Diagnostics.Tools": "4.3.0",
  4102. "System.Globalization": "4.3.0",
  4103. "System.IO": "4.3.0",
  4104. "System.Reflection": "4.3.0",
  4105. "System.Resources.ResourceManager": "4.3.0",
  4106. "System.Runtime": "4.3.0",
  4107. "System.Runtime.Extensions": "4.3.0",
  4108. "System.Text.Encoding": "4.3.0",
  4109. "System.Threading": "4.3.0",
  4110. "System.Xml.ReaderWriter": "4.3.0"
  4111. },
  4112. "compile": {
  4113. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  4114. "related": ".xml"
  4115. }
  4116. },
  4117. "runtime": {
  4118. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  4119. }
  4120. },
  4121. "SecureSharing.Business/1.0.0": {
  4122. "type": "project",
  4123. "framework": ".NETCoreApp,Version=v6.0",
  4124. "dependencies": {
  4125. "AutoMapper": "11.0.1",
  4126. "MailKit": "3.4.1",
  4127. "Microsoft.AspNetCore.Authentication.Google": "6.0.9",
  4128. "Microsoft.EntityFrameworkCore.SqlServer": "6.0.9",
  4129. "Microsoft.Extensions.Configuration.Binder": "6.0.0",
  4130. "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
  4131. "SecureSharing.Data": "1.0.0"
  4132. },
  4133. "compile": {
  4134. "bin/placeholder/SecureSharing.Business.dll": {}
  4135. },
  4136. "runtime": {
  4137. "bin/placeholder/SecureSharing.Business.dll": {}
  4138. }
  4139. },
  4140. "SecureSharing.Data/1.0.0": {
  4141. "type": "project",
  4142. "framework": ".NETCoreApp,Version=v6.0",
  4143. "dependencies": {
  4144. "AutoMapper": "11.0.1",
  4145. "Microsoft.AspNetCore.Authentication.Google": "6.0.9",
  4146. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "6.0.9",
  4147. "Microsoft.EntityFrameworkCore": "6.0.9",
  4148. "Microsoft.EntityFrameworkCore.SqlServer": "6.0.9",
  4149. "Microsoft.Extensions.Configuration": "6.0.1",
  4150. "Microsoft.Extensions.Configuration.Json": "6.0.0"
  4151. },
  4152. "compile": {
  4153. "bin/placeholder/SecureSharing.Data.dll": {}
  4154. },
  4155. "runtime": {
  4156. "bin/placeholder/SecureSharing.Data.dll": {}
  4157. }
  4158. }
  4159. }
  4160. },
  4161. "libraries": {
  4162. "AutoMapper/11.0.1": {
  4163. "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==",
  4164. "type": "package",
  4165. "path": "automapper/11.0.1",
  4166. "files": [
  4167. ".nupkg.metadata",
  4168. ".signature.p7s",
  4169. "README.md",
  4170. "automapper.11.0.1.nupkg.sha512",
  4171. "automapper.nuspec",
  4172. "icon.png",
  4173. "lib/netstandard2.1/AutoMapper.dll",
  4174. "lib/netstandard2.1/AutoMapper.xml"
  4175. ]
  4176. },
  4177. "Humanizer.Core/2.8.26": {
  4178. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  4179. "type": "package",
  4180. "path": "humanizer.core/2.8.26",
  4181. "files": [
  4182. ".nupkg.metadata",
  4183. ".signature.p7s",
  4184. "humanizer.core.2.8.26.nupkg.sha512",
  4185. "humanizer.core.nuspec",
  4186. "lib/netstandard1.0/Humanizer.dll",
  4187. "lib/netstandard1.0/Humanizer.xml",
  4188. "lib/netstandard2.0/Humanizer.dll",
  4189. "lib/netstandard2.0/Humanizer.xml",
  4190. "logo.png"
  4191. ]
  4192. },
  4193. "MailKit/3.4.1": {
  4194. "sha512": "XsrxxJDNb9KOtCHjXOlQjUGMKocZ5+DtKIH7cCoc6IRd7rZmfjDof0ITK16dAJhnTYcCvPa90fpYa6/4QkvmIw==",
  4195. "type": "package",
  4196. "path": "mailkit/3.4.1",
  4197. "files": [
  4198. ".nupkg.metadata",
  4199. ".signature.p7s",
  4200. "icons/mailkit-50.png",
  4201. "lib/net462/MailKit.dll",
  4202. "lib/net462/MailKit.pdb",
  4203. "lib/net462/MailKit.xml",
  4204. "lib/net47/MailKit.dll",
  4205. "lib/net47/MailKit.pdb",
  4206. "lib/net47/MailKit.xml",
  4207. "lib/net48/MailKit.dll",
  4208. "lib/net48/MailKit.pdb",
  4209. "lib/net48/MailKit.xml",
  4210. "lib/net6.0/MailKit.dll",
  4211. "lib/net6.0/MailKit.pdb",
  4212. "lib/net6.0/MailKit.xml",
  4213. "lib/netstandard2.0/MailKit.dll",
  4214. "lib/netstandard2.0/MailKit.pdb",
  4215. "lib/netstandard2.0/MailKit.xml",
  4216. "lib/netstandard2.1/MailKit.dll",
  4217. "lib/netstandard2.1/MailKit.pdb",
  4218. "lib/netstandard2.1/MailKit.xml",
  4219. "mailkit.3.4.1.nupkg.sha512",
  4220. "mailkit.nuspec"
  4221. ]
  4222. },
  4223. "MessagePack/2.1.152": {
  4224. "sha512": "PlJ31qf42uGuJfwc61x/Pt4hJi01xh1rrBofj1MJSLzEot/2UAIRdSgxEHN/8qou5CV8OBeDM9HXKPi1Oj8rpQ==",
  4225. "type": "package",
  4226. "path": "messagepack/2.1.152",
  4227. "files": [
  4228. ".nupkg.metadata",
  4229. ".signature.p7s",
  4230. "LICENSE",
  4231. "lib/netcoreapp2.1/MessagePack.dll",
  4232. "lib/netcoreapp2.1/MessagePack.xml",
  4233. "lib/netstandard2.0/MessagePack.dll",
  4234. "lib/netstandard2.0/MessagePack.xml",
  4235. "messagepack.2.1.152.nupkg.sha512",
  4236. "messagepack.nuspec"
  4237. ]
  4238. },
  4239. "MessagePack.Annotations/2.1.152": {
  4240. "sha512": "RONktDA/HA641ds/2bfOqYSVew8o8EJMcQ1P4M1J77QGgbzWiWt3nBHvCAwlx0VfO6K9S8xq4b5OLD2CUnhtCg==",
  4241. "type": "package",
  4242. "path": "messagepack.annotations/2.1.152",
  4243. "files": [
  4244. ".nupkg.metadata",
  4245. ".signature.p7s",
  4246. "LICENSE",
  4247. "lib/netstandard2.0/MessagePack.Annotations.dll",
  4248. "lib/netstandard2.0/MessagePack.Annotations.xml",
  4249. "messagepack.annotations.2.1.152.nupkg.sha512",
  4250. "messagepack.annotations.nuspec"
  4251. ]
  4252. },
  4253. "MessagePackAnalyzer/2.1.152": {
  4254. "sha512": "uJhZlGMkXDaFYsH8V9S6o1EyvsUqB9mpU4DVBXNr0DXZVzZMhuLP1IkLj5xK3EKlaAcvkFkZv3eSvuz360wb3Q==",
  4255. "type": "package",
  4256. "path": "messagepackanalyzer/2.1.152",
  4257. "hasTools": true,
  4258. "files": [
  4259. ".nupkg.metadata",
  4260. ".signature.p7s",
  4261. "LICENSE",
  4262. "analyzers/dotnet/MessagePackAnalyzer.dll",
  4263. "messagepackanalyzer.2.1.152.nupkg.sha512",
  4264. "messagepackanalyzer.nuspec",
  4265. "tools/install.ps1",
  4266. "tools/uninstall.ps1"
  4267. ]
  4268. },
  4269. "Microsoft.AspNet.Identity.Core/2.2.3": {
  4270. "sha512": "Mv5FpoaxspE8hlWLE4r1IdZtovg/OyFgVRhxQbx47J4sqdLImN1hnM1lnwCj+/wLmqtqFk/RYMoZ5GAcwm/00g==",
  4271. "type": "package",
  4272. "path": "microsoft.aspnet.identity.core/2.2.3",
  4273. "files": [
  4274. ".nupkg.metadata",
  4275. ".signature.p7s",
  4276. "lib/net45/Microsoft.AspNet.Identity.Core.dll",
  4277. "lib/net45/Microsoft.AspNet.Identity.Core.xml",
  4278. "microsoft.aspnet.identity.core.2.2.3.nupkg.sha512",
  4279. "microsoft.aspnet.identity.core.nuspec"
  4280. ]
  4281. },
  4282. "Microsoft.AspNetCore.Authentication.Google/6.0.9": {
  4283. "sha512": "el+CYfwbPZrbR9YoXhgWm9VeMpUCrSincdxfvPS4pW1fq3KLdf/Wxm1R7aZMahKfeCpOEe01gA6kOTuqvpPO0w==",
  4284. "type": "package",
  4285. "path": "microsoft.aspnetcore.authentication.google/6.0.9",
  4286. "files": [
  4287. ".nupkg.metadata",
  4288. ".signature.p7s",
  4289. "Icon.png",
  4290. "THIRD-PARTY-NOTICES.TXT",
  4291. "lib/net6.0/Microsoft.AspNetCore.Authentication.Google.dll",
  4292. "lib/net6.0/Microsoft.AspNetCore.Authentication.Google.xml",
  4293. "microsoft.aspnetcore.authentication.google.6.0.9.nupkg.sha512",
  4294. "microsoft.aspnetcore.authentication.google.nuspec"
  4295. ]
  4296. },
  4297. "Microsoft.AspNetCore.Cryptography.Internal/6.0.9": {
  4298. "sha512": "jjJsBS0bQ3VDCMpushHzd6rEjFh2PTaaz4LtYytdtcUl8istcRaSnSKcsKKromoPKNNg2B2ag8ZHwYr4WmT0/Q==",
  4299. "type": "package",
  4300. "path": "microsoft.aspnetcore.cryptography.internal/6.0.9",
  4301. "files": [
  4302. ".nupkg.metadata",
  4303. ".signature.p7s",
  4304. "Icon.png",
  4305. "THIRD-PARTY-NOTICES.TXT",
  4306. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4307. "lib/net461/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4308. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4309. "lib/net6.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4310. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4311. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4312. "microsoft.aspnetcore.cryptography.internal.6.0.9.nupkg.sha512",
  4313. "microsoft.aspnetcore.cryptography.internal.nuspec"
  4314. ]
  4315. },
  4316. "Microsoft.AspNetCore.Cryptography.KeyDerivation/6.0.9": {
  4317. "sha512": "qzx7/4FCszofYYQlyWCdHnGf4l/3pTQrRhGD0ok+WNTSv3hIEUPYzK5p3TJ36gokiiXEDvUnJTULH3e5I4PpbA==",
  4318. "type": "package",
  4319. "path": "microsoft.aspnetcore.cryptography.keyderivation/6.0.9",
  4320. "files": [
  4321. ".nupkg.metadata",
  4322. ".signature.p7s",
  4323. "Icon.png",
  4324. "THIRD-PARTY-NOTICES.TXT",
  4325. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  4326. "lib/net461/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  4327. "lib/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  4328. "lib/net6.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  4329. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll",
  4330. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml",
  4331. "microsoft.aspnetcore.cryptography.keyderivation.6.0.9.nupkg.sha512",
  4332. "microsoft.aspnetcore.cryptography.keyderivation.nuspec"
  4333. ]
  4334. },
  4335. "Microsoft.AspNetCore.Identity.EntityFrameworkCore/6.0.9": {
  4336. "sha512": "9yBxriP71NAbA1basxl229DYb2h1vTjhanVa34x/+G/23vwYHsP2YGhG0aGxJ1+9cPOfVaq2wOnJTIE2NfcJnw==",
  4337. "type": "package",
  4338. "path": "microsoft.aspnetcore.identity.entityframeworkcore/6.0.9",
  4339. "files": [
  4340. ".nupkg.metadata",
  4341. ".signature.p7s",
  4342. "Icon.png",
  4343. "THIRD-PARTY-NOTICES.TXT",
  4344. "lib/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll",
  4345. "lib/net6.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml",
  4346. "microsoft.aspnetcore.identity.entityframeworkcore.6.0.9.nupkg.sha512",
  4347. "microsoft.aspnetcore.identity.entityframeworkcore.nuspec"
  4348. ]
  4349. },
  4350. "Microsoft.AspNetCore.Identity.UI/6.0.9": {
  4351. "sha512": "4a0CIeMBByLD851rLTubj+J+xld9Cvd2PSBAKwAGZelTt8+qdtXYHi9/qTAIvYjfuaKaPkgtTYWxcqkZwP9FKg==",
  4352. "type": "package",
  4353. "path": "microsoft.aspnetcore.identity.ui/6.0.9",
  4354. "files": [
  4355. ".nupkg.metadata",
  4356. ".signature.p7s",
  4357. "Icon.png",
  4358. "THIRD-PARTY-NOTICES.TXT",
  4359. "build/Microsoft.AspNetCore.Identity.UI.props",
  4360. "build/Microsoft.AspNetCore.Identity.UI.targets",
  4361. "build/Microsoft.AspNetCore.StaticWebAssets.V4.targets",
  4362. "build/Microsoft.AspNetCore.StaticWebAssets.V5.targets",
  4363. "build/Microsoft.AspNetCore.StaticWebAssets.targets",
  4364. "buildMultiTargeting/Microsoft.AspNetCore.Identity.UI.targets",
  4365. "buildTransitive/Microsoft.AspNetCore.Identity.UI.targets",
  4366. "lib/net6.0/Microsoft.AspNetCore.Identity.UI.dll",
  4367. "lib/net6.0/Microsoft.AspNetCore.Identity.UI.xml",
  4368. "microsoft.aspnetcore.identity.ui.6.0.9.nupkg.sha512",
  4369. "microsoft.aspnetcore.identity.ui.nuspec",
  4370. "staticwebassets/V4/css/site.css",
  4371. "staticwebassets/V4/favicon.ico",
  4372. "staticwebassets/V4/js/site.js",
  4373. "staticwebassets/V4/lib/bootstrap/LICENSE",
  4374. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.css",
  4375. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  4376. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  4377. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  4378. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.css",
  4379. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  4380. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  4381. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  4382. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.css",
  4383. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.css.map",
  4384. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.min.css",
  4385. "staticwebassets/V4/lib/bootstrap/dist/css/bootstrap.min.css.map",
  4386. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.js",
  4387. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  4388. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  4389. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  4390. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.js",
  4391. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.js.map",
  4392. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.min.js",
  4393. "staticwebassets/V4/lib/bootstrap/dist/js/bootstrap.min.js.map",
  4394. "staticwebassets/V4/lib/jquery-validation-unobtrusive/LICENSE.txt",
  4395. "staticwebassets/V4/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  4396. "staticwebassets/V4/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  4397. "staticwebassets/V4/lib/jquery-validation/LICENSE.md",
  4398. "staticwebassets/V4/lib/jquery-validation/dist/additional-methods.js",
  4399. "staticwebassets/V4/lib/jquery-validation/dist/additional-methods.min.js",
  4400. "staticwebassets/V4/lib/jquery-validation/dist/jquery.validate.js",
  4401. "staticwebassets/V4/lib/jquery-validation/dist/jquery.validate.min.js",
  4402. "staticwebassets/V4/lib/jquery/LICENSE.txt",
  4403. "staticwebassets/V4/lib/jquery/dist/jquery.js",
  4404. "staticwebassets/V4/lib/jquery/dist/jquery.min.js",
  4405. "staticwebassets/V4/lib/jquery/dist/jquery.min.map",
  4406. "staticwebassets/V5/css/site.css",
  4407. "staticwebassets/V5/favicon.ico",
  4408. "staticwebassets/V5/js/site.js",
  4409. "staticwebassets/V5/lib/bootstrap/LICENSE",
  4410. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css",
  4411. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  4412. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  4413. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  4414. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
  4415. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
  4416. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
  4417. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
  4418. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css",
  4419. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  4420. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  4421. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  4422. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
  4423. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
  4424. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
  4425. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
  4426. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css",
  4427. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
  4428. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
  4429. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
  4430. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
  4431. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
  4432. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
  4433. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
  4434. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css",
  4435. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.css.map",
  4436. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css",
  4437. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.min.css.map",
  4438. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css",
  4439. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
  4440. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
  4441. "staticwebassets/V5/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
  4442. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js",
  4443. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  4444. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  4445. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  4446. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js",
  4447. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.js.map",
  4448. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js",
  4449. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
  4450. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js",
  4451. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.js.map",
  4452. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js",
  4453. "staticwebassets/V5/lib/bootstrap/dist/js/bootstrap.min.js.map",
  4454. "staticwebassets/V5/lib/jquery-validation-unobtrusive/LICENSE.txt",
  4455. "staticwebassets/V5/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  4456. "staticwebassets/V5/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  4457. "staticwebassets/V5/lib/jquery-validation/LICENSE.md",
  4458. "staticwebassets/V5/lib/jquery-validation/dist/additional-methods.js",
  4459. "staticwebassets/V5/lib/jquery-validation/dist/additional-methods.min.js",
  4460. "staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.js",
  4461. "staticwebassets/V5/lib/jquery-validation/dist/jquery.validate.min.js",
  4462. "staticwebassets/V5/lib/jquery/LICENSE.txt",
  4463. "staticwebassets/V5/lib/jquery/dist/jquery.js",
  4464. "staticwebassets/V5/lib/jquery/dist/jquery.min.js",
  4465. "staticwebassets/V5/lib/jquery/dist/jquery.min.map"
  4466. ]
  4467. },
  4468. "Microsoft.AspNetCore.Mvc.Razor.Extensions/6.0.9": {
  4469. "sha512": "Fs/85nHuWqmtYGc35BcyChs5IiSEUOZZCC/sWSD0QYvjYfbZ5XrJLCUDytjYoN7+PHxjiSpi5YLEvcVnJg8dsQ==",
  4470. "type": "package",
  4471. "path": "microsoft.aspnetcore.mvc.razor.extensions/6.0.9",
  4472. "files": [
  4473. ".nupkg.metadata",
  4474. ".signature.p7s",
  4475. "Icon.png",
  4476. "THIRD-PARTY-NOTICES.TXT",
  4477. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  4478. "microsoft.aspnetcore.mvc.razor.extensions.6.0.9.nupkg.sha512",
  4479. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  4480. ]
  4481. },
  4482. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation/6.0.9": {
  4483. "sha512": "3f62pyMoJhGmFpCT1SxeXe1LYESvWvCna4gmkiUjlu4Lg7Yx5VccmoFqideuFLVaLspefJzjKUkgEUvLWwwuYA==",
  4484. "type": "package",
  4485. "path": "microsoft.aspnetcore.mvc.razor.runtimecompilation/6.0.9",
  4486. "files": [
  4487. ".nupkg.metadata",
  4488. ".signature.p7s",
  4489. "Icon.png",
  4490. "THIRD-PARTY-NOTICES.TXT",
  4491. "build/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  4492. "buildTransitive/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.targets",
  4493. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.dll",
  4494. "lib/net6.0/Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.xml",
  4495. "microsoft.aspnetcore.mvc.razor.runtimecompilation.6.0.9.nupkg.sha512",
  4496. "microsoft.aspnetcore.mvc.razor.runtimecompilation.nuspec"
  4497. ]
  4498. },
  4499. "Microsoft.AspNetCore.Razor.Language/6.0.9": {
  4500. "sha512": "+vqmkvCu5YRC3FigWbWllREL28otF/7c2NCkp6CPty+mSNC8JpDkT+UOVbC3UdbJfLJAYPP2Jf35I0s/HGeUpQ==",
  4501. "type": "package",
  4502. "path": "microsoft.aspnetcore.razor.language/6.0.9",
  4503. "files": [
  4504. ".nupkg.metadata",
  4505. ".signature.p7s",
  4506. "Icon.png",
  4507. "THIRD-PARTY-NOTICES.TXT",
  4508. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  4509. "microsoft.aspnetcore.razor.language.6.0.9.nupkg.sha512",
  4510. "microsoft.aspnetcore.razor.language.nuspec"
  4511. ]
  4512. },
  4513. "Microsoft.Bcl.AsyncInterfaces/5.0.0": {
  4514. "sha512": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==",
  4515. "type": "package",
  4516. "path": "microsoft.bcl.asyncinterfaces/5.0.0",
  4517. "files": [
  4518. ".nupkg.metadata",
  4519. ".signature.p7s",
  4520. "Icon.png",
  4521. "LICENSE.TXT",
  4522. "THIRD-PARTY-NOTICES.TXT",
  4523. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  4524. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  4525. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4526. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  4527. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4528. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  4529. "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512",
  4530. "microsoft.bcl.asyncinterfaces.nuspec",
  4531. "useSharedDesignerContext.txt",
  4532. "version.txt"
  4533. ]
  4534. },
  4535. "Microsoft.Build/17.0.0": {
  4536. "sha512": "hCs9OzyCD/TYRid1LxPgghvUDqgXf+tEvV4qd8tBfOyp3zxAk+/rssgxtJnKLMZIu0CEZi3JegvfenaIXjEacQ==",
  4537. "type": "package",
  4538. "path": "microsoft.build/17.0.0",
  4539. "files": [
  4540. ".nupkg.metadata",
  4541. ".signature.p7s",
  4542. "MSBuild-NuGet-Icon.png",
  4543. "lib/net472/Microsoft.Build.dll",
  4544. "lib/net472/Microsoft.Build.pdb",
  4545. "lib/net472/Microsoft.Build.xml",
  4546. "lib/net6.0/Microsoft.Build.dll",
  4547. "lib/net6.0/Microsoft.Build.pdb",
  4548. "lib/net6.0/Microsoft.Build.xml",
  4549. "microsoft.build.17.0.0.nupkg.sha512",
  4550. "microsoft.build.nuspec",
  4551. "notices/THIRDPARTYNOTICES.txt"
  4552. ]
  4553. },
  4554. "Microsoft.Build.Framework/17.0.0": {
  4555. "sha512": "XbFA0z+6Ws2pNeRXYcDF3lKlNgRoSGMm2Q5HKzZD+EbwYMKPKrl/BJnnkMuDJHU0KravYHfhzBnLLJpPeZ3E7A==",
  4556. "type": "package",
  4557. "path": "microsoft.build.framework/17.0.0",
  4558. "files": [
  4559. ".nupkg.metadata",
  4560. ".signature.p7s",
  4561. "MSBuild-NuGet-Icon.png",
  4562. "lib/net472/Microsoft.Build.Framework.dll",
  4563. "lib/net472/Microsoft.Build.Framework.pdb",
  4564. "lib/net472/Microsoft.Build.Framework.xml",
  4565. "lib/netstandard2.0/Microsoft.Build.Framework.dll",
  4566. "lib/netstandard2.0/Microsoft.Build.Framework.pdb",
  4567. "lib/netstandard2.0/Microsoft.Build.Framework.xml",
  4568. "microsoft.build.framework.17.0.0.nupkg.sha512",
  4569. "microsoft.build.framework.nuspec",
  4570. "notices/THIRDPARTYNOTICES.txt"
  4571. ]
  4572. },
  4573. "Microsoft.CodeAnalysis.Analyzers/3.3.2": {
  4574. "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==",
  4575. "type": "package",
  4576. "path": "microsoft.codeanalysis.analyzers/3.3.2",
  4577. "hasTools": true,
  4578. "files": [
  4579. ".nupkg.metadata",
  4580. ".signature.p7s",
  4581. "EULA.rtf",
  4582. "ThirdPartyNotices.rtf",
  4583. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4584. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4585. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4586. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4587. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4588. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4589. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4590. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4591. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4592. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4593. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4594. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4595. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4596. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4597. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4598. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4599. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4600. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4601. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4602. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4603. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4604. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4605. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4606. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4607. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4608. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4609. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4610. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4611. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4612. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4613. "build/Microsoft.CodeAnalysis.Analyzers.props",
  4614. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  4615. "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig",
  4616. "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig",
  4617. "build/config/AnalysisLevel_2_9_8_Default.editorconfig",
  4618. "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig",
  4619. "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig",
  4620. "build/config/AnalysisLevel_3_3_Default.editorconfig",
  4621. "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig",
  4622. "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig",
  4623. "build/config/AnalysisLevel_3_Default.editorconfig",
  4624. "documentation/Analyzer Configuration.md",
  4625. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  4626. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  4627. "editorconfig/AllRulesDefault/.editorconfig",
  4628. "editorconfig/AllRulesDisabled/.editorconfig",
  4629. "editorconfig/AllRulesEnabled/.editorconfig",
  4630. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  4631. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  4632. "editorconfig/DataflowRulesDefault/.editorconfig",
  4633. "editorconfig/DataflowRulesEnabled/.editorconfig",
  4634. "editorconfig/LibraryRulesDefault/.editorconfig",
  4635. "editorconfig/LibraryRulesEnabled/.editorconfig",
  4636. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  4637. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  4638. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  4639. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  4640. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  4641. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  4642. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  4643. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  4644. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  4645. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  4646. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  4647. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  4648. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  4649. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  4650. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  4651. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  4652. "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512",
  4653. "microsoft.codeanalysis.analyzers.nuspec",
  4654. "rulesets/AllRulesDefault.ruleset",
  4655. "rulesets/AllRulesDisabled.ruleset",
  4656. "rulesets/AllRulesEnabled.ruleset",
  4657. "rulesets/CorrectnessRulesDefault.ruleset",
  4658. "rulesets/CorrectnessRulesEnabled.ruleset",
  4659. "rulesets/DataflowRulesDefault.ruleset",
  4660. "rulesets/DataflowRulesEnabled.ruleset",
  4661. "rulesets/LibraryRulesDefault.ruleset",
  4662. "rulesets/LibraryRulesEnabled.ruleset",
  4663. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  4664. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  4665. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  4666. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  4667. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  4668. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  4669. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  4670. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  4671. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  4672. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  4673. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  4674. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  4675. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  4676. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  4677. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  4678. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  4679. "tools/install.ps1",
  4680. "tools/uninstall.ps1"
  4681. ]
  4682. },
  4683. "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": {
  4684. "sha512": "gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==",
  4685. "type": "package",
  4686. "path": "microsoft.codeanalysis.analyzerutilities/3.3.0",
  4687. "hasTools": true,
  4688. "files": [
  4689. ".nupkg.metadata",
  4690. ".signature.p7s",
  4691. "EULA.rtf",
  4692. "ThirdPartyNotices.rtf",
  4693. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll",
  4694. "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.xml",
  4695. "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512",
  4696. "microsoft.codeanalysis.analyzerutilities.nuspec",
  4697. "tools/install.ps1",
  4698. "tools/uninstall.ps1"
  4699. ]
  4700. },
  4701. "Microsoft.CodeAnalysis.Common/4.0.0": {
  4702. "sha512": "d02ybMhUJl1r/dI6SkJPHrTiTzXBYCZeJdOLMckV+jyoMU/GGkjqFX/sRbv1K0QmlpwwKuLTiYVQvfYC+8ox2g==",
  4703. "type": "package",
  4704. "path": "microsoft.codeanalysis.common/4.0.0",
  4705. "files": [
  4706. ".nupkg.metadata",
  4707. ".signature.p7s",
  4708. "Icon.png",
  4709. "ThirdPartyNotices.rtf",
  4710. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  4711. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  4712. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  4713. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  4714. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  4715. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  4716. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  4717. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  4718. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  4719. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  4720. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  4721. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4722. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  4723. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  4724. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4725. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4726. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  4727. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  4728. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  4729. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4730. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  4731. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  4732. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4733. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  4734. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4735. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4736. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4737. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4738. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4739. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4740. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4741. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4742. "microsoft.codeanalysis.common.4.0.0.nupkg.sha512",
  4743. "microsoft.codeanalysis.common.nuspec"
  4744. ]
  4745. },
  4746. "Microsoft.CodeAnalysis.CSharp/4.0.0": {
  4747. "sha512": "2UVTGtyQGgTCazvnT6t82f+7AV2L+kqJdyb61rT9GQed4yK+tVh5IkaKcsm70VqyZQhBbDqsfZFNHnY65xhrRw==",
  4748. "type": "package",
  4749. "path": "microsoft.codeanalysis.csharp/4.0.0",
  4750. "files": [
  4751. ".nupkg.metadata",
  4752. ".signature.p7s",
  4753. "Icon.png",
  4754. "ThirdPartyNotices.rtf",
  4755. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  4756. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  4757. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  4758. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4759. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4760. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4761. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4762. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4763. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4764. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4765. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4766. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4767. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4768. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4769. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4770. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4771. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  4772. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4773. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  4774. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4775. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4776. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4777. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4778. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4779. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4780. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4781. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4782. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4783. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4784. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4785. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4786. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4787. "microsoft.codeanalysis.csharp.4.0.0.nupkg.sha512",
  4788. "microsoft.codeanalysis.csharp.nuspec"
  4789. ]
  4790. },
  4791. "Microsoft.CodeAnalysis.CSharp.Features/4.0.0": {
  4792. "sha512": "WOTeKJN0I4/AzylA+VuTtB7V7VvnM41GXqnyiiDRNa3QtKFAzJbQ7CwLG97pcme+oQLz708z+s4Nzd9g0irytw==",
  4793. "type": "package",
  4794. "path": "microsoft.codeanalysis.csharp.features/4.0.0",
  4795. "files": [
  4796. ".nupkg.metadata",
  4797. ".signature.p7s",
  4798. "Icon.png",
  4799. "ThirdPartyNotices.rtf",
  4800. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.dll",
  4801. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  4802. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Features.xml",
  4803. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4804. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4805. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4806. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4807. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4808. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4809. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4810. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4811. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4812. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4813. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4814. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4815. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4816. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.dll",
  4817. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.pdb",
  4818. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.xml",
  4819. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4820. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4821. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4822. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4823. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4824. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4825. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4826. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4827. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4828. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4829. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4830. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4831. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll",
  4832. "microsoft.codeanalysis.csharp.features.4.0.0.nupkg.sha512",
  4833. "microsoft.codeanalysis.csharp.features.nuspec"
  4834. ]
  4835. },
  4836. "Microsoft.CodeAnalysis.CSharp.Scripting/4.0.0": {
  4837. "sha512": "Z8Y8Ye2snCqVQLLx7K6FcEs0hcvdPi4nTG2RDWdPpOfMH8ed1yxTabt252qAd4TH0jpyruuCnBfW4s6DXliMYg==",
  4838. "type": "package",
  4839. "path": "microsoft.codeanalysis.csharp.scripting/4.0.0",
  4840. "files": [
  4841. ".nupkg.metadata",
  4842. ".signature.p7s",
  4843. "Icon.png",
  4844. "ThirdPartyNotices.rtf",
  4845. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
  4846. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
  4847. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
  4848. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4849. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4850. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4851. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4852. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4853. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4854. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4855. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4856. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4857. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4858. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4859. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4860. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4861. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
  4862. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
  4863. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
  4864. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4865. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4866. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4867. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4868. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4869. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4870. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4871. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4872. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4873. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4874. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4875. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4876. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
  4877. "microsoft.codeanalysis.csharp.scripting.4.0.0.nupkg.sha512",
  4878. "microsoft.codeanalysis.csharp.scripting.nuspec"
  4879. ]
  4880. },
  4881. "Microsoft.CodeAnalysis.CSharp.Workspaces/4.0.0": {
  4882. "sha512": "RQMc1+2cIRdOvY8vp6ygkzfBrvlYphnbmhhluKNh9+X+PpprQDKlbPrn9fLn6v9RlCsfa87joS3zJyGBEeWTXQ==",
  4883. "type": "package",
  4884. "path": "microsoft.codeanalysis.csharp.workspaces/4.0.0",
  4885. "files": [
  4886. ".nupkg.metadata",
  4887. ".signature.p7s",
  4888. "Icon.png",
  4889. "ThirdPartyNotices.rtf",
  4890. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  4891. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  4892. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  4893. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4894. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4895. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4896. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4897. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4898. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4899. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4900. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4901. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4902. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4903. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4904. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4905. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4906. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  4907. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  4908. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  4909. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4910. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4911. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4912. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4913. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4914. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4915. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4916. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4917. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4918. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4919. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4920. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4921. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4922. "microsoft.codeanalysis.csharp.workspaces.4.0.0.nupkg.sha512",
  4923. "microsoft.codeanalysis.csharp.workspaces.nuspec"
  4924. ]
  4925. },
  4926. "Microsoft.CodeAnalysis.Features/4.0.0": {
  4927. "sha512": "ci4pgjEgihb+fu2i1E12iOMGXU6GisYR3YrNd2aqt55ijjzLNqPV/+zt+cV3Qc0n08rJrIY2Bf6cTTMPY0bwJQ==",
  4928. "type": "package",
  4929. "path": "microsoft.codeanalysis.features/4.0.0",
  4930. "files": [
  4931. ".nupkg.metadata",
  4932. ".signature.p7s",
  4933. "Icon.png",
  4934. "ThirdPartyNotices.rtf",
  4935. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.dll",
  4936. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.pdb",
  4937. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Features.xml",
  4938. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  4939. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Features.resources.dll",
  4940. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Features.resources.dll",
  4941. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  4942. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Features.resources.dll",
  4943. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  4944. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  4945. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  4946. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  4947. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  4948. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  4949. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  4950. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  4951. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.dll",
  4952. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.pdb",
  4953. "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.xml",
  4954. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Features.resources.dll",
  4955. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Features.resources.dll",
  4956. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Features.resources.dll",
  4957. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Features.resources.dll",
  4958. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Features.resources.dll",
  4959. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Features.resources.dll",
  4960. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Features.resources.dll",
  4961. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Features.resources.dll",
  4962. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll",
  4963. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Features.resources.dll",
  4964. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Features.resources.dll",
  4965. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll",
  4966. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll",
  4967. "microsoft.codeanalysis.features.4.0.0.nupkg.sha512",
  4968. "microsoft.codeanalysis.features.nuspec"
  4969. ]
  4970. },
  4971. "Microsoft.CodeAnalysis.Razor/6.0.9": {
  4972. "sha512": "lrne86FU1NX7MA+RK4ewpJ0qdoq1L52L1Nm7Px4i/loxFvukDJ+1ZNF8U2xXfNr/YlwtCTFz4qtI60FEJkh4nw==",
  4973. "type": "package",
  4974. "path": "microsoft.codeanalysis.razor/6.0.9",
  4975. "files": [
  4976. ".nupkg.metadata",
  4977. ".signature.p7s",
  4978. "Icon.png",
  4979. "THIRD-PARTY-NOTICES.TXT",
  4980. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  4981. "microsoft.codeanalysis.razor.6.0.9.nupkg.sha512",
  4982. "microsoft.codeanalysis.razor.nuspec"
  4983. ]
  4984. },
  4985. "Microsoft.CodeAnalysis.Scripting.Common/4.0.0": {
  4986. "sha512": "jU/ncoHSFnXU/L2iju9AFlOwmsAYByIxhCCpeLPNTguXwosJp1o13mtrboJOfkDhi7ebvzQmvcZ++yBu8cF4Sw==",
  4987. "type": "package",
  4988. "path": "microsoft.codeanalysis.scripting.common/4.0.0",
  4989. "files": [
  4990. ".nupkg.metadata",
  4991. ".signature.p7s",
  4992. "Icon.png",
  4993. "ThirdPartyNotices.rtf",
  4994. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll",
  4995. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.pdb",
  4996. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.xml",
  4997. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4998. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  4999. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5000. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5001. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5002. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5003. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5004. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5005. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5006. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5007. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5008. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5009. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5010. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
  5011. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
  5012. "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
  5013. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5014. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5015. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5016. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5017. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5018. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5019. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5020. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5021. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5022. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5023. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5024. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5025. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
  5026. "microsoft.codeanalysis.scripting.common.4.0.0.nupkg.sha512",
  5027. "microsoft.codeanalysis.scripting.common.nuspec"
  5028. ]
  5029. },
  5030. "Microsoft.CodeAnalysis.VisualBasic/4.0.0": {
  5031. "sha512": "FK+OGUMUh9O6/GCwyIy4c/sOrarF36/yEY07BbXVYMql1qCqHGWfyWXyCQKQ6m/KqReCqW6aO4cK7kK/AYBpyA==",
  5032. "type": "package",
  5033. "path": "microsoft.codeanalysis.visualbasic/4.0.0",
  5034. "files": [
  5035. ".nupkg.metadata",
  5036. ".signature.p7s",
  5037. "Icon.png",
  5038. "ThirdPartyNotices.rtf",
  5039. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.dll",
  5040. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.pdb",
  5041. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.xml",
  5042. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5043. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5044. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5045. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5046. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5047. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5048. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5049. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5050. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5051. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5052. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5053. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5054. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5055. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.dll",
  5056. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.pdb",
  5057. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.xml",
  5058. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5059. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5060. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5061. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5062. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5063. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5064. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5065. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5066. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5067. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5068. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5069. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5070. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll",
  5071. "microsoft.codeanalysis.visualbasic.4.0.0.nupkg.sha512",
  5072. "microsoft.codeanalysis.visualbasic.nuspec"
  5073. ]
  5074. },
  5075. "Microsoft.CodeAnalysis.VisualBasic.Features/4.0.0": {
  5076. "sha512": "GEJsXFcMd7o+D6OYCLPui2ZvNsonTmdPSluGK0wC3EXVB+gnrro7Lr/sjtTSOwVeiXPlhXgprRuO7zJiMn1uzw==",
  5077. "type": "package",
  5078. "path": "microsoft.codeanalysis.visualbasic.features/4.0.0",
  5079. "files": [
  5080. ".nupkg.metadata",
  5081. ".signature.p7s",
  5082. "Icon.png",
  5083. "ThirdPartyNotices.rtf",
  5084. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.dll",
  5085. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.pdb",
  5086. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Features.xml",
  5087. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5088. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5089. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5090. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5091. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5092. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5093. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5094. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5095. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5096. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5097. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5098. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5099. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5100. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll",
  5101. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Features.pdb",
  5102. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Features.xml",
  5103. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5104. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5105. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5106. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5107. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5108. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5109. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5110. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5111. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5112. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5113. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5114. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5115. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll",
  5116. "microsoft.codeanalysis.visualbasic.features.4.0.0.nupkg.sha512",
  5117. "microsoft.codeanalysis.visualbasic.features.nuspec"
  5118. ]
  5119. },
  5120. "Microsoft.CodeAnalysis.VisualBasic.Workspaces/4.0.0": {
  5121. "sha512": "ozmB/thXGX5MoP/oiV9w5ZVGS08mz7fK3lRXiRSHHBeuiXZW1ZCGARwG2YkhylzAl1LlEwSQmlgrr8Irlu+3qQ==",
  5122. "type": "package",
  5123. "path": "microsoft.codeanalysis.visualbasic.workspaces/4.0.0",
  5124. "files": [
  5125. ".nupkg.metadata",
  5126. ".signature.p7s",
  5127. "Icon.png",
  5128. "ThirdPartyNotices.rtf",
  5129. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll",
  5130. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb",
  5131. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml",
  5132. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5133. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5134. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5135. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5136. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5137. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5138. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5139. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5140. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5141. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5142. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5143. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5144. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5145. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll",
  5146. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.pdb",
  5147. "lib/netstandard2.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.xml",
  5148. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5149. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5150. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5151. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5152. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5153. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5154. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5155. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5156. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5157. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5158. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5159. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5160. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll",
  5161. "microsoft.codeanalysis.visualbasic.workspaces.4.0.0.nupkg.sha512",
  5162. "microsoft.codeanalysis.visualbasic.workspaces.nuspec"
  5163. ]
  5164. },
  5165. "Microsoft.CodeAnalysis.Workspaces.Common/4.0.0": {
  5166. "sha512": "bEfHzx8PLmEN6aogVYHWmViHCWfms8emI43w9nNX+C8MLgtynOmVL/OJ4hbuONVp+4OuDAy5BDj69n5MnXQX8g==",
  5167. "type": "package",
  5168. "path": "microsoft.codeanalysis.workspaces.common/4.0.0",
  5169. "files": [
  5170. ".nupkg.metadata",
  5171. ".signature.p7s",
  5172. "Icon.png",
  5173. "ThirdPartyNotices.rtf",
  5174. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
  5175. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
  5176. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
  5177. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5178. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5179. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5180. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5181. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5182. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5183. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5184. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5185. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5186. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5187. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5188. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5189. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5190. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
  5191. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  5192. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
  5193. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5194. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5195. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5196. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5197. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5198. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5199. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5200. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5201. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5202. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5203. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5204. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5205. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  5206. "microsoft.codeanalysis.workspaces.common.4.0.0.nupkg.sha512",
  5207. "microsoft.codeanalysis.workspaces.common.nuspec"
  5208. ]
  5209. },
  5210. "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.0.0": {
  5211. "sha512": "0LYNKESZPK4AQmAXwn8l2e8UF/rYpT0pvceEhiTVjurjQ9Y7pGdUZ5E30r8knxYtT5/9ZESR7wKf/AU00r95Mw==",
  5212. "type": "package",
  5213. "path": "microsoft.codeanalysis.workspaces.msbuild/4.0.0",
  5214. "files": [
  5215. ".nupkg.metadata",
  5216. ".signature.p7s",
  5217. "Icon.png",
  5218. "ThirdPartyNotices.rtf",
  5219. "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
  5220. "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
  5221. "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
  5222. "lib/net472/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5223. "lib/net472/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5224. "lib/net472/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5225. "lib/net472/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5226. "lib/net472/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5227. "lib/net472/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5228. "lib/net472/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5229. "lib/net472/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5230. "lib/net472/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5231. "lib/net472/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5232. "lib/net472/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5233. "lib/net472/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5234. "lib/net472/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5235. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll",
  5236. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb",
  5237. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml",
  5238. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5239. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5240. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5241. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5242. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5243. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5244. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5245. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5246. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5247. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5248. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5249. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5250. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll",
  5251. "microsoft.codeanalysis.workspaces.msbuild.4.0.0.nupkg.sha512",
  5252. "microsoft.codeanalysis.workspaces.msbuild.nuspec"
  5253. ]
  5254. },
  5255. "Microsoft.CSharp/4.7.0": {
  5256. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  5257. "type": "package",
  5258. "path": "microsoft.csharp/4.7.0",
  5259. "files": [
  5260. ".nupkg.metadata",
  5261. ".signature.p7s",
  5262. "LICENSE.TXT",
  5263. "THIRD-PARTY-NOTICES.TXT",
  5264. "lib/MonoAndroid10/_._",
  5265. "lib/MonoTouch10/_._",
  5266. "lib/net45/_._",
  5267. "lib/netcore50/Microsoft.CSharp.dll",
  5268. "lib/netcoreapp2.0/_._",
  5269. "lib/netstandard1.3/Microsoft.CSharp.dll",
  5270. "lib/netstandard2.0/Microsoft.CSharp.dll",
  5271. "lib/netstandard2.0/Microsoft.CSharp.xml",
  5272. "lib/portable-net45+win8+wp8+wpa81/_._",
  5273. "lib/uap10.0.16299/_._",
  5274. "lib/win8/_._",
  5275. "lib/wp80/_._",
  5276. "lib/wpa81/_._",
  5277. "lib/xamarinios10/_._",
  5278. "lib/xamarinmac20/_._",
  5279. "lib/xamarintvos10/_._",
  5280. "lib/xamarinwatchos10/_._",
  5281. "microsoft.csharp.4.7.0.nupkg.sha512",
  5282. "microsoft.csharp.nuspec",
  5283. "ref/MonoAndroid10/_._",
  5284. "ref/MonoTouch10/_._",
  5285. "ref/net45/_._",
  5286. "ref/netcore50/Microsoft.CSharp.dll",
  5287. "ref/netcore50/Microsoft.CSharp.xml",
  5288. "ref/netcore50/de/Microsoft.CSharp.xml",
  5289. "ref/netcore50/es/Microsoft.CSharp.xml",
  5290. "ref/netcore50/fr/Microsoft.CSharp.xml",
  5291. "ref/netcore50/it/Microsoft.CSharp.xml",
  5292. "ref/netcore50/ja/Microsoft.CSharp.xml",
  5293. "ref/netcore50/ko/Microsoft.CSharp.xml",
  5294. "ref/netcore50/ru/Microsoft.CSharp.xml",
  5295. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  5296. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  5297. "ref/netcoreapp2.0/_._",
  5298. "ref/netstandard1.0/Microsoft.CSharp.dll",
  5299. "ref/netstandard1.0/Microsoft.CSharp.xml",
  5300. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  5301. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  5302. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  5303. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  5304. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  5305. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  5306. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  5307. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  5308. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  5309. "ref/netstandard2.0/Microsoft.CSharp.dll",
  5310. "ref/netstandard2.0/Microsoft.CSharp.xml",
  5311. "ref/portable-net45+win8+wp8+wpa81/_._",
  5312. "ref/uap10.0.16299/_._",
  5313. "ref/win8/_._",
  5314. "ref/wp80/_._",
  5315. "ref/wpa81/_._",
  5316. "ref/xamarinios10/_._",
  5317. "ref/xamarinmac20/_._",
  5318. "ref/xamarintvos10/_._",
  5319. "ref/xamarinwatchos10/_._",
  5320. "useSharedDesignerContext.txt",
  5321. "version.txt"
  5322. ]
  5323. },
  5324. "Microsoft.Data.SqlClient/2.1.4": {
  5325. "sha512": "cDcKBTKILdRuAzJjbgXwGcUQXzMue+SG02kD4tZTXXfoz4ALrGLpCnA5k9khw3fnAMlMnRzLIGuvRdJurqmESA==",
  5326. "type": "package",
  5327. "path": "microsoft.data.sqlclient/2.1.4",
  5328. "files": [
  5329. ".nupkg.metadata",
  5330. ".signature.p7s",
  5331. "dotnet.png",
  5332. "lib/net46/Microsoft.Data.SqlClient.dll",
  5333. "lib/net46/Microsoft.Data.SqlClient.pdb",
  5334. "lib/net46/Microsoft.Data.SqlClient.xml",
  5335. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  5336. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  5337. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  5338. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  5339. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  5340. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  5341. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  5342. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  5343. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  5344. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  5345. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  5346. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  5347. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  5348. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  5349. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  5350. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  5351. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5352. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5353. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  5354. "lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5355. "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5356. "lib/netstandard2.1/Microsoft.Data.SqlClient.xml",
  5357. "microsoft.data.sqlclient.2.1.4.nupkg.sha512",
  5358. "microsoft.data.sqlclient.nuspec",
  5359. "ref/net46/Microsoft.Data.SqlClient.dll",
  5360. "ref/net46/Microsoft.Data.SqlClient.pdb",
  5361. "ref/net46/Microsoft.Data.SqlClient.xml",
  5362. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  5363. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  5364. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  5365. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  5366. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  5367. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  5368. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5369. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5370. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  5371. "ref/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5372. "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5373. "ref/netstandard2.1/Microsoft.Data.SqlClient.xml",
  5374. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  5375. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  5376. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  5377. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  5378. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5379. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5380. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5381. "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb",
  5382. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  5383. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  5384. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  5385. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  5386. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  5387. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  5388. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  5389. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  5390. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll",
  5391. "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb"
  5392. ]
  5393. },
  5394. "Microsoft.Data.SqlClient.SNI.runtime/2.1.1": {
  5395. "sha512": "JwGDWkyZgm7SATJmFLfT2G4teimvNbNtq3lsS9a5DzvhEZnQrZjZhevCU0vdx8MjheLHoG5vocuO03QtioFQxQ==",
  5396. "type": "package",
  5397. "path": "microsoft.data.sqlclient.sni.runtime/2.1.1",
  5398. "files": [
  5399. ".nupkg.metadata",
  5400. ".signature.p7s",
  5401. "LICENSE.txt",
  5402. "dotnet.png",
  5403. "microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
  5404. "microsoft.data.sqlclient.sni.runtime.nuspec",
  5405. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  5406. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  5407. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  5408. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll"
  5409. ]
  5410. },
  5411. "Microsoft.DiaSymReader/1.3.0": {
  5412. "sha512": "/fn1Tfo7j7k/slViPlM8azJuxQmri7FZ8dQ+gTeLbI29leN/1VK0U/BFcRdJNctsRCUgyKJ2q+I0Tjq07Rc1/Q==",
  5413. "type": "package",
  5414. "path": "microsoft.diasymreader/1.3.0",
  5415. "files": [
  5416. ".nupkg.metadata",
  5417. ".signature.p7s",
  5418. "lib/net20/Microsoft.DiaSymReader.dll",
  5419. "lib/net20/Microsoft.DiaSymReader.pdb",
  5420. "lib/net20/Microsoft.DiaSymReader.xml",
  5421. "lib/netstandard1.1/Microsoft.DiaSymReader.dll",
  5422. "lib/netstandard1.1/Microsoft.DiaSymReader.pdb",
  5423. "lib/netstandard1.1/Microsoft.DiaSymReader.xml",
  5424. "microsoft.diasymreader.1.3.0.nupkg.sha512",
  5425. "microsoft.diasymreader.nuspec"
  5426. ]
  5427. },
  5428. "Microsoft.DotNet.Scaffolding.Shared/6.0.9": {
  5429. "sha512": "ixfrXJUBn931Mx8tpD7iqw1Jbkb58ON+BeSyGKh1cEBPDVUuVYb8AQuyhnbfRhr2F08ND1mfnZy5cwX+hNThKQ==",
  5430. "type": "package",
  5431. "path": "microsoft.dotnet.scaffolding.shared/6.0.9",
  5432. "files": [
  5433. ".nupkg.metadata",
  5434. ".signature.p7s",
  5435. "Icon.png",
  5436. "lib/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll",
  5437. "lib/net6.0/Microsoft.DotNet.Scaffolding.Shared.xml",
  5438. "microsoft.dotnet.scaffolding.shared.6.0.9.nupkg.sha512",
  5439. "microsoft.dotnet.scaffolding.shared.nuspec"
  5440. ]
  5441. },
  5442. "Microsoft.EntityFrameworkCore/6.0.9": {
  5443. "sha512": "3QxYF6TR14O3cSZitdzM10Smsw+hweLXyB45PN4ZVjrX4GqzUoGZ0ZC06r0ST7O7SgYxNjxw34ay5XXbBTX86A==",
  5444. "type": "package",
  5445. "path": "microsoft.entityframeworkcore/6.0.9",
  5446. "files": [
  5447. ".nupkg.metadata",
  5448. ".signature.p7s",
  5449. "Icon.png",
  5450. "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props",
  5451. "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
  5452. "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
  5453. "microsoft.entityframeworkcore.6.0.9.nupkg.sha512",
  5454. "microsoft.entityframeworkcore.nuspec"
  5455. ]
  5456. },
  5457. "Microsoft.EntityFrameworkCore.Abstractions/6.0.9": {
  5458. "sha512": "XglcSAr6EtjqJpI0DjMMDWkq3l5zG45hRHgrodZFMxNxE7KettJ+X8Em39Aaa0XQwH2P+NHVyK+xhtPX8ogdEA==",
  5459. "type": "package",
  5460. "path": "microsoft.entityframeworkcore.abstractions/6.0.9",
  5461. "files": [
  5462. ".nupkg.metadata",
  5463. ".signature.p7s",
  5464. "Icon.png",
  5465. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  5466. "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  5467. "microsoft.entityframeworkcore.abstractions.6.0.9.nupkg.sha512",
  5468. "microsoft.entityframeworkcore.abstractions.nuspec"
  5469. ]
  5470. },
  5471. "Microsoft.EntityFrameworkCore.Analyzers/6.0.9": {
  5472. "sha512": "rNIx4fr7KWH4ypghhI+78PhCUYBHdjVbQ3yKvj/KmUIe4d9pysHXT3lF9TuReVdMDsn5mEx+3Yez8s80J4/JLA==",
  5473. "type": "package",
  5474. "path": "microsoft.entityframeworkcore.analyzers/6.0.9",
  5475. "files": [
  5476. ".nupkg.metadata",
  5477. ".signature.p7s",
  5478. "Icon.png",
  5479. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  5480. "lib/netstandard2.0/_._",
  5481. "microsoft.entityframeworkcore.analyzers.6.0.9.nupkg.sha512",
  5482. "microsoft.entityframeworkcore.analyzers.nuspec"
  5483. ]
  5484. },
  5485. "Microsoft.EntityFrameworkCore.Design/6.0.9": {
  5486. "sha512": "F+1dYjaxMG181+seb2xK4uLU1UoTR0UZRcfYzSQFfVFwAyWtCp3uooNorWYE3BnJAHNEVJgsGmlfYAEGsrewqg==",
  5487. "type": "package",
  5488. "path": "microsoft.entityframeworkcore.design/6.0.9",
  5489. "files": [
  5490. ".nupkg.metadata",
  5491. ".signature.p7s",
  5492. "Icon.png",
  5493. "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
  5494. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
  5495. "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
  5496. "microsoft.entityframeworkcore.design.6.0.9.nupkg.sha512",
  5497. "microsoft.entityframeworkcore.design.nuspec"
  5498. ]
  5499. },
  5500. "Microsoft.EntityFrameworkCore.Relational/6.0.9": {
  5501. "sha512": "LAZHEvlgSg6OUzLUH3BoVneYrQj7cQqwwFnzSfwVGNjQvj5RRh7Vz0eSXLKfQD4xv5QuSm3l+MzFMZC1NBPQHw==",
  5502. "type": "package",
  5503. "path": "microsoft.entityframeworkcore.relational/6.0.9",
  5504. "files": [
  5505. ".nupkg.metadata",
  5506. ".signature.p7s",
  5507. "Icon.png",
  5508. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
  5509. "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
  5510. "microsoft.entityframeworkcore.relational.6.0.9.nupkg.sha512",
  5511. "microsoft.entityframeworkcore.relational.nuspec"
  5512. ]
  5513. },
  5514. "Microsoft.EntityFrameworkCore.SqlServer/6.0.9": {
  5515. "sha512": "AFSLWlwPKK92kvKGs9mwno7UMKHk30SRLmA4Ikh5FSzs86NqiyxvH2tvdFwUodTIWHXJPJ3fV/Q6v9znipOKBg==",
  5516. "type": "package",
  5517. "path": "microsoft.entityframeworkcore.sqlserver/6.0.9",
  5518. "files": [
  5519. ".nupkg.metadata",
  5520. ".signature.p7s",
  5521. "Icon.png",
  5522. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  5523. "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  5524. "microsoft.entityframeworkcore.sqlserver.6.0.9.nupkg.sha512",
  5525. "microsoft.entityframeworkcore.sqlserver.nuspec"
  5526. ]
  5527. },
  5528. "Microsoft.EntityFrameworkCore.Tools/6.0.9": {
  5529. "sha512": "HqdzDohxXfh7onMfrKxI3qtRu+TF246dNVQ1Yjql7v69CfeKWFyRxLbuNG/ScGh9dZdXHDvNjqXb4Ou9GHflew==",
  5530. "type": "package",
  5531. "path": "microsoft.entityframeworkcore.tools/6.0.9",
  5532. "hasTools": true,
  5533. "files": [
  5534. ".nupkg.metadata",
  5535. ".signature.p7s",
  5536. "Icon.png",
  5537. "lib/net6.0/_._",
  5538. "microsoft.entityframeworkcore.tools.6.0.9.nupkg.sha512",
  5539. "microsoft.entityframeworkcore.tools.nuspec",
  5540. "tools/EntityFrameworkCore.PS2.psd1",
  5541. "tools/EntityFrameworkCore.PS2.psm1",
  5542. "tools/EntityFrameworkCore.psd1",
  5543. "tools/EntityFrameworkCore.psm1",
  5544. "tools/about_EntityFrameworkCore.help.txt",
  5545. "tools/init.ps1",
  5546. "tools/net461/any/ef.exe",
  5547. "tools/net461/win-arm64/ef.exe",
  5548. "tools/net461/win-x86/ef.exe",
  5549. "tools/netcoreapp2.0/any/ef.dll",
  5550. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  5551. ]
  5552. },
  5553. "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
  5554. "sha512": "bcz5sSFJbganH0+YrfvIjJDIcKNW7TL07C4d1eTmXy/wOt52iz4LVogJb6pazs7W0+74j0YpXFErvp++Aq5Bsw==",
  5555. "type": "package",
  5556. "path": "microsoft.extensions.caching.abstractions/6.0.0",
  5557. "files": [
  5558. ".nupkg.metadata",
  5559. ".signature.p7s",
  5560. "Icon.png",
  5561. "LICENSE.TXT",
  5562. "THIRD-PARTY-NOTICES.TXT",
  5563. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  5564. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  5565. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  5566. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  5567. "microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
  5568. "microsoft.extensions.caching.abstractions.nuspec",
  5569. "useSharedDesignerContext.txt"
  5570. ]
  5571. },
  5572. "Microsoft.Extensions.Caching.Memory/6.0.1": {
  5573. "sha512": "B4y+Cev05eMcjf1na0v9gza6GUtahXbtY1JCypIgx3B4Ea/KAgsWyXEmW4q6zMbmTMtKzmPVk09rvFJirvMwTg==",
  5574. "type": "package",
  5575. "path": "microsoft.extensions.caching.memory/6.0.1",
  5576. "files": [
  5577. ".nupkg.metadata",
  5578. ".signature.p7s",
  5579. "Icon.png",
  5580. "LICENSE.TXT",
  5581. "THIRD-PARTY-NOTICES.TXT",
  5582. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  5583. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  5584. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  5585. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  5586. "microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
  5587. "microsoft.extensions.caching.memory.nuspec",
  5588. "useSharedDesignerContext.txt"
  5589. ]
  5590. },
  5591. "Microsoft.Extensions.Configuration/6.0.1": {
  5592. "sha512": "BUyFU9t+HzlSE7ri4B+AQN2BgTgHv/uM82s5ZkgU1BApyzWzIl48nDsG5wR1t0pniNuuyTBzG3qCW8152/NtSw==",
  5593. "type": "package",
  5594. "path": "microsoft.extensions.configuration/6.0.1",
  5595. "files": [
  5596. ".nupkg.metadata",
  5597. ".signature.p7s",
  5598. "Icon.png",
  5599. "LICENSE.TXT",
  5600. "THIRD-PARTY-NOTICES.TXT",
  5601. "lib/net461/Microsoft.Extensions.Configuration.dll",
  5602. "lib/net461/Microsoft.Extensions.Configuration.xml",
  5603. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  5604. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  5605. "microsoft.extensions.configuration.6.0.1.nupkg.sha512",
  5606. "microsoft.extensions.configuration.nuspec",
  5607. "useSharedDesignerContext.txt"
  5608. ]
  5609. },
  5610. "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
  5611. "sha512": "qWzV9o+ZRWq+pGm+1dF+R7qTgTYoXvbyowRoBxQJGfqTpqDun2eteerjRQhq5PQ/14S+lqto3Ft4gYaRyl4rdQ==",
  5612. "type": "package",
  5613. "path": "microsoft.extensions.configuration.abstractions/6.0.0",
  5614. "files": [
  5615. ".nupkg.metadata",
  5616. ".signature.p7s",
  5617. "Icon.png",
  5618. "LICENSE.TXT",
  5619. "THIRD-PARTY-NOTICES.TXT",
  5620. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  5621. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  5622. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  5623. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  5624. "microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
  5625. "microsoft.extensions.configuration.abstractions.nuspec",
  5626. "useSharedDesignerContext.txt"
  5627. ]
  5628. },
  5629. "Microsoft.Extensions.Configuration.Binder/6.0.0": {
  5630. "sha512": "b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==",
  5631. "type": "package",
  5632. "path": "microsoft.extensions.configuration.binder/6.0.0",
  5633. "files": [
  5634. ".nupkg.metadata",
  5635. ".signature.p7s",
  5636. "Icon.png",
  5637. "LICENSE.TXT",
  5638. "THIRD-PARTY-NOTICES.TXT",
  5639. "lib/net461/Microsoft.Extensions.Configuration.Binder.dll",
  5640. "lib/net461/Microsoft.Extensions.Configuration.Binder.xml",
  5641. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  5642. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  5643. "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
  5644. "microsoft.extensions.configuration.binder.nuspec",
  5645. "useSharedDesignerContext.txt"
  5646. ]
  5647. },
  5648. "Microsoft.Extensions.Configuration.FileExtensions/6.0.0": {
  5649. "sha512": "V4Dth2cYMZpw3HhGw9XUDIijpI6gN+22LDt0AhufIgOppCUfpWX4483OmN+dFXRJkJLc8Tv0Q8QK+1ingT2+KQ==",
  5650. "type": "package",
  5651. "path": "microsoft.extensions.configuration.fileextensions/6.0.0",
  5652. "files": [
  5653. ".nupkg.metadata",
  5654. ".signature.p7s",
  5655. "Icon.png",
  5656. "LICENSE.TXT",
  5657. "THIRD-PARTY-NOTICES.TXT",
  5658. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.dll",
  5659. "lib/net461/Microsoft.Extensions.Configuration.FileExtensions.xml",
  5660. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll",
  5661. "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml",
  5662. "microsoft.extensions.configuration.fileextensions.6.0.0.nupkg.sha512",
  5663. "microsoft.extensions.configuration.fileextensions.nuspec",
  5664. "useSharedDesignerContext.txt"
  5665. ]
  5666. },
  5667. "Microsoft.Extensions.Configuration.Json/6.0.0": {
  5668. "sha512": "GJGery6QytCzS/BxJ96klgG9in3uH26KcUBbiVG/coNDXCRq6LGVVlUT4vXq34KPuM+R2av+LeYdX9h4IZOCUg==",
  5669. "type": "package",
  5670. "path": "microsoft.extensions.configuration.json/6.0.0",
  5671. "files": [
  5672. ".nupkg.metadata",
  5673. ".signature.p7s",
  5674. "Icon.png",
  5675. "LICENSE.TXT",
  5676. "THIRD-PARTY-NOTICES.TXT",
  5677. "lib/net461/Microsoft.Extensions.Configuration.Json.dll",
  5678. "lib/net461/Microsoft.Extensions.Configuration.Json.xml",
  5679. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll",
  5680. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml",
  5681. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll",
  5682. "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml",
  5683. "microsoft.extensions.configuration.json.6.0.0.nupkg.sha512",
  5684. "microsoft.extensions.configuration.json.nuspec",
  5685. "useSharedDesignerContext.txt"
  5686. ]
  5687. },
  5688. "Microsoft.Extensions.DependencyInjection/6.0.0": {
  5689. "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==",
  5690. "type": "package",
  5691. "path": "microsoft.extensions.dependencyinjection/6.0.0",
  5692. "files": [
  5693. ".nupkg.metadata",
  5694. ".signature.p7s",
  5695. "Icon.png",
  5696. "LICENSE.TXT",
  5697. "THIRD-PARTY-NOTICES.TXT",
  5698. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
  5699. "buildTransitive/netcoreapp3.1/_._",
  5700. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  5701. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  5702. "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
  5703. "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
  5704. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  5705. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  5706. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  5707. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  5708. "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
  5709. "microsoft.extensions.dependencyinjection.nuspec",
  5710. "useSharedDesignerContext.txt"
  5711. ]
  5712. },
  5713. "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
  5714. "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==",
  5715. "type": "package",
  5716. "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0",
  5717. "files": [
  5718. ".nupkg.metadata",
  5719. ".signature.p7s",
  5720. "Icon.png",
  5721. "LICENSE.TXT",
  5722. "THIRD-PARTY-NOTICES.TXT",
  5723. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
  5724. "buildTransitive/netcoreapp3.1/_._",
  5725. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5726. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5727. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5728. "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5729. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5730. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5731. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  5732. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  5733. "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
  5734. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  5735. "useSharedDesignerContext.txt"
  5736. ]
  5737. },
  5738. "Microsoft.Extensions.DependencyModel/6.0.0": {
  5739. "sha512": "TD5QHg98m3+QhgEV1YVoNMl5KtBw/4rjfxLHO0e/YV9bPUBDKntApP4xdrVtGgCeQZHVfC2EXIGsdpRNrr87Pg==",
  5740. "type": "package",
  5741. "path": "microsoft.extensions.dependencymodel/6.0.0",
  5742. "files": [
  5743. ".nupkg.metadata",
  5744. ".signature.p7s",
  5745. "Icon.png",
  5746. "LICENSE.TXT",
  5747. "THIRD-PARTY-NOTICES.TXT",
  5748. "lib/net461/Microsoft.Extensions.DependencyModel.dll",
  5749. "lib/net461/Microsoft.Extensions.DependencyModel.xml",
  5750. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
  5751. "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
  5752. "microsoft.extensions.dependencymodel.6.0.0.nupkg.sha512",
  5753. "microsoft.extensions.dependencymodel.nuspec",
  5754. "useSharedDesignerContext.txt"
  5755. ]
  5756. },
  5757. "Microsoft.Extensions.FileProviders.Abstractions/6.0.0": {
  5758. "sha512": "0pd4/fho0gC12rQswaGQxbU34jOS1TPS8lZPpkFCH68ppQjHNHYle9iRuHeev1LhrJ94YPvzcRd8UmIuFk23Qw==",
  5759. "type": "package",
  5760. "path": "microsoft.extensions.fileproviders.abstractions/6.0.0",
  5761. "files": [
  5762. ".nupkg.metadata",
  5763. ".signature.p7s",
  5764. "Icon.png",
  5765. "LICENSE.TXT",
  5766. "THIRD-PARTY-NOTICES.TXT",
  5767. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets",
  5768. "buildTransitive/netcoreapp3.1/_._",
  5769. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5770. "lib/net461/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5771. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5772. "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5773. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  5774. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  5775. "microsoft.extensions.fileproviders.abstractions.6.0.0.nupkg.sha512",
  5776. "microsoft.extensions.fileproviders.abstractions.nuspec",
  5777. "useSharedDesignerContext.txt"
  5778. ]
  5779. },
  5780. "Microsoft.Extensions.FileProviders.Embedded/6.0.9": {
  5781. "sha512": "TAxEHyhv8Z1yLYmwuvBkXJ351FUC1SmQyLxJVmEVjnl1AtbxY41jehDAmN/a5+zSTf/RBaHjxcWn+gQzjcpvcA==",
  5782. "type": "package",
  5783. "path": "microsoft.extensions.fileproviders.embedded/6.0.9",
  5784. "files": [
  5785. ".nupkg.metadata",
  5786. ".signature.p7s",
  5787. "Icon.png",
  5788. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.props",
  5789. "build/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.targets",
  5790. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.props",
  5791. "buildMultiTargeting/Microsoft.Extensions.FileProviders.Embedded.targets",
  5792. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.dll",
  5793. "lib/net461/Microsoft.Extensions.FileProviders.Embedded.xml",
  5794. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5795. "lib/net6.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5796. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.dll",
  5797. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.xml",
  5798. "microsoft.extensions.fileproviders.embedded.6.0.9.nupkg.sha512",
  5799. "microsoft.extensions.fileproviders.embedded.nuspec",
  5800. "tasks/netstandard2.0/Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.dll"
  5801. ]
  5802. },
  5803. "Microsoft.Extensions.FileProviders.Physical/6.0.0": {
  5804. "sha512": "QvkL7l0nM8udt3gfyu0Vw8bbCXblxaKOl7c2oBfgGy4LCURRaL9XWZX1FWJrQc43oMokVneVxH38iz+bY1sbhg==",
  5805. "type": "package",
  5806. "path": "microsoft.extensions.fileproviders.physical/6.0.0",
  5807. "files": [
  5808. ".nupkg.metadata",
  5809. ".signature.p7s",
  5810. "Icon.png",
  5811. "LICENSE.TXT",
  5812. "THIRD-PARTY-NOTICES.TXT",
  5813. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets",
  5814. "buildTransitive/netcoreapp3.1/_._",
  5815. "lib/net461/Microsoft.Extensions.FileProviders.Physical.dll",
  5816. "lib/net461/Microsoft.Extensions.FileProviders.Physical.xml",
  5817. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5818. "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5819. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll",
  5820. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml",
  5821. "microsoft.extensions.fileproviders.physical.6.0.0.nupkg.sha512",
  5822. "microsoft.extensions.fileproviders.physical.nuspec",
  5823. "useSharedDesignerContext.txt"
  5824. ]
  5825. },
  5826. "Microsoft.Extensions.FileSystemGlobbing/6.0.0": {
  5827. "sha512": "ip8jnL1aPiaPeKINCqaTEbvBFDmVx9dXQEBZ2HOBRXPD1eabGNqP/bKlsIcp7U2lGxiXd5xIhoFcmY8nM4Hdiw==",
  5828. "type": "package",
  5829. "path": "microsoft.extensions.filesystemglobbing/6.0.0",
  5830. "files": [
  5831. ".nupkg.metadata",
  5832. ".signature.p7s",
  5833. "Icon.png",
  5834. "LICENSE.TXT",
  5835. "THIRD-PARTY-NOTICES.TXT",
  5836. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets",
  5837. "buildTransitive/netcoreapp3.1/_._",
  5838. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.dll",
  5839. "lib/net461/Microsoft.Extensions.FileSystemGlobbing.xml",
  5840. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5841. "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5842. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5843. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5844. "microsoft.extensions.filesystemglobbing.6.0.0.nupkg.sha512",
  5845. "microsoft.extensions.filesystemglobbing.nuspec",
  5846. "useSharedDesignerContext.txt"
  5847. ]
  5848. },
  5849. "Microsoft.Extensions.Hosting.Abstractions/3.1.8": {
  5850. "sha512": "7ZJUKwPipkDvuv2KJPZ3r01wp2AWNMiYH+61i0dL89F7QICknjKpWgLKLpTSUYFgl77S3b4264I6i4HzDdrb2A==",
  5851. "type": "package",
  5852. "path": "microsoft.extensions.hosting.abstractions/3.1.8",
  5853. "files": [
  5854. ".nupkg.metadata",
  5855. ".signature.p7s",
  5856. "Icon.png",
  5857. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.dll",
  5858. "lib/netcoreapp3.1/Microsoft.Extensions.Hosting.Abstractions.xml",
  5859. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  5860. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  5861. "microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512",
  5862. "microsoft.extensions.hosting.abstractions.nuspec"
  5863. ]
  5864. },
  5865. "Microsoft.Extensions.Identity.Core/6.0.9": {
  5866. "sha512": "CKZti4oI1j+Rtb0iRmlCD3SY/DH7TIFTa9qdGre0dXiAI7hC7yZm+JnZ6oA7iy8Iy/dcB35e1Y7EpZPMDlK5Sg==",
  5867. "type": "package",
  5868. "path": "microsoft.extensions.identity.core/6.0.9",
  5869. "files": [
  5870. ".nupkg.metadata",
  5871. ".signature.p7s",
  5872. "Icon.png",
  5873. "THIRD-PARTY-NOTICES.TXT",
  5874. "lib/net461/Microsoft.Extensions.Identity.Core.dll",
  5875. "lib/net461/Microsoft.Extensions.Identity.Core.xml",
  5876. "lib/net6.0/Microsoft.Extensions.Identity.Core.dll",
  5877. "lib/net6.0/Microsoft.Extensions.Identity.Core.xml",
  5878. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll",
  5879. "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml",
  5880. "microsoft.extensions.identity.core.6.0.9.nupkg.sha512",
  5881. "microsoft.extensions.identity.core.nuspec"
  5882. ]
  5883. },
  5884. "Microsoft.Extensions.Identity.Stores/6.0.9": {
  5885. "sha512": "mr6fZu8+ATN1n1mG4PRDPGiC4bEmzHSsN3njtPL//zUVPk857RwtS373Oy00q7eh1q3bIaC4JppPddornDiFjA==",
  5886. "type": "package",
  5887. "path": "microsoft.extensions.identity.stores/6.0.9",
  5888. "files": [
  5889. ".nupkg.metadata",
  5890. ".signature.p7s",
  5891. "Icon.png",
  5892. "THIRD-PARTY-NOTICES.TXT",
  5893. "lib/net461/Microsoft.Extensions.Identity.Stores.dll",
  5894. "lib/net461/Microsoft.Extensions.Identity.Stores.xml",
  5895. "lib/net6.0/Microsoft.Extensions.Identity.Stores.dll",
  5896. "lib/net6.0/Microsoft.Extensions.Identity.Stores.xml",
  5897. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll",
  5898. "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml",
  5899. "microsoft.extensions.identity.stores.6.0.9.nupkg.sha512",
  5900. "microsoft.extensions.identity.stores.nuspec"
  5901. ]
  5902. },
  5903. "Microsoft.Extensions.Logging/6.0.0": {
  5904. "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==",
  5905. "type": "package",
  5906. "path": "microsoft.extensions.logging/6.0.0",
  5907. "files": [
  5908. ".nupkg.metadata",
  5909. ".signature.p7s",
  5910. "Icon.png",
  5911. "LICENSE.TXT",
  5912. "THIRD-PARTY-NOTICES.TXT",
  5913. "lib/net461/Microsoft.Extensions.Logging.dll",
  5914. "lib/net461/Microsoft.Extensions.Logging.xml",
  5915. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5916. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5917. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5918. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5919. "microsoft.extensions.logging.6.0.0.nupkg.sha512",
  5920. "microsoft.extensions.logging.nuspec",
  5921. "useSharedDesignerContext.txt"
  5922. ]
  5923. },
  5924. "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
  5925. "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==",
  5926. "type": "package",
  5927. "path": "microsoft.extensions.logging.abstractions/6.0.0",
  5928. "files": [
  5929. ".nupkg.metadata",
  5930. ".signature.p7s",
  5931. "Icon.png",
  5932. "LICENSE.TXT",
  5933. "THIRD-PARTY-NOTICES.TXT",
  5934. "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
  5935. "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5936. "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5937. "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5938. "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5939. "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5940. "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5941. "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5942. "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5943. "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5944. "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5945. "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5946. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5947. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5948. "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
  5949. "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
  5950. "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
  5951. "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
  5952. "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5953. "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
  5954. "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
  5955. "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
  5956. "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
  5957. "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
  5958. "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
  5959. "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
  5960. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
  5961. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
  5962. "build/Microsoft.Extensions.Logging.Abstractions.targets",
  5963. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
  5964. "buildTransitive/netcoreapp3.1/_._",
  5965. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  5966. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  5967. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5968. "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5969. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5970. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5971. "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512",
  5972. "microsoft.extensions.logging.abstractions.nuspec",
  5973. "useSharedDesignerContext.txt"
  5974. ]
  5975. },
  5976. "Microsoft.Extensions.Options/6.0.0": {
  5977. "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==",
  5978. "type": "package",
  5979. "path": "microsoft.extensions.options/6.0.0",
  5980. "files": [
  5981. ".nupkg.metadata",
  5982. ".signature.p7s",
  5983. "Icon.png",
  5984. "LICENSE.TXT",
  5985. "THIRD-PARTY-NOTICES.TXT",
  5986. "lib/net461/Microsoft.Extensions.Options.dll",
  5987. "lib/net461/Microsoft.Extensions.Options.xml",
  5988. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5989. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5990. "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
  5991. "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
  5992. "microsoft.extensions.options.6.0.0.nupkg.sha512",
  5993. "microsoft.extensions.options.nuspec",
  5994. "useSharedDesignerContext.txt"
  5995. ]
  5996. },
  5997. "Microsoft.Extensions.Options.ConfigurationExtensions/2.0.0": {
  5998. "sha512": "Y/lGICwO27fCkQRK3tZseVzFjZaxfGmui990E67sB4MuiPzdJHnJDS/BeYWrHShSSBgCl4KyKRx4ux686fftPg==",
  5999. "type": "package",
  6000. "path": "microsoft.extensions.options.configurationextensions/2.0.0",
  6001. "files": [
  6002. ".nupkg.metadata",
  6003. ".signature.p7s",
  6004. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll",
  6005. "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml",
  6006. "microsoft.extensions.options.configurationextensions.2.0.0.nupkg.sha512",
  6007. "microsoft.extensions.options.configurationextensions.nuspec"
  6008. ]
  6009. },
  6010. "Microsoft.Extensions.Primitives/6.0.0": {
  6011. "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==",
  6012. "type": "package",
  6013. "path": "microsoft.extensions.primitives/6.0.0",
  6014. "files": [
  6015. ".nupkg.metadata",
  6016. ".signature.p7s",
  6017. "Icon.png",
  6018. "LICENSE.TXT",
  6019. "THIRD-PARTY-NOTICES.TXT",
  6020. "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
  6021. "buildTransitive/netcoreapp3.1/_._",
  6022. "lib/net461/Microsoft.Extensions.Primitives.dll",
  6023. "lib/net461/Microsoft.Extensions.Primitives.xml",
  6024. "lib/net6.0/Microsoft.Extensions.Primitives.dll",
  6025. "lib/net6.0/Microsoft.Extensions.Primitives.xml",
  6026. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  6027. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  6028. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  6029. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  6030. "microsoft.extensions.primitives.6.0.0.nupkg.sha512",
  6031. "microsoft.extensions.primitives.nuspec",
  6032. "useSharedDesignerContext.txt"
  6033. ]
  6034. },
  6035. "Microsoft.Identity.Client/4.21.1": {
  6036. "sha512": "vycgk7S/HAbHaUaK4Tid1fsWHsXdFRRP2KavAIOHCVV27zvuQfYAjXmMvctuuF4egydSumG58CwPZob3gWeYgQ==",
  6037. "type": "package",
  6038. "path": "microsoft.identity.client/4.21.1",
  6039. "files": [
  6040. ".nupkg.metadata",
  6041. ".signature.p7s",
  6042. "lib/monoandroid10.0/Microsoft.Identity.Client.dll",
  6043. "lib/monoandroid10.0/Microsoft.Identity.Client.xml",
  6044. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  6045. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  6046. "lib/net45/Microsoft.Identity.Client.dll",
  6047. "lib/net45/Microsoft.Identity.Client.xml",
  6048. "lib/net461/Microsoft.Identity.Client.dll",
  6049. "lib/net461/Microsoft.Identity.Client.xml",
  6050. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  6051. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  6052. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  6053. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  6054. "lib/uap10.0/Microsoft.Identity.Client.dll",
  6055. "lib/uap10.0/Microsoft.Identity.Client.pri",
  6056. "lib/uap10.0/Microsoft.Identity.Client.xml",
  6057. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  6058. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  6059. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  6060. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  6061. "microsoft.identity.client.4.21.1.nupkg.sha512",
  6062. "microsoft.identity.client.nuspec",
  6063. "ref/MonoAndroid10.0/Microsoft.Identity.Client.dll",
  6064. "ref/MonoAndroid10.0/Microsoft.Identity.Client.xml",
  6065. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  6066. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  6067. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  6068. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  6069. "ref/net45/Microsoft.Identity.Client.dll",
  6070. "ref/net45/Microsoft.Identity.Client.xml",
  6071. "ref/net461/Microsoft.Identity.Client.dll",
  6072. "ref/net461/Microsoft.Identity.Client.xml",
  6073. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  6074. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  6075. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  6076. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  6077. "ref/uap10.0/Microsoft.Identity.Client.dll",
  6078. "ref/uap10.0/Microsoft.Identity.Client.xml",
  6079. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  6080. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  6081. ]
  6082. },
  6083. "Microsoft.IdentityModel.JsonWebTokens/6.8.0": {
  6084. "sha512": "+7JIww64PkMt7NWFxoe4Y/joeF7TAtA/fQ0b2GFGcagzB59sKkTt/sMZWR6aSZht5YC7SdHi3W6yM1yylRGJCQ==",
  6085. "type": "package",
  6086. "path": "microsoft.identitymodel.jsonwebtokens/6.8.0",
  6087. "files": [
  6088. ".nupkg.metadata",
  6089. ".signature.p7s",
  6090. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  6091. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  6092. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  6093. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  6094. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  6095. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  6096. "microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
  6097. "microsoft.identitymodel.jsonwebtokens.nuspec"
  6098. ]
  6099. },
  6100. "Microsoft.IdentityModel.Logging/6.8.0": {
  6101. "sha512": "Rfh/p4MaN4gkmhPxwbu8IjrmoDncGfHHPh1sTnc0AcM/Oc39/fzC9doKNWvUAjzFb8LqA6lgZyblTrIsX/wDXg==",
  6102. "type": "package",
  6103. "path": "microsoft.identitymodel.logging/6.8.0",
  6104. "files": [
  6105. ".nupkg.metadata",
  6106. ".signature.p7s",
  6107. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  6108. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  6109. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  6110. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  6111. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  6112. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  6113. "microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
  6114. "microsoft.identitymodel.logging.nuspec"
  6115. ]
  6116. },
  6117. "Microsoft.IdentityModel.Protocols/6.8.0": {
  6118. "sha512": "OJZx5nPdiH+MEkwCkbJrTAUiO/YzLe0VSswNlDxJsJD9bhOIdXHufh650pfm59YH1DNevp3/bXzukKrG57gA1w==",
  6119. "type": "package",
  6120. "path": "microsoft.identitymodel.protocols/6.8.0",
  6121. "files": [
  6122. ".nupkg.metadata",
  6123. ".signature.p7s",
  6124. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  6125. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  6126. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  6127. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  6128. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  6129. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  6130. "microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
  6131. "microsoft.identitymodel.protocols.nuspec"
  6132. ]
  6133. },
  6134. "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.8.0": {
  6135. "sha512": "X/PiV5l3nYYsodtrNMrNQIVlDmHpjQQ5w48E+o/D5H4es2+4niEyQf3l03chvZGWNzBRhfSstaXr25/Ye4AeYw==",
  6136. "type": "package",
  6137. "path": "microsoft.identitymodel.protocols.openidconnect/6.8.0",
  6138. "files": [
  6139. ".nupkg.metadata",
  6140. ".signature.p7s",
  6141. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6142. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6143. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6144. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6145. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  6146. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  6147. "microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
  6148. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  6149. ]
  6150. },
  6151. "Microsoft.IdentityModel.Tokens/6.8.0": {
  6152. "sha512": "gTqzsGcmD13HgtNePPcuVHZ/NXWmyV+InJgalW/FhWpII1D7V1k0obIseGlWMeA4G+tZfeGMfXr0klnWbMR/mQ==",
  6153. "type": "package",
  6154. "path": "microsoft.identitymodel.tokens/6.8.0",
  6155. "files": [
  6156. ".nupkg.metadata",
  6157. ".signature.p7s",
  6158. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  6159. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  6160. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  6161. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  6162. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  6163. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  6164. "microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
  6165. "microsoft.identitymodel.tokens.nuspec"
  6166. ]
  6167. },
  6168. "Microsoft.NET.StringTools/1.0.0": {
  6169. "sha512": "ZYVcoDM0LnSyT5nWoRGfShYdOecCw2sOXWwP6j1Z0u48Xq3+BVvZ+EiPCX9/8Gz439giW+O1H1kWF9Eb/w6rVg==",
  6170. "type": "package",
  6171. "path": "microsoft.net.stringtools/1.0.0",
  6172. "files": [
  6173. ".nupkg.metadata",
  6174. ".signature.p7s",
  6175. "MSBuild-NuGet-Icon.png",
  6176. "lib/net35/Microsoft.NET.StringTools.net35.dll",
  6177. "lib/net35/Microsoft.NET.StringTools.net35.pdb",
  6178. "lib/net472/Microsoft.NET.StringTools.dll",
  6179. "lib/net472/Microsoft.NET.StringTools.pdb",
  6180. "lib/netstandard2.0/Microsoft.NET.StringTools.dll",
  6181. "lib/netstandard2.0/Microsoft.NET.StringTools.pdb",
  6182. "microsoft.net.stringtools.1.0.0.nupkg.sha512",
  6183. "microsoft.net.stringtools.nuspec",
  6184. "notices/THIRDPARTYNOTICES.txt"
  6185. ]
  6186. },
  6187. "Microsoft.NETCore.Platforms/3.1.0": {
  6188. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  6189. "type": "package",
  6190. "path": "microsoft.netcore.platforms/3.1.0",
  6191. "files": [
  6192. ".nupkg.metadata",
  6193. ".signature.p7s",
  6194. "LICENSE.TXT",
  6195. "THIRD-PARTY-NOTICES.TXT",
  6196. "lib/netstandard1.0/_._",
  6197. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  6198. "microsoft.netcore.platforms.nuspec",
  6199. "runtime.json",
  6200. "useSharedDesignerContext.txt",
  6201. "version.txt"
  6202. ]
  6203. },
  6204. "Microsoft.NETCore.Targets/1.1.3": {
  6205. "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
  6206. "type": "package",
  6207. "path": "microsoft.netcore.targets/1.1.3",
  6208. "files": [
  6209. ".nupkg.metadata",
  6210. ".signature.p7s",
  6211. "ThirdPartyNotices.txt",
  6212. "dotnet_library_license.txt",
  6213. "lib/netstandard1.0/_._",
  6214. "microsoft.netcore.targets.1.1.3.nupkg.sha512",
  6215. "microsoft.netcore.targets.nuspec",
  6216. "runtime.json"
  6217. ]
  6218. },
  6219. "Microsoft.VisualStudio.Debugger.Contracts/17.2.0": {
  6220. "sha512": "br/qV/aHqLqVlqtcMKglCC8MHMMLey0yMkKSplnMl58F5gKjwnh7wjs8+g0j/vf4T6h4KK7JWrC0+oN70pbugg==",
  6221. "type": "package",
  6222. "path": "microsoft.visualstudio.debugger.contracts/17.2.0",
  6223. "files": [
  6224. ".nupkg.metadata",
  6225. ".signature.p7s",
  6226. "Icon.png",
  6227. "License.txt",
  6228. "lib/netstandard2.0/Microsoft.VisualStudio.Debugger.Contracts.dll",
  6229. "lib/netstandard2.0/Microsoft.VisualStudio.Debugger.Contracts.pdb",
  6230. "microsoft.visualstudio.debugger.contracts.17.2.0.nupkg.sha512",
  6231. "microsoft.visualstudio.debugger.contracts.nuspec"
  6232. ]
  6233. },
  6234. "Microsoft.VisualStudio.Web.CodeGeneration/6.0.9": {
  6235. "sha512": "/C2BziR+4vdXzeVnt/R+jL/Y1a9scbJuwGAMaHsVd7BgFlFb5C16PzuVHb/Qy8793bcOUCjWXXveTUqXUJnIpw==",
  6236. "type": "package",
  6237. "path": "microsoft.visualstudio.web.codegeneration/6.0.9",
  6238. "files": [
  6239. ".nupkg.metadata",
  6240. ".signature.p7s",
  6241. "Icon.png",
  6242. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
  6243. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
  6244. "microsoft.visualstudio.web.codegeneration.6.0.9.nupkg.sha512",
  6245. "microsoft.visualstudio.web.codegeneration.nuspec"
  6246. ]
  6247. },
  6248. "Microsoft.VisualStudio.Web.CodeGeneration.Core/6.0.9": {
  6249. "sha512": "D2ArSuP0bbTDQiX1LndKA4GLkGcPM/K+V5VX6T7A9Ef8mwjHzeg+rpdunepdm9KkdR4yhgCAyS6vtHB6DXLSIA==",
  6250. "type": "package",
  6251. "path": "microsoft.visualstudio.web.codegeneration.core/6.0.9",
  6252. "files": [
  6253. ".nupkg.metadata",
  6254. ".signature.p7s",
  6255. "Icon.png",
  6256. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
  6257. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
  6258. "microsoft.visualstudio.web.codegeneration.core.6.0.9.nupkg.sha512",
  6259. "microsoft.visualstudio.web.codegeneration.core.nuspec"
  6260. ]
  6261. },
  6262. "Microsoft.VisualStudio.Web.CodeGeneration.Design/6.0.9": {
  6263. "sha512": "LFE71Yquas2T73LKFhWvtrZM8yJuhO8ptyCotPw1hvdOfdOYt9Ww1NmIFS76V+cM/9a2k8jzvDZq+YdiPyWYhg==",
  6264. "type": "package",
  6265. "path": "microsoft.visualstudio.web.codegeneration.design/6.0.9",
  6266. "files": [
  6267. ".nupkg.metadata",
  6268. ".signature.p7s",
  6269. "Icon.png",
  6270. "lib/net6.0/dotnet-aspnet-codegenerator-design.dll",
  6271. "lib/net6.0/dotnet-aspnet-codegenerator-design.xml",
  6272. "microsoft.visualstudio.web.codegeneration.design.6.0.9.nupkg.sha512",
  6273. "microsoft.visualstudio.web.codegeneration.design.nuspec"
  6274. ]
  6275. },
  6276. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/6.0.9": {
  6277. "sha512": "3As+XUp1HvWl29w/JiFIYvih7NiotMw6v1zEks2rv8TF4D65LsMBGjID7P4nI3UqLgblu85ZYnxBHLw6mlrISQ==",
  6278. "type": "package",
  6279. "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/6.0.9",
  6280. "files": [
  6281. ".nupkg.metadata",
  6282. ".signature.p7s",
  6283. "Icon.png",
  6284. "Templates/DbContext/NewLocalDbContext.cshtml",
  6285. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
  6286. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json",
  6287. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
  6288. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.6.0.9.nupkg.sha512",
  6289. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
  6290. ]
  6291. },
  6292. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/6.0.9": {
  6293. "sha512": "nDLs2PavCzVkCwf4AcITUZvwnvhN+ah1j8178jG2NwvejusCpnV4b/XsPfQ27OG/CWlXOY4A+GQOk0SoHx3TXw==",
  6294. "type": "package",
  6295. "path": "microsoft.visualstudio.web.codegeneration.templating/6.0.9",
  6296. "files": [
  6297. ".nupkg.metadata",
  6298. ".signature.p7s",
  6299. "Icon.png",
  6300. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
  6301. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
  6302. "microsoft.visualstudio.web.codegeneration.templating.6.0.9.nupkg.sha512",
  6303. "microsoft.visualstudio.web.codegeneration.templating.nuspec"
  6304. ]
  6305. },
  6306. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/6.0.9": {
  6307. "sha512": "3tSUCUZj7GCzS1mNGiz2iwTnGA9sf2yEcSwrKga1yImxmOqqrYZDgtIvXUyzecRYp/kzcyoHM3/RrX5TAoFtRw==",
  6308. "type": "package",
  6309. "path": "microsoft.visualstudio.web.codegeneration.utils/6.0.9",
  6310. "files": [
  6311. ".nupkg.metadata",
  6312. ".signature.p7s",
  6313. "Icon.png",
  6314. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
  6315. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
  6316. "microsoft.visualstudio.web.codegeneration.utils.6.0.9.nupkg.sha512",
  6317. "microsoft.visualstudio.web.codegeneration.utils.nuspec"
  6318. ]
  6319. },
  6320. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/6.0.9": {
  6321. "sha512": "gzMBpEjbjHkq/pfKFve3BSK7UcNKzHBTeRuCyz0LxFpUZXophl8pPXsa0rZUt/uDA/DqeCCgHt6nHxnTFQ1QOw==",
  6322. "type": "package",
  6323. "path": "microsoft.visualstudio.web.codegenerators.mvc/6.0.9",
  6324. "files": [
  6325. ".nupkg.metadata",
  6326. ".signature.p7s",
  6327. "Generators/ParameterDefinitions/area.json",
  6328. "Generators/ParameterDefinitions/controller.json",
  6329. "Generators/ParameterDefinitions/identity.json",
  6330. "Generators/ParameterDefinitions/minimalapi.json",
  6331. "Generators/ParameterDefinitions/razorpage.json",
  6332. "Generators/ParameterDefinitions/view.json",
  6333. "Icon.png",
  6334. "Templates/ControllerGenerator/ApiControllerWithActions.cshtml",
  6335. "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
  6336. "Templates/ControllerGenerator/ApiEmptyController.cshtml",
  6337. "Templates/ControllerGenerator/ControllerWithActions.cshtml",
  6338. "Templates/ControllerGenerator/EmptyController.cshtml",
  6339. "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
  6340. "Templates/Identity/Data/ApplicationDbContext.cshtml",
  6341. "Templates/Identity/Data/ApplicationUser.cshtml",
  6342. "Templates/Identity/IdentityHostingStartup.cshtml",
  6343. "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
  6344. "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
  6345. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  6346. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
  6347. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  6348. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
  6349. "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
  6350. "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
  6351. "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
  6352. "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
  6353. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  6354. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  6355. "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
  6356. "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
  6357. "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
  6358. "Templates/Identity/Pages/Account/Account.Login.cshtml",
  6359. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  6360. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
  6361. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  6362. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  6363. "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
  6364. "Templates/Identity/Pages/Account/Account.Logout.cshtml",
  6365. "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
  6366. "Templates/Identity/Pages/Account/Account.Register.cshtml",
  6367. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  6368. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
  6369. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  6370. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  6371. "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
  6372. "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
  6373. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  6374. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  6375. "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
  6376. "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
  6377. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  6378. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  6379. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  6380. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  6381. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  6382. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  6383. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  6384. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  6385. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  6386. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
  6387. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  6388. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  6389. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  6390. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  6391. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  6392. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  6393. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  6394. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
  6395. "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  6396. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  6397. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  6398. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  6399. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  6400. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  6401. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  6402. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  6403. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  6404. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  6405. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  6406. "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  6407. "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  6408. "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  6409. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  6410. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewStart.cshtml",
  6411. "Templates/Identity/Pages/Error.cs.cshtml",
  6412. "Templates/Identity/Pages/Error.cshtml",
  6413. "Templates/Identity/Pages/_Layout.cshtml",
  6414. "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
  6415. "Templates/Identity/Pages/_ViewImports.cshtml",
  6416. "Templates/Identity/Pages/_ViewStart.cshtml",
  6417. "Templates/Identity/ScaffoldingReadme.cshtml",
  6418. "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
  6419. "Templates/Identity/SupportPages._ViewImports.cshtml",
  6420. "Templates/Identity/SupportPages._ViewStart.cshtml",
  6421. "Templates/Identity/_LoginPartial.cshtml",
  6422. "Templates/Identity/wwwroot/css/site.css",
  6423. "Templates/Identity/wwwroot/favicon.ico",
  6424. "Templates/Identity/wwwroot/js/site.js",
  6425. "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
  6426. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  6427. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  6428. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  6429. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  6430. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css",
  6431. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map",
  6432. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css",
  6433. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map",
  6434. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  6435. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  6436. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  6437. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  6438. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css",
  6439. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map",
  6440. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css",
  6441. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map",
  6442. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css",
  6443. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map",
  6444. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css",
  6445. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map",
  6446. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css",
  6447. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map",
  6448. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css",
  6449. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map",
  6450. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  6451. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  6452. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  6453. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  6454. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css",
  6455. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map",
  6456. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css",
  6457. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map",
  6458. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  6459. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  6460. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  6461. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  6462. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js",
  6463. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map",
  6464. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js",
  6465. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map",
  6466. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  6467. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  6468. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  6469. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  6470. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  6471. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  6472. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  6473. "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
  6474. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  6475. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  6476. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  6477. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  6478. "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
  6479. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
  6480. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
  6481. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
  6482. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml",
  6483. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml",
  6484. "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml",
  6485. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml",
  6486. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml",
  6487. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  6488. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml",
  6489. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  6490. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cshtml",
  6491. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml",
  6492. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml",
  6493. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml",
  6494. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml",
  6495. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  6496. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  6497. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml",
  6498. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml",
  6499. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml",
  6500. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml",
  6501. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  6502. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml",
  6503. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  6504. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  6505. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml",
  6506. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml",
  6507. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml",
  6508. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml",
  6509. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  6510. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cshtml",
  6511. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  6512. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  6513. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml",
  6514. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml",
  6515. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  6516. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  6517. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._StatusMessage.cshtml",
  6518. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml",
  6519. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  6520. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  6521. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  6522. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  6523. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  6524. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  6525. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  6526. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  6527. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  6528. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cshtml",
  6529. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  6530. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  6531. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  6532. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  6533. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  6534. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  6535. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  6536. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml",
  6537. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  6538. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  6539. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  6540. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  6541. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  6542. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  6543. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  6544. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  6545. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  6546. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  6547. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  6548. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  6549. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  6550. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  6551. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  6552. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml",
  6553. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml",
  6554. "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml",
  6555. "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml",
  6556. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml",
  6557. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml",
  6558. "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml",
  6559. "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml",
  6560. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml",
  6561. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml",
  6562. "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml",
  6563. "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css",
  6564. "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico",
  6565. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg",
  6566. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg",
  6567. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg",
  6568. "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js",
  6569. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE",
  6570. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css",
  6571. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map",
  6572. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css",
  6573. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map",
  6574. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  6575. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  6576. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  6577. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  6578. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot",
  6579. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg",
  6580. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf",
  6581. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff",
  6582. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2",
  6583. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  6584. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  6585. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js",
  6586. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  6587. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  6588. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  6589. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md",
  6590. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  6591. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  6592. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  6593. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  6594. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt",
  6595. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js",
  6596. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js",
  6597. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map",
  6598. "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationDbContext.cshtml",
  6599. "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationUser.cshtml",
  6600. "Templates/Identity_Versioned/Bootstrap4/IdentityHostingStartup.cshtml",
  6601. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cs.cshtml",
  6602. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cshtml",
  6603. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  6604. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cshtml",
  6605. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  6606. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cshtml",
  6607. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cs.cshtml",
  6608. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cshtml",
  6609. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cs.cshtml",
  6610. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cshtml",
  6611. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  6612. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  6613. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cs.cshtml",
  6614. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cshtml",
  6615. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cs.cshtml",
  6616. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cshtml",
  6617. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  6618. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cshtml",
  6619. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  6620. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  6621. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cs.cshtml",
  6622. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cshtml",
  6623. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cs.cshtml",
  6624. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cshtml",
  6625. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  6626. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cshtml",
  6627. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  6628. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  6629. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cs.cshtml",
  6630. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cshtml",
  6631. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  6632. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  6633. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._StatusMessage.cshtml",
  6634. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._ViewImports.cshtml",
  6635. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  6636. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  6637. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  6638. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  6639. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  6640. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  6641. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  6642. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  6643. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  6644. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cshtml",
  6645. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  6646. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  6647. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  6648. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  6649. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  6650. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  6651. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  6652. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cshtml",
  6653. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  6654. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  6655. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  6656. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  6657. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  6658. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  6659. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  6660. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  6661. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  6662. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  6663. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  6664. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  6665. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  6666. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  6667. "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  6668. "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cs.cshtml",
  6669. "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cshtml",
  6670. "Templates/Identity_Versioned/Bootstrap4/Pages/_Layout.cshtml",
  6671. "Templates/Identity_Versioned/Bootstrap4/Pages/_ValidationScriptsPartial.cshtml",
  6672. "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewImports.cshtml",
  6673. "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewStart.cshtml",
  6674. "Templates/Identity_Versioned/Bootstrap4/ScaffoldingReadme.cshtml",
  6675. "Templates/Identity_Versioned/Bootstrap4/SupportPages._CookieConsentPartial.cshtml",
  6676. "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewImports.cshtml",
  6677. "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewStart.cshtml",
  6678. "Templates/Identity_Versioned/Bootstrap4/_LoginPartial.cshtml",
  6679. "Templates/Identity_Versioned/Bootstrap4/wwwroot/css/site.css",
  6680. "Templates/Identity_Versioned/Bootstrap4/wwwroot/favicon.ico",
  6681. "Templates/Identity_Versioned/Bootstrap4/wwwroot/js/site.js",
  6682. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/LICENSE",
  6683. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  6684. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  6685. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  6686. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  6687. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  6688. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  6689. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  6690. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  6691. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  6692. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  6693. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  6694. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  6695. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  6696. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  6697. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  6698. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  6699. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  6700. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  6701. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  6702. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  6703. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  6704. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  6705. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  6706. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/LICENSE.md",
  6707. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  6708. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  6709. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  6710. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  6711. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/LICENSE.txt",
  6712. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.js",
  6713. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.js",
  6714. "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.map",
  6715. "Templates/MinimalApi/MinimalApi.cshtml",
  6716. "Templates/MinimalApi/MinimalApiEf.cshtml",
  6717. "Templates/MinimalApi/MinimalApiEfNoClass.cshtml",
  6718. "Templates/MinimalApi/MinimalApiNoClass.cshtml",
  6719. "Templates/MvcLayout/Error.cshtml",
  6720. "Templates/MvcLayout/_Layout.cshtml",
  6721. "Templates/RazorPageGenerator/Create.cshtml",
  6722. "Templates/RazorPageGenerator/CreatePageModel.cshtml",
  6723. "Templates/RazorPageGenerator/Delete.cshtml",
  6724. "Templates/RazorPageGenerator/DeletePageModel.cshtml",
  6725. "Templates/RazorPageGenerator/Details.cshtml",
  6726. "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
  6727. "Templates/RazorPageGenerator/Edit.cshtml",
  6728. "Templates/RazorPageGenerator/EditPageModel.cshtml",
  6729. "Templates/RazorPageGenerator/Empty.cshtml",
  6730. "Templates/RazorPageGenerator/EmptyPageModel.cshtml",
  6731. "Templates/RazorPageGenerator/List.cshtml",
  6732. "Templates/RazorPageGenerator/ListPageModel.cshtml",
  6733. "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
  6734. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml",
  6735. "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml",
  6736. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml",
  6737. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml",
  6738. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml",
  6739. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml",
  6740. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml",
  6741. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml",
  6742. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml",
  6743. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml",
  6744. "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml",
  6745. "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml",
  6746. "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  6747. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Create.cshtml",
  6748. "Templates/RazorPageGenerator_Versioned/Bootstrap4/CreatePageModel.cshtml",
  6749. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Delete.cshtml",
  6750. "Templates/RazorPageGenerator_Versioned/Bootstrap4/DeletePageModel.cshtml",
  6751. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Details.cshtml",
  6752. "Templates/RazorPageGenerator_Versioned/Bootstrap4/DetailsPageModel.cshtml",
  6753. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Edit.cshtml",
  6754. "Templates/RazorPageGenerator_Versioned/Bootstrap4/EditPageModel.cshtml",
  6755. "Templates/RazorPageGenerator_Versioned/Bootstrap4/Empty.cshtml",
  6756. "Templates/RazorPageGenerator_Versioned/Bootstrap4/EmptyPageModel.cshtml",
  6757. "Templates/RazorPageGenerator_Versioned/Bootstrap4/List.cshtml",
  6758. "Templates/RazorPageGenerator_Versioned/Bootstrap4/ListPageModel.cshtml",
  6759. "Templates/RazorPageGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
  6760. "Templates/Startup/ReadMe.cshtml",
  6761. "Templates/Startup/Startup.cshtml",
  6762. "Templates/ViewGenerator/Create.cshtml",
  6763. "Templates/ViewGenerator/Delete.cshtml",
  6764. "Templates/ViewGenerator/Details.cshtml",
  6765. "Templates/ViewGenerator/Edit.cshtml",
  6766. "Templates/ViewGenerator/Empty.cshtml",
  6767. "Templates/ViewGenerator/List.cshtml",
  6768. "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
  6769. "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml",
  6770. "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml",
  6771. "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml",
  6772. "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml",
  6773. "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml",
  6774. "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml",
  6775. "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  6776. "Templates/ViewGenerator_Versioned/Bootstrap4/Create.cshtml",
  6777. "Templates/ViewGenerator_Versioned/Bootstrap4/Delete.cshtml",
  6778. "Templates/ViewGenerator_Versioned/Bootstrap4/Details.cshtml",
  6779. "Templates/ViewGenerator_Versioned/Bootstrap4/Edit.cshtml",
  6780. "Templates/ViewGenerator_Versioned/Bootstrap4/Empty.cshtml",
  6781. "Templates/ViewGenerator_Versioned/Bootstrap4/List.cshtml",
  6782. "Templates/ViewGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml",
  6783. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
  6784. "lib/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
  6785. "lib/net6.0/bootstrap3_identitygeneratorfilesconfig.json",
  6786. "lib/net6.0/bootstrap4_identitygeneratorfilesconfig.json",
  6787. "lib/net6.0/bootstrap5_identitygeneratorfilesconfig.json",
  6788. "lib/net6.0/identityMinimalHostingChanges.json",
  6789. "lib/net6.0/minimalApiChanges.json",
  6790. "microsoft.visualstudio.web.codegenerators.mvc.6.0.9.nupkg.sha512",
  6791. "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
  6792. ]
  6793. },
  6794. "Microsoft.Win32.Primitives/4.3.0": {
  6795. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  6796. "type": "package",
  6797. "path": "microsoft.win32.primitives/4.3.0",
  6798. "files": [
  6799. ".nupkg.metadata",
  6800. ".signature.p7s",
  6801. "ThirdPartyNotices.txt",
  6802. "dotnet_library_license.txt",
  6803. "lib/MonoAndroid10/_._",
  6804. "lib/MonoTouch10/_._",
  6805. "lib/net46/Microsoft.Win32.Primitives.dll",
  6806. "lib/xamarinios10/_._",
  6807. "lib/xamarinmac20/_._",
  6808. "lib/xamarintvos10/_._",
  6809. "lib/xamarinwatchos10/_._",
  6810. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  6811. "microsoft.win32.primitives.nuspec",
  6812. "ref/MonoAndroid10/_._",
  6813. "ref/MonoTouch10/_._",
  6814. "ref/net46/Microsoft.Win32.Primitives.dll",
  6815. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  6816. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  6817. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  6818. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  6819. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  6820. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  6821. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  6822. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  6823. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  6824. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  6825. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  6826. "ref/xamarinios10/_._",
  6827. "ref/xamarinmac20/_._",
  6828. "ref/xamarintvos10/_._",
  6829. "ref/xamarinwatchos10/_._"
  6830. ]
  6831. },
  6832. "Microsoft.Win32.Registry/4.7.0": {
  6833. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  6834. "type": "package",
  6835. "path": "microsoft.win32.registry/4.7.0",
  6836. "files": [
  6837. ".nupkg.metadata",
  6838. ".signature.p7s",
  6839. "LICENSE.TXT",
  6840. "THIRD-PARTY-NOTICES.TXT",
  6841. "lib/net46/Microsoft.Win32.Registry.dll",
  6842. "lib/net461/Microsoft.Win32.Registry.dll",
  6843. "lib/net461/Microsoft.Win32.Registry.xml",
  6844. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  6845. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6846. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  6847. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  6848. "microsoft.win32.registry.nuspec",
  6849. "ref/net46/Microsoft.Win32.Registry.dll",
  6850. "ref/net461/Microsoft.Win32.Registry.dll",
  6851. "ref/net461/Microsoft.Win32.Registry.xml",
  6852. "ref/net472/Microsoft.Win32.Registry.dll",
  6853. "ref/net472/Microsoft.Win32.Registry.xml",
  6854. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  6855. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  6856. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  6857. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  6858. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  6859. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  6860. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  6861. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  6862. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  6863. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  6864. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  6865. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  6866. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  6867. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6868. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  6869. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  6870. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  6871. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  6872. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  6873. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  6874. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  6875. "useSharedDesignerContext.txt",
  6876. "version.txt"
  6877. ]
  6878. },
  6879. "Microsoft.Win32.SystemEvents/6.0.0": {
  6880. "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
  6881. "type": "package",
  6882. "path": "microsoft.win32.systemevents/6.0.0",
  6883. "files": [
  6884. ".nupkg.metadata",
  6885. ".signature.p7s",
  6886. "Icon.png",
  6887. "LICENSE.TXT",
  6888. "THIRD-PARTY-NOTICES.TXT",
  6889. "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
  6890. "buildTransitive/netcoreapp3.1/_._",
  6891. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  6892. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  6893. "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  6894. "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  6895. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  6896. "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  6897. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  6898. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  6899. "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
  6900. "microsoft.win32.systemevents.nuspec",
  6901. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
  6902. "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
  6903. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
  6904. "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
  6905. "useSharedDesignerContext.txt"
  6906. ]
  6907. },
  6908. "MimeKit/3.4.1": {
  6909. "sha512": "0UmjauTJDukShQlwmClY0i5iRz1zwVxAMvM2VoJ5rM0FUSNQC34OZJCKMTAGEJAWYAsTh5hXZIufnUbbm/3jkQ==",
  6910. "type": "package",
  6911. "path": "mimekit/3.4.1",
  6912. "files": [
  6913. ".nupkg.metadata",
  6914. ".signature.p7s",
  6915. "icons/mimekit-50.png",
  6916. "lib/net462/MimeKit.dll",
  6917. "lib/net462/MimeKit.pdb",
  6918. "lib/net462/MimeKit.xml",
  6919. "lib/net47/MimeKit.dll",
  6920. "lib/net47/MimeKit.pdb",
  6921. "lib/net47/MimeKit.xml",
  6922. "lib/net48/MimeKit.dll",
  6923. "lib/net48/MimeKit.pdb",
  6924. "lib/net48/MimeKit.xml",
  6925. "lib/net6.0/MimeKit.dll",
  6926. "lib/net6.0/MimeKit.pdb",
  6927. "lib/net6.0/MimeKit.xml",
  6928. "lib/netstandard2.0/MimeKit.dll",
  6929. "lib/netstandard2.0/MimeKit.pdb",
  6930. "lib/netstandard2.0/MimeKit.xml",
  6931. "lib/netstandard2.1/MimeKit.dll",
  6932. "lib/netstandard2.1/MimeKit.pdb",
  6933. "lib/netstandard2.1/MimeKit.xml",
  6934. "mimekit.3.4.1.nupkg.sha512",
  6935. "mimekit.nuspec"
  6936. ]
  6937. },
  6938. "NETStandard.Library/1.6.1": {
  6939. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  6940. "type": "package",
  6941. "path": "netstandard.library/1.6.1",
  6942. "files": [
  6943. ".nupkg.metadata",
  6944. ".signature.p7s",
  6945. "ThirdPartyNotices.txt",
  6946. "dotnet_library_license.txt",
  6947. "netstandard.library.1.6.1.nupkg.sha512",
  6948. "netstandard.library.nuspec"
  6949. ]
  6950. },
  6951. "Newtonsoft.Json/13.0.1": {
  6952. "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
  6953. "type": "package",
  6954. "path": "newtonsoft.json/13.0.1",
  6955. "files": [
  6956. ".nupkg.metadata",
  6957. ".signature.p7s",
  6958. "LICENSE.md",
  6959. "lib/net20/Newtonsoft.Json.dll",
  6960. "lib/net20/Newtonsoft.Json.xml",
  6961. "lib/net35/Newtonsoft.Json.dll",
  6962. "lib/net35/Newtonsoft.Json.xml",
  6963. "lib/net40/Newtonsoft.Json.dll",
  6964. "lib/net40/Newtonsoft.Json.xml",
  6965. "lib/net45/Newtonsoft.Json.dll",
  6966. "lib/net45/Newtonsoft.Json.xml",
  6967. "lib/netstandard1.0/Newtonsoft.Json.dll",
  6968. "lib/netstandard1.0/Newtonsoft.Json.xml",
  6969. "lib/netstandard1.3/Newtonsoft.Json.dll",
  6970. "lib/netstandard1.3/Newtonsoft.Json.xml",
  6971. "lib/netstandard2.0/Newtonsoft.Json.dll",
  6972. "lib/netstandard2.0/Newtonsoft.Json.xml",
  6973. "newtonsoft.json.13.0.1.nupkg.sha512",
  6974. "newtonsoft.json.nuspec",
  6975. "packageIcon.png"
  6976. ]
  6977. },
  6978. "NuGet.Common/6.2.1": {
  6979. "sha512": "qmC7zVUdYaz1lE4tw4dceTFnmVho36tut8R/gvxLIixtjGhIZDIvdo4wUUIDLXrDxublaQYMay1+QotTOUIj8g==",
  6980. "type": "package",
  6981. "path": "nuget.common/6.2.1",
  6982. "files": [
  6983. ".nupkg.metadata",
  6984. ".signature.p7s",
  6985. "README.md",
  6986. "icon.png",
  6987. "lib/net45/NuGet.Common.dll",
  6988. "lib/net45/NuGet.Common.xml",
  6989. "lib/net472/NuGet.Common.dll",
  6990. "lib/net472/NuGet.Common.xml",
  6991. "lib/netstandard2.0/NuGet.Common.dll",
  6992. "lib/netstandard2.0/NuGet.Common.xml",
  6993. "nuget.common.6.2.1.nupkg.sha512",
  6994. "nuget.common.nuspec"
  6995. ]
  6996. },
  6997. "NuGet.Configuration/6.2.1": {
  6998. "sha512": "tz0p+IlXydW+flKLSzB9me8fgCgOWrzgCx6zq/YHFzlTVFkcqi6RmZbk0qum1nk/HTzc9IjtEw+s//7/0pTkeg==",
  6999. "type": "package",
  7000. "path": "nuget.configuration/6.2.1",
  7001. "files": [
  7002. ".nupkg.metadata",
  7003. ".signature.p7s",
  7004. "README.md",
  7005. "icon.png",
  7006. "lib/net45/NuGet.Configuration.dll",
  7007. "lib/net45/NuGet.Configuration.xml",
  7008. "lib/net472/NuGet.Configuration.dll",
  7009. "lib/net472/NuGet.Configuration.xml",
  7010. "lib/netstandard2.0/NuGet.Configuration.dll",
  7011. "lib/netstandard2.0/NuGet.Configuration.xml",
  7012. "nuget.configuration.6.2.1.nupkg.sha512",
  7013. "nuget.configuration.nuspec"
  7014. ]
  7015. },
  7016. "NuGet.DependencyResolver.Core/5.11.0": {
  7017. "sha512": "kkWhU0msuCRyiIJeoL95j6bXUQMc1mTk8wZ3mMxl+0VzOf39eXSObmxKuJ7eh+6zOMQyzd0TAXU5u5aQSxOVSg==",
  7018. "type": "package",
  7019. "path": "nuget.dependencyresolver.core/5.11.0",
  7020. "files": [
  7021. ".nupkg.metadata",
  7022. ".signature.p7s",
  7023. "icon.png",
  7024. "lib/net472/NuGet.DependencyResolver.Core.dll",
  7025. "lib/net472/NuGet.DependencyResolver.Core.xml",
  7026. "lib/net5.0/NuGet.DependencyResolver.Core.dll",
  7027. "lib/net5.0/NuGet.DependencyResolver.Core.xml",
  7028. "lib/netstandard2.0/NuGet.DependencyResolver.Core.dll",
  7029. "lib/netstandard2.0/NuGet.DependencyResolver.Core.xml",
  7030. "nuget.dependencyresolver.core.5.11.0.nupkg.sha512",
  7031. "nuget.dependencyresolver.core.nuspec"
  7032. ]
  7033. },
  7034. "NuGet.Frameworks/6.2.1": {
  7035. "sha512": "J5AlfS/XIhPIODuAgdh+/anL08M5aZG/wW5TXsNQW5MfRhgVHkCiN/9/MHAzA1BXccchlTjL/uVRL7DVH56LRw==",
  7036. "type": "package",
  7037. "path": "nuget.frameworks/6.2.1",
  7038. "files": [
  7039. ".nupkg.metadata",
  7040. ".signature.p7s",
  7041. "README.md",
  7042. "icon.png",
  7043. "lib/net40/NuGet.Frameworks.dll",
  7044. "lib/net40/NuGet.Frameworks.xml",
  7045. "lib/net472/NuGet.Frameworks.dll",
  7046. "lib/net472/NuGet.Frameworks.xml",
  7047. "lib/netstandard2.0/NuGet.Frameworks.dll",
  7048. "lib/netstandard2.0/NuGet.Frameworks.xml",
  7049. "nuget.frameworks.6.2.1.nupkg.sha512",
  7050. "nuget.frameworks.nuspec"
  7051. ]
  7052. },
  7053. "NuGet.LibraryModel/5.11.0": {
  7054. "sha512": "Iq0tbX3Rsl4837VlWy90fliA7T2+g2FPdz/s/lK6H9g/5RCta/7AZADV0l/A/f0HDCDlMxBN2ha1hsmgxe1sGQ==",
  7055. "type": "package",
  7056. "path": "nuget.librarymodel/5.11.0",
  7057. "files": [
  7058. ".nupkg.metadata",
  7059. ".signature.p7s",
  7060. "icon.png",
  7061. "lib/net472/NuGet.LibraryModel.dll",
  7062. "lib/net472/NuGet.LibraryModel.xml",
  7063. "lib/netstandard2.0/NuGet.LibraryModel.dll",
  7064. "lib/netstandard2.0/NuGet.LibraryModel.xml",
  7065. "nuget.librarymodel.5.11.0.nupkg.sha512",
  7066. "nuget.librarymodel.nuspec"
  7067. ]
  7068. },
  7069. "NuGet.Packaging/6.2.1": {
  7070. "sha512": "uZ4lR9/x9X7uQ1uS8yak+oC803S/CzUzNvRAQ6A5FdBdvVxvTj95s0pYx9vCNVHNtXz/DHK1lbQvxVgYNlelQA==",
  7071. "type": "package",
  7072. "path": "nuget.packaging/6.2.1",
  7073. "files": [
  7074. ".nupkg.metadata",
  7075. ".signature.p7s",
  7076. "README.md",
  7077. "icon.png",
  7078. "lib/net472/NuGet.Packaging.dll",
  7079. "lib/net472/NuGet.Packaging.xml",
  7080. "lib/net5.0/NuGet.Packaging.dll",
  7081. "lib/net5.0/NuGet.Packaging.xml",
  7082. "lib/netstandard2.0/NuGet.Packaging.dll",
  7083. "lib/netstandard2.0/NuGet.Packaging.xml",
  7084. "nuget.packaging.6.2.1.nupkg.sha512",
  7085. "nuget.packaging.nuspec"
  7086. ]
  7087. },
  7088. "NuGet.ProjectModel/5.11.0": {
  7089. "sha512": "8q7mAwHHP1/Ua1r3FQDg+kXcFvRgBmCCXQeqTkTVQoO5t3G/AwxzJVt7Jii0eNrM17Wzm975U0gnkNqlp+gdsw==",
  7090. "type": "package",
  7091. "path": "nuget.projectmodel/5.11.0",
  7092. "files": [
  7093. ".nupkg.metadata",
  7094. ".signature.p7s",
  7095. "icon.png",
  7096. "lib/net472/NuGet.ProjectModel.dll",
  7097. "lib/net472/NuGet.ProjectModel.xml",
  7098. "lib/net5.0/NuGet.ProjectModel.dll",
  7099. "lib/net5.0/NuGet.ProjectModel.xml",
  7100. "lib/netstandard2.0/NuGet.ProjectModel.dll",
  7101. "lib/netstandard2.0/NuGet.ProjectModel.xml",
  7102. "nuget.projectmodel.5.11.0.nupkg.sha512",
  7103. "nuget.projectmodel.nuspec"
  7104. ]
  7105. },
  7106. "NuGet.Protocol/5.11.0": {
  7107. "sha512": "eS/sJLqMzPz6gonD1zaXIcpDME/1DuKqv0Hlag8RuJcboZJliA15qjfg7UvuQB8/ineOleaEvrTzMjpKE0FdbQ==",
  7108. "type": "package",
  7109. "path": "nuget.protocol/5.11.0",
  7110. "files": [
  7111. ".nupkg.metadata",
  7112. ".signature.p7s",
  7113. "icon.png",
  7114. "lib/net472/NuGet.Protocol.dll",
  7115. "lib/net472/NuGet.Protocol.xml",
  7116. "lib/net5.0/NuGet.Protocol.dll",
  7117. "lib/net5.0/NuGet.Protocol.xml",
  7118. "lib/netstandard2.0/NuGet.Protocol.dll",
  7119. "lib/netstandard2.0/NuGet.Protocol.xml",
  7120. "nuget.protocol.5.11.0.nupkg.sha512",
  7121. "nuget.protocol.nuspec"
  7122. ]
  7123. },
  7124. "NuGet.Versioning/6.2.1": {
  7125. "sha512": "+o507LXjsN1YVAgmpqKCQZ70cLsXDoVmR8H0Wgy0muiFnOhkXN2+a6PGFBAIuA7qJch/umTYu1hp7Dlh1Qcrgg==",
  7126. "type": "package",
  7127. "path": "nuget.versioning/6.2.1",
  7128. "files": [
  7129. ".nupkg.metadata",
  7130. ".signature.p7s",
  7131. "README.md",
  7132. "icon.png",
  7133. "lib/net45/NuGet.Versioning.dll",
  7134. "lib/net45/NuGet.Versioning.xml",
  7135. "lib/net472/NuGet.Versioning.dll",
  7136. "lib/net472/NuGet.Versioning.xml",
  7137. "lib/netstandard2.0/NuGet.Versioning.dll",
  7138. "lib/netstandard2.0/NuGet.Versioning.xml",
  7139. "nuget.versioning.6.2.1.nupkg.sha512",
  7140. "nuget.versioning.nuspec"
  7141. ]
  7142. },
  7143. "Portable.BouncyCastle/1.9.0": {
  7144. "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==",
  7145. "type": "package",
  7146. "path": "portable.bouncycastle/1.9.0",
  7147. "files": [
  7148. ".nupkg.metadata",
  7149. ".signature.p7s",
  7150. "lib/net40/BouncyCastle.Crypto.dll",
  7151. "lib/net40/BouncyCastle.Crypto.xml",
  7152. "lib/netstandard2.0/BouncyCastle.Crypto.dll",
  7153. "lib/netstandard2.0/BouncyCastle.Crypto.xml",
  7154. "portable.bouncycastle.1.9.0.nupkg.sha512",
  7155. "portable.bouncycastle.nuspec"
  7156. ]
  7157. },
  7158. "Quartz/3.5.0": {
  7159. "sha512": "tgWAByEvwWC/CE4VXfrMgt7h5FXdFKIl9Sf5X/0d4yq1rsvSgiVbcAPdFUFAgIOOTcLTtRXp1rXBGqHukIWAgQ==",
  7160. "type": "package",
  7161. "path": "quartz/3.5.0",
  7162. "files": [
  7163. ".nupkg.metadata",
  7164. ".signature.p7s",
  7165. "lib/net462/Quartz.dll",
  7166. "lib/net462/Quartz.xml",
  7167. "lib/net472/Quartz.dll",
  7168. "lib/net472/Quartz.xml",
  7169. "lib/netstandard2.0/Quartz.dll",
  7170. "lib/netstandard2.0/Quartz.xml",
  7171. "quartz-logo-small.png",
  7172. "quartz.3.5.0.nupkg.sha512",
  7173. "quartz.nuspec"
  7174. ]
  7175. },
  7176. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7177. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  7178. "type": "package",
  7179. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7180. "files": [
  7181. ".nupkg.metadata",
  7182. ".signature.p7s",
  7183. "ThirdPartyNotices.txt",
  7184. "dotnet_library_license.txt",
  7185. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7186. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7187. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7188. ]
  7189. },
  7190. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7191. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  7192. "type": "package",
  7193. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7194. "files": [
  7195. ".nupkg.metadata",
  7196. ".signature.p7s",
  7197. "ThirdPartyNotices.txt",
  7198. "dotnet_library_license.txt",
  7199. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7200. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7201. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7202. ]
  7203. },
  7204. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7205. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  7206. "type": "package",
  7207. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7208. "files": [
  7209. ".nupkg.metadata",
  7210. ".signature.p7s",
  7211. "ThirdPartyNotices.txt",
  7212. "dotnet_library_license.txt",
  7213. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7214. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7215. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7216. ]
  7217. },
  7218. "runtime.native.System/4.3.0": {
  7219. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  7220. "type": "package",
  7221. "path": "runtime.native.system/4.3.0",
  7222. "files": [
  7223. ".nupkg.metadata",
  7224. ".signature.p7s",
  7225. "ThirdPartyNotices.txt",
  7226. "dotnet_library_license.txt",
  7227. "lib/netstandard1.0/_._",
  7228. "runtime.native.system.4.3.0.nupkg.sha512",
  7229. "runtime.native.system.nuspec"
  7230. ]
  7231. },
  7232. "runtime.native.System.IO.Compression/4.3.0": {
  7233. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  7234. "type": "package",
  7235. "path": "runtime.native.system.io.compression/4.3.0",
  7236. "files": [
  7237. ".nupkg.metadata",
  7238. ".signature.p7s",
  7239. "ThirdPartyNotices.txt",
  7240. "dotnet_library_license.txt",
  7241. "lib/netstandard1.0/_._",
  7242. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  7243. "runtime.native.system.io.compression.nuspec"
  7244. ]
  7245. },
  7246. "runtime.native.System.Net.Http/4.3.0": {
  7247. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  7248. "type": "package",
  7249. "path": "runtime.native.system.net.http/4.3.0",
  7250. "files": [
  7251. ".nupkg.metadata",
  7252. ".signature.p7s",
  7253. "ThirdPartyNotices.txt",
  7254. "dotnet_library_license.txt",
  7255. "lib/netstandard1.0/_._",
  7256. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  7257. "runtime.native.system.net.http.nuspec"
  7258. ]
  7259. },
  7260. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  7261. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  7262. "type": "package",
  7263. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  7264. "files": [
  7265. ".nupkg.metadata",
  7266. ".signature.p7s",
  7267. "ThirdPartyNotices.txt",
  7268. "dotnet_library_license.txt",
  7269. "lib/netstandard1.0/_._",
  7270. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  7271. "runtime.native.system.security.cryptography.apple.nuspec"
  7272. ]
  7273. },
  7274. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7275. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  7276. "type": "package",
  7277. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  7278. "files": [
  7279. ".nupkg.metadata",
  7280. ".signature.p7s",
  7281. "ThirdPartyNotices.txt",
  7282. "dotnet_library_license.txt",
  7283. "lib/netstandard1.0/_._",
  7284. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7285. "runtime.native.system.security.cryptography.openssl.nuspec"
  7286. ]
  7287. },
  7288. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7289. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  7290. "type": "package",
  7291. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7292. "files": [
  7293. ".nupkg.metadata",
  7294. ".signature.p7s",
  7295. "ThirdPartyNotices.txt",
  7296. "dotnet_library_license.txt",
  7297. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7298. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7299. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7300. ]
  7301. },
  7302. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7303. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  7304. "type": "package",
  7305. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7306. "files": [
  7307. ".nupkg.metadata",
  7308. ".signature.p7s",
  7309. "ThirdPartyNotices.txt",
  7310. "dotnet_library_license.txt",
  7311. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7312. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7313. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7314. ]
  7315. },
  7316. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  7317. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  7318. "type": "package",
  7319. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  7320. "files": [
  7321. ".nupkg.metadata",
  7322. ".signature.p7s",
  7323. "ThirdPartyNotices.txt",
  7324. "dotnet_library_license.txt",
  7325. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  7326. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  7327. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  7328. ]
  7329. },
  7330. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7331. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  7332. "type": "package",
  7333. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7334. "files": [
  7335. ".nupkg.metadata",
  7336. ".signature.p7s",
  7337. "ThirdPartyNotices.txt",
  7338. "dotnet_library_license.txt",
  7339. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7340. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7341. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  7342. ]
  7343. },
  7344. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7345. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  7346. "type": "package",
  7347. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7348. "files": [
  7349. ".nupkg.metadata",
  7350. ".signature.p7s",
  7351. "ThirdPartyNotices.txt",
  7352. "dotnet_library_license.txt",
  7353. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7354. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7355. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7356. ]
  7357. },
  7358. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7359. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  7360. "type": "package",
  7361. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7362. "files": [
  7363. ".nupkg.metadata",
  7364. ".signature.p7s",
  7365. "ThirdPartyNotices.txt",
  7366. "dotnet_library_license.txt",
  7367. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7368. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7369. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7370. ]
  7371. },
  7372. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7373. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  7374. "type": "package",
  7375. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7376. "files": [
  7377. ".nupkg.metadata",
  7378. ".signature.p7s",
  7379. "ThirdPartyNotices.txt",
  7380. "dotnet_library_license.txt",
  7381. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7382. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7383. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7384. ]
  7385. },
  7386. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  7387. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  7388. "type": "package",
  7389. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  7390. "files": [
  7391. ".nupkg.metadata",
  7392. ".signature.p7s",
  7393. "ThirdPartyNotices.txt",
  7394. "dotnet_library_license.txt",
  7395. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7396. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  7397. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  7398. ]
  7399. },
  7400. "Serilog/2.12.0": {
  7401. "sha512": "xaiJLIdu6rYMKfQMYUZgTy8YK7SMZjB4Yk50C/u//Z4OsvxkUfSPJy4nknfvwAC34yr13q7kcyh4grbwhSxyZg==",
  7402. "type": "package",
  7403. "path": "serilog/2.12.0",
  7404. "files": [
  7405. ".nupkg.metadata",
  7406. ".signature.p7s",
  7407. "icon.png",
  7408. "lib/net45/Serilog.dll",
  7409. "lib/net45/Serilog.xml",
  7410. "lib/net46/Serilog.dll",
  7411. "lib/net46/Serilog.xml",
  7412. "lib/net47/Serilog.dll",
  7413. "lib/net47/Serilog.xml",
  7414. "lib/net5.0/Serilog.dll",
  7415. "lib/net5.0/Serilog.xml",
  7416. "lib/net6.0/Serilog.dll",
  7417. "lib/net6.0/Serilog.xml",
  7418. "lib/netstandard1.0/Serilog.dll",
  7419. "lib/netstandard1.0/Serilog.xml",
  7420. "lib/netstandard1.3/Serilog.dll",
  7421. "lib/netstandard1.3/Serilog.xml",
  7422. "lib/netstandard2.0/Serilog.dll",
  7423. "lib/netstandard2.0/Serilog.xml",
  7424. "lib/netstandard2.1/Serilog.dll",
  7425. "lib/netstandard2.1/Serilog.xml",
  7426. "serilog.2.12.0.nupkg.sha512",
  7427. "serilog.nuspec"
  7428. ]
  7429. },
  7430. "Serilog.AspNetCore/6.0.1": {
  7431. "sha512": "5XW90k62V7G9I0D/j9Iz+NyRBB6/SnoFpHUPeLnV40gONV2vs2A/ewWi91QVjQmyHBfzFeqIrkvE/DJMZ0alTg==",
  7432. "type": "package",
  7433. "path": "serilog.aspnetcore/6.0.1",
  7434. "files": [
  7435. ".nupkg.metadata",
  7436. ".signature.p7s",
  7437. "icon.png",
  7438. "lib/net5.0/Serilog.AspNetCore.dll",
  7439. "lib/net5.0/Serilog.AspNetCore.xml",
  7440. "lib/netcoreapp3.1/Serilog.AspNetCore.dll",
  7441. "lib/netcoreapp3.1/Serilog.AspNetCore.xml",
  7442. "lib/netstandard2.0/Serilog.AspNetCore.dll",
  7443. "lib/netstandard2.0/Serilog.AspNetCore.xml",
  7444. "lib/netstandard2.1/Serilog.AspNetCore.dll",
  7445. "lib/netstandard2.1/Serilog.AspNetCore.xml",
  7446. "serilog.aspnetcore.6.0.1.nupkg.sha512",
  7447. "serilog.aspnetcore.nuspec"
  7448. ]
  7449. },
  7450. "Serilog.Extensions.Hosting/5.0.1": {
  7451. "sha512": "o0VUyt3npAqOJaZ6CiWLFeLYs3CYJwfcAqaUqprzsmj7qYIvorcn8cZLVR8AQX6vzX7gee2bD0sQeA17iO2/Aw==",
  7452. "type": "package",
  7453. "path": "serilog.extensions.hosting/5.0.1",
  7454. "files": [
  7455. ".nupkg.metadata",
  7456. ".signature.p7s",
  7457. "icon.png",
  7458. "lib/netstandard2.0/Serilog.Extensions.Hosting.dll",
  7459. "lib/netstandard2.0/Serilog.Extensions.Hosting.xml",
  7460. "lib/netstandard2.1/Serilog.Extensions.Hosting.dll",
  7461. "lib/netstandard2.1/Serilog.Extensions.Hosting.xml",
  7462. "serilog.extensions.hosting.5.0.1.nupkg.sha512",
  7463. "serilog.extensions.hosting.nuspec"
  7464. ]
  7465. },
  7466. "Serilog.Extensions.Logging/3.1.0": {
  7467. "sha512": "IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==",
  7468. "type": "package",
  7469. "path": "serilog.extensions.logging/3.1.0",
  7470. "files": [
  7471. ".nupkg.metadata",
  7472. ".signature.p7s",
  7473. "lib/netstandard2.0/Serilog.Extensions.Logging.dll",
  7474. "lib/netstandard2.0/Serilog.Extensions.Logging.xml",
  7475. "serilog-extension-nuget.png",
  7476. "serilog.extensions.logging.3.1.0.nupkg.sha512",
  7477. "serilog.extensions.logging.nuspec"
  7478. ]
  7479. },
  7480. "Serilog.Formatting.Compact/1.1.0": {
  7481. "sha512": "pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==",
  7482. "type": "package",
  7483. "path": "serilog.formatting.compact/1.1.0",
  7484. "files": [
  7485. ".nupkg.metadata",
  7486. ".signature.p7s",
  7487. "lib/net452/Serilog.Formatting.Compact.dll",
  7488. "lib/net452/Serilog.Formatting.Compact.xml",
  7489. "lib/netstandard1.1/Serilog.Formatting.Compact.dll",
  7490. "lib/netstandard1.1/Serilog.Formatting.Compact.xml",
  7491. "lib/netstandard2.0/Serilog.Formatting.Compact.dll",
  7492. "lib/netstandard2.0/Serilog.Formatting.Compact.xml",
  7493. "serilog.formatting.compact.1.1.0.nupkg.sha512",
  7494. "serilog.formatting.compact.nuspec"
  7495. ]
  7496. },
  7497. "Serilog.Settings.Configuration/3.3.0": {
  7498. "sha512": "7GNudISZwqaT902hqEL2OFGTZeUFWfnrNLupJkOqeF41AR3GjcxX+Hwb30xb8gG2/CDXsCMVfF8o0+8KY0fJNg==",
  7499. "type": "package",
  7500. "path": "serilog.settings.configuration/3.3.0",
  7501. "files": [
  7502. ".nupkg.metadata",
  7503. ".signature.p7s",
  7504. "icon.png",
  7505. "lib/net451/Serilog.Settings.Configuration.dll",
  7506. "lib/net451/Serilog.Settings.Configuration.xml",
  7507. "lib/net461/Serilog.Settings.Configuration.dll",
  7508. "lib/net461/Serilog.Settings.Configuration.xml",
  7509. "lib/netstandard2.0/Serilog.Settings.Configuration.dll",
  7510. "lib/netstandard2.0/Serilog.Settings.Configuration.xml",
  7511. "serilog.settings.configuration.3.3.0.nupkg.sha512",
  7512. "serilog.settings.configuration.nuspec"
  7513. ]
  7514. },
  7515. "Serilog.Sinks.Console/4.0.1": {
  7516. "sha512": "apLOvSJQLlIbKlbx+Y2UDHSP05kJsV7mou+fvJoRGs/iR+jC22r8cuFVMjjfVxz/AD4B2UCltFhE1naRLXwKNw==",
  7517. "type": "package",
  7518. "path": "serilog.sinks.console/4.0.1",
  7519. "files": [
  7520. ".nupkg.metadata",
  7521. ".signature.p7s",
  7522. "icon.png",
  7523. "lib/net45/Serilog.Sinks.Console.dll",
  7524. "lib/net45/Serilog.Sinks.Console.xml",
  7525. "lib/net5.0/Serilog.Sinks.Console.dll",
  7526. "lib/net5.0/Serilog.Sinks.Console.xml",
  7527. "lib/netstandard1.3/Serilog.Sinks.Console.dll",
  7528. "lib/netstandard1.3/Serilog.Sinks.Console.xml",
  7529. "lib/netstandard2.0/Serilog.Sinks.Console.dll",
  7530. "lib/netstandard2.0/Serilog.Sinks.Console.xml",
  7531. "serilog.sinks.console.4.0.1.nupkg.sha512",
  7532. "serilog.sinks.console.nuspec"
  7533. ]
  7534. },
  7535. "Serilog.Sinks.Debug/2.0.0": {
  7536. "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==",
  7537. "type": "package",
  7538. "path": "serilog.sinks.debug/2.0.0",
  7539. "files": [
  7540. ".nupkg.metadata",
  7541. ".signature.p7s",
  7542. "icon.png",
  7543. "lib/net45/Serilog.Sinks.Debug.dll",
  7544. "lib/net45/Serilog.Sinks.Debug.xml",
  7545. "lib/net46/Serilog.Sinks.Debug.dll",
  7546. "lib/net46/Serilog.Sinks.Debug.xml",
  7547. "lib/netstandard1.0/Serilog.Sinks.Debug.dll",
  7548. "lib/netstandard1.0/Serilog.Sinks.Debug.xml",
  7549. "lib/netstandard2.0/Serilog.Sinks.Debug.dll",
  7550. "lib/netstandard2.0/Serilog.Sinks.Debug.xml",
  7551. "lib/netstandard2.1/Serilog.Sinks.Debug.dll",
  7552. "lib/netstandard2.1/Serilog.Sinks.Debug.xml",
  7553. "serilog.sinks.debug.2.0.0.nupkg.sha512",
  7554. "serilog.sinks.debug.nuspec"
  7555. ]
  7556. },
  7557. "Serilog.Sinks.File/5.0.0": {
  7558. "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==",
  7559. "type": "package",
  7560. "path": "serilog.sinks.file/5.0.0",
  7561. "files": [
  7562. ".nupkg.metadata",
  7563. ".signature.p7s",
  7564. "images/icon.png",
  7565. "lib/net45/Serilog.Sinks.File.dll",
  7566. "lib/net45/Serilog.Sinks.File.pdb",
  7567. "lib/net45/Serilog.Sinks.File.xml",
  7568. "lib/net5.0/Serilog.Sinks.File.dll",
  7569. "lib/net5.0/Serilog.Sinks.File.pdb",
  7570. "lib/net5.0/Serilog.Sinks.File.xml",
  7571. "lib/netstandard1.3/Serilog.Sinks.File.dll",
  7572. "lib/netstandard1.3/Serilog.Sinks.File.pdb",
  7573. "lib/netstandard1.3/Serilog.Sinks.File.xml",
  7574. "lib/netstandard2.0/Serilog.Sinks.File.dll",
  7575. "lib/netstandard2.0/Serilog.Sinks.File.pdb",
  7576. "lib/netstandard2.0/Serilog.Sinks.File.xml",
  7577. "lib/netstandard2.1/Serilog.Sinks.File.dll",
  7578. "lib/netstandard2.1/Serilog.Sinks.File.pdb",
  7579. "lib/netstandard2.1/Serilog.Sinks.File.xml",
  7580. "serilog.sinks.file.5.0.0.nupkg.sha512",
  7581. "serilog.sinks.file.nuspec"
  7582. ]
  7583. },
  7584. "System.AppContext/4.3.0": {
  7585. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  7586. "type": "package",
  7587. "path": "system.appcontext/4.3.0",
  7588. "files": [
  7589. ".nupkg.metadata",
  7590. ".signature.p7s",
  7591. "ThirdPartyNotices.txt",
  7592. "dotnet_library_license.txt",
  7593. "lib/MonoAndroid10/_._",
  7594. "lib/MonoTouch10/_._",
  7595. "lib/net46/System.AppContext.dll",
  7596. "lib/net463/System.AppContext.dll",
  7597. "lib/netcore50/System.AppContext.dll",
  7598. "lib/netstandard1.6/System.AppContext.dll",
  7599. "lib/xamarinios10/_._",
  7600. "lib/xamarinmac20/_._",
  7601. "lib/xamarintvos10/_._",
  7602. "lib/xamarinwatchos10/_._",
  7603. "ref/MonoAndroid10/_._",
  7604. "ref/MonoTouch10/_._",
  7605. "ref/net46/System.AppContext.dll",
  7606. "ref/net463/System.AppContext.dll",
  7607. "ref/netstandard/_._",
  7608. "ref/netstandard1.3/System.AppContext.dll",
  7609. "ref/netstandard1.3/System.AppContext.xml",
  7610. "ref/netstandard1.3/de/System.AppContext.xml",
  7611. "ref/netstandard1.3/es/System.AppContext.xml",
  7612. "ref/netstandard1.3/fr/System.AppContext.xml",
  7613. "ref/netstandard1.3/it/System.AppContext.xml",
  7614. "ref/netstandard1.3/ja/System.AppContext.xml",
  7615. "ref/netstandard1.3/ko/System.AppContext.xml",
  7616. "ref/netstandard1.3/ru/System.AppContext.xml",
  7617. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  7618. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  7619. "ref/netstandard1.6/System.AppContext.dll",
  7620. "ref/netstandard1.6/System.AppContext.xml",
  7621. "ref/netstandard1.6/de/System.AppContext.xml",
  7622. "ref/netstandard1.6/es/System.AppContext.xml",
  7623. "ref/netstandard1.6/fr/System.AppContext.xml",
  7624. "ref/netstandard1.6/it/System.AppContext.xml",
  7625. "ref/netstandard1.6/ja/System.AppContext.xml",
  7626. "ref/netstandard1.6/ko/System.AppContext.xml",
  7627. "ref/netstandard1.6/ru/System.AppContext.xml",
  7628. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  7629. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  7630. "ref/xamarinios10/_._",
  7631. "ref/xamarinmac20/_._",
  7632. "ref/xamarintvos10/_._",
  7633. "ref/xamarinwatchos10/_._",
  7634. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  7635. "system.appcontext.4.3.0.nupkg.sha512",
  7636. "system.appcontext.nuspec"
  7637. ]
  7638. },
  7639. "System.Buffers/4.5.1": {
  7640. "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
  7641. "type": "package",
  7642. "path": "system.buffers/4.5.1",
  7643. "files": [
  7644. ".nupkg.metadata",
  7645. ".signature.p7s",
  7646. "LICENSE.TXT",
  7647. "THIRD-PARTY-NOTICES.TXT",
  7648. "lib/net461/System.Buffers.dll",
  7649. "lib/net461/System.Buffers.xml",
  7650. "lib/netcoreapp2.0/_._",
  7651. "lib/netstandard1.1/System.Buffers.dll",
  7652. "lib/netstandard1.1/System.Buffers.xml",
  7653. "lib/netstandard2.0/System.Buffers.dll",
  7654. "lib/netstandard2.0/System.Buffers.xml",
  7655. "lib/uap10.0.16299/_._",
  7656. "ref/net45/System.Buffers.dll",
  7657. "ref/net45/System.Buffers.xml",
  7658. "ref/netcoreapp2.0/_._",
  7659. "ref/netstandard1.1/System.Buffers.dll",
  7660. "ref/netstandard1.1/System.Buffers.xml",
  7661. "ref/netstandard2.0/System.Buffers.dll",
  7662. "ref/netstandard2.0/System.Buffers.xml",
  7663. "ref/uap10.0.16299/_._",
  7664. "system.buffers.4.5.1.nupkg.sha512",
  7665. "system.buffers.nuspec",
  7666. "useSharedDesignerContext.txt",
  7667. "version.txt"
  7668. ]
  7669. },
  7670. "System.Collections/4.3.0": {
  7671. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  7672. "type": "package",
  7673. "path": "system.collections/4.3.0",
  7674. "files": [
  7675. ".nupkg.metadata",
  7676. ".signature.p7s",
  7677. "ThirdPartyNotices.txt",
  7678. "dotnet_library_license.txt",
  7679. "lib/MonoAndroid10/_._",
  7680. "lib/MonoTouch10/_._",
  7681. "lib/net45/_._",
  7682. "lib/portable-net45+win8+wp8+wpa81/_._",
  7683. "lib/win8/_._",
  7684. "lib/wp80/_._",
  7685. "lib/wpa81/_._",
  7686. "lib/xamarinios10/_._",
  7687. "lib/xamarinmac20/_._",
  7688. "lib/xamarintvos10/_._",
  7689. "lib/xamarinwatchos10/_._",
  7690. "ref/MonoAndroid10/_._",
  7691. "ref/MonoTouch10/_._",
  7692. "ref/net45/_._",
  7693. "ref/netcore50/System.Collections.dll",
  7694. "ref/netcore50/System.Collections.xml",
  7695. "ref/netcore50/de/System.Collections.xml",
  7696. "ref/netcore50/es/System.Collections.xml",
  7697. "ref/netcore50/fr/System.Collections.xml",
  7698. "ref/netcore50/it/System.Collections.xml",
  7699. "ref/netcore50/ja/System.Collections.xml",
  7700. "ref/netcore50/ko/System.Collections.xml",
  7701. "ref/netcore50/ru/System.Collections.xml",
  7702. "ref/netcore50/zh-hans/System.Collections.xml",
  7703. "ref/netcore50/zh-hant/System.Collections.xml",
  7704. "ref/netstandard1.0/System.Collections.dll",
  7705. "ref/netstandard1.0/System.Collections.xml",
  7706. "ref/netstandard1.0/de/System.Collections.xml",
  7707. "ref/netstandard1.0/es/System.Collections.xml",
  7708. "ref/netstandard1.0/fr/System.Collections.xml",
  7709. "ref/netstandard1.0/it/System.Collections.xml",
  7710. "ref/netstandard1.0/ja/System.Collections.xml",
  7711. "ref/netstandard1.0/ko/System.Collections.xml",
  7712. "ref/netstandard1.0/ru/System.Collections.xml",
  7713. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  7714. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  7715. "ref/netstandard1.3/System.Collections.dll",
  7716. "ref/netstandard1.3/System.Collections.xml",
  7717. "ref/netstandard1.3/de/System.Collections.xml",
  7718. "ref/netstandard1.3/es/System.Collections.xml",
  7719. "ref/netstandard1.3/fr/System.Collections.xml",
  7720. "ref/netstandard1.3/it/System.Collections.xml",
  7721. "ref/netstandard1.3/ja/System.Collections.xml",
  7722. "ref/netstandard1.3/ko/System.Collections.xml",
  7723. "ref/netstandard1.3/ru/System.Collections.xml",
  7724. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  7725. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  7726. "ref/portable-net45+win8+wp8+wpa81/_._",
  7727. "ref/win8/_._",
  7728. "ref/wp80/_._",
  7729. "ref/wpa81/_._",
  7730. "ref/xamarinios10/_._",
  7731. "ref/xamarinmac20/_._",
  7732. "ref/xamarintvos10/_._",
  7733. "ref/xamarinwatchos10/_._",
  7734. "system.collections.4.3.0.nupkg.sha512",
  7735. "system.collections.nuspec"
  7736. ]
  7737. },
  7738. "System.Collections.Concurrent/4.3.0": {
  7739. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  7740. "type": "package",
  7741. "path": "system.collections.concurrent/4.3.0",
  7742. "files": [
  7743. ".nupkg.metadata",
  7744. ".signature.p7s",
  7745. "ThirdPartyNotices.txt",
  7746. "dotnet_library_license.txt",
  7747. "lib/MonoAndroid10/_._",
  7748. "lib/MonoTouch10/_._",
  7749. "lib/net45/_._",
  7750. "lib/netcore50/System.Collections.Concurrent.dll",
  7751. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  7752. "lib/portable-net45+win8+wpa81/_._",
  7753. "lib/win8/_._",
  7754. "lib/wpa81/_._",
  7755. "lib/xamarinios10/_._",
  7756. "lib/xamarinmac20/_._",
  7757. "lib/xamarintvos10/_._",
  7758. "lib/xamarinwatchos10/_._",
  7759. "ref/MonoAndroid10/_._",
  7760. "ref/MonoTouch10/_._",
  7761. "ref/net45/_._",
  7762. "ref/netcore50/System.Collections.Concurrent.dll",
  7763. "ref/netcore50/System.Collections.Concurrent.xml",
  7764. "ref/netcore50/de/System.Collections.Concurrent.xml",
  7765. "ref/netcore50/es/System.Collections.Concurrent.xml",
  7766. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  7767. "ref/netcore50/it/System.Collections.Concurrent.xml",
  7768. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  7769. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  7770. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  7771. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  7772. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  7773. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  7774. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  7775. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  7776. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  7777. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  7778. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  7779. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  7780. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  7781. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  7782. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  7783. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  7784. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  7785. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  7786. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  7787. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  7788. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  7789. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  7790. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  7791. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  7792. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  7793. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  7794. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  7795. "ref/portable-net45+win8+wpa81/_._",
  7796. "ref/win8/_._",
  7797. "ref/wpa81/_._",
  7798. "ref/xamarinios10/_._",
  7799. "ref/xamarinmac20/_._",
  7800. "ref/xamarintvos10/_._",
  7801. "ref/xamarinwatchos10/_._",
  7802. "system.collections.concurrent.4.3.0.nupkg.sha512",
  7803. "system.collections.concurrent.nuspec"
  7804. ]
  7805. },
  7806. "System.Collections.Immutable/6.0.0": {
  7807. "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
  7808. "type": "package",
  7809. "path": "system.collections.immutable/6.0.0",
  7810. "files": [
  7811. ".nupkg.metadata",
  7812. ".signature.p7s",
  7813. "Icon.png",
  7814. "LICENSE.TXT",
  7815. "THIRD-PARTY-NOTICES.TXT",
  7816. "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets",
  7817. "buildTransitive/netcoreapp3.1/_._",
  7818. "lib/net461/System.Collections.Immutable.dll",
  7819. "lib/net461/System.Collections.Immutable.xml",
  7820. "lib/net6.0/System.Collections.Immutable.dll",
  7821. "lib/net6.0/System.Collections.Immutable.xml",
  7822. "lib/netstandard2.0/System.Collections.Immutable.dll",
  7823. "lib/netstandard2.0/System.Collections.Immutable.xml",
  7824. "system.collections.immutable.6.0.0.nupkg.sha512",
  7825. "system.collections.immutable.nuspec",
  7826. "useSharedDesignerContext.txt"
  7827. ]
  7828. },
  7829. "System.Composition/1.0.31": {
  7830. "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
  7831. "type": "package",
  7832. "path": "system.composition/1.0.31",
  7833. "files": [
  7834. ".nupkg.metadata",
  7835. ".signature.p7s",
  7836. "ThirdPartyNotices.txt",
  7837. "dotnet_library_license.txt",
  7838. "system.composition.1.0.31.nupkg.sha512",
  7839. "system.composition.nuspec"
  7840. ]
  7841. },
  7842. "System.Composition.AttributedModel/1.0.31": {
  7843. "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
  7844. "type": "package",
  7845. "path": "system.composition.attributedmodel/1.0.31",
  7846. "files": [
  7847. ".nupkg.metadata",
  7848. ".signature.p7s",
  7849. "ThirdPartyNotices.txt",
  7850. "dotnet_library_license.txt",
  7851. "lib/netstandard1.0/System.Composition.AttributedModel.dll",
  7852. "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll",
  7853. "system.composition.attributedmodel.1.0.31.nupkg.sha512",
  7854. "system.composition.attributedmodel.nuspec"
  7855. ]
  7856. },
  7857. "System.Composition.Convention/1.0.31": {
  7858. "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
  7859. "type": "package",
  7860. "path": "system.composition.convention/1.0.31",
  7861. "files": [
  7862. ".nupkg.metadata",
  7863. ".signature.p7s",
  7864. "ThirdPartyNotices.txt",
  7865. "dotnet_library_license.txt",
  7866. "lib/netstandard1.0/System.Composition.Convention.dll",
  7867. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll",
  7868. "system.composition.convention.1.0.31.nupkg.sha512",
  7869. "system.composition.convention.nuspec"
  7870. ]
  7871. },
  7872. "System.Composition.Hosting/1.0.31": {
  7873. "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
  7874. "type": "package",
  7875. "path": "system.composition.hosting/1.0.31",
  7876. "files": [
  7877. ".nupkg.metadata",
  7878. ".signature.p7s",
  7879. "ThirdPartyNotices.txt",
  7880. "dotnet_library_license.txt",
  7881. "lib/netstandard1.0/System.Composition.Hosting.dll",
  7882. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll",
  7883. "system.composition.hosting.1.0.31.nupkg.sha512",
  7884. "system.composition.hosting.nuspec"
  7885. ]
  7886. },
  7887. "System.Composition.Runtime/1.0.31": {
  7888. "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
  7889. "type": "package",
  7890. "path": "system.composition.runtime/1.0.31",
  7891. "files": [
  7892. ".nupkg.metadata",
  7893. ".signature.p7s",
  7894. "ThirdPartyNotices.txt",
  7895. "dotnet_library_license.txt",
  7896. "lib/netstandard1.0/System.Composition.Runtime.dll",
  7897. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll",
  7898. "system.composition.runtime.1.0.31.nupkg.sha512",
  7899. "system.composition.runtime.nuspec"
  7900. ]
  7901. },
  7902. "System.Composition.TypedParts/1.0.31": {
  7903. "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
  7904. "type": "package",
  7905. "path": "system.composition.typedparts/1.0.31",
  7906. "files": [
  7907. ".nupkg.metadata",
  7908. ".signature.p7s",
  7909. "ThirdPartyNotices.txt",
  7910. "dotnet_library_license.txt",
  7911. "lib/netstandard1.0/System.Composition.TypedParts.dll",
  7912. "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll",
  7913. "system.composition.typedparts.1.0.31.nupkg.sha512",
  7914. "system.composition.typedparts.nuspec"
  7915. ]
  7916. },
  7917. "System.Configuration.ConfigurationManager/6.0.0": {
  7918. "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==",
  7919. "type": "package",
  7920. "path": "system.configuration.configurationmanager/6.0.0",
  7921. "files": [
  7922. ".nupkg.metadata",
  7923. ".signature.p7s",
  7924. "Icon.png",
  7925. "LICENSE.TXT",
  7926. "THIRD-PARTY-NOTICES.TXT",
  7927. "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
  7928. "buildTransitive/netcoreapp3.1/_._",
  7929. "lib/net461/System.Configuration.ConfigurationManager.dll",
  7930. "lib/net461/System.Configuration.ConfigurationManager.xml",
  7931. "lib/net6.0/System.Configuration.ConfigurationManager.dll",
  7932. "lib/net6.0/System.Configuration.ConfigurationManager.xml",
  7933. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  7934. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  7935. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll",
  7936. "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml",
  7937. "system.configuration.configurationmanager.6.0.0.nupkg.sha512",
  7938. "system.configuration.configurationmanager.nuspec",
  7939. "useSharedDesignerContext.txt"
  7940. ]
  7941. },
  7942. "System.Console/4.3.0": {
  7943. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  7944. "type": "package",
  7945. "path": "system.console/4.3.0",
  7946. "files": [
  7947. ".nupkg.metadata",
  7948. ".signature.p7s",
  7949. "ThirdPartyNotices.txt",
  7950. "dotnet_library_license.txt",
  7951. "lib/MonoAndroid10/_._",
  7952. "lib/MonoTouch10/_._",
  7953. "lib/net46/System.Console.dll",
  7954. "lib/xamarinios10/_._",
  7955. "lib/xamarinmac20/_._",
  7956. "lib/xamarintvos10/_._",
  7957. "lib/xamarinwatchos10/_._",
  7958. "ref/MonoAndroid10/_._",
  7959. "ref/MonoTouch10/_._",
  7960. "ref/net46/System.Console.dll",
  7961. "ref/netstandard1.3/System.Console.dll",
  7962. "ref/netstandard1.3/System.Console.xml",
  7963. "ref/netstandard1.3/de/System.Console.xml",
  7964. "ref/netstandard1.3/es/System.Console.xml",
  7965. "ref/netstandard1.3/fr/System.Console.xml",
  7966. "ref/netstandard1.3/it/System.Console.xml",
  7967. "ref/netstandard1.3/ja/System.Console.xml",
  7968. "ref/netstandard1.3/ko/System.Console.xml",
  7969. "ref/netstandard1.3/ru/System.Console.xml",
  7970. "ref/netstandard1.3/zh-hans/System.Console.xml",
  7971. "ref/netstandard1.3/zh-hant/System.Console.xml",
  7972. "ref/xamarinios10/_._",
  7973. "ref/xamarinmac20/_._",
  7974. "ref/xamarintvos10/_._",
  7975. "ref/xamarinwatchos10/_._",
  7976. "system.console.4.3.0.nupkg.sha512",
  7977. "system.console.nuspec"
  7978. ]
  7979. },
  7980. "System.Diagnostics.Debug/4.3.0": {
  7981. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  7982. "type": "package",
  7983. "path": "system.diagnostics.debug/4.3.0",
  7984. "files": [
  7985. ".nupkg.metadata",
  7986. ".signature.p7s",
  7987. "ThirdPartyNotices.txt",
  7988. "dotnet_library_license.txt",
  7989. "lib/MonoAndroid10/_._",
  7990. "lib/MonoTouch10/_._",
  7991. "lib/net45/_._",
  7992. "lib/portable-net45+win8+wp8+wpa81/_._",
  7993. "lib/win8/_._",
  7994. "lib/wp80/_._",
  7995. "lib/wpa81/_._",
  7996. "lib/xamarinios10/_._",
  7997. "lib/xamarinmac20/_._",
  7998. "lib/xamarintvos10/_._",
  7999. "lib/xamarinwatchos10/_._",
  8000. "ref/MonoAndroid10/_._",
  8001. "ref/MonoTouch10/_._",
  8002. "ref/net45/_._",
  8003. "ref/netcore50/System.Diagnostics.Debug.dll",
  8004. "ref/netcore50/System.Diagnostics.Debug.xml",
  8005. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  8006. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  8007. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  8008. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  8009. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  8010. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  8011. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  8012. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  8013. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  8014. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  8015. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  8016. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  8017. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  8018. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  8019. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  8020. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  8021. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  8022. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  8023. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  8024. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  8025. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  8026. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  8027. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  8028. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  8029. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  8030. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  8031. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  8032. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  8033. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  8034. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  8035. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  8036. "ref/portable-net45+win8+wp8+wpa81/_._",
  8037. "ref/win8/_._",
  8038. "ref/wp80/_._",
  8039. "ref/wpa81/_._",
  8040. "ref/xamarinios10/_._",
  8041. "ref/xamarinmac20/_._",
  8042. "ref/xamarintvos10/_._",
  8043. "ref/xamarinwatchos10/_._",
  8044. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  8045. "system.diagnostics.debug.nuspec"
  8046. ]
  8047. },
  8048. "System.Diagnostics.DiagnosticSource/6.0.0": {
  8049. "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==",
  8050. "type": "package",
  8051. "path": "system.diagnostics.diagnosticsource/6.0.0",
  8052. "files": [
  8053. ".nupkg.metadata",
  8054. ".signature.p7s",
  8055. "Icon.png",
  8056. "LICENSE.TXT",
  8057. "THIRD-PARTY-NOTICES.TXT",
  8058. "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets",
  8059. "buildTransitive/netcoreapp3.1/_._",
  8060. "lib/net461/System.Diagnostics.DiagnosticSource.dll",
  8061. "lib/net461/System.Diagnostics.DiagnosticSource.xml",
  8062. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  8063. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  8064. "lib/net6.0/System.Diagnostics.DiagnosticSource.dll",
  8065. "lib/net6.0/System.Diagnostics.DiagnosticSource.xml",
  8066. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll",
  8067. "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml",
  8068. "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
  8069. "system.diagnostics.diagnosticsource.nuspec",
  8070. "useSharedDesignerContext.txt"
  8071. ]
  8072. },
  8073. "System.Diagnostics.Tools/4.3.0": {
  8074. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  8075. "type": "package",
  8076. "path": "system.diagnostics.tools/4.3.0",
  8077. "files": [
  8078. ".nupkg.metadata",
  8079. ".signature.p7s",
  8080. "ThirdPartyNotices.txt",
  8081. "dotnet_library_license.txt",
  8082. "lib/MonoAndroid10/_._",
  8083. "lib/MonoTouch10/_._",
  8084. "lib/net45/_._",
  8085. "lib/portable-net45+win8+wp8+wpa81/_._",
  8086. "lib/win8/_._",
  8087. "lib/wp80/_._",
  8088. "lib/wpa81/_._",
  8089. "lib/xamarinios10/_._",
  8090. "lib/xamarinmac20/_._",
  8091. "lib/xamarintvos10/_._",
  8092. "lib/xamarinwatchos10/_._",
  8093. "ref/MonoAndroid10/_._",
  8094. "ref/MonoTouch10/_._",
  8095. "ref/net45/_._",
  8096. "ref/netcore50/System.Diagnostics.Tools.dll",
  8097. "ref/netcore50/System.Diagnostics.Tools.xml",
  8098. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  8099. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  8100. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  8101. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  8102. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  8103. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  8104. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  8105. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  8106. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  8107. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  8108. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  8109. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  8110. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  8111. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  8112. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  8113. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  8114. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  8115. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  8116. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  8117. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  8118. "ref/portable-net45+win8+wp8+wpa81/_._",
  8119. "ref/win8/_._",
  8120. "ref/wp80/_._",
  8121. "ref/wpa81/_._",
  8122. "ref/xamarinios10/_._",
  8123. "ref/xamarinmac20/_._",
  8124. "ref/xamarintvos10/_._",
  8125. "ref/xamarinwatchos10/_._",
  8126. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  8127. "system.diagnostics.tools.nuspec"
  8128. ]
  8129. },
  8130. "System.Diagnostics.Tracing/4.3.0": {
  8131. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  8132. "type": "package",
  8133. "path": "system.diagnostics.tracing/4.3.0",
  8134. "files": [
  8135. ".nupkg.metadata",
  8136. ".signature.p7s",
  8137. "ThirdPartyNotices.txt",
  8138. "dotnet_library_license.txt",
  8139. "lib/MonoAndroid10/_._",
  8140. "lib/MonoTouch10/_._",
  8141. "lib/net45/_._",
  8142. "lib/net462/System.Diagnostics.Tracing.dll",
  8143. "lib/portable-net45+win8+wpa81/_._",
  8144. "lib/win8/_._",
  8145. "lib/wpa81/_._",
  8146. "lib/xamarinios10/_._",
  8147. "lib/xamarinmac20/_._",
  8148. "lib/xamarintvos10/_._",
  8149. "lib/xamarinwatchos10/_._",
  8150. "ref/MonoAndroid10/_._",
  8151. "ref/MonoTouch10/_._",
  8152. "ref/net45/_._",
  8153. "ref/net462/System.Diagnostics.Tracing.dll",
  8154. "ref/netcore50/System.Diagnostics.Tracing.dll",
  8155. "ref/netcore50/System.Diagnostics.Tracing.xml",
  8156. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  8157. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  8158. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  8159. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  8160. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  8161. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  8162. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  8163. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  8164. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  8165. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  8166. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  8167. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  8168. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  8169. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  8170. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  8171. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  8172. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  8173. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  8174. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  8175. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  8176. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  8177. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  8178. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  8179. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  8180. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  8181. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  8182. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  8183. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  8184. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  8185. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  8186. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  8187. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  8188. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  8189. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  8190. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  8191. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  8192. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  8193. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  8194. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  8195. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  8196. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  8197. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  8198. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  8199. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  8200. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  8201. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  8202. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  8203. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  8204. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  8205. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  8206. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  8207. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  8208. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  8209. "ref/portable-net45+win8+wpa81/_._",
  8210. "ref/win8/_._",
  8211. "ref/wpa81/_._",
  8212. "ref/xamarinios10/_._",
  8213. "ref/xamarinmac20/_._",
  8214. "ref/xamarintvos10/_._",
  8215. "ref/xamarinwatchos10/_._",
  8216. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  8217. "system.diagnostics.tracing.nuspec"
  8218. ]
  8219. },
  8220. "System.Drawing.Common/6.0.0": {
  8221. "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
  8222. "type": "package",
  8223. "path": "system.drawing.common/6.0.0",
  8224. "files": [
  8225. ".nupkg.metadata",
  8226. ".signature.p7s",
  8227. "Icon.png",
  8228. "LICENSE.TXT",
  8229. "THIRD-PARTY-NOTICES.TXT",
  8230. "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
  8231. "buildTransitive/netcoreapp3.1/_._",
  8232. "lib/MonoAndroid10/_._",
  8233. "lib/MonoTouch10/_._",
  8234. "lib/net461/System.Drawing.Common.dll",
  8235. "lib/net461/System.Drawing.Common.xml",
  8236. "lib/net6.0/System.Drawing.Common.dll",
  8237. "lib/net6.0/System.Drawing.Common.xml",
  8238. "lib/netcoreapp3.1/System.Drawing.Common.dll",
  8239. "lib/netcoreapp3.1/System.Drawing.Common.xml",
  8240. "lib/netstandard2.0/System.Drawing.Common.dll",
  8241. "lib/netstandard2.0/System.Drawing.Common.xml",
  8242. "lib/xamarinios10/_._",
  8243. "lib/xamarinmac20/_._",
  8244. "lib/xamarintvos10/_._",
  8245. "lib/xamarinwatchos10/_._",
  8246. "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
  8247. "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
  8248. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
  8249. "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
  8250. "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
  8251. "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
  8252. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
  8253. "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
  8254. "system.drawing.common.6.0.0.nupkg.sha512",
  8255. "system.drawing.common.nuspec",
  8256. "useSharedDesignerContext.txt"
  8257. ]
  8258. },
  8259. "System.Formats.Asn1/6.0.0": {
  8260. "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==",
  8261. "type": "package",
  8262. "path": "system.formats.asn1/6.0.0",
  8263. "files": [
  8264. ".nupkg.metadata",
  8265. ".signature.p7s",
  8266. "Icon.png",
  8267. "LICENSE.TXT",
  8268. "THIRD-PARTY-NOTICES.TXT",
  8269. "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
  8270. "buildTransitive/netcoreapp3.1/_._",
  8271. "lib/net461/System.Formats.Asn1.dll",
  8272. "lib/net461/System.Formats.Asn1.xml",
  8273. "lib/net6.0/System.Formats.Asn1.dll",
  8274. "lib/net6.0/System.Formats.Asn1.xml",
  8275. "lib/netstandard2.0/System.Formats.Asn1.dll",
  8276. "lib/netstandard2.0/System.Formats.Asn1.xml",
  8277. "system.formats.asn1.6.0.0.nupkg.sha512",
  8278. "system.formats.asn1.nuspec",
  8279. "useSharedDesignerContext.txt"
  8280. ]
  8281. },
  8282. "System.Globalization/4.3.0": {
  8283. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  8284. "type": "package",
  8285. "path": "system.globalization/4.3.0",
  8286. "files": [
  8287. ".nupkg.metadata",
  8288. ".signature.p7s",
  8289. "ThirdPartyNotices.txt",
  8290. "dotnet_library_license.txt",
  8291. "lib/MonoAndroid10/_._",
  8292. "lib/MonoTouch10/_._",
  8293. "lib/net45/_._",
  8294. "lib/portable-net45+win8+wp8+wpa81/_._",
  8295. "lib/win8/_._",
  8296. "lib/wp80/_._",
  8297. "lib/wpa81/_._",
  8298. "lib/xamarinios10/_._",
  8299. "lib/xamarinmac20/_._",
  8300. "lib/xamarintvos10/_._",
  8301. "lib/xamarinwatchos10/_._",
  8302. "ref/MonoAndroid10/_._",
  8303. "ref/MonoTouch10/_._",
  8304. "ref/net45/_._",
  8305. "ref/netcore50/System.Globalization.dll",
  8306. "ref/netcore50/System.Globalization.xml",
  8307. "ref/netcore50/de/System.Globalization.xml",
  8308. "ref/netcore50/es/System.Globalization.xml",
  8309. "ref/netcore50/fr/System.Globalization.xml",
  8310. "ref/netcore50/it/System.Globalization.xml",
  8311. "ref/netcore50/ja/System.Globalization.xml",
  8312. "ref/netcore50/ko/System.Globalization.xml",
  8313. "ref/netcore50/ru/System.Globalization.xml",
  8314. "ref/netcore50/zh-hans/System.Globalization.xml",
  8315. "ref/netcore50/zh-hant/System.Globalization.xml",
  8316. "ref/netstandard1.0/System.Globalization.dll",
  8317. "ref/netstandard1.0/System.Globalization.xml",
  8318. "ref/netstandard1.0/de/System.Globalization.xml",
  8319. "ref/netstandard1.0/es/System.Globalization.xml",
  8320. "ref/netstandard1.0/fr/System.Globalization.xml",
  8321. "ref/netstandard1.0/it/System.Globalization.xml",
  8322. "ref/netstandard1.0/ja/System.Globalization.xml",
  8323. "ref/netstandard1.0/ko/System.Globalization.xml",
  8324. "ref/netstandard1.0/ru/System.Globalization.xml",
  8325. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  8326. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  8327. "ref/netstandard1.3/System.Globalization.dll",
  8328. "ref/netstandard1.3/System.Globalization.xml",
  8329. "ref/netstandard1.3/de/System.Globalization.xml",
  8330. "ref/netstandard1.3/es/System.Globalization.xml",
  8331. "ref/netstandard1.3/fr/System.Globalization.xml",
  8332. "ref/netstandard1.3/it/System.Globalization.xml",
  8333. "ref/netstandard1.3/ja/System.Globalization.xml",
  8334. "ref/netstandard1.3/ko/System.Globalization.xml",
  8335. "ref/netstandard1.3/ru/System.Globalization.xml",
  8336. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  8337. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  8338. "ref/portable-net45+win8+wp8+wpa81/_._",
  8339. "ref/win8/_._",
  8340. "ref/wp80/_._",
  8341. "ref/wpa81/_._",
  8342. "ref/xamarinios10/_._",
  8343. "ref/xamarinmac20/_._",
  8344. "ref/xamarintvos10/_._",
  8345. "ref/xamarinwatchos10/_._",
  8346. "system.globalization.4.3.0.nupkg.sha512",
  8347. "system.globalization.nuspec"
  8348. ]
  8349. },
  8350. "System.Globalization.Calendars/4.3.0": {
  8351. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  8352. "type": "package",
  8353. "path": "system.globalization.calendars/4.3.0",
  8354. "files": [
  8355. ".nupkg.metadata",
  8356. ".signature.p7s",
  8357. "ThirdPartyNotices.txt",
  8358. "dotnet_library_license.txt",
  8359. "lib/MonoAndroid10/_._",
  8360. "lib/MonoTouch10/_._",
  8361. "lib/net46/System.Globalization.Calendars.dll",
  8362. "lib/xamarinios10/_._",
  8363. "lib/xamarinmac20/_._",
  8364. "lib/xamarintvos10/_._",
  8365. "lib/xamarinwatchos10/_._",
  8366. "ref/MonoAndroid10/_._",
  8367. "ref/MonoTouch10/_._",
  8368. "ref/net46/System.Globalization.Calendars.dll",
  8369. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  8370. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  8371. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  8372. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  8373. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  8374. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  8375. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  8376. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  8377. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  8378. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  8379. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  8380. "ref/xamarinios10/_._",
  8381. "ref/xamarinmac20/_._",
  8382. "ref/xamarintvos10/_._",
  8383. "ref/xamarinwatchos10/_._",
  8384. "system.globalization.calendars.4.3.0.nupkg.sha512",
  8385. "system.globalization.calendars.nuspec"
  8386. ]
  8387. },
  8388. "System.Globalization.Extensions/4.3.0": {
  8389. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  8390. "type": "package",
  8391. "path": "system.globalization.extensions/4.3.0",
  8392. "files": [
  8393. ".nupkg.metadata",
  8394. ".signature.p7s",
  8395. "ThirdPartyNotices.txt",
  8396. "dotnet_library_license.txt",
  8397. "lib/MonoAndroid10/_._",
  8398. "lib/MonoTouch10/_._",
  8399. "lib/net46/System.Globalization.Extensions.dll",
  8400. "lib/xamarinios10/_._",
  8401. "lib/xamarinmac20/_._",
  8402. "lib/xamarintvos10/_._",
  8403. "lib/xamarinwatchos10/_._",
  8404. "ref/MonoAndroid10/_._",
  8405. "ref/MonoTouch10/_._",
  8406. "ref/net46/System.Globalization.Extensions.dll",
  8407. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  8408. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  8409. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  8410. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  8411. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  8412. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  8413. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  8414. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  8415. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  8416. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  8417. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  8418. "ref/xamarinios10/_._",
  8419. "ref/xamarinmac20/_._",
  8420. "ref/xamarintvos10/_._",
  8421. "ref/xamarinwatchos10/_._",
  8422. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8423. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  8424. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  8425. "system.globalization.extensions.4.3.0.nupkg.sha512",
  8426. "system.globalization.extensions.nuspec"
  8427. ]
  8428. },
  8429. "System.IdentityModel.Tokens.Jwt/6.8.0": {
  8430. "sha512": "5tBCjAub2Bhd5qmcd0WhR5s354e4oLYa//kOWrkX+6/7ZbDDJjMTfwLSOiZ/MMpWdE4DWPLOfTLOq/juj9CKzA==",
  8431. "type": "package",
  8432. "path": "system.identitymodel.tokens.jwt/6.8.0",
  8433. "files": [
  8434. ".nupkg.metadata",
  8435. ".signature.p7s",
  8436. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  8437. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  8438. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  8439. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  8440. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  8441. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  8442. "system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
  8443. "system.identitymodel.tokens.jwt.nuspec"
  8444. ]
  8445. },
  8446. "System.IO/4.3.0": {
  8447. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  8448. "type": "package",
  8449. "path": "system.io/4.3.0",
  8450. "files": [
  8451. ".nupkg.metadata",
  8452. ".signature.p7s",
  8453. "ThirdPartyNotices.txt",
  8454. "dotnet_library_license.txt",
  8455. "lib/MonoAndroid10/_._",
  8456. "lib/MonoTouch10/_._",
  8457. "lib/net45/_._",
  8458. "lib/net462/System.IO.dll",
  8459. "lib/portable-net45+win8+wp8+wpa81/_._",
  8460. "lib/win8/_._",
  8461. "lib/wp80/_._",
  8462. "lib/wpa81/_._",
  8463. "lib/xamarinios10/_._",
  8464. "lib/xamarinmac20/_._",
  8465. "lib/xamarintvos10/_._",
  8466. "lib/xamarinwatchos10/_._",
  8467. "ref/MonoAndroid10/_._",
  8468. "ref/MonoTouch10/_._",
  8469. "ref/net45/_._",
  8470. "ref/net462/System.IO.dll",
  8471. "ref/netcore50/System.IO.dll",
  8472. "ref/netcore50/System.IO.xml",
  8473. "ref/netcore50/de/System.IO.xml",
  8474. "ref/netcore50/es/System.IO.xml",
  8475. "ref/netcore50/fr/System.IO.xml",
  8476. "ref/netcore50/it/System.IO.xml",
  8477. "ref/netcore50/ja/System.IO.xml",
  8478. "ref/netcore50/ko/System.IO.xml",
  8479. "ref/netcore50/ru/System.IO.xml",
  8480. "ref/netcore50/zh-hans/System.IO.xml",
  8481. "ref/netcore50/zh-hant/System.IO.xml",
  8482. "ref/netstandard1.0/System.IO.dll",
  8483. "ref/netstandard1.0/System.IO.xml",
  8484. "ref/netstandard1.0/de/System.IO.xml",
  8485. "ref/netstandard1.0/es/System.IO.xml",
  8486. "ref/netstandard1.0/fr/System.IO.xml",
  8487. "ref/netstandard1.0/it/System.IO.xml",
  8488. "ref/netstandard1.0/ja/System.IO.xml",
  8489. "ref/netstandard1.0/ko/System.IO.xml",
  8490. "ref/netstandard1.0/ru/System.IO.xml",
  8491. "ref/netstandard1.0/zh-hans/System.IO.xml",
  8492. "ref/netstandard1.0/zh-hant/System.IO.xml",
  8493. "ref/netstandard1.3/System.IO.dll",
  8494. "ref/netstandard1.3/System.IO.xml",
  8495. "ref/netstandard1.3/de/System.IO.xml",
  8496. "ref/netstandard1.3/es/System.IO.xml",
  8497. "ref/netstandard1.3/fr/System.IO.xml",
  8498. "ref/netstandard1.3/it/System.IO.xml",
  8499. "ref/netstandard1.3/ja/System.IO.xml",
  8500. "ref/netstandard1.3/ko/System.IO.xml",
  8501. "ref/netstandard1.3/ru/System.IO.xml",
  8502. "ref/netstandard1.3/zh-hans/System.IO.xml",
  8503. "ref/netstandard1.3/zh-hant/System.IO.xml",
  8504. "ref/netstandard1.5/System.IO.dll",
  8505. "ref/netstandard1.5/System.IO.xml",
  8506. "ref/netstandard1.5/de/System.IO.xml",
  8507. "ref/netstandard1.5/es/System.IO.xml",
  8508. "ref/netstandard1.5/fr/System.IO.xml",
  8509. "ref/netstandard1.5/it/System.IO.xml",
  8510. "ref/netstandard1.5/ja/System.IO.xml",
  8511. "ref/netstandard1.5/ko/System.IO.xml",
  8512. "ref/netstandard1.5/ru/System.IO.xml",
  8513. "ref/netstandard1.5/zh-hans/System.IO.xml",
  8514. "ref/netstandard1.5/zh-hant/System.IO.xml",
  8515. "ref/portable-net45+win8+wp8+wpa81/_._",
  8516. "ref/win8/_._",
  8517. "ref/wp80/_._",
  8518. "ref/wpa81/_._",
  8519. "ref/xamarinios10/_._",
  8520. "ref/xamarinmac20/_._",
  8521. "ref/xamarintvos10/_._",
  8522. "ref/xamarinwatchos10/_._",
  8523. "system.io.4.3.0.nupkg.sha512",
  8524. "system.io.nuspec"
  8525. ]
  8526. },
  8527. "System.IO.Compression/4.3.0": {
  8528. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  8529. "type": "package",
  8530. "path": "system.io.compression/4.3.0",
  8531. "files": [
  8532. ".nupkg.metadata",
  8533. ".signature.p7s",
  8534. "ThirdPartyNotices.txt",
  8535. "dotnet_library_license.txt",
  8536. "lib/MonoAndroid10/_._",
  8537. "lib/MonoTouch10/_._",
  8538. "lib/net45/_._",
  8539. "lib/net46/System.IO.Compression.dll",
  8540. "lib/portable-net45+win8+wpa81/_._",
  8541. "lib/win8/_._",
  8542. "lib/wpa81/_._",
  8543. "lib/xamarinios10/_._",
  8544. "lib/xamarinmac20/_._",
  8545. "lib/xamarintvos10/_._",
  8546. "lib/xamarinwatchos10/_._",
  8547. "ref/MonoAndroid10/_._",
  8548. "ref/MonoTouch10/_._",
  8549. "ref/net45/_._",
  8550. "ref/net46/System.IO.Compression.dll",
  8551. "ref/netcore50/System.IO.Compression.dll",
  8552. "ref/netcore50/System.IO.Compression.xml",
  8553. "ref/netcore50/de/System.IO.Compression.xml",
  8554. "ref/netcore50/es/System.IO.Compression.xml",
  8555. "ref/netcore50/fr/System.IO.Compression.xml",
  8556. "ref/netcore50/it/System.IO.Compression.xml",
  8557. "ref/netcore50/ja/System.IO.Compression.xml",
  8558. "ref/netcore50/ko/System.IO.Compression.xml",
  8559. "ref/netcore50/ru/System.IO.Compression.xml",
  8560. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  8561. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  8562. "ref/netstandard1.1/System.IO.Compression.dll",
  8563. "ref/netstandard1.1/System.IO.Compression.xml",
  8564. "ref/netstandard1.1/de/System.IO.Compression.xml",
  8565. "ref/netstandard1.1/es/System.IO.Compression.xml",
  8566. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  8567. "ref/netstandard1.1/it/System.IO.Compression.xml",
  8568. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  8569. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  8570. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  8571. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  8572. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  8573. "ref/netstandard1.3/System.IO.Compression.dll",
  8574. "ref/netstandard1.3/System.IO.Compression.xml",
  8575. "ref/netstandard1.3/de/System.IO.Compression.xml",
  8576. "ref/netstandard1.3/es/System.IO.Compression.xml",
  8577. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  8578. "ref/netstandard1.3/it/System.IO.Compression.xml",
  8579. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  8580. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  8581. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  8582. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  8583. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  8584. "ref/portable-net45+win8+wpa81/_._",
  8585. "ref/win8/_._",
  8586. "ref/wpa81/_._",
  8587. "ref/xamarinios10/_._",
  8588. "ref/xamarinmac20/_._",
  8589. "ref/xamarintvos10/_._",
  8590. "ref/xamarinwatchos10/_._",
  8591. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  8592. "runtimes/win/lib/net46/System.IO.Compression.dll",
  8593. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  8594. "system.io.compression.4.3.0.nupkg.sha512",
  8595. "system.io.compression.nuspec"
  8596. ]
  8597. },
  8598. "System.IO.Compression.ZipFile/4.3.0": {
  8599. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  8600. "type": "package",
  8601. "path": "system.io.compression.zipfile/4.3.0",
  8602. "files": [
  8603. ".nupkg.metadata",
  8604. ".signature.p7s",
  8605. "ThirdPartyNotices.txt",
  8606. "dotnet_library_license.txt",
  8607. "lib/MonoAndroid10/_._",
  8608. "lib/MonoTouch10/_._",
  8609. "lib/net46/System.IO.Compression.ZipFile.dll",
  8610. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  8611. "lib/xamarinios10/_._",
  8612. "lib/xamarinmac20/_._",
  8613. "lib/xamarintvos10/_._",
  8614. "lib/xamarinwatchos10/_._",
  8615. "ref/MonoAndroid10/_._",
  8616. "ref/MonoTouch10/_._",
  8617. "ref/net46/System.IO.Compression.ZipFile.dll",
  8618. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  8619. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  8620. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  8621. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  8622. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  8623. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  8624. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  8625. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  8626. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  8627. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  8628. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  8629. "ref/xamarinios10/_._",
  8630. "ref/xamarinmac20/_._",
  8631. "ref/xamarintvos10/_._",
  8632. "ref/xamarinwatchos10/_._",
  8633. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  8634. "system.io.compression.zipfile.nuspec"
  8635. ]
  8636. },
  8637. "System.IO.FileSystem/4.3.0": {
  8638. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  8639. "type": "package",
  8640. "path": "system.io.filesystem/4.3.0",
  8641. "files": [
  8642. ".nupkg.metadata",
  8643. ".signature.p7s",
  8644. "ThirdPartyNotices.txt",
  8645. "dotnet_library_license.txt",
  8646. "lib/MonoAndroid10/_._",
  8647. "lib/MonoTouch10/_._",
  8648. "lib/net46/System.IO.FileSystem.dll",
  8649. "lib/xamarinios10/_._",
  8650. "lib/xamarinmac20/_._",
  8651. "lib/xamarintvos10/_._",
  8652. "lib/xamarinwatchos10/_._",
  8653. "ref/MonoAndroid10/_._",
  8654. "ref/MonoTouch10/_._",
  8655. "ref/net46/System.IO.FileSystem.dll",
  8656. "ref/netstandard1.3/System.IO.FileSystem.dll",
  8657. "ref/netstandard1.3/System.IO.FileSystem.xml",
  8658. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  8659. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  8660. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  8661. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  8662. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  8663. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  8664. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  8665. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  8666. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  8667. "ref/xamarinios10/_._",
  8668. "ref/xamarinmac20/_._",
  8669. "ref/xamarintvos10/_._",
  8670. "ref/xamarinwatchos10/_._",
  8671. "system.io.filesystem.4.3.0.nupkg.sha512",
  8672. "system.io.filesystem.nuspec"
  8673. ]
  8674. },
  8675. "System.IO.FileSystem.Primitives/4.3.0": {
  8676. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  8677. "type": "package",
  8678. "path": "system.io.filesystem.primitives/4.3.0",
  8679. "files": [
  8680. ".nupkg.metadata",
  8681. ".signature.p7s",
  8682. "ThirdPartyNotices.txt",
  8683. "dotnet_library_license.txt",
  8684. "lib/MonoAndroid10/_._",
  8685. "lib/MonoTouch10/_._",
  8686. "lib/net46/System.IO.FileSystem.Primitives.dll",
  8687. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  8688. "lib/xamarinios10/_._",
  8689. "lib/xamarinmac20/_._",
  8690. "lib/xamarintvos10/_._",
  8691. "lib/xamarinwatchos10/_._",
  8692. "ref/MonoAndroid10/_._",
  8693. "ref/MonoTouch10/_._",
  8694. "ref/net46/System.IO.FileSystem.Primitives.dll",
  8695. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  8696. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  8697. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  8698. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  8699. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  8700. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  8701. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  8702. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  8703. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  8704. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  8705. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  8706. "ref/xamarinios10/_._",
  8707. "ref/xamarinmac20/_._",
  8708. "ref/xamarintvos10/_._",
  8709. "ref/xamarinwatchos10/_._",
  8710. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  8711. "system.io.filesystem.primitives.nuspec"
  8712. ]
  8713. },
  8714. "System.IO.Pipelines/5.0.1": {
  8715. "sha512": "qEePWsaq9LoEEIqhbGe6D5J8c9IqQOUuTzzV6wn1POlfdLkJliZY3OlB0j0f17uMWlqZYjH7txj+2YbyrIA8Yg==",
  8716. "type": "package",
  8717. "path": "system.io.pipelines/5.0.1",
  8718. "files": [
  8719. ".nupkg.metadata",
  8720. ".signature.p7s",
  8721. "Icon.png",
  8722. "LICENSE.TXT",
  8723. "THIRD-PARTY-NOTICES.TXT",
  8724. "lib/net461/System.IO.Pipelines.dll",
  8725. "lib/net461/System.IO.Pipelines.xml",
  8726. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  8727. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  8728. "lib/netstandard1.3/System.IO.Pipelines.dll",
  8729. "lib/netstandard1.3/System.IO.Pipelines.xml",
  8730. "lib/netstandard2.0/System.IO.Pipelines.dll",
  8731. "lib/netstandard2.0/System.IO.Pipelines.xml",
  8732. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  8733. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  8734. "system.io.pipelines.5.0.1.nupkg.sha512",
  8735. "system.io.pipelines.nuspec",
  8736. "useSharedDesignerContext.txt",
  8737. "version.txt"
  8738. ]
  8739. },
  8740. "System.Linq/4.3.0": {
  8741. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  8742. "type": "package",
  8743. "path": "system.linq/4.3.0",
  8744. "files": [
  8745. ".nupkg.metadata",
  8746. ".signature.p7s",
  8747. "ThirdPartyNotices.txt",
  8748. "dotnet_library_license.txt",
  8749. "lib/MonoAndroid10/_._",
  8750. "lib/MonoTouch10/_._",
  8751. "lib/net45/_._",
  8752. "lib/net463/System.Linq.dll",
  8753. "lib/netcore50/System.Linq.dll",
  8754. "lib/netstandard1.6/System.Linq.dll",
  8755. "lib/portable-net45+win8+wp8+wpa81/_._",
  8756. "lib/win8/_._",
  8757. "lib/wp80/_._",
  8758. "lib/wpa81/_._",
  8759. "lib/xamarinios10/_._",
  8760. "lib/xamarinmac20/_._",
  8761. "lib/xamarintvos10/_._",
  8762. "lib/xamarinwatchos10/_._",
  8763. "ref/MonoAndroid10/_._",
  8764. "ref/MonoTouch10/_._",
  8765. "ref/net45/_._",
  8766. "ref/net463/System.Linq.dll",
  8767. "ref/netcore50/System.Linq.dll",
  8768. "ref/netcore50/System.Linq.xml",
  8769. "ref/netcore50/de/System.Linq.xml",
  8770. "ref/netcore50/es/System.Linq.xml",
  8771. "ref/netcore50/fr/System.Linq.xml",
  8772. "ref/netcore50/it/System.Linq.xml",
  8773. "ref/netcore50/ja/System.Linq.xml",
  8774. "ref/netcore50/ko/System.Linq.xml",
  8775. "ref/netcore50/ru/System.Linq.xml",
  8776. "ref/netcore50/zh-hans/System.Linq.xml",
  8777. "ref/netcore50/zh-hant/System.Linq.xml",
  8778. "ref/netstandard1.0/System.Linq.dll",
  8779. "ref/netstandard1.0/System.Linq.xml",
  8780. "ref/netstandard1.0/de/System.Linq.xml",
  8781. "ref/netstandard1.0/es/System.Linq.xml",
  8782. "ref/netstandard1.0/fr/System.Linq.xml",
  8783. "ref/netstandard1.0/it/System.Linq.xml",
  8784. "ref/netstandard1.0/ja/System.Linq.xml",
  8785. "ref/netstandard1.0/ko/System.Linq.xml",
  8786. "ref/netstandard1.0/ru/System.Linq.xml",
  8787. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  8788. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  8789. "ref/netstandard1.6/System.Linq.dll",
  8790. "ref/netstandard1.6/System.Linq.xml",
  8791. "ref/netstandard1.6/de/System.Linq.xml",
  8792. "ref/netstandard1.6/es/System.Linq.xml",
  8793. "ref/netstandard1.6/fr/System.Linq.xml",
  8794. "ref/netstandard1.6/it/System.Linq.xml",
  8795. "ref/netstandard1.6/ja/System.Linq.xml",
  8796. "ref/netstandard1.6/ko/System.Linq.xml",
  8797. "ref/netstandard1.6/ru/System.Linq.xml",
  8798. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  8799. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  8800. "ref/portable-net45+win8+wp8+wpa81/_._",
  8801. "ref/win8/_._",
  8802. "ref/wp80/_._",
  8803. "ref/wpa81/_._",
  8804. "ref/xamarinios10/_._",
  8805. "ref/xamarinmac20/_._",
  8806. "ref/xamarintvos10/_._",
  8807. "ref/xamarinwatchos10/_._",
  8808. "system.linq.4.3.0.nupkg.sha512",
  8809. "system.linq.nuspec"
  8810. ]
  8811. },
  8812. "System.Linq.Expressions/4.3.0": {
  8813. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  8814. "type": "package",
  8815. "path": "system.linq.expressions/4.3.0",
  8816. "files": [
  8817. ".nupkg.metadata",
  8818. ".signature.p7s",
  8819. "ThirdPartyNotices.txt",
  8820. "dotnet_library_license.txt",
  8821. "lib/MonoAndroid10/_._",
  8822. "lib/MonoTouch10/_._",
  8823. "lib/net45/_._",
  8824. "lib/net463/System.Linq.Expressions.dll",
  8825. "lib/netcore50/System.Linq.Expressions.dll",
  8826. "lib/netstandard1.6/System.Linq.Expressions.dll",
  8827. "lib/portable-net45+win8+wp8+wpa81/_._",
  8828. "lib/win8/_._",
  8829. "lib/wp80/_._",
  8830. "lib/wpa81/_._",
  8831. "lib/xamarinios10/_._",
  8832. "lib/xamarinmac20/_._",
  8833. "lib/xamarintvos10/_._",
  8834. "lib/xamarinwatchos10/_._",
  8835. "ref/MonoAndroid10/_._",
  8836. "ref/MonoTouch10/_._",
  8837. "ref/net45/_._",
  8838. "ref/net463/System.Linq.Expressions.dll",
  8839. "ref/netcore50/System.Linq.Expressions.dll",
  8840. "ref/netcore50/System.Linq.Expressions.xml",
  8841. "ref/netcore50/de/System.Linq.Expressions.xml",
  8842. "ref/netcore50/es/System.Linq.Expressions.xml",
  8843. "ref/netcore50/fr/System.Linq.Expressions.xml",
  8844. "ref/netcore50/it/System.Linq.Expressions.xml",
  8845. "ref/netcore50/ja/System.Linq.Expressions.xml",
  8846. "ref/netcore50/ko/System.Linq.Expressions.xml",
  8847. "ref/netcore50/ru/System.Linq.Expressions.xml",
  8848. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  8849. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  8850. "ref/netstandard1.0/System.Linq.Expressions.dll",
  8851. "ref/netstandard1.0/System.Linq.Expressions.xml",
  8852. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  8853. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  8854. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  8855. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  8856. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  8857. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  8858. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  8859. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  8860. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  8861. "ref/netstandard1.3/System.Linq.Expressions.dll",
  8862. "ref/netstandard1.3/System.Linq.Expressions.xml",
  8863. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  8864. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  8865. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  8866. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  8867. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  8868. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  8869. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  8870. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  8871. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  8872. "ref/netstandard1.6/System.Linq.Expressions.dll",
  8873. "ref/netstandard1.6/System.Linq.Expressions.xml",
  8874. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  8875. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  8876. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  8877. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  8878. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  8879. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  8880. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  8881. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  8882. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  8883. "ref/portable-net45+win8+wp8+wpa81/_._",
  8884. "ref/win8/_._",
  8885. "ref/wp80/_._",
  8886. "ref/wpa81/_._",
  8887. "ref/xamarinios10/_._",
  8888. "ref/xamarinmac20/_._",
  8889. "ref/xamarintvos10/_._",
  8890. "ref/xamarinwatchos10/_._",
  8891. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  8892. "system.linq.expressions.4.3.0.nupkg.sha512",
  8893. "system.linq.expressions.nuspec"
  8894. ]
  8895. },
  8896. "System.Memory/4.5.4": {
  8897. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  8898. "type": "package",
  8899. "path": "system.memory/4.5.4",
  8900. "files": [
  8901. ".nupkg.metadata",
  8902. ".signature.p7s",
  8903. "LICENSE.TXT",
  8904. "THIRD-PARTY-NOTICES.TXT",
  8905. "lib/net461/System.Memory.dll",
  8906. "lib/net461/System.Memory.xml",
  8907. "lib/netcoreapp2.1/_._",
  8908. "lib/netstandard1.1/System.Memory.dll",
  8909. "lib/netstandard1.1/System.Memory.xml",
  8910. "lib/netstandard2.0/System.Memory.dll",
  8911. "lib/netstandard2.0/System.Memory.xml",
  8912. "ref/netcoreapp2.1/_._",
  8913. "system.memory.4.5.4.nupkg.sha512",
  8914. "system.memory.nuspec",
  8915. "useSharedDesignerContext.txt",
  8916. "version.txt"
  8917. ]
  8918. },
  8919. "System.Net.Http/4.3.0": {
  8920. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  8921. "type": "package",
  8922. "path": "system.net.http/4.3.0",
  8923. "files": [
  8924. ".nupkg.metadata",
  8925. ".signature.p7s",
  8926. "ThirdPartyNotices.txt",
  8927. "dotnet_library_license.txt",
  8928. "lib/Xamarinmac20/_._",
  8929. "lib/monoandroid10/_._",
  8930. "lib/monotouch10/_._",
  8931. "lib/net45/_._",
  8932. "lib/net46/System.Net.Http.dll",
  8933. "lib/portable-net45+win8+wpa81/_._",
  8934. "lib/win8/_._",
  8935. "lib/wpa81/_._",
  8936. "lib/xamarinios10/_._",
  8937. "lib/xamarintvos10/_._",
  8938. "lib/xamarinwatchos10/_._",
  8939. "ref/Xamarinmac20/_._",
  8940. "ref/monoandroid10/_._",
  8941. "ref/monotouch10/_._",
  8942. "ref/net45/_._",
  8943. "ref/net46/System.Net.Http.dll",
  8944. "ref/net46/System.Net.Http.xml",
  8945. "ref/net46/de/System.Net.Http.xml",
  8946. "ref/net46/es/System.Net.Http.xml",
  8947. "ref/net46/fr/System.Net.Http.xml",
  8948. "ref/net46/it/System.Net.Http.xml",
  8949. "ref/net46/ja/System.Net.Http.xml",
  8950. "ref/net46/ko/System.Net.Http.xml",
  8951. "ref/net46/ru/System.Net.Http.xml",
  8952. "ref/net46/zh-hans/System.Net.Http.xml",
  8953. "ref/net46/zh-hant/System.Net.Http.xml",
  8954. "ref/netcore50/System.Net.Http.dll",
  8955. "ref/netcore50/System.Net.Http.xml",
  8956. "ref/netcore50/de/System.Net.Http.xml",
  8957. "ref/netcore50/es/System.Net.Http.xml",
  8958. "ref/netcore50/fr/System.Net.Http.xml",
  8959. "ref/netcore50/it/System.Net.Http.xml",
  8960. "ref/netcore50/ja/System.Net.Http.xml",
  8961. "ref/netcore50/ko/System.Net.Http.xml",
  8962. "ref/netcore50/ru/System.Net.Http.xml",
  8963. "ref/netcore50/zh-hans/System.Net.Http.xml",
  8964. "ref/netcore50/zh-hant/System.Net.Http.xml",
  8965. "ref/netstandard1.1/System.Net.Http.dll",
  8966. "ref/netstandard1.1/System.Net.Http.xml",
  8967. "ref/netstandard1.1/de/System.Net.Http.xml",
  8968. "ref/netstandard1.1/es/System.Net.Http.xml",
  8969. "ref/netstandard1.1/fr/System.Net.Http.xml",
  8970. "ref/netstandard1.1/it/System.Net.Http.xml",
  8971. "ref/netstandard1.1/ja/System.Net.Http.xml",
  8972. "ref/netstandard1.1/ko/System.Net.Http.xml",
  8973. "ref/netstandard1.1/ru/System.Net.Http.xml",
  8974. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  8975. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  8976. "ref/netstandard1.3/System.Net.Http.dll",
  8977. "ref/netstandard1.3/System.Net.Http.xml",
  8978. "ref/netstandard1.3/de/System.Net.Http.xml",
  8979. "ref/netstandard1.3/es/System.Net.Http.xml",
  8980. "ref/netstandard1.3/fr/System.Net.Http.xml",
  8981. "ref/netstandard1.3/it/System.Net.Http.xml",
  8982. "ref/netstandard1.3/ja/System.Net.Http.xml",
  8983. "ref/netstandard1.3/ko/System.Net.Http.xml",
  8984. "ref/netstandard1.3/ru/System.Net.Http.xml",
  8985. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  8986. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  8987. "ref/portable-net45+win8+wpa81/_._",
  8988. "ref/win8/_._",
  8989. "ref/wpa81/_._",
  8990. "ref/xamarinios10/_._",
  8991. "ref/xamarintvos10/_._",
  8992. "ref/xamarinwatchos10/_._",
  8993. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  8994. "runtimes/win/lib/net46/System.Net.Http.dll",
  8995. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  8996. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  8997. "system.net.http.4.3.0.nupkg.sha512",
  8998. "system.net.http.nuspec"
  8999. ]
  9000. },
  9001. "System.Net.Primitives/4.3.0": {
  9002. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  9003. "type": "package",
  9004. "path": "system.net.primitives/4.3.0",
  9005. "files": [
  9006. ".nupkg.metadata",
  9007. ".signature.p7s",
  9008. "ThirdPartyNotices.txt",
  9009. "dotnet_library_license.txt",
  9010. "lib/MonoAndroid10/_._",
  9011. "lib/MonoTouch10/_._",
  9012. "lib/net45/_._",
  9013. "lib/portable-net45+win8+wp8+wpa81/_._",
  9014. "lib/win8/_._",
  9015. "lib/wp80/_._",
  9016. "lib/wpa81/_._",
  9017. "lib/xamarinios10/_._",
  9018. "lib/xamarinmac20/_._",
  9019. "lib/xamarintvos10/_._",
  9020. "lib/xamarinwatchos10/_._",
  9021. "ref/MonoAndroid10/_._",
  9022. "ref/MonoTouch10/_._",
  9023. "ref/net45/_._",
  9024. "ref/netcore50/System.Net.Primitives.dll",
  9025. "ref/netcore50/System.Net.Primitives.xml",
  9026. "ref/netcore50/de/System.Net.Primitives.xml",
  9027. "ref/netcore50/es/System.Net.Primitives.xml",
  9028. "ref/netcore50/fr/System.Net.Primitives.xml",
  9029. "ref/netcore50/it/System.Net.Primitives.xml",
  9030. "ref/netcore50/ja/System.Net.Primitives.xml",
  9031. "ref/netcore50/ko/System.Net.Primitives.xml",
  9032. "ref/netcore50/ru/System.Net.Primitives.xml",
  9033. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  9034. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  9035. "ref/netstandard1.0/System.Net.Primitives.dll",
  9036. "ref/netstandard1.0/System.Net.Primitives.xml",
  9037. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  9038. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  9039. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  9040. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  9041. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  9042. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  9043. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  9044. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  9045. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  9046. "ref/netstandard1.1/System.Net.Primitives.dll",
  9047. "ref/netstandard1.1/System.Net.Primitives.xml",
  9048. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  9049. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  9050. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  9051. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  9052. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  9053. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  9054. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  9055. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  9056. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  9057. "ref/netstandard1.3/System.Net.Primitives.dll",
  9058. "ref/netstandard1.3/System.Net.Primitives.xml",
  9059. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  9060. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  9061. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  9062. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  9063. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  9064. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  9065. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  9066. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  9067. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  9068. "ref/portable-net45+win8+wp8+wpa81/_._",
  9069. "ref/win8/_._",
  9070. "ref/wp80/_._",
  9071. "ref/wpa81/_._",
  9072. "ref/xamarinios10/_._",
  9073. "ref/xamarinmac20/_._",
  9074. "ref/xamarintvos10/_._",
  9075. "ref/xamarinwatchos10/_._",
  9076. "system.net.primitives.4.3.0.nupkg.sha512",
  9077. "system.net.primitives.nuspec"
  9078. ]
  9079. },
  9080. "System.Net.Sockets/4.3.0": {
  9081. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  9082. "type": "package",
  9083. "path": "system.net.sockets/4.3.0",
  9084. "files": [
  9085. ".nupkg.metadata",
  9086. ".signature.p7s",
  9087. "ThirdPartyNotices.txt",
  9088. "dotnet_library_license.txt",
  9089. "lib/MonoAndroid10/_._",
  9090. "lib/MonoTouch10/_._",
  9091. "lib/net46/System.Net.Sockets.dll",
  9092. "lib/xamarinios10/_._",
  9093. "lib/xamarinmac20/_._",
  9094. "lib/xamarintvos10/_._",
  9095. "lib/xamarinwatchos10/_._",
  9096. "ref/MonoAndroid10/_._",
  9097. "ref/MonoTouch10/_._",
  9098. "ref/net46/System.Net.Sockets.dll",
  9099. "ref/netstandard1.3/System.Net.Sockets.dll",
  9100. "ref/netstandard1.3/System.Net.Sockets.xml",
  9101. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  9102. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  9103. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  9104. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  9105. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  9106. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  9107. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  9108. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  9109. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  9110. "ref/xamarinios10/_._",
  9111. "ref/xamarinmac20/_._",
  9112. "ref/xamarintvos10/_._",
  9113. "ref/xamarinwatchos10/_._",
  9114. "system.net.sockets.4.3.0.nupkg.sha512",
  9115. "system.net.sockets.nuspec"
  9116. ]
  9117. },
  9118. "System.ObjectModel/4.3.0": {
  9119. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  9120. "type": "package",
  9121. "path": "system.objectmodel/4.3.0",
  9122. "files": [
  9123. ".nupkg.metadata",
  9124. ".signature.p7s",
  9125. "ThirdPartyNotices.txt",
  9126. "dotnet_library_license.txt",
  9127. "lib/MonoAndroid10/_._",
  9128. "lib/MonoTouch10/_._",
  9129. "lib/net45/_._",
  9130. "lib/netcore50/System.ObjectModel.dll",
  9131. "lib/netstandard1.3/System.ObjectModel.dll",
  9132. "lib/portable-net45+win8+wp8+wpa81/_._",
  9133. "lib/win8/_._",
  9134. "lib/wp80/_._",
  9135. "lib/wpa81/_._",
  9136. "lib/xamarinios10/_._",
  9137. "lib/xamarinmac20/_._",
  9138. "lib/xamarintvos10/_._",
  9139. "lib/xamarinwatchos10/_._",
  9140. "ref/MonoAndroid10/_._",
  9141. "ref/MonoTouch10/_._",
  9142. "ref/net45/_._",
  9143. "ref/netcore50/System.ObjectModel.dll",
  9144. "ref/netcore50/System.ObjectModel.xml",
  9145. "ref/netcore50/de/System.ObjectModel.xml",
  9146. "ref/netcore50/es/System.ObjectModel.xml",
  9147. "ref/netcore50/fr/System.ObjectModel.xml",
  9148. "ref/netcore50/it/System.ObjectModel.xml",
  9149. "ref/netcore50/ja/System.ObjectModel.xml",
  9150. "ref/netcore50/ko/System.ObjectModel.xml",
  9151. "ref/netcore50/ru/System.ObjectModel.xml",
  9152. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  9153. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  9154. "ref/netstandard1.0/System.ObjectModel.dll",
  9155. "ref/netstandard1.0/System.ObjectModel.xml",
  9156. "ref/netstandard1.0/de/System.ObjectModel.xml",
  9157. "ref/netstandard1.0/es/System.ObjectModel.xml",
  9158. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  9159. "ref/netstandard1.0/it/System.ObjectModel.xml",
  9160. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  9161. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  9162. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  9163. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  9164. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  9165. "ref/netstandard1.3/System.ObjectModel.dll",
  9166. "ref/netstandard1.3/System.ObjectModel.xml",
  9167. "ref/netstandard1.3/de/System.ObjectModel.xml",
  9168. "ref/netstandard1.3/es/System.ObjectModel.xml",
  9169. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  9170. "ref/netstandard1.3/it/System.ObjectModel.xml",
  9171. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  9172. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  9173. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  9174. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  9175. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  9176. "ref/portable-net45+win8+wp8+wpa81/_._",
  9177. "ref/win8/_._",
  9178. "ref/wp80/_._",
  9179. "ref/wpa81/_._",
  9180. "ref/xamarinios10/_._",
  9181. "ref/xamarinmac20/_._",
  9182. "ref/xamarintvos10/_._",
  9183. "ref/xamarinwatchos10/_._",
  9184. "system.objectmodel.4.3.0.nupkg.sha512",
  9185. "system.objectmodel.nuspec"
  9186. ]
  9187. },
  9188. "System.Private.Uri/4.3.2": {
  9189. "sha512": "o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
  9190. "type": "package",
  9191. "path": "system.private.uri/4.3.2",
  9192. "files": [
  9193. ".nupkg.metadata",
  9194. ".signature.p7s",
  9195. "ThirdPartyNotices.txt",
  9196. "dotnet_library_license.txt",
  9197. "ref/netstandard/_._",
  9198. "system.private.uri.4.3.2.nupkg.sha512",
  9199. "system.private.uri.nuspec"
  9200. ]
  9201. },
  9202. "System.Reflection/4.3.0": {
  9203. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  9204. "type": "package",
  9205. "path": "system.reflection/4.3.0",
  9206. "files": [
  9207. ".nupkg.metadata",
  9208. ".signature.p7s",
  9209. "ThirdPartyNotices.txt",
  9210. "dotnet_library_license.txt",
  9211. "lib/MonoAndroid10/_._",
  9212. "lib/MonoTouch10/_._",
  9213. "lib/net45/_._",
  9214. "lib/net462/System.Reflection.dll",
  9215. "lib/portable-net45+win8+wp8+wpa81/_._",
  9216. "lib/win8/_._",
  9217. "lib/wp80/_._",
  9218. "lib/wpa81/_._",
  9219. "lib/xamarinios10/_._",
  9220. "lib/xamarinmac20/_._",
  9221. "lib/xamarintvos10/_._",
  9222. "lib/xamarinwatchos10/_._",
  9223. "ref/MonoAndroid10/_._",
  9224. "ref/MonoTouch10/_._",
  9225. "ref/net45/_._",
  9226. "ref/net462/System.Reflection.dll",
  9227. "ref/netcore50/System.Reflection.dll",
  9228. "ref/netcore50/System.Reflection.xml",
  9229. "ref/netcore50/de/System.Reflection.xml",
  9230. "ref/netcore50/es/System.Reflection.xml",
  9231. "ref/netcore50/fr/System.Reflection.xml",
  9232. "ref/netcore50/it/System.Reflection.xml",
  9233. "ref/netcore50/ja/System.Reflection.xml",
  9234. "ref/netcore50/ko/System.Reflection.xml",
  9235. "ref/netcore50/ru/System.Reflection.xml",
  9236. "ref/netcore50/zh-hans/System.Reflection.xml",
  9237. "ref/netcore50/zh-hant/System.Reflection.xml",
  9238. "ref/netstandard1.0/System.Reflection.dll",
  9239. "ref/netstandard1.0/System.Reflection.xml",
  9240. "ref/netstandard1.0/de/System.Reflection.xml",
  9241. "ref/netstandard1.0/es/System.Reflection.xml",
  9242. "ref/netstandard1.0/fr/System.Reflection.xml",
  9243. "ref/netstandard1.0/it/System.Reflection.xml",
  9244. "ref/netstandard1.0/ja/System.Reflection.xml",
  9245. "ref/netstandard1.0/ko/System.Reflection.xml",
  9246. "ref/netstandard1.0/ru/System.Reflection.xml",
  9247. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  9248. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  9249. "ref/netstandard1.3/System.Reflection.dll",
  9250. "ref/netstandard1.3/System.Reflection.xml",
  9251. "ref/netstandard1.3/de/System.Reflection.xml",
  9252. "ref/netstandard1.3/es/System.Reflection.xml",
  9253. "ref/netstandard1.3/fr/System.Reflection.xml",
  9254. "ref/netstandard1.3/it/System.Reflection.xml",
  9255. "ref/netstandard1.3/ja/System.Reflection.xml",
  9256. "ref/netstandard1.3/ko/System.Reflection.xml",
  9257. "ref/netstandard1.3/ru/System.Reflection.xml",
  9258. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  9259. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  9260. "ref/netstandard1.5/System.Reflection.dll",
  9261. "ref/netstandard1.5/System.Reflection.xml",
  9262. "ref/netstandard1.5/de/System.Reflection.xml",
  9263. "ref/netstandard1.5/es/System.Reflection.xml",
  9264. "ref/netstandard1.5/fr/System.Reflection.xml",
  9265. "ref/netstandard1.5/it/System.Reflection.xml",
  9266. "ref/netstandard1.5/ja/System.Reflection.xml",
  9267. "ref/netstandard1.5/ko/System.Reflection.xml",
  9268. "ref/netstandard1.5/ru/System.Reflection.xml",
  9269. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  9270. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  9271. "ref/portable-net45+win8+wp8+wpa81/_._",
  9272. "ref/win8/_._",
  9273. "ref/wp80/_._",
  9274. "ref/wpa81/_._",
  9275. "ref/xamarinios10/_._",
  9276. "ref/xamarinmac20/_._",
  9277. "ref/xamarintvos10/_._",
  9278. "ref/xamarinwatchos10/_._",
  9279. "system.reflection.4.3.0.nupkg.sha512",
  9280. "system.reflection.nuspec"
  9281. ]
  9282. },
  9283. "System.Reflection.Emit/4.6.0": {
  9284. "sha512": "qAo4jyXtC9i71iElngX7P2r+zLaiHzxKwf66sc3X91tL5Ks6fnQ1vxL04o7ZSm3sYfLExySL7GN8aTpNYpU1qw==",
  9285. "type": "package",
  9286. "path": "system.reflection.emit/4.6.0",
  9287. "files": [
  9288. ".nupkg.metadata",
  9289. ".signature.p7s",
  9290. "LICENSE.TXT",
  9291. "THIRD-PARTY-NOTICES.TXT",
  9292. "lib/monoandroid10/_._",
  9293. "lib/net45/_._",
  9294. "lib/netcore50/System.Reflection.Emit.dll",
  9295. "lib/netcoreapp2.0/_._",
  9296. "lib/netstandard1.1/System.Reflection.Emit.dll",
  9297. "lib/netstandard1.1/System.Reflection.Emit.xml",
  9298. "lib/netstandard1.3/System.Reflection.Emit.dll",
  9299. "lib/netstandard2.0/System.Reflection.Emit.dll",
  9300. "lib/netstandard2.0/System.Reflection.Emit.xml",
  9301. "lib/netstandard2.1/_._",
  9302. "lib/xamarinmac20/_._",
  9303. "ref/monoandroid10/_._",
  9304. "ref/net45/_._",
  9305. "ref/netcoreapp2.0/_._",
  9306. "ref/netstandard1.1/System.Reflection.Emit.dll",
  9307. "ref/netstandard1.1/System.Reflection.Emit.xml",
  9308. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  9309. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  9310. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  9311. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  9312. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  9313. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  9314. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  9315. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  9316. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  9317. "ref/netstandard2.0/System.Reflection.Emit.dll",
  9318. "ref/netstandard2.0/System.Reflection.Emit.xml",
  9319. "ref/netstandard2.1/_._",
  9320. "ref/xamarinmac20/_._",
  9321. "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll",
  9322. "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml",
  9323. "system.reflection.emit.4.6.0.nupkg.sha512",
  9324. "system.reflection.emit.nuspec",
  9325. "useSharedDesignerContext.txt",
  9326. "version.txt"
  9327. ]
  9328. },
  9329. "System.Reflection.Emit.ILGeneration/4.3.0": {
  9330. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  9331. "type": "package",
  9332. "path": "system.reflection.emit.ilgeneration/4.3.0",
  9333. "files": [
  9334. ".nupkg.metadata",
  9335. ".signature.p7s",
  9336. "ThirdPartyNotices.txt",
  9337. "dotnet_library_license.txt",
  9338. "lib/MonoAndroid10/_._",
  9339. "lib/MonoTouch10/_._",
  9340. "lib/net45/_._",
  9341. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  9342. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  9343. "lib/portable-net45+wp8/_._",
  9344. "lib/wp80/_._",
  9345. "lib/xamarinios10/_._",
  9346. "lib/xamarinmac20/_._",
  9347. "lib/xamarintvos10/_._",
  9348. "lib/xamarinwatchos10/_._",
  9349. "ref/MonoAndroid10/_._",
  9350. "ref/MonoTouch10/_._",
  9351. "ref/net45/_._",
  9352. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  9353. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  9354. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  9355. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  9356. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  9357. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  9358. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  9359. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  9360. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  9361. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  9362. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  9363. "ref/portable-net45+wp8/_._",
  9364. "ref/wp80/_._",
  9365. "ref/xamarinios10/_._",
  9366. "ref/xamarinmac20/_._",
  9367. "ref/xamarintvos10/_._",
  9368. "ref/xamarinwatchos10/_._",
  9369. "runtimes/aot/lib/netcore50/_._",
  9370. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  9371. "system.reflection.emit.ilgeneration.nuspec"
  9372. ]
  9373. },
  9374. "System.Reflection.Emit.Lightweight/4.6.0": {
  9375. "sha512": "j/V5HVvxvBQ7uubYD0PptQW2KGsi1Pc2kZ9yfwLixv3ADdjL/4M78KyC5e+ymW612DY8ZE4PFoZmWpoNmN2mqg==",
  9376. "type": "package",
  9377. "path": "system.reflection.emit.lightweight/4.6.0",
  9378. "files": [
  9379. ".nupkg.metadata",
  9380. ".signature.p7s",
  9381. "LICENSE.TXT",
  9382. "THIRD-PARTY-NOTICES.TXT",
  9383. "lib/MonoAndroid10/_._",
  9384. "lib/MonoTouch10/_._",
  9385. "lib/net45/_._",
  9386. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  9387. "lib/netcoreapp2.0/_._",
  9388. "lib/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  9389. "lib/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  9390. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  9391. "lib/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
  9392. "lib/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
  9393. "lib/netstandard2.1/_._",
  9394. "lib/portable-net45+wp8/_._",
  9395. "lib/wp80/_._",
  9396. "lib/xamarinios10/_._",
  9397. "lib/xamarinmac20/_._",
  9398. "lib/xamarintvos10/_._",
  9399. "lib/xamarinwatchos10/_._",
  9400. "ref/MonoAndroid10/_._",
  9401. "ref/MonoTouch10/_._",
  9402. "ref/net45/_._",
  9403. "ref/netcoreapp2.0/_._",
  9404. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  9405. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  9406. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  9407. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  9408. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  9409. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  9410. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  9411. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  9412. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  9413. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  9414. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  9415. "ref/netstandard2.0/System.Reflection.Emit.Lightweight.dll",
  9416. "ref/netstandard2.0/System.Reflection.Emit.Lightweight.xml",
  9417. "ref/netstandard2.1/_._",
  9418. "ref/portable-net45+wp8/_._",
  9419. "ref/wp80/_._",
  9420. "ref/xamarinios10/_._",
  9421. "ref/xamarinmac20/_._",
  9422. "ref/xamarintvos10/_._",
  9423. "ref/xamarinwatchos10/_._",
  9424. "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  9425. "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.xml",
  9426. "system.reflection.emit.lightweight.4.6.0.nupkg.sha512",
  9427. "system.reflection.emit.lightweight.nuspec",
  9428. "useSharedDesignerContext.txt",
  9429. "version.txt"
  9430. ]
  9431. },
  9432. "System.Reflection.Extensions/4.3.0": {
  9433. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  9434. "type": "package",
  9435. "path": "system.reflection.extensions/4.3.0",
  9436. "files": [
  9437. ".nupkg.metadata",
  9438. ".signature.p7s",
  9439. "ThirdPartyNotices.txt",
  9440. "dotnet_library_license.txt",
  9441. "lib/MonoAndroid10/_._",
  9442. "lib/MonoTouch10/_._",
  9443. "lib/net45/_._",
  9444. "lib/portable-net45+win8+wp8+wpa81/_._",
  9445. "lib/win8/_._",
  9446. "lib/wp80/_._",
  9447. "lib/wpa81/_._",
  9448. "lib/xamarinios10/_._",
  9449. "lib/xamarinmac20/_._",
  9450. "lib/xamarintvos10/_._",
  9451. "lib/xamarinwatchos10/_._",
  9452. "ref/MonoAndroid10/_._",
  9453. "ref/MonoTouch10/_._",
  9454. "ref/net45/_._",
  9455. "ref/netcore50/System.Reflection.Extensions.dll",
  9456. "ref/netcore50/System.Reflection.Extensions.xml",
  9457. "ref/netcore50/de/System.Reflection.Extensions.xml",
  9458. "ref/netcore50/es/System.Reflection.Extensions.xml",
  9459. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  9460. "ref/netcore50/it/System.Reflection.Extensions.xml",
  9461. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  9462. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  9463. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  9464. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  9465. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  9466. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  9467. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  9468. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  9469. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  9470. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  9471. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  9472. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  9473. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  9474. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  9475. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  9476. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  9477. "ref/portable-net45+win8+wp8+wpa81/_._",
  9478. "ref/win8/_._",
  9479. "ref/wp80/_._",
  9480. "ref/wpa81/_._",
  9481. "ref/xamarinios10/_._",
  9482. "ref/xamarinmac20/_._",
  9483. "ref/xamarintvos10/_._",
  9484. "ref/xamarinwatchos10/_._",
  9485. "system.reflection.extensions.4.3.0.nupkg.sha512",
  9486. "system.reflection.extensions.nuspec"
  9487. ]
  9488. },
  9489. "System.Reflection.Metadata/5.0.0": {
  9490. "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  9491. "type": "package",
  9492. "path": "system.reflection.metadata/5.0.0",
  9493. "files": [
  9494. ".nupkg.metadata",
  9495. ".signature.p7s",
  9496. "Icon.png",
  9497. "LICENSE.TXT",
  9498. "THIRD-PARTY-NOTICES.TXT",
  9499. "lib/net461/System.Reflection.Metadata.dll",
  9500. "lib/net461/System.Reflection.Metadata.xml",
  9501. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  9502. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  9503. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  9504. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  9505. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  9506. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  9507. "system.reflection.metadata.5.0.0.nupkg.sha512",
  9508. "system.reflection.metadata.nuspec",
  9509. "useSharedDesignerContext.txt",
  9510. "version.txt"
  9511. ]
  9512. },
  9513. "System.Reflection.Primitives/4.3.0": {
  9514. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  9515. "type": "package",
  9516. "path": "system.reflection.primitives/4.3.0",
  9517. "files": [
  9518. ".nupkg.metadata",
  9519. ".signature.p7s",
  9520. "ThirdPartyNotices.txt",
  9521. "dotnet_library_license.txt",
  9522. "lib/MonoAndroid10/_._",
  9523. "lib/MonoTouch10/_._",
  9524. "lib/net45/_._",
  9525. "lib/portable-net45+win8+wp8+wpa81/_._",
  9526. "lib/win8/_._",
  9527. "lib/wp80/_._",
  9528. "lib/wpa81/_._",
  9529. "lib/xamarinios10/_._",
  9530. "lib/xamarinmac20/_._",
  9531. "lib/xamarintvos10/_._",
  9532. "lib/xamarinwatchos10/_._",
  9533. "ref/MonoAndroid10/_._",
  9534. "ref/MonoTouch10/_._",
  9535. "ref/net45/_._",
  9536. "ref/netcore50/System.Reflection.Primitives.dll",
  9537. "ref/netcore50/System.Reflection.Primitives.xml",
  9538. "ref/netcore50/de/System.Reflection.Primitives.xml",
  9539. "ref/netcore50/es/System.Reflection.Primitives.xml",
  9540. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  9541. "ref/netcore50/it/System.Reflection.Primitives.xml",
  9542. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  9543. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  9544. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  9545. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  9546. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  9547. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  9548. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  9549. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  9550. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  9551. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  9552. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  9553. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  9554. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  9555. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  9556. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  9557. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  9558. "ref/portable-net45+win8+wp8+wpa81/_._",
  9559. "ref/win8/_._",
  9560. "ref/wp80/_._",
  9561. "ref/wpa81/_._",
  9562. "ref/xamarinios10/_._",
  9563. "ref/xamarinmac20/_._",
  9564. "ref/xamarintvos10/_._",
  9565. "ref/xamarinwatchos10/_._",
  9566. "system.reflection.primitives.4.3.0.nupkg.sha512",
  9567. "system.reflection.primitives.nuspec"
  9568. ]
  9569. },
  9570. "System.Reflection.TypeExtensions/4.3.0": {
  9571. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  9572. "type": "package",
  9573. "path": "system.reflection.typeextensions/4.3.0",
  9574. "files": [
  9575. ".nupkg.metadata",
  9576. ".signature.p7s",
  9577. "ThirdPartyNotices.txt",
  9578. "dotnet_library_license.txt",
  9579. "lib/MonoAndroid10/_._",
  9580. "lib/MonoTouch10/_._",
  9581. "lib/net46/System.Reflection.TypeExtensions.dll",
  9582. "lib/net462/System.Reflection.TypeExtensions.dll",
  9583. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  9584. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  9585. "lib/xamarinios10/_._",
  9586. "lib/xamarinmac20/_._",
  9587. "lib/xamarintvos10/_._",
  9588. "lib/xamarinwatchos10/_._",
  9589. "ref/MonoAndroid10/_._",
  9590. "ref/MonoTouch10/_._",
  9591. "ref/net46/System.Reflection.TypeExtensions.dll",
  9592. "ref/net462/System.Reflection.TypeExtensions.dll",
  9593. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  9594. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  9595. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  9596. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  9597. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  9598. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  9599. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  9600. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  9601. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  9602. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  9603. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  9604. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  9605. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  9606. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  9607. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  9608. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  9609. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  9610. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  9611. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  9612. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  9613. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  9614. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  9615. "ref/xamarinios10/_._",
  9616. "ref/xamarinmac20/_._",
  9617. "ref/xamarintvos10/_._",
  9618. "ref/xamarinwatchos10/_._",
  9619. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  9620. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  9621. "system.reflection.typeextensions.nuspec"
  9622. ]
  9623. },
  9624. "System.Resources.ResourceManager/4.3.0": {
  9625. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  9626. "type": "package",
  9627. "path": "system.resources.resourcemanager/4.3.0",
  9628. "files": [
  9629. ".nupkg.metadata",
  9630. ".signature.p7s",
  9631. "ThirdPartyNotices.txt",
  9632. "dotnet_library_license.txt",
  9633. "lib/MonoAndroid10/_._",
  9634. "lib/MonoTouch10/_._",
  9635. "lib/net45/_._",
  9636. "lib/portable-net45+win8+wp8+wpa81/_._",
  9637. "lib/win8/_._",
  9638. "lib/wp80/_._",
  9639. "lib/wpa81/_._",
  9640. "lib/xamarinios10/_._",
  9641. "lib/xamarinmac20/_._",
  9642. "lib/xamarintvos10/_._",
  9643. "lib/xamarinwatchos10/_._",
  9644. "ref/MonoAndroid10/_._",
  9645. "ref/MonoTouch10/_._",
  9646. "ref/net45/_._",
  9647. "ref/netcore50/System.Resources.ResourceManager.dll",
  9648. "ref/netcore50/System.Resources.ResourceManager.xml",
  9649. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  9650. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  9651. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  9652. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  9653. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  9654. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  9655. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  9656. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  9657. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  9658. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  9659. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  9660. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  9661. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  9662. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  9663. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  9664. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  9665. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  9666. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  9667. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  9668. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  9669. "ref/portable-net45+win8+wp8+wpa81/_._",
  9670. "ref/win8/_._",
  9671. "ref/wp80/_._",
  9672. "ref/wpa81/_._",
  9673. "ref/xamarinios10/_._",
  9674. "ref/xamarinmac20/_._",
  9675. "ref/xamarintvos10/_._",
  9676. "ref/xamarinwatchos10/_._",
  9677. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  9678. "system.resources.resourcemanager.nuspec"
  9679. ]
  9680. },
  9681. "System.Runtime/4.3.0": {
  9682. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  9683. "type": "package",
  9684. "path": "system.runtime/4.3.0",
  9685. "files": [
  9686. ".nupkg.metadata",
  9687. ".signature.p7s",
  9688. "ThirdPartyNotices.txt",
  9689. "dotnet_library_license.txt",
  9690. "lib/MonoAndroid10/_._",
  9691. "lib/MonoTouch10/_._",
  9692. "lib/net45/_._",
  9693. "lib/net462/System.Runtime.dll",
  9694. "lib/portable-net45+win8+wp80+wpa81/_._",
  9695. "lib/win8/_._",
  9696. "lib/wp80/_._",
  9697. "lib/wpa81/_._",
  9698. "lib/xamarinios10/_._",
  9699. "lib/xamarinmac20/_._",
  9700. "lib/xamarintvos10/_._",
  9701. "lib/xamarinwatchos10/_._",
  9702. "ref/MonoAndroid10/_._",
  9703. "ref/MonoTouch10/_._",
  9704. "ref/net45/_._",
  9705. "ref/net462/System.Runtime.dll",
  9706. "ref/netcore50/System.Runtime.dll",
  9707. "ref/netcore50/System.Runtime.xml",
  9708. "ref/netcore50/de/System.Runtime.xml",
  9709. "ref/netcore50/es/System.Runtime.xml",
  9710. "ref/netcore50/fr/System.Runtime.xml",
  9711. "ref/netcore50/it/System.Runtime.xml",
  9712. "ref/netcore50/ja/System.Runtime.xml",
  9713. "ref/netcore50/ko/System.Runtime.xml",
  9714. "ref/netcore50/ru/System.Runtime.xml",
  9715. "ref/netcore50/zh-hans/System.Runtime.xml",
  9716. "ref/netcore50/zh-hant/System.Runtime.xml",
  9717. "ref/netstandard1.0/System.Runtime.dll",
  9718. "ref/netstandard1.0/System.Runtime.xml",
  9719. "ref/netstandard1.0/de/System.Runtime.xml",
  9720. "ref/netstandard1.0/es/System.Runtime.xml",
  9721. "ref/netstandard1.0/fr/System.Runtime.xml",
  9722. "ref/netstandard1.0/it/System.Runtime.xml",
  9723. "ref/netstandard1.0/ja/System.Runtime.xml",
  9724. "ref/netstandard1.0/ko/System.Runtime.xml",
  9725. "ref/netstandard1.0/ru/System.Runtime.xml",
  9726. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  9727. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  9728. "ref/netstandard1.2/System.Runtime.dll",
  9729. "ref/netstandard1.2/System.Runtime.xml",
  9730. "ref/netstandard1.2/de/System.Runtime.xml",
  9731. "ref/netstandard1.2/es/System.Runtime.xml",
  9732. "ref/netstandard1.2/fr/System.Runtime.xml",
  9733. "ref/netstandard1.2/it/System.Runtime.xml",
  9734. "ref/netstandard1.2/ja/System.Runtime.xml",
  9735. "ref/netstandard1.2/ko/System.Runtime.xml",
  9736. "ref/netstandard1.2/ru/System.Runtime.xml",
  9737. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  9738. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  9739. "ref/netstandard1.3/System.Runtime.dll",
  9740. "ref/netstandard1.3/System.Runtime.xml",
  9741. "ref/netstandard1.3/de/System.Runtime.xml",
  9742. "ref/netstandard1.3/es/System.Runtime.xml",
  9743. "ref/netstandard1.3/fr/System.Runtime.xml",
  9744. "ref/netstandard1.3/it/System.Runtime.xml",
  9745. "ref/netstandard1.3/ja/System.Runtime.xml",
  9746. "ref/netstandard1.3/ko/System.Runtime.xml",
  9747. "ref/netstandard1.3/ru/System.Runtime.xml",
  9748. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  9749. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  9750. "ref/netstandard1.5/System.Runtime.dll",
  9751. "ref/netstandard1.5/System.Runtime.xml",
  9752. "ref/netstandard1.5/de/System.Runtime.xml",
  9753. "ref/netstandard1.5/es/System.Runtime.xml",
  9754. "ref/netstandard1.5/fr/System.Runtime.xml",
  9755. "ref/netstandard1.5/it/System.Runtime.xml",
  9756. "ref/netstandard1.5/ja/System.Runtime.xml",
  9757. "ref/netstandard1.5/ko/System.Runtime.xml",
  9758. "ref/netstandard1.5/ru/System.Runtime.xml",
  9759. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  9760. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  9761. "ref/portable-net45+win8+wp80+wpa81/_._",
  9762. "ref/win8/_._",
  9763. "ref/wp80/_._",
  9764. "ref/wpa81/_._",
  9765. "ref/xamarinios10/_._",
  9766. "ref/xamarinmac20/_._",
  9767. "ref/xamarintvos10/_._",
  9768. "ref/xamarinwatchos10/_._",
  9769. "system.runtime.4.3.0.nupkg.sha512",
  9770. "system.runtime.nuspec"
  9771. ]
  9772. },
  9773. "System.Runtime.Caching/4.7.0": {
  9774. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  9775. "type": "package",
  9776. "path": "system.runtime.caching/4.7.0",
  9777. "files": [
  9778. ".nupkg.metadata",
  9779. ".signature.p7s",
  9780. "LICENSE.TXT",
  9781. "THIRD-PARTY-NOTICES.TXT",
  9782. "lib/MonoAndroid10/_._",
  9783. "lib/MonoTouch10/_._",
  9784. "lib/net45/_._",
  9785. "lib/netstandard2.0/System.Runtime.Caching.dll",
  9786. "lib/netstandard2.0/System.Runtime.Caching.xml",
  9787. "lib/xamarinios10/_._",
  9788. "lib/xamarinmac20/_._",
  9789. "lib/xamarintvos10/_._",
  9790. "lib/xamarinwatchos10/_._",
  9791. "ref/MonoAndroid10/_._",
  9792. "ref/MonoTouch10/_._",
  9793. "ref/net45/_._",
  9794. "ref/netstandard2.0/System.Runtime.Caching.dll",
  9795. "ref/netstandard2.0/System.Runtime.Caching.xml",
  9796. "ref/xamarinios10/_._",
  9797. "ref/xamarinmac20/_._",
  9798. "ref/xamarintvos10/_._",
  9799. "ref/xamarinwatchos10/_._",
  9800. "runtimes/win/lib/net45/_._",
  9801. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  9802. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  9803. "system.runtime.caching.4.7.0.nupkg.sha512",
  9804. "system.runtime.caching.nuspec",
  9805. "useSharedDesignerContext.txt",
  9806. "version.txt"
  9807. ]
  9808. },
  9809. "System.Runtime.CompilerServices.Unsafe/6.0.0": {
  9810. "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
  9811. "type": "package",
  9812. "path": "system.runtime.compilerservices.unsafe/6.0.0",
  9813. "files": [
  9814. ".nupkg.metadata",
  9815. ".signature.p7s",
  9816. "Icon.png",
  9817. "LICENSE.TXT",
  9818. "THIRD-PARTY-NOTICES.TXT",
  9819. "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
  9820. "buildTransitive/netcoreapp3.1/_._",
  9821. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  9822. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  9823. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
  9824. "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
  9825. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
  9826. "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
  9827. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  9828. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  9829. "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
  9830. "system.runtime.compilerservices.unsafe.nuspec",
  9831. "useSharedDesignerContext.txt"
  9832. ]
  9833. },
  9834. "System.Runtime.Extensions/4.3.0": {
  9835. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  9836. "type": "package",
  9837. "path": "system.runtime.extensions/4.3.0",
  9838. "files": [
  9839. ".nupkg.metadata",
  9840. ".signature.p7s",
  9841. "ThirdPartyNotices.txt",
  9842. "dotnet_library_license.txt",
  9843. "lib/MonoAndroid10/_._",
  9844. "lib/MonoTouch10/_._",
  9845. "lib/net45/_._",
  9846. "lib/net462/System.Runtime.Extensions.dll",
  9847. "lib/portable-net45+win8+wp8+wpa81/_._",
  9848. "lib/win8/_._",
  9849. "lib/wp80/_._",
  9850. "lib/wpa81/_._",
  9851. "lib/xamarinios10/_._",
  9852. "lib/xamarinmac20/_._",
  9853. "lib/xamarintvos10/_._",
  9854. "lib/xamarinwatchos10/_._",
  9855. "ref/MonoAndroid10/_._",
  9856. "ref/MonoTouch10/_._",
  9857. "ref/net45/_._",
  9858. "ref/net462/System.Runtime.Extensions.dll",
  9859. "ref/netcore50/System.Runtime.Extensions.dll",
  9860. "ref/netcore50/System.Runtime.Extensions.xml",
  9861. "ref/netcore50/de/System.Runtime.Extensions.xml",
  9862. "ref/netcore50/es/System.Runtime.Extensions.xml",
  9863. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  9864. "ref/netcore50/it/System.Runtime.Extensions.xml",
  9865. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  9866. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  9867. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  9868. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  9869. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  9870. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  9871. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  9872. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  9873. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  9874. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  9875. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  9876. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  9877. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  9878. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  9879. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  9880. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  9881. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  9882. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  9883. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  9884. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  9885. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  9886. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  9887. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  9888. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  9889. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  9890. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  9891. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  9892. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  9893. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  9894. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  9895. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  9896. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  9897. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  9898. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  9899. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  9900. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  9901. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  9902. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  9903. "ref/portable-net45+win8+wp8+wpa81/_._",
  9904. "ref/win8/_._",
  9905. "ref/wp80/_._",
  9906. "ref/wpa81/_._",
  9907. "ref/xamarinios10/_._",
  9908. "ref/xamarinmac20/_._",
  9909. "ref/xamarintvos10/_._",
  9910. "ref/xamarinwatchos10/_._",
  9911. "system.runtime.extensions.4.3.0.nupkg.sha512",
  9912. "system.runtime.extensions.nuspec"
  9913. ]
  9914. },
  9915. "System.Runtime.Handles/4.3.0": {
  9916. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  9917. "type": "package",
  9918. "path": "system.runtime.handles/4.3.0",
  9919. "files": [
  9920. ".nupkg.metadata",
  9921. ".signature.p7s",
  9922. "ThirdPartyNotices.txt",
  9923. "dotnet_library_license.txt",
  9924. "lib/MonoAndroid10/_._",
  9925. "lib/MonoTouch10/_._",
  9926. "lib/net46/_._",
  9927. "lib/xamarinios10/_._",
  9928. "lib/xamarinmac20/_._",
  9929. "lib/xamarintvos10/_._",
  9930. "lib/xamarinwatchos10/_._",
  9931. "ref/MonoAndroid10/_._",
  9932. "ref/MonoTouch10/_._",
  9933. "ref/net46/_._",
  9934. "ref/netstandard1.3/System.Runtime.Handles.dll",
  9935. "ref/netstandard1.3/System.Runtime.Handles.xml",
  9936. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  9937. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  9938. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  9939. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  9940. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  9941. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  9942. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  9943. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  9944. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  9945. "ref/xamarinios10/_._",
  9946. "ref/xamarinmac20/_._",
  9947. "ref/xamarintvos10/_._",
  9948. "ref/xamarinwatchos10/_._",
  9949. "system.runtime.handles.4.3.0.nupkg.sha512",
  9950. "system.runtime.handles.nuspec"
  9951. ]
  9952. },
  9953. "System.Runtime.InteropServices/4.3.0": {
  9954. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  9955. "type": "package",
  9956. "path": "system.runtime.interopservices/4.3.0",
  9957. "files": [
  9958. ".nupkg.metadata",
  9959. ".signature.p7s",
  9960. "ThirdPartyNotices.txt",
  9961. "dotnet_library_license.txt",
  9962. "lib/MonoAndroid10/_._",
  9963. "lib/MonoTouch10/_._",
  9964. "lib/net45/_._",
  9965. "lib/net462/System.Runtime.InteropServices.dll",
  9966. "lib/net463/System.Runtime.InteropServices.dll",
  9967. "lib/portable-net45+win8+wpa81/_._",
  9968. "lib/win8/_._",
  9969. "lib/wpa81/_._",
  9970. "lib/xamarinios10/_._",
  9971. "lib/xamarinmac20/_._",
  9972. "lib/xamarintvos10/_._",
  9973. "lib/xamarinwatchos10/_._",
  9974. "ref/MonoAndroid10/_._",
  9975. "ref/MonoTouch10/_._",
  9976. "ref/net45/_._",
  9977. "ref/net462/System.Runtime.InteropServices.dll",
  9978. "ref/net463/System.Runtime.InteropServices.dll",
  9979. "ref/netcore50/System.Runtime.InteropServices.dll",
  9980. "ref/netcore50/System.Runtime.InteropServices.xml",
  9981. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  9982. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  9983. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  9984. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  9985. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  9986. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  9987. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  9988. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  9989. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  9990. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  9991. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  9992. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  9993. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  9994. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  9995. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  9996. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  9997. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  9998. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  9999. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  10000. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  10001. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  10002. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  10003. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  10004. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  10005. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  10006. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  10007. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  10008. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  10009. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  10010. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  10011. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  10012. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  10013. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  10014. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  10015. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  10016. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  10017. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  10018. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  10019. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  10020. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  10021. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  10022. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  10023. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  10024. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  10025. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  10026. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  10027. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  10028. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  10029. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  10030. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  10031. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  10032. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  10033. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  10034. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  10035. "ref/portable-net45+win8+wpa81/_._",
  10036. "ref/win8/_._",
  10037. "ref/wpa81/_._",
  10038. "ref/xamarinios10/_._",
  10039. "ref/xamarinmac20/_._",
  10040. "ref/xamarintvos10/_._",
  10041. "ref/xamarinwatchos10/_._",
  10042. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  10043. "system.runtime.interopservices.nuspec"
  10044. ]
  10045. },
  10046. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  10047. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  10048. "type": "package",
  10049. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  10050. "files": [
  10051. ".nupkg.metadata",
  10052. ".signature.p7s",
  10053. "ThirdPartyNotices.txt",
  10054. "dotnet_library_license.txt",
  10055. "lib/MonoAndroid10/_._",
  10056. "lib/MonoTouch10/_._",
  10057. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10058. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10059. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  10060. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  10061. "lib/xamarinios10/_._",
  10062. "lib/xamarinmac20/_._",
  10063. "lib/xamarintvos10/_._",
  10064. "lib/xamarinwatchos10/_._",
  10065. "ref/MonoAndroid10/_._",
  10066. "ref/MonoTouch10/_._",
  10067. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10068. "ref/xamarinios10/_._",
  10069. "ref/xamarinmac20/_._",
  10070. "ref/xamarintvos10/_._",
  10071. "ref/xamarinwatchos10/_._",
  10072. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10073. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10074. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  10075. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  10076. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  10077. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  10078. "system.runtime.interopservices.runtimeinformation.nuspec"
  10079. ]
  10080. },
  10081. "System.Runtime.Numerics/4.3.0": {
  10082. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  10083. "type": "package",
  10084. "path": "system.runtime.numerics/4.3.0",
  10085. "files": [
  10086. ".nupkg.metadata",
  10087. ".signature.p7s",
  10088. "ThirdPartyNotices.txt",
  10089. "dotnet_library_license.txt",
  10090. "lib/MonoAndroid10/_._",
  10091. "lib/MonoTouch10/_._",
  10092. "lib/net45/_._",
  10093. "lib/netcore50/System.Runtime.Numerics.dll",
  10094. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  10095. "lib/portable-net45+win8+wpa81/_._",
  10096. "lib/win8/_._",
  10097. "lib/wpa81/_._",
  10098. "lib/xamarinios10/_._",
  10099. "lib/xamarinmac20/_._",
  10100. "lib/xamarintvos10/_._",
  10101. "lib/xamarinwatchos10/_._",
  10102. "ref/MonoAndroid10/_._",
  10103. "ref/MonoTouch10/_._",
  10104. "ref/net45/_._",
  10105. "ref/netcore50/System.Runtime.Numerics.dll",
  10106. "ref/netcore50/System.Runtime.Numerics.xml",
  10107. "ref/netcore50/de/System.Runtime.Numerics.xml",
  10108. "ref/netcore50/es/System.Runtime.Numerics.xml",
  10109. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  10110. "ref/netcore50/it/System.Runtime.Numerics.xml",
  10111. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  10112. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  10113. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  10114. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  10115. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  10116. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  10117. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  10118. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  10119. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  10120. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  10121. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  10122. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  10123. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  10124. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  10125. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  10126. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  10127. "ref/portable-net45+win8+wpa81/_._",
  10128. "ref/win8/_._",
  10129. "ref/wpa81/_._",
  10130. "ref/xamarinios10/_._",
  10131. "ref/xamarinmac20/_._",
  10132. "ref/xamarintvos10/_._",
  10133. "ref/xamarinwatchos10/_._",
  10134. "system.runtime.numerics.4.3.0.nupkg.sha512",
  10135. "system.runtime.numerics.nuspec"
  10136. ]
  10137. },
  10138. "System.Security.AccessControl/6.0.0": {
  10139. "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==",
  10140. "type": "package",
  10141. "path": "system.security.accesscontrol/6.0.0",
  10142. "files": [
  10143. ".nupkg.metadata",
  10144. ".signature.p7s",
  10145. "Icon.png",
  10146. "LICENSE.TXT",
  10147. "THIRD-PARTY-NOTICES.TXT",
  10148. "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets",
  10149. "buildTransitive/netcoreapp3.1/_._",
  10150. "lib/net461/System.Security.AccessControl.dll",
  10151. "lib/net461/System.Security.AccessControl.xml",
  10152. "lib/net6.0/System.Security.AccessControl.dll",
  10153. "lib/net6.0/System.Security.AccessControl.xml",
  10154. "lib/netstandard2.0/System.Security.AccessControl.dll",
  10155. "lib/netstandard2.0/System.Security.AccessControl.xml",
  10156. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  10157. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  10158. "runtimes/win/lib/net6.0/System.Security.AccessControl.dll",
  10159. "runtimes/win/lib/net6.0/System.Security.AccessControl.xml",
  10160. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll",
  10161. "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml",
  10162. "system.security.accesscontrol.6.0.0.nupkg.sha512",
  10163. "system.security.accesscontrol.nuspec",
  10164. "useSharedDesignerContext.txt"
  10165. ]
  10166. },
  10167. "System.Security.Cryptography.Algorithms/4.3.0": {
  10168. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  10169. "type": "package",
  10170. "path": "system.security.cryptography.algorithms/4.3.0",
  10171. "files": [
  10172. ".nupkg.metadata",
  10173. ".signature.p7s",
  10174. "ThirdPartyNotices.txt",
  10175. "dotnet_library_license.txt",
  10176. "lib/MonoAndroid10/_._",
  10177. "lib/MonoTouch10/_._",
  10178. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  10179. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  10180. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  10181. "lib/xamarinios10/_._",
  10182. "lib/xamarinmac20/_._",
  10183. "lib/xamarintvos10/_._",
  10184. "lib/xamarinwatchos10/_._",
  10185. "ref/MonoAndroid10/_._",
  10186. "ref/MonoTouch10/_._",
  10187. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  10188. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  10189. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  10190. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  10191. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  10192. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10193. "ref/xamarinios10/_._",
  10194. "ref/xamarinmac20/_._",
  10195. "ref/xamarintvos10/_._",
  10196. "ref/xamarinwatchos10/_._",
  10197. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10198. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10199. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  10200. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  10201. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  10202. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  10203. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  10204. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  10205. "system.security.cryptography.algorithms.nuspec"
  10206. ]
  10207. },
  10208. "System.Security.Cryptography.Cng/5.0.0": {
  10209. "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
  10210. "type": "package",
  10211. "path": "system.security.cryptography.cng/5.0.0",
  10212. "files": [
  10213. ".nupkg.metadata",
  10214. ".signature.p7s",
  10215. "Icon.png",
  10216. "LICENSE.TXT",
  10217. "THIRD-PARTY-NOTICES.TXT",
  10218. "lib/MonoAndroid10/_._",
  10219. "lib/MonoTouch10/_._",
  10220. "lib/net46/System.Security.Cryptography.Cng.dll",
  10221. "lib/net461/System.Security.Cryptography.Cng.dll",
  10222. "lib/net461/System.Security.Cryptography.Cng.xml",
  10223. "lib/net462/System.Security.Cryptography.Cng.dll",
  10224. "lib/net462/System.Security.Cryptography.Cng.xml",
  10225. "lib/net47/System.Security.Cryptography.Cng.dll",
  10226. "lib/net47/System.Security.Cryptography.Cng.xml",
  10227. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10228. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  10229. "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  10230. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10231. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10232. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10233. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10234. "lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
  10235. "lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
  10236. "lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
  10237. "lib/uap10.0.16299/_._",
  10238. "lib/xamarinios10/_._",
  10239. "lib/xamarinmac20/_._",
  10240. "lib/xamarintvos10/_._",
  10241. "lib/xamarinwatchos10/_._",
  10242. "ref/MonoAndroid10/_._",
  10243. "ref/MonoTouch10/_._",
  10244. "ref/net46/System.Security.Cryptography.Cng.dll",
  10245. "ref/net461/System.Security.Cryptography.Cng.dll",
  10246. "ref/net461/System.Security.Cryptography.Cng.xml",
  10247. "ref/net462/System.Security.Cryptography.Cng.dll",
  10248. "ref/net462/System.Security.Cryptography.Cng.xml",
  10249. "ref/net47/System.Security.Cryptography.Cng.dll",
  10250. "ref/net47/System.Security.Cryptography.Cng.xml",
  10251. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10252. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  10253. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10254. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  10255. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  10256. "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  10257. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  10258. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10259. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10260. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  10261. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  10262. "ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
  10263. "ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
  10264. "ref/uap10.0.16299/_._",
  10265. "ref/xamarinios10/_._",
  10266. "ref/xamarinmac20/_._",
  10267. "ref/xamarintvos10/_._",
  10268. "ref/xamarinwatchos10/_._",
  10269. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  10270. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  10271. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
  10272. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  10273. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
  10274. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  10275. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
  10276. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  10277. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  10278. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
  10279. "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
  10280. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  10281. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  10282. "runtimes/win/lib/uap10.0.16299/_._",
  10283. "system.security.cryptography.cng.5.0.0.nupkg.sha512",
  10284. "system.security.cryptography.cng.nuspec",
  10285. "useSharedDesignerContext.txt",
  10286. "version.txt"
  10287. ]
  10288. },
  10289. "System.Security.Cryptography.Csp/4.3.0": {
  10290. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  10291. "type": "package",
  10292. "path": "system.security.cryptography.csp/4.3.0",
  10293. "files": [
  10294. ".nupkg.metadata",
  10295. ".signature.p7s",
  10296. "ThirdPartyNotices.txt",
  10297. "dotnet_library_license.txt",
  10298. "lib/MonoAndroid10/_._",
  10299. "lib/MonoTouch10/_._",
  10300. "lib/net46/System.Security.Cryptography.Csp.dll",
  10301. "lib/xamarinios10/_._",
  10302. "lib/xamarinmac20/_._",
  10303. "lib/xamarintvos10/_._",
  10304. "lib/xamarinwatchos10/_._",
  10305. "ref/MonoAndroid10/_._",
  10306. "ref/MonoTouch10/_._",
  10307. "ref/net46/System.Security.Cryptography.Csp.dll",
  10308. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10309. "ref/xamarinios10/_._",
  10310. "ref/xamarinmac20/_._",
  10311. "ref/xamarintvos10/_._",
  10312. "ref/xamarinwatchos10/_._",
  10313. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10314. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  10315. "runtimes/win/lib/netcore50/_._",
  10316. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  10317. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  10318. "system.security.cryptography.csp.nuspec"
  10319. ]
  10320. },
  10321. "System.Security.Cryptography.Encoding/4.3.0": {
  10322. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  10323. "type": "package",
  10324. "path": "system.security.cryptography.encoding/4.3.0",
  10325. "files": [
  10326. ".nupkg.metadata",
  10327. ".signature.p7s",
  10328. "ThirdPartyNotices.txt",
  10329. "dotnet_library_license.txt",
  10330. "lib/MonoAndroid10/_._",
  10331. "lib/MonoTouch10/_._",
  10332. "lib/net46/System.Security.Cryptography.Encoding.dll",
  10333. "lib/xamarinios10/_._",
  10334. "lib/xamarinmac20/_._",
  10335. "lib/xamarintvos10/_._",
  10336. "lib/xamarinwatchos10/_._",
  10337. "ref/MonoAndroid10/_._",
  10338. "ref/MonoTouch10/_._",
  10339. "ref/net46/System.Security.Cryptography.Encoding.dll",
  10340. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10341. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  10342. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  10343. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  10344. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  10345. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  10346. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  10347. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  10348. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  10349. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  10350. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  10351. "ref/xamarinios10/_._",
  10352. "ref/xamarinmac20/_._",
  10353. "ref/xamarintvos10/_._",
  10354. "ref/xamarinwatchos10/_._",
  10355. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10356. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  10357. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  10358. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  10359. "system.security.cryptography.encoding.nuspec"
  10360. ]
  10361. },
  10362. "System.Security.Cryptography.OpenSsl/4.3.0": {
  10363. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  10364. "type": "package",
  10365. "path": "system.security.cryptography.openssl/4.3.0",
  10366. "files": [
  10367. ".nupkg.metadata",
  10368. ".signature.p7s",
  10369. "ThirdPartyNotices.txt",
  10370. "dotnet_library_license.txt",
  10371. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10372. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10373. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  10374. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  10375. "system.security.cryptography.openssl.nuspec"
  10376. ]
  10377. },
  10378. "System.Security.Cryptography.Pkcs/6.0.0": {
  10379. "sha512": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==",
  10380. "type": "package",
  10381. "path": "system.security.cryptography.pkcs/6.0.0",
  10382. "files": [
  10383. ".nupkg.metadata",
  10384. ".signature.p7s",
  10385. "Icon.png",
  10386. "LICENSE.TXT",
  10387. "THIRD-PARTY-NOTICES.TXT",
  10388. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets",
  10389. "buildTransitive/netcoreapp3.1/_._",
  10390. "lib/net461/System.Security.Cryptography.Pkcs.dll",
  10391. "lib/net461/System.Security.Cryptography.Pkcs.xml",
  10392. "lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  10393. "lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  10394. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  10395. "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  10396. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  10397. "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  10398. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  10399. "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  10400. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll",
  10401. "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml",
  10402. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll",
  10403. "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml",
  10404. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll",
  10405. "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml",
  10406. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll",
  10407. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml",
  10408. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll",
  10409. "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml",
  10410. "system.security.cryptography.pkcs.6.0.0.nupkg.sha512",
  10411. "system.security.cryptography.pkcs.nuspec",
  10412. "useSharedDesignerContext.txt"
  10413. ]
  10414. },
  10415. "System.Security.Cryptography.Primitives/4.3.0": {
  10416. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  10417. "type": "package",
  10418. "path": "system.security.cryptography.primitives/4.3.0",
  10419. "files": [
  10420. ".nupkg.metadata",
  10421. ".signature.p7s",
  10422. "ThirdPartyNotices.txt",
  10423. "dotnet_library_license.txt",
  10424. "lib/MonoAndroid10/_._",
  10425. "lib/MonoTouch10/_._",
  10426. "lib/net46/System.Security.Cryptography.Primitives.dll",
  10427. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10428. "lib/xamarinios10/_._",
  10429. "lib/xamarinmac20/_._",
  10430. "lib/xamarintvos10/_._",
  10431. "lib/xamarinwatchos10/_._",
  10432. "ref/MonoAndroid10/_._",
  10433. "ref/MonoTouch10/_._",
  10434. "ref/net46/System.Security.Cryptography.Primitives.dll",
  10435. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  10436. "ref/xamarinios10/_._",
  10437. "ref/xamarinmac20/_._",
  10438. "ref/xamarintvos10/_._",
  10439. "ref/xamarinwatchos10/_._",
  10440. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  10441. "system.security.cryptography.primitives.nuspec"
  10442. ]
  10443. },
  10444. "System.Security.Cryptography.ProtectedData/6.0.0": {
  10445. "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==",
  10446. "type": "package",
  10447. "path": "system.security.cryptography.protecteddata/6.0.0",
  10448. "files": [
  10449. ".nupkg.metadata",
  10450. ".signature.p7s",
  10451. "Icon.png",
  10452. "LICENSE.TXT",
  10453. "THIRD-PARTY-NOTICES.TXT",
  10454. "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
  10455. "buildTransitive/netcoreapp3.1/_._",
  10456. "lib/MonoAndroid10/_._",
  10457. "lib/MonoTouch10/_._",
  10458. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10459. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  10460. "lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  10461. "lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  10462. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10463. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10464. "lib/xamarinios10/_._",
  10465. "lib/xamarinmac20/_._",
  10466. "lib/xamarintvos10/_._",
  10467. "lib/xamarinwatchos10/_._",
  10468. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  10469. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  10470. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
  10471. "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
  10472. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  10473. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  10474. "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512",
  10475. "system.security.cryptography.protecteddata.nuspec",
  10476. "useSharedDesignerContext.txt"
  10477. ]
  10478. },
  10479. "System.Security.Cryptography.X509Certificates/4.3.0": {
  10480. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  10481. "type": "package",
  10482. "path": "system.security.cryptography.x509certificates/4.3.0",
  10483. "files": [
  10484. ".nupkg.metadata",
  10485. ".signature.p7s",
  10486. "ThirdPartyNotices.txt",
  10487. "dotnet_library_license.txt",
  10488. "lib/MonoAndroid10/_._",
  10489. "lib/MonoTouch10/_._",
  10490. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10491. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10492. "lib/xamarinios10/_._",
  10493. "lib/xamarinmac20/_._",
  10494. "lib/xamarintvos10/_._",
  10495. "lib/xamarinwatchos10/_._",
  10496. "ref/MonoAndroid10/_._",
  10497. "ref/MonoTouch10/_._",
  10498. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  10499. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  10500. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  10501. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  10502. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  10503. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  10504. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  10505. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  10506. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  10507. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  10508. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  10509. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10510. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10511. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  10512. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  10513. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  10514. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  10515. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  10516. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  10517. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  10518. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  10519. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  10520. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  10521. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  10522. "ref/xamarinios10/_._",
  10523. "ref/xamarinmac20/_._",
  10524. "ref/xamarintvos10/_._",
  10525. "ref/xamarinwatchos10/_._",
  10526. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10527. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  10528. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  10529. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  10530. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  10531. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  10532. "system.security.cryptography.x509certificates.nuspec"
  10533. ]
  10534. },
  10535. "System.Security.Permissions/6.0.0": {
  10536. "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==",
  10537. "type": "package",
  10538. "path": "system.security.permissions/6.0.0",
  10539. "files": [
  10540. ".nupkg.metadata",
  10541. ".signature.p7s",
  10542. "Icon.png",
  10543. "LICENSE.TXT",
  10544. "THIRD-PARTY-NOTICES.TXT",
  10545. "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
  10546. "buildTransitive/netcoreapp3.1/_._",
  10547. "lib/net461/System.Security.Permissions.dll",
  10548. "lib/net461/System.Security.Permissions.xml",
  10549. "lib/net5.0/System.Security.Permissions.dll",
  10550. "lib/net5.0/System.Security.Permissions.xml",
  10551. "lib/net6.0/System.Security.Permissions.dll",
  10552. "lib/net6.0/System.Security.Permissions.xml",
  10553. "lib/netcoreapp3.1/System.Security.Permissions.dll",
  10554. "lib/netcoreapp3.1/System.Security.Permissions.xml",
  10555. "lib/netstandard2.0/System.Security.Permissions.dll",
  10556. "lib/netstandard2.0/System.Security.Permissions.xml",
  10557. "runtimes/win/lib/net461/System.Security.Permissions.dll",
  10558. "runtimes/win/lib/net461/System.Security.Permissions.xml",
  10559. "system.security.permissions.6.0.0.nupkg.sha512",
  10560. "system.security.permissions.nuspec",
  10561. "useSharedDesignerContext.txt"
  10562. ]
  10563. },
  10564. "System.Security.Principal.Windows/4.7.0": {
  10565. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  10566. "type": "package",
  10567. "path": "system.security.principal.windows/4.7.0",
  10568. "files": [
  10569. ".nupkg.metadata",
  10570. ".signature.p7s",
  10571. "LICENSE.TXT",
  10572. "THIRD-PARTY-NOTICES.TXT",
  10573. "lib/net46/System.Security.Principal.Windows.dll",
  10574. "lib/net461/System.Security.Principal.Windows.dll",
  10575. "lib/net461/System.Security.Principal.Windows.xml",
  10576. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  10577. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  10578. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  10579. "lib/uap10.0.16299/_._",
  10580. "ref/net46/System.Security.Principal.Windows.dll",
  10581. "ref/net461/System.Security.Principal.Windows.dll",
  10582. "ref/net461/System.Security.Principal.Windows.xml",
  10583. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  10584. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  10585. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  10586. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  10587. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  10588. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  10589. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  10590. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  10591. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  10592. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  10593. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  10594. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  10595. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  10596. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  10597. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  10598. "ref/uap10.0.16299/_._",
  10599. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  10600. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  10601. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  10602. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  10603. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  10604. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  10605. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  10606. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  10607. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  10608. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  10609. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  10610. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  10611. "runtimes/win/lib/uap10.0.16299/_._",
  10612. "system.security.principal.windows.4.7.0.nupkg.sha512",
  10613. "system.security.principal.windows.nuspec",
  10614. "useSharedDesignerContext.txt",
  10615. "version.txt"
  10616. ]
  10617. },
  10618. "System.Text.Encoding/4.3.0": {
  10619. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  10620. "type": "package",
  10621. "path": "system.text.encoding/4.3.0",
  10622. "files": [
  10623. ".nupkg.metadata",
  10624. ".signature.p7s",
  10625. "ThirdPartyNotices.txt",
  10626. "dotnet_library_license.txt",
  10627. "lib/MonoAndroid10/_._",
  10628. "lib/MonoTouch10/_._",
  10629. "lib/net45/_._",
  10630. "lib/portable-net45+win8+wp8+wpa81/_._",
  10631. "lib/win8/_._",
  10632. "lib/wp80/_._",
  10633. "lib/wpa81/_._",
  10634. "lib/xamarinios10/_._",
  10635. "lib/xamarinmac20/_._",
  10636. "lib/xamarintvos10/_._",
  10637. "lib/xamarinwatchos10/_._",
  10638. "ref/MonoAndroid10/_._",
  10639. "ref/MonoTouch10/_._",
  10640. "ref/net45/_._",
  10641. "ref/netcore50/System.Text.Encoding.dll",
  10642. "ref/netcore50/System.Text.Encoding.xml",
  10643. "ref/netcore50/de/System.Text.Encoding.xml",
  10644. "ref/netcore50/es/System.Text.Encoding.xml",
  10645. "ref/netcore50/fr/System.Text.Encoding.xml",
  10646. "ref/netcore50/it/System.Text.Encoding.xml",
  10647. "ref/netcore50/ja/System.Text.Encoding.xml",
  10648. "ref/netcore50/ko/System.Text.Encoding.xml",
  10649. "ref/netcore50/ru/System.Text.Encoding.xml",
  10650. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  10651. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  10652. "ref/netstandard1.0/System.Text.Encoding.dll",
  10653. "ref/netstandard1.0/System.Text.Encoding.xml",
  10654. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  10655. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  10656. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  10657. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  10658. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  10659. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  10660. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  10661. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  10662. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  10663. "ref/netstandard1.3/System.Text.Encoding.dll",
  10664. "ref/netstandard1.3/System.Text.Encoding.xml",
  10665. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  10666. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  10667. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  10668. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  10669. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  10670. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  10671. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  10672. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  10673. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  10674. "ref/portable-net45+win8+wp8+wpa81/_._",
  10675. "ref/win8/_._",
  10676. "ref/wp80/_._",
  10677. "ref/wpa81/_._",
  10678. "ref/xamarinios10/_._",
  10679. "ref/xamarinmac20/_._",
  10680. "ref/xamarintvos10/_._",
  10681. "ref/xamarinwatchos10/_._",
  10682. "system.text.encoding.4.3.0.nupkg.sha512",
  10683. "system.text.encoding.nuspec"
  10684. ]
  10685. },
  10686. "System.Text.Encoding.CodePages/4.7.0": {
  10687. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  10688. "type": "package",
  10689. "path": "system.text.encoding.codepages/4.7.0",
  10690. "files": [
  10691. ".nupkg.metadata",
  10692. ".signature.p7s",
  10693. "LICENSE.TXT",
  10694. "THIRD-PARTY-NOTICES.TXT",
  10695. "lib/MonoAndroid10/_._",
  10696. "lib/MonoTouch10/_._",
  10697. "lib/net46/System.Text.Encoding.CodePages.dll",
  10698. "lib/net461/System.Text.Encoding.CodePages.dll",
  10699. "lib/net461/System.Text.Encoding.CodePages.xml",
  10700. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  10701. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  10702. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  10703. "lib/xamarinios10/_._",
  10704. "lib/xamarinmac20/_._",
  10705. "lib/xamarintvos10/_._",
  10706. "lib/xamarinwatchos10/_._",
  10707. "ref/MonoAndroid10/_._",
  10708. "ref/MonoTouch10/_._",
  10709. "ref/xamarinios10/_._",
  10710. "ref/xamarinmac20/_._",
  10711. "ref/xamarintvos10/_._",
  10712. "ref/xamarinwatchos10/_._",
  10713. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  10714. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  10715. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  10716. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  10717. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  10718. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  10719. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  10720. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  10721. "system.text.encoding.codepages.nuspec",
  10722. "useSharedDesignerContext.txt",
  10723. "version.txt"
  10724. ]
  10725. },
  10726. "System.Text.Encoding.Extensions/4.3.0": {
  10727. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  10728. "type": "package",
  10729. "path": "system.text.encoding.extensions/4.3.0",
  10730. "files": [
  10731. ".nupkg.metadata",
  10732. ".signature.p7s",
  10733. "ThirdPartyNotices.txt",
  10734. "dotnet_library_license.txt",
  10735. "lib/MonoAndroid10/_._",
  10736. "lib/MonoTouch10/_._",
  10737. "lib/net45/_._",
  10738. "lib/portable-net45+win8+wp8+wpa81/_._",
  10739. "lib/win8/_._",
  10740. "lib/wp80/_._",
  10741. "lib/wpa81/_._",
  10742. "lib/xamarinios10/_._",
  10743. "lib/xamarinmac20/_._",
  10744. "lib/xamarintvos10/_._",
  10745. "lib/xamarinwatchos10/_._",
  10746. "ref/MonoAndroid10/_._",
  10747. "ref/MonoTouch10/_._",
  10748. "ref/net45/_._",
  10749. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  10750. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  10751. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  10752. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  10753. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  10754. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  10755. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  10756. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  10757. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  10758. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  10759. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  10760. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  10761. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  10762. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  10763. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  10764. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  10765. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  10766. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  10767. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  10768. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  10769. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  10770. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  10771. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  10772. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  10773. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  10774. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  10775. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  10776. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  10777. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  10778. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  10779. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  10780. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  10781. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  10782. "ref/portable-net45+win8+wp8+wpa81/_._",
  10783. "ref/win8/_._",
  10784. "ref/wp80/_._",
  10785. "ref/wpa81/_._",
  10786. "ref/xamarinios10/_._",
  10787. "ref/xamarinmac20/_._",
  10788. "ref/xamarintvos10/_._",
  10789. "ref/xamarinwatchos10/_._",
  10790. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  10791. "system.text.encoding.extensions.nuspec"
  10792. ]
  10793. },
  10794. "System.Text.Encodings.Web/6.0.0": {
  10795. "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==",
  10796. "type": "package",
  10797. "path": "system.text.encodings.web/6.0.0",
  10798. "files": [
  10799. ".nupkg.metadata",
  10800. ".signature.p7s",
  10801. "Icon.png",
  10802. "LICENSE.TXT",
  10803. "THIRD-PARTY-NOTICES.TXT",
  10804. "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
  10805. "buildTransitive/netcoreapp3.1/_._",
  10806. "lib/net461/System.Text.Encodings.Web.dll",
  10807. "lib/net461/System.Text.Encodings.Web.xml",
  10808. "lib/net6.0/System.Text.Encodings.Web.dll",
  10809. "lib/net6.0/System.Text.Encodings.Web.xml",
  10810. "lib/netcoreapp3.1/System.Text.Encodings.Web.dll",
  10811. "lib/netcoreapp3.1/System.Text.Encodings.Web.xml",
  10812. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  10813. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  10814. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
  10815. "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
  10816. "system.text.encodings.web.6.0.0.nupkg.sha512",
  10817. "system.text.encodings.web.nuspec",
  10818. "useSharedDesignerContext.txt"
  10819. ]
  10820. },
  10821. "System.Text.Json/6.0.0": {
  10822. "sha512": "zaJsHfESQvJ11vbXnNlkrR46IaMULk/gHxYsJphzSF+07kTjPHv+Oc14w6QEOfo3Q4hqLJgStUaYB9DBl0TmWg==",
  10823. "type": "package",
  10824. "path": "system.text.json/6.0.0",
  10825. "files": [
  10826. ".nupkg.metadata",
  10827. ".signature.p7s",
  10828. "Icon.png",
  10829. "LICENSE.TXT",
  10830. "THIRD-PARTY-NOTICES.TXT",
  10831. "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
  10832. "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  10833. "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  10834. "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  10835. "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  10836. "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  10837. "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  10838. "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  10839. "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  10840. "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  10841. "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  10842. "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  10843. "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  10844. "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  10845. "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
  10846. "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
  10847. "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
  10848. "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
  10849. "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
  10850. "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
  10851. "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
  10852. "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
  10853. "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
  10854. "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
  10855. "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
  10856. "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
  10857. "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
  10858. "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
  10859. "build/System.Text.Json.targets",
  10860. "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
  10861. "buildTransitive/netcoreapp3.1/_._",
  10862. "lib/net461/System.Text.Json.dll",
  10863. "lib/net461/System.Text.Json.xml",
  10864. "lib/net6.0/System.Text.Json.dll",
  10865. "lib/net6.0/System.Text.Json.xml",
  10866. "lib/netcoreapp3.1/System.Text.Json.dll",
  10867. "lib/netcoreapp3.1/System.Text.Json.xml",
  10868. "lib/netstandard2.0/System.Text.Json.dll",
  10869. "lib/netstandard2.0/System.Text.Json.xml",
  10870. "system.text.json.6.0.0.nupkg.sha512",
  10871. "system.text.json.nuspec",
  10872. "useSharedDesignerContext.txt"
  10873. ]
  10874. },
  10875. "System.Text.RegularExpressions/4.3.0": {
  10876. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  10877. "type": "package",
  10878. "path": "system.text.regularexpressions/4.3.0",
  10879. "files": [
  10880. ".nupkg.metadata",
  10881. ".signature.p7s",
  10882. "ThirdPartyNotices.txt",
  10883. "dotnet_library_license.txt",
  10884. "lib/MonoAndroid10/_._",
  10885. "lib/MonoTouch10/_._",
  10886. "lib/net45/_._",
  10887. "lib/net463/System.Text.RegularExpressions.dll",
  10888. "lib/netcore50/System.Text.RegularExpressions.dll",
  10889. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  10890. "lib/portable-net45+win8+wp8+wpa81/_._",
  10891. "lib/win8/_._",
  10892. "lib/wp80/_._",
  10893. "lib/wpa81/_._",
  10894. "lib/xamarinios10/_._",
  10895. "lib/xamarinmac20/_._",
  10896. "lib/xamarintvos10/_._",
  10897. "lib/xamarinwatchos10/_._",
  10898. "ref/MonoAndroid10/_._",
  10899. "ref/MonoTouch10/_._",
  10900. "ref/net45/_._",
  10901. "ref/net463/System.Text.RegularExpressions.dll",
  10902. "ref/netcore50/System.Text.RegularExpressions.dll",
  10903. "ref/netcore50/System.Text.RegularExpressions.xml",
  10904. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  10905. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  10906. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  10907. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  10908. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  10909. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  10910. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  10911. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  10912. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  10913. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  10914. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  10915. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  10916. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  10917. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  10918. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  10919. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  10920. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  10921. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  10922. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  10923. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  10924. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  10925. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  10926. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  10927. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  10928. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  10929. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  10930. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  10931. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  10932. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  10933. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  10934. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  10935. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  10936. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  10937. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  10938. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  10939. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  10940. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  10941. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  10942. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  10943. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  10944. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  10945. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  10946. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  10947. "ref/portable-net45+win8+wp8+wpa81/_._",
  10948. "ref/win8/_._",
  10949. "ref/wp80/_._",
  10950. "ref/wpa81/_._",
  10951. "ref/xamarinios10/_._",
  10952. "ref/xamarinmac20/_._",
  10953. "ref/xamarintvos10/_._",
  10954. "ref/xamarinwatchos10/_._",
  10955. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  10956. "system.text.regularexpressions.nuspec"
  10957. ]
  10958. },
  10959. "System.Threading/4.3.0": {
  10960. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  10961. "type": "package",
  10962. "path": "system.threading/4.3.0",
  10963. "files": [
  10964. ".nupkg.metadata",
  10965. ".signature.p7s",
  10966. "ThirdPartyNotices.txt",
  10967. "dotnet_library_license.txt",
  10968. "lib/MonoAndroid10/_._",
  10969. "lib/MonoTouch10/_._",
  10970. "lib/net45/_._",
  10971. "lib/netcore50/System.Threading.dll",
  10972. "lib/netstandard1.3/System.Threading.dll",
  10973. "lib/portable-net45+win8+wp8+wpa81/_._",
  10974. "lib/win8/_._",
  10975. "lib/wp80/_._",
  10976. "lib/wpa81/_._",
  10977. "lib/xamarinios10/_._",
  10978. "lib/xamarinmac20/_._",
  10979. "lib/xamarintvos10/_._",
  10980. "lib/xamarinwatchos10/_._",
  10981. "ref/MonoAndroid10/_._",
  10982. "ref/MonoTouch10/_._",
  10983. "ref/net45/_._",
  10984. "ref/netcore50/System.Threading.dll",
  10985. "ref/netcore50/System.Threading.xml",
  10986. "ref/netcore50/de/System.Threading.xml",
  10987. "ref/netcore50/es/System.Threading.xml",
  10988. "ref/netcore50/fr/System.Threading.xml",
  10989. "ref/netcore50/it/System.Threading.xml",
  10990. "ref/netcore50/ja/System.Threading.xml",
  10991. "ref/netcore50/ko/System.Threading.xml",
  10992. "ref/netcore50/ru/System.Threading.xml",
  10993. "ref/netcore50/zh-hans/System.Threading.xml",
  10994. "ref/netcore50/zh-hant/System.Threading.xml",
  10995. "ref/netstandard1.0/System.Threading.dll",
  10996. "ref/netstandard1.0/System.Threading.xml",
  10997. "ref/netstandard1.0/de/System.Threading.xml",
  10998. "ref/netstandard1.0/es/System.Threading.xml",
  10999. "ref/netstandard1.0/fr/System.Threading.xml",
  11000. "ref/netstandard1.0/it/System.Threading.xml",
  11001. "ref/netstandard1.0/ja/System.Threading.xml",
  11002. "ref/netstandard1.0/ko/System.Threading.xml",
  11003. "ref/netstandard1.0/ru/System.Threading.xml",
  11004. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  11005. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  11006. "ref/netstandard1.3/System.Threading.dll",
  11007. "ref/netstandard1.3/System.Threading.xml",
  11008. "ref/netstandard1.3/de/System.Threading.xml",
  11009. "ref/netstandard1.3/es/System.Threading.xml",
  11010. "ref/netstandard1.3/fr/System.Threading.xml",
  11011. "ref/netstandard1.3/it/System.Threading.xml",
  11012. "ref/netstandard1.3/ja/System.Threading.xml",
  11013. "ref/netstandard1.3/ko/System.Threading.xml",
  11014. "ref/netstandard1.3/ru/System.Threading.xml",
  11015. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  11016. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  11017. "ref/portable-net45+win8+wp8+wpa81/_._",
  11018. "ref/win8/_._",
  11019. "ref/wp80/_._",
  11020. "ref/wpa81/_._",
  11021. "ref/xamarinios10/_._",
  11022. "ref/xamarinmac20/_._",
  11023. "ref/xamarintvos10/_._",
  11024. "ref/xamarinwatchos10/_._",
  11025. "runtimes/aot/lib/netcore50/System.Threading.dll",
  11026. "system.threading.4.3.0.nupkg.sha512",
  11027. "system.threading.nuspec"
  11028. ]
  11029. },
  11030. "System.Threading.Tasks/4.3.0": {
  11031. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  11032. "type": "package",
  11033. "path": "system.threading.tasks/4.3.0",
  11034. "files": [
  11035. ".nupkg.metadata",
  11036. ".signature.p7s",
  11037. "ThirdPartyNotices.txt",
  11038. "dotnet_library_license.txt",
  11039. "lib/MonoAndroid10/_._",
  11040. "lib/MonoTouch10/_._",
  11041. "lib/net45/_._",
  11042. "lib/portable-net45+win8+wp8+wpa81/_._",
  11043. "lib/win8/_._",
  11044. "lib/wp80/_._",
  11045. "lib/wpa81/_._",
  11046. "lib/xamarinios10/_._",
  11047. "lib/xamarinmac20/_._",
  11048. "lib/xamarintvos10/_._",
  11049. "lib/xamarinwatchos10/_._",
  11050. "ref/MonoAndroid10/_._",
  11051. "ref/MonoTouch10/_._",
  11052. "ref/net45/_._",
  11053. "ref/netcore50/System.Threading.Tasks.dll",
  11054. "ref/netcore50/System.Threading.Tasks.xml",
  11055. "ref/netcore50/de/System.Threading.Tasks.xml",
  11056. "ref/netcore50/es/System.Threading.Tasks.xml",
  11057. "ref/netcore50/fr/System.Threading.Tasks.xml",
  11058. "ref/netcore50/it/System.Threading.Tasks.xml",
  11059. "ref/netcore50/ja/System.Threading.Tasks.xml",
  11060. "ref/netcore50/ko/System.Threading.Tasks.xml",
  11061. "ref/netcore50/ru/System.Threading.Tasks.xml",
  11062. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  11063. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  11064. "ref/netstandard1.0/System.Threading.Tasks.dll",
  11065. "ref/netstandard1.0/System.Threading.Tasks.xml",
  11066. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  11067. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  11068. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  11069. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  11070. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  11071. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  11072. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  11073. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  11074. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  11075. "ref/netstandard1.3/System.Threading.Tasks.dll",
  11076. "ref/netstandard1.3/System.Threading.Tasks.xml",
  11077. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  11078. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  11079. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  11080. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  11081. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  11082. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  11083. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  11084. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  11085. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  11086. "ref/portable-net45+win8+wp8+wpa81/_._",
  11087. "ref/win8/_._",
  11088. "ref/wp80/_._",
  11089. "ref/wpa81/_._",
  11090. "ref/xamarinios10/_._",
  11091. "ref/xamarinmac20/_._",
  11092. "ref/xamarintvos10/_._",
  11093. "ref/xamarinwatchos10/_._",
  11094. "system.threading.tasks.4.3.0.nupkg.sha512",
  11095. "system.threading.tasks.nuspec"
  11096. ]
  11097. },
  11098. "System.Threading.Tasks.Dataflow/4.9.0": {
  11099. "sha512": "dTS+3D/GtG2/Pvc3E5YzVvAa7aQJgLDlZDIzukMOJjYudVOQOUXEU68y6Zi3Nn/jqIeB5kOCwrGbQFAKHVzXEQ==",
  11100. "type": "package",
  11101. "path": "system.threading.tasks.dataflow/4.9.0",
  11102. "files": [
  11103. ".nupkg.metadata",
  11104. ".signature.p7s",
  11105. "LICENSE.TXT",
  11106. "THIRD-PARTY-NOTICES.TXT",
  11107. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
  11108. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.xml",
  11109. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll",
  11110. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.xml",
  11111. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll",
  11112. "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml",
  11113. "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll",
  11114. "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.xml",
  11115. "system.threading.tasks.dataflow.4.9.0.nupkg.sha512",
  11116. "system.threading.tasks.dataflow.nuspec",
  11117. "useSharedDesignerContext.txt",
  11118. "version.txt"
  11119. ]
  11120. },
  11121. "System.Threading.Tasks.Extensions/4.5.4": {
  11122. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  11123. "type": "package",
  11124. "path": "system.threading.tasks.extensions/4.5.4",
  11125. "files": [
  11126. ".nupkg.metadata",
  11127. ".signature.p7s",
  11128. "LICENSE.TXT",
  11129. "THIRD-PARTY-NOTICES.TXT",
  11130. "lib/MonoAndroid10/_._",
  11131. "lib/MonoTouch10/_._",
  11132. "lib/net461/System.Threading.Tasks.Extensions.dll",
  11133. "lib/net461/System.Threading.Tasks.Extensions.xml",
  11134. "lib/netcoreapp2.1/_._",
  11135. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  11136. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  11137. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  11138. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  11139. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  11140. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  11141. "lib/xamarinios10/_._",
  11142. "lib/xamarinmac20/_._",
  11143. "lib/xamarintvos10/_._",
  11144. "lib/xamarinwatchos10/_._",
  11145. "ref/MonoAndroid10/_._",
  11146. "ref/MonoTouch10/_._",
  11147. "ref/netcoreapp2.1/_._",
  11148. "ref/xamarinios10/_._",
  11149. "ref/xamarinmac20/_._",
  11150. "ref/xamarintvos10/_._",
  11151. "ref/xamarinwatchos10/_._",
  11152. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  11153. "system.threading.tasks.extensions.nuspec",
  11154. "useSharedDesignerContext.txt",
  11155. "version.txt"
  11156. ]
  11157. },
  11158. "System.Threading.Timer/4.3.0": {
  11159. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  11160. "type": "package",
  11161. "path": "system.threading.timer/4.3.0",
  11162. "files": [
  11163. ".nupkg.metadata",
  11164. ".signature.p7s",
  11165. "ThirdPartyNotices.txt",
  11166. "dotnet_library_license.txt",
  11167. "lib/MonoAndroid10/_._",
  11168. "lib/MonoTouch10/_._",
  11169. "lib/net451/_._",
  11170. "lib/portable-net451+win81+wpa81/_._",
  11171. "lib/win81/_._",
  11172. "lib/wpa81/_._",
  11173. "lib/xamarinios10/_._",
  11174. "lib/xamarinmac20/_._",
  11175. "lib/xamarintvos10/_._",
  11176. "lib/xamarinwatchos10/_._",
  11177. "ref/MonoAndroid10/_._",
  11178. "ref/MonoTouch10/_._",
  11179. "ref/net451/_._",
  11180. "ref/netcore50/System.Threading.Timer.dll",
  11181. "ref/netcore50/System.Threading.Timer.xml",
  11182. "ref/netcore50/de/System.Threading.Timer.xml",
  11183. "ref/netcore50/es/System.Threading.Timer.xml",
  11184. "ref/netcore50/fr/System.Threading.Timer.xml",
  11185. "ref/netcore50/it/System.Threading.Timer.xml",
  11186. "ref/netcore50/ja/System.Threading.Timer.xml",
  11187. "ref/netcore50/ko/System.Threading.Timer.xml",
  11188. "ref/netcore50/ru/System.Threading.Timer.xml",
  11189. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  11190. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  11191. "ref/netstandard1.2/System.Threading.Timer.dll",
  11192. "ref/netstandard1.2/System.Threading.Timer.xml",
  11193. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  11194. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  11195. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  11196. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  11197. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  11198. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  11199. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  11200. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  11201. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  11202. "ref/portable-net451+win81+wpa81/_._",
  11203. "ref/win81/_._",
  11204. "ref/wpa81/_._",
  11205. "ref/xamarinios10/_._",
  11206. "ref/xamarinmac20/_._",
  11207. "ref/xamarintvos10/_._",
  11208. "ref/xamarinwatchos10/_._",
  11209. "system.threading.timer.4.3.0.nupkg.sha512",
  11210. "system.threading.timer.nuspec"
  11211. ]
  11212. },
  11213. "System.Windows.Extensions/6.0.0": {
  11214. "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==",
  11215. "type": "package",
  11216. "path": "system.windows.extensions/6.0.0",
  11217. "files": [
  11218. ".nupkg.metadata",
  11219. ".signature.p7s",
  11220. "Icon.png",
  11221. "LICENSE.TXT",
  11222. "THIRD-PARTY-NOTICES.TXT",
  11223. "lib/net6.0/System.Windows.Extensions.dll",
  11224. "lib/net6.0/System.Windows.Extensions.xml",
  11225. "lib/netcoreapp3.1/System.Windows.Extensions.dll",
  11226. "lib/netcoreapp3.1/System.Windows.Extensions.xml",
  11227. "runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
  11228. "runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
  11229. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll",
  11230. "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml",
  11231. "system.windows.extensions.6.0.0.nupkg.sha512",
  11232. "system.windows.extensions.nuspec",
  11233. "useSharedDesignerContext.txt"
  11234. ]
  11235. },
  11236. "System.Xml.ReaderWriter/4.3.0": {
  11237. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  11238. "type": "package",
  11239. "path": "system.xml.readerwriter/4.3.0",
  11240. "files": [
  11241. ".nupkg.metadata",
  11242. ".signature.p7s",
  11243. "ThirdPartyNotices.txt",
  11244. "dotnet_library_license.txt",
  11245. "lib/MonoAndroid10/_._",
  11246. "lib/MonoTouch10/_._",
  11247. "lib/net45/_._",
  11248. "lib/net46/System.Xml.ReaderWriter.dll",
  11249. "lib/netcore50/System.Xml.ReaderWriter.dll",
  11250. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  11251. "lib/portable-net45+win8+wp8+wpa81/_._",
  11252. "lib/win8/_._",
  11253. "lib/wp80/_._",
  11254. "lib/wpa81/_._",
  11255. "lib/xamarinios10/_._",
  11256. "lib/xamarinmac20/_._",
  11257. "lib/xamarintvos10/_._",
  11258. "lib/xamarinwatchos10/_._",
  11259. "ref/MonoAndroid10/_._",
  11260. "ref/MonoTouch10/_._",
  11261. "ref/net45/_._",
  11262. "ref/net46/System.Xml.ReaderWriter.dll",
  11263. "ref/netcore50/System.Xml.ReaderWriter.dll",
  11264. "ref/netcore50/System.Xml.ReaderWriter.xml",
  11265. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  11266. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  11267. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  11268. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  11269. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  11270. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  11271. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  11272. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  11273. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  11274. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  11275. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  11276. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  11277. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  11278. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  11279. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  11280. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  11281. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  11282. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  11283. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  11284. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  11285. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  11286. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  11287. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  11288. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  11289. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  11290. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  11291. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  11292. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  11293. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  11294. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  11295. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  11296. "ref/portable-net45+win8+wp8+wpa81/_._",
  11297. "ref/win8/_._",
  11298. "ref/wp80/_._",
  11299. "ref/wpa81/_._",
  11300. "ref/xamarinios10/_._",
  11301. "ref/xamarinmac20/_._",
  11302. "ref/xamarintvos10/_._",
  11303. "ref/xamarinwatchos10/_._",
  11304. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  11305. "system.xml.readerwriter.nuspec"
  11306. ]
  11307. },
  11308. "System.Xml.XDocument/4.3.0": {
  11309. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  11310. "type": "package",
  11311. "path": "system.xml.xdocument/4.3.0",
  11312. "files": [
  11313. ".nupkg.metadata",
  11314. ".signature.p7s",
  11315. "ThirdPartyNotices.txt",
  11316. "dotnet_library_license.txt",
  11317. "lib/MonoAndroid10/_._",
  11318. "lib/MonoTouch10/_._",
  11319. "lib/net45/_._",
  11320. "lib/netcore50/System.Xml.XDocument.dll",
  11321. "lib/netstandard1.3/System.Xml.XDocument.dll",
  11322. "lib/portable-net45+win8+wp8+wpa81/_._",
  11323. "lib/win8/_._",
  11324. "lib/wp80/_._",
  11325. "lib/wpa81/_._",
  11326. "lib/xamarinios10/_._",
  11327. "lib/xamarinmac20/_._",
  11328. "lib/xamarintvos10/_._",
  11329. "lib/xamarinwatchos10/_._",
  11330. "ref/MonoAndroid10/_._",
  11331. "ref/MonoTouch10/_._",
  11332. "ref/net45/_._",
  11333. "ref/netcore50/System.Xml.XDocument.dll",
  11334. "ref/netcore50/System.Xml.XDocument.xml",
  11335. "ref/netcore50/de/System.Xml.XDocument.xml",
  11336. "ref/netcore50/es/System.Xml.XDocument.xml",
  11337. "ref/netcore50/fr/System.Xml.XDocument.xml",
  11338. "ref/netcore50/it/System.Xml.XDocument.xml",
  11339. "ref/netcore50/ja/System.Xml.XDocument.xml",
  11340. "ref/netcore50/ko/System.Xml.XDocument.xml",
  11341. "ref/netcore50/ru/System.Xml.XDocument.xml",
  11342. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  11343. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  11344. "ref/netstandard1.0/System.Xml.XDocument.dll",
  11345. "ref/netstandard1.0/System.Xml.XDocument.xml",
  11346. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  11347. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  11348. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  11349. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  11350. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  11351. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  11352. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  11353. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  11354. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  11355. "ref/netstandard1.3/System.Xml.XDocument.dll",
  11356. "ref/netstandard1.3/System.Xml.XDocument.xml",
  11357. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  11358. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  11359. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  11360. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  11361. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  11362. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  11363. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  11364. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  11365. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  11366. "ref/portable-net45+win8+wp8+wpa81/_._",
  11367. "ref/win8/_._",
  11368. "ref/wp80/_._",
  11369. "ref/wpa81/_._",
  11370. "ref/xamarinios10/_._",
  11371. "ref/xamarinmac20/_._",
  11372. "ref/xamarintvos10/_._",
  11373. "ref/xamarinwatchos10/_._",
  11374. "system.xml.xdocument.4.3.0.nupkg.sha512",
  11375. "system.xml.xdocument.nuspec"
  11376. ]
  11377. },
  11378. "SecureSharing.Business/1.0.0": {
  11379. "type": "project",
  11380. "path": "../SecureSharing.Business/SecureSharing.Business.csproj",
  11381. "msbuildProject": "../SecureSharing.Business/SecureSharing.Business.csproj"
  11382. },
  11383. "SecureSharing.Data/1.0.0": {
  11384. "type": "project",
  11385. "path": "../SecureSharing.Data/SecureSharing.Data.csproj",
  11386. "msbuildProject": "../SecureSharing.Data/SecureSharing.Data.csproj"
  11387. }
  11388. },
  11389. "projectFileDependencyGroups": {
  11390. "net6.0": [
  11391. "AutoMapper >= 11.0.1",
  11392. "Microsoft.AspNet.Identity.Core >= 2.2.3",
  11393. "Microsoft.AspNetCore.Authentication.Google >= 6.0.9",
  11394. "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 6.0.9",
  11395. "Microsoft.AspNetCore.Identity.UI >= 6.0.9",
  11396. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation >= 6.0.9",
  11397. "Microsoft.EntityFrameworkCore.SqlServer >= 6.0.9",
  11398. "Microsoft.EntityFrameworkCore.Tools >= 6.0.9",
  11399. "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 6.0.9",
  11400. "Quartz >= 3.5.0",
  11401. "SecureSharing.Business >= 1.0.0",
  11402. "SecureSharing.Data >= 1.0.0",
  11403. "Serilog >= 2.12.0",
  11404. "Serilog.AspNetCore >= 6.0.1"
  11405. ]
  11406. },
  11407. "packageFolders": {
  11408. "C:\\Users\\radivoje.milutinovic\\.nuget\\packages\\": {}
  11409. },
  11410. "project": {
  11411. "version": "1.0.0",
  11412. "restore": {
  11413. "projectUniqueName": "D:\\secure-sharing\\SecureSharing\\SecureSharing.csproj",
  11414. "projectName": "SecureSharing",
  11415. "projectPath": "D:\\secure-sharing\\SecureSharing\\SecureSharing.csproj",
  11416. "packagesPath": "C:\\Users\\radivoje.milutinovic\\.nuget\\packages\\",
  11417. "outputPath": "D:\\secure-sharing\\SecureSharing\\obj\\",
  11418. "projectStyle": "PackageReference",
  11419. "configFilePaths": [
  11420. "C:\\Users\\radivoje.milutinovic\\AppData\\Roaming\\NuGet\\NuGet.Config",
  11421. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  11422. ],
  11423. "originalTargetFrameworks": [
  11424. "net6.0"
  11425. ],
  11426. "sources": {
  11427. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  11428. "https://api.nuget.org/v3/index.json": {}
  11429. },
  11430. "frameworks": {
  11431. "net6.0": {
  11432. "targetAlias": "net6.0",
  11433. "projectReferences": {
  11434. "D:\\secure-sharing\\SecureSharing.Business\\SecureSharing.Business.csproj": {
  11435. "projectPath": "D:\\secure-sharing\\SecureSharing.Business\\SecureSharing.Business.csproj"
  11436. },
  11437. "D:\\secure-sharing\\SecureSharing.Data\\SecureSharing.Data.csproj": {
  11438. "projectPath": "D:\\secure-sharing\\SecureSharing.Data\\SecureSharing.Data.csproj"
  11439. }
  11440. }
  11441. }
  11442. },
  11443. "warningProperties": {
  11444. "warnAsError": [
  11445. "NU1605"
  11446. ]
  11447. }
  11448. },
  11449. "frameworks": {
  11450. "net6.0": {
  11451. "targetAlias": "net6.0",
  11452. "dependencies": {
  11453. "AutoMapper": {
  11454. "target": "Package",
  11455. "version": "[11.0.1, )"
  11456. },
  11457. "Microsoft.AspNet.Identity.Core": {
  11458. "target": "Package",
  11459. "version": "[2.2.3, )"
  11460. },
  11461. "Microsoft.AspNetCore.Authentication.Google": {
  11462. "target": "Package",
  11463. "version": "[6.0.9, )"
  11464. },
  11465. "Microsoft.AspNetCore.Identity.EntityFrameworkCore": {
  11466. "target": "Package",
  11467. "version": "[6.0.9, )"
  11468. },
  11469. "Microsoft.AspNetCore.Identity.UI": {
  11470. "target": "Package",
  11471. "version": "[6.0.9, )"
  11472. },
  11473. "Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation": {
  11474. "target": "Package",
  11475. "version": "[6.0.9, )"
  11476. },
  11477. "Microsoft.EntityFrameworkCore.SqlServer": {
  11478. "target": "Package",
  11479. "version": "[6.0.9, )"
  11480. },
  11481. "Microsoft.EntityFrameworkCore.Tools": {
  11482. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  11483. "suppressParent": "All",
  11484. "target": "Package",
  11485. "version": "[6.0.9, )"
  11486. },
  11487. "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
  11488. "target": "Package",
  11489. "version": "[6.0.9, )"
  11490. },
  11491. "Quartz": {
  11492. "target": "Package",
  11493. "version": "[3.5.0, )"
  11494. },
  11495. "Serilog": {
  11496. "target": "Package",
  11497. "version": "[2.12.0, )"
  11498. },
  11499. "Serilog.AspNetCore": {
  11500. "target": "Package",
  11501. "version": "[6.0.1, )"
  11502. }
  11503. },
  11504. "imports": [
  11505. "net461",
  11506. "net462",
  11507. "net47",
  11508. "net471",
  11509. "net472",
  11510. "net48"
  11511. ],
  11512. "assetTargetFallback": true,
  11513. "warn": true,
  11514. "frameworkReferences": {
  11515. "Microsoft.AspNetCore.App": {
  11516. "privateAssets": "none"
  11517. },
  11518. "Microsoft.NETCore.App": {
  11519. "privateAssets": "all"
  11520. }
  11521. },
  11522. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json"
  11523. }
  11524. }
  11525. },
  11526. "logs": [
  11527. {
  11528. "code": "NU1701",
  11529. "level": "Warning",
  11530. "warningLevel": 1,
  11531. "message": "Package 'Microsoft.AspNet.Identity.Core 2.2.3' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of the project target framework 'net6.0'. This package may not be fully compatible with your project.",
  11532. "libraryId": "Microsoft.AspNet.Identity.Core",
  11533. "targetGraphs": [
  11534. "net6.0"
  11535. ]
  11536. }
  11537. ]
  11538. }