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 453KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629
  1. {
  2. "version": 3,
  3. "targets": {
  4. "net5.0": {
  5. "Humanizer.Core/2.8.26": {
  6. "type": "package",
  7. "compile": {
  8. "lib/netstandard2.0/_._": {
  9. "related": ".xml"
  10. }
  11. },
  12. "runtime": {
  13. "lib/netstandard2.0/Humanizer.dll": {
  14. "related": ".xml"
  15. }
  16. }
  17. },
  18. "LazZiya.TagHelpers/2.2.0": {
  19. "type": "package",
  20. "dependencies": {
  21. "Microsoft.AspNetCore.Localization": "1.0.0",
  22. "Microsoft.AspNetCore.Mvc.TagHelpers": "2.0.0",
  23. "Microsoft.AspNetCore.Routing": "2.2.0"
  24. },
  25. "compile": {
  26. "lib/netcoreapp2.2/LazZiya.TagHelpers.dll": {}
  27. },
  28. "runtime": {
  29. "lib/netcoreapp2.2/LazZiya.TagHelpers.dll": {}
  30. }
  31. },
  32. "Microsoft.AspNetCore.Antiforgery/2.0.0": {
  33. "type": "package",
  34. "dependencies": {
  35. "Microsoft.AspNetCore.DataProtection": "2.0.0",
  36. "Microsoft.AspNetCore.Http.Abstractions": "2.0.0",
  37. "Microsoft.AspNetCore.Http.Extensions": "2.0.0",
  38. "Microsoft.AspNetCore.WebUtilities": "2.0.0",
  39. "Microsoft.Extensions.ObjectPool": "2.0.0"
  40. },
  41. "compile": {
  42. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  43. "related": ".xml"
  44. }
  45. },
  46. "runtime": {
  47. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll": {
  48. "related": ".xml"
  49. }
  50. }
  51. },
  52. "Microsoft.AspNetCore.Authentication.Abstractions/2.0.0": {
  53. "type": "package",
  54. "dependencies": {
  55. "Microsoft.AspNetCore.Http.Abstractions": "2.0.0",
  56. "Microsoft.Extensions.Logging.Abstractions": "2.0.0",
  57. "Microsoft.Extensions.Options": "2.0.0"
  58. },
  59. "compile": {
  60. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  61. "related": ".xml"
  62. }
  63. },
  64. "runtime": {
  65. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll": {
  66. "related": ".xml"
  67. }
  68. }
  69. },
  70. "Microsoft.AspNetCore.Authentication.Core/2.0.0": {
  71. "type": "package",
  72. "dependencies": {
  73. "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.0",
  74. "Microsoft.AspNetCore.Http": "2.0.0",
  75. "Microsoft.AspNetCore.Http.Extensions": "2.0.0"
  76. },
  77. "compile": {
  78. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  79. "related": ".xml"
  80. }
  81. },
  82. "runtime": {
  83. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll": {
  84. "related": ".xml"
  85. }
  86. }
  87. },
  88. "Microsoft.AspNetCore.Authorization/2.0.0": {
  89. "type": "package",
  90. "dependencies": {
  91. "Microsoft.Extensions.Logging.Abstractions": "2.0.0",
  92. "Microsoft.Extensions.Options": "2.0.0"
  93. },
  94. "compile": {
  95. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  96. "related": ".xml"
  97. }
  98. },
  99. "runtime": {
  100. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll": {
  101. "related": ".xml"
  102. }
  103. }
  104. },
  105. "Microsoft.AspNetCore.Authorization.Policy/2.0.0": {
  106. "type": "package",
  107. "dependencies": {
  108. "Microsoft.AspNetCore.Authentication.Abstractions": "2.0.0",
  109. "Microsoft.AspNetCore.Authorization": "2.0.0"
  110. },
  111. "compile": {
  112. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  113. "related": ".xml"
  114. }
  115. },
  116. "runtime": {
  117. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll": {
  118. "related": ".xml"
  119. }
  120. }
  121. },
  122. "Microsoft.AspNetCore.Cryptography.Internal/2.0.0": {
  123. "type": "package",
  124. "compile": {
  125. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  126. "related": ".xml"
  127. }
  128. },
  129. "runtime": {
  130. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll": {
  131. "related": ".xml"
  132. }
  133. }
  134. },
  135. "Microsoft.AspNetCore.DataProtection/2.0.0": {
  136. "type": "package",
  137. "dependencies": {
  138. "Microsoft.AspNetCore.Cryptography.Internal": "2.0.0",
  139. "Microsoft.AspNetCore.DataProtection.Abstractions": "2.0.0",
  140. "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.0",
  141. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
  142. "Microsoft.Extensions.Logging.Abstractions": "2.0.0",
  143. "Microsoft.Extensions.Options": "2.0.0",
  144. "Microsoft.Win32.Registry": "4.4.0",
  145. "System.Security.Cryptography.Xml": "4.4.0"
  146. },
  147. "compile": {
  148. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  149. "related": ".xml"
  150. }
  151. },
  152. "runtime": {
  153. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll": {
  154. "related": ".xml"
  155. }
  156. }
  157. },
  158. "Microsoft.AspNetCore.DataProtection.Abstractions/2.0.0": {
  159. "type": "package",
  160. "compile": {
  161. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  162. "related": ".xml"
  163. }
  164. },
  165. "runtime": {
  166. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {
  167. "related": ".xml"
  168. }
  169. }
  170. },
  171. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.0.0": {
  172. "type": "package",
  173. "compile": {
  174. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  175. "related": ".xml"
  176. }
  177. },
  178. "runtime": {
  179. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {
  180. "related": ".xml"
  181. }
  182. }
  183. },
  184. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  185. "type": "package",
  186. "dependencies": {
  187. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0",
  188. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  189. "Microsoft.Extensions.Hosting.Abstractions": "2.2.0"
  190. },
  191. "compile": {
  192. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  193. "related": ".xml"
  194. }
  195. },
  196. "runtime": {
  197. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll": {
  198. "related": ".xml"
  199. }
  200. }
  201. },
  202. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  203. "type": "package",
  204. "dependencies": {
  205. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  206. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
  207. },
  208. "compile": {
  209. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  210. "related": ".xml"
  211. }
  212. },
  213. "runtime": {
  214. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {
  215. "related": ".xml"
  216. }
  217. }
  218. },
  219. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  220. "type": "package",
  221. "dependencies": {
  222. "System.Text.Encodings.Web": "4.5.0"
  223. },
  224. "compile": {
  225. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  226. "related": ".xml"
  227. }
  228. },
  229. "runtime": {
  230. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {
  231. "related": ".xml"
  232. }
  233. }
  234. },
  235. "Microsoft.AspNetCore.Http/2.0.0": {
  236. "type": "package",
  237. "dependencies": {
  238. "Microsoft.AspNetCore.Http.Abstractions": "2.0.0",
  239. "Microsoft.AspNetCore.WebUtilities": "2.0.0",
  240. "Microsoft.Extensions.ObjectPool": "2.0.0",
  241. "Microsoft.Extensions.Options": "2.0.0",
  242. "Microsoft.Net.Http.Headers": "2.0.0"
  243. },
  244. "compile": {
  245. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  246. "related": ".xml"
  247. }
  248. },
  249. "runtime": {
  250. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll": {
  251. "related": ".xml"
  252. }
  253. }
  254. },
  255. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  256. "type": "package",
  257. "dependencies": {
  258. "Microsoft.AspNetCore.Http.Features": "2.2.0",
  259. "System.Text.Encodings.Web": "4.5.0"
  260. },
  261. "compile": {
  262. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  263. "related": ".xml"
  264. }
  265. },
  266. "runtime": {
  267. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll": {
  268. "related": ".xml"
  269. }
  270. }
  271. },
  272. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  273. "type": "package",
  274. "dependencies": {
  275. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0",
  276. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  277. "Microsoft.Net.Http.Headers": "2.2.0",
  278. "System.Buffers": "4.5.0"
  279. },
  280. "compile": {
  281. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  282. "related": ".xml"
  283. }
  284. },
  285. "runtime": {
  286. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll": {
  287. "related": ".xml"
  288. }
  289. }
  290. },
  291. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  292. "type": "package",
  293. "dependencies": {
  294. "Microsoft.Extensions.Primitives": "5.0.1",
  295. "System.IO.Pipelines": "5.0.2"
  296. },
  297. "compile": {
  298. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  299. "related": ".xml"
  300. }
  301. },
  302. "runtime": {
  303. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll": {
  304. "related": ".xml"
  305. }
  306. }
  307. },
  308. "Microsoft.AspNetCore.JsonPatch/2.0.0": {
  309. "type": "package",
  310. "dependencies": {
  311. "Microsoft.CSharp": "4.4.0",
  312. "Newtonsoft.Json": "10.0.1"
  313. },
  314. "compile": {
  315. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  316. "related": ".xml"
  317. }
  318. },
  319. "runtime": {
  320. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll": {
  321. "related": ".xml"
  322. }
  323. }
  324. },
  325. "Microsoft.AspNetCore.Localization/1.0.0": {
  326. "type": "package",
  327. "dependencies": {
  328. "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
  329. "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0",
  330. "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
  331. "Microsoft.Extensions.Options": "1.0.0"
  332. },
  333. "compile": {
  334. "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {
  335. "related": ".xml"
  336. }
  337. },
  338. "runtime": {
  339. "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll": {
  340. "related": ".xml"
  341. }
  342. }
  343. },
  344. "Microsoft.AspNetCore.Mvc.Abstractions/2.0.0": {
  345. "type": "package",
  346. "dependencies": {
  347. "Microsoft.AspNetCore.Routing.Abstractions": "2.0.0",
  348. "Microsoft.Net.Http.Headers": "2.0.0"
  349. },
  350. "compile": {
  351. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  352. "related": ".xml"
  353. }
  354. },
  355. "runtime": {
  356. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll": {
  357. "related": ".xml"
  358. }
  359. }
  360. },
  361. "Microsoft.AspNetCore.Mvc.Core/2.0.0": {
  362. "type": "package",
  363. "dependencies": {
  364. "Microsoft.AspNetCore.Authentication.Core": "2.0.0",
  365. "Microsoft.AspNetCore.Authorization.Policy": "2.0.0",
  366. "Microsoft.AspNetCore.Hosting.Abstractions": "2.0.0",
  367. "Microsoft.AspNetCore.Http": "2.0.0",
  368. "Microsoft.AspNetCore.Http.Extensions": "2.0.0",
  369. "Microsoft.AspNetCore.Mvc.Abstractions": "2.0.0",
  370. "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.0.0",
  371. "Microsoft.AspNetCore.Routing": "2.0.0",
  372. "Microsoft.Extensions.DependencyModel": "2.0.0",
  373. "Microsoft.Extensions.FileProviders.Abstractions": "2.0.0",
  374. "Microsoft.Extensions.Logging.Abstractions": "2.0.0",
  375. "System.Diagnostics.DiagnosticSource": "4.4.1"
  376. },
  377. "compile": {
  378. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  379. "related": ".xml"
  380. }
  381. },
  382. "runtime": {
  383. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll": {
  384. "related": ".xml"
  385. }
  386. }
  387. },
  388. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.0.0": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.AspNetCore.Mvc.Core": "2.0.0",
  392. "Microsoft.Extensions.Localization": "2.0.0",
  393. "System.ComponentModel.Annotations": "4.4.0"
  394. },
  395. "compile": {
  396. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  397. "related": ".xml"
  398. }
  399. },
  400. "runtime": {
  401. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {
  402. "related": ".xml"
  403. }
  404. }
  405. },
  406. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.0.0": {
  407. "type": "package",
  408. "dependencies": {
  409. "Microsoft.AspNetCore.JsonPatch": "2.0.0",
  410. "Microsoft.AspNetCore.Mvc.Core": "2.0.0"
  411. },
  412. "compile": {
  413. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  414. "related": ".xml"
  415. }
  416. },
  417. "runtime": {
  418. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {
  419. "related": ".xml"
  420. }
  421. }
  422. },
  423. "Microsoft.AspNetCore.Mvc.Razor/2.0.0": {
  424. "type": "package",
  425. "dependencies": {
  426. "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.0.0",
  427. "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.0.0",
  428. "Microsoft.AspNetCore.Razor.Runtime": "2.0.0",
  429. "Microsoft.CodeAnalysis.CSharp": "2.3.1",
  430. "Microsoft.CodeAnalysis.Razor": "2.0.0",
  431. "Microsoft.Extensions.Caching.Memory": "2.0.0",
  432. "Microsoft.Extensions.FileProviders.Composite": "2.0.0"
  433. },
  434. "compile": {
  435. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  436. "related": ".xml"
  437. }
  438. },
  439. "runtime": {
  440. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll": {
  441. "related": ".xml"
  442. }
  443. }
  444. },
  445. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.0.0": {
  446. "type": "package",
  447. "dependencies": {
  448. "Microsoft.AspNetCore.Razor.Language": "2.0.0",
  449. "Microsoft.CodeAnalysis.Razor": "2.0.0"
  450. },
  451. "compile": {
  452. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  453. "related": ".xml"
  454. }
  455. },
  456. "runtime": {
  457. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {
  458. "related": ".xml"
  459. }
  460. }
  461. },
  462. "Microsoft.AspNetCore.Mvc.TagHelpers/2.0.0": {
  463. "type": "package",
  464. "dependencies": {
  465. "Microsoft.AspNetCore.Mvc.Razor": "2.0.0",
  466. "Microsoft.AspNetCore.Razor.Runtime": "2.0.0",
  467. "Microsoft.AspNetCore.Routing.Abstractions": "2.0.0",
  468. "Microsoft.Extensions.Caching.Memory": "2.0.0",
  469. "Microsoft.Extensions.FileSystemGlobbing": "2.0.0",
  470. "Microsoft.Extensions.Primitives": "2.0.0"
  471. },
  472. "compile": {
  473. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  474. "related": ".xml"
  475. }
  476. },
  477. "runtime": {
  478. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {
  479. "related": ".xml"
  480. }
  481. }
  482. },
  483. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.0.0": {
  484. "type": "package",
  485. "dependencies": {
  486. "Microsoft.AspNetCore.Antiforgery": "2.0.0",
  487. "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.0.0",
  488. "Microsoft.AspNetCore.Html.Abstractions": "2.0.0",
  489. "Microsoft.AspNetCore.Mvc.Core": "2.0.0",
  490. "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.0.0",
  491. "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.0.0",
  492. "Microsoft.Extensions.WebEncoders": "2.0.0",
  493. "Newtonsoft.Json.Bson": "1.0.1"
  494. },
  495. "compile": {
  496. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  497. "related": ".xml"
  498. }
  499. },
  500. "runtime": {
  501. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {
  502. "related": ".xml"
  503. }
  504. }
  505. },
  506. "Microsoft.AspNetCore.Razor/2.2.0": {
  507. "type": "package",
  508. "dependencies": {
  509. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0"
  510. },
  511. "compile": {
  512. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  513. "related": ".xml"
  514. }
  515. },
  516. "runtime": {
  517. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {
  518. "related": ".xml"
  519. }
  520. }
  521. },
  522. "Microsoft.AspNetCore.Razor.Language/5.0.0": {
  523. "type": "package",
  524. "compile": {
  525. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  526. },
  527. "runtime": {
  528. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  529. }
  530. },
  531. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  532. "type": "package",
  533. "dependencies": {
  534. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0",
  535. "Microsoft.AspNetCore.Razor": "2.2.0"
  536. },
  537. "compile": {
  538. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  539. "related": ".xml"
  540. }
  541. },
  542. "runtime": {
  543. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {
  544. "related": ".xml"
  545. }
  546. }
  547. },
  548. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.0.0": {
  549. "type": "package",
  550. "dependencies": {
  551. "Microsoft.Extensions.Primitives": "2.0.0"
  552. },
  553. "compile": {
  554. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  555. "related": ".xml"
  556. }
  557. },
  558. "runtime": {
  559. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {
  560. "related": ".xml"
  561. }
  562. }
  563. },
  564. "Microsoft.AspNetCore.Routing/2.2.0": {
  565. "type": "package",
  566. "dependencies": {
  567. "Microsoft.AspNetCore.Http.Extensions": "2.2.0",
  568. "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0",
  569. "Microsoft.Extensions.Logging.Abstractions": "2.2.0",
  570. "Microsoft.Extensions.ObjectPool": "2.2.0",
  571. "Microsoft.Extensions.Options": "2.2.0"
  572. },
  573. "compile": {
  574. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  575. "related": ".xml"
  576. }
  577. },
  578. "runtime": {
  579. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll": {
  580. "related": ".xml"
  581. }
  582. }
  583. },
  584. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  585. "type": "package",
  586. "dependencies": {
  587. "Microsoft.AspNetCore.Http.Abstractions": "2.2.0"
  588. },
  589. "compile": {
  590. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  591. "related": ".xml"
  592. }
  593. },
  594. "runtime": {
  595. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll": {
  596. "related": ".xml"
  597. }
  598. }
  599. },
  600. "Microsoft.AspNetCore.WebUtilities/2.0.0": {
  601. "type": "package",
  602. "dependencies": {
  603. "Microsoft.Net.Http.Headers": "2.0.0",
  604. "System.Text.Encodings.Web": "4.4.0"
  605. },
  606. "compile": {
  607. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  608. "related": ".xml"
  609. }
  610. },
  611. "runtime": {
  612. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll": {
  613. "related": ".xml"
  614. }
  615. }
  616. },
  617. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  618. "type": "package",
  619. "compile": {
  620. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  621. },
  622. "runtime": {
  623. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
  624. "related": ".xml"
  625. }
  626. }
  627. },
  628. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
  629. "type": "package",
  630. "build": {
  631. "build/_._": {}
  632. }
  633. },
  634. "Microsoft.CodeAnalysis.Common/3.8.0": {
  635. "type": "package",
  636. "dependencies": {
  637. "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
  638. "System.Collections.Immutable": "5.0.0",
  639. "System.Memory": "4.5.4",
  640. "System.Reflection.Metadata": "5.0.0",
  641. "System.Runtime.CompilerServices.Unsafe": "4.7.1",
  642. "System.Text.Encoding.CodePages": "4.5.1",
  643. "System.Threading.Tasks.Extensions": "4.5.4"
  644. },
  645. "compile": {
  646. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  647. "related": ".pdb;.xml"
  648. }
  649. },
  650. "runtime": {
  651. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
  652. "related": ".pdb;.xml"
  653. }
  654. },
  655. "resource": {
  656. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
  657. "locale": "cs"
  658. },
  659. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
  660. "locale": "de"
  661. },
  662. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
  663. "locale": "es"
  664. },
  665. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
  666. "locale": "fr"
  667. },
  668. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
  669. "locale": "it"
  670. },
  671. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
  672. "locale": "ja"
  673. },
  674. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
  675. "locale": "ko"
  676. },
  677. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
  678. "locale": "pl"
  679. },
  680. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  681. "locale": "pt-BR"
  682. },
  683. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
  684. "locale": "ru"
  685. },
  686. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
  687. "locale": "tr"
  688. },
  689. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  690. "locale": "zh-Hans"
  691. },
  692. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  693. "locale": "zh-Hant"
  694. }
  695. }
  696. },
  697. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  698. "type": "package",
  699. "dependencies": {
  700. "Microsoft.CodeAnalysis.Common": "[3.8.0]"
  701. },
  702. "compile": {
  703. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  704. "related": ".pdb;.xml"
  705. }
  706. },
  707. "runtime": {
  708. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
  709. "related": ".pdb;.xml"
  710. }
  711. },
  712. "resource": {
  713. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  714. "locale": "cs"
  715. },
  716. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  717. "locale": "de"
  718. },
  719. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  720. "locale": "es"
  721. },
  722. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  723. "locale": "fr"
  724. },
  725. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  726. "locale": "it"
  727. },
  728. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  729. "locale": "ja"
  730. },
  731. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  732. "locale": "ko"
  733. },
  734. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  735. "locale": "pl"
  736. },
  737. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  738. "locale": "pt-BR"
  739. },
  740. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  741. "locale": "ru"
  742. },
  743. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  744. "locale": "tr"
  745. },
  746. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  747. "locale": "zh-Hans"
  748. },
  749. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  750. "locale": "zh-Hant"
  751. }
  752. }
  753. },
  754. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.8.0": {
  755. "type": "package",
  756. "dependencies": {
  757. "Humanizer.Core": "2.2.0",
  758. "Microsoft.CodeAnalysis.CSharp": "[3.8.0]",
  759. "Microsoft.CodeAnalysis.Common": "[3.8.0]",
  760. "Microsoft.CodeAnalysis.Workspaces.Common": "[3.8.0]"
  761. },
  762. "compile": {
  763. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  764. "related": ".pdb;.xml"
  765. }
  766. },
  767. "runtime": {
  768. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
  769. "related": ".pdb;.xml"
  770. }
  771. },
  772. "resource": {
  773. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  774. "locale": "cs"
  775. },
  776. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  777. "locale": "de"
  778. },
  779. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  780. "locale": "es"
  781. },
  782. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  783. "locale": "fr"
  784. },
  785. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  786. "locale": "it"
  787. },
  788. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  789. "locale": "ja"
  790. },
  791. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  792. "locale": "ko"
  793. },
  794. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  795. "locale": "pl"
  796. },
  797. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  798. "locale": "pt-BR"
  799. },
  800. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  801. "locale": "ru"
  802. },
  803. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  804. "locale": "tr"
  805. },
  806. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  807. "locale": "zh-Hans"
  808. },
  809. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  810. "locale": "zh-Hant"
  811. }
  812. }
  813. },
  814. "Microsoft.CodeAnalysis.Razor/5.0.0": {
  815. "type": "package",
  816. "dependencies": {
  817. "Microsoft.AspNetCore.Razor.Language": "5.0.0",
  818. "Microsoft.CodeAnalysis.CSharp": "3.7.0",
  819. "Microsoft.CodeAnalysis.Common": "3.7.0"
  820. },
  821. "compile": {
  822. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  823. },
  824. "runtime": {
  825. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  826. }
  827. },
  828. "Microsoft.CodeAnalysis.Workspaces.Common/3.8.0": {
  829. "type": "package",
  830. "dependencies": {
  831. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  832. "Microsoft.CodeAnalysis.Common": "[3.8.0]",
  833. "System.Composition": "1.0.31"
  834. },
  835. "compile": {
  836. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  837. "related": ".pdb;.xml"
  838. }
  839. },
  840. "runtime": {
  841. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
  842. "related": ".pdb;.xml"
  843. }
  844. },
  845. "resource": {
  846. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  847. "locale": "cs"
  848. },
  849. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  850. "locale": "de"
  851. },
  852. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  853. "locale": "es"
  854. },
  855. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  856. "locale": "fr"
  857. },
  858. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  859. "locale": "it"
  860. },
  861. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  862. "locale": "ja"
  863. },
  864. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  865. "locale": "ko"
  866. },
  867. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  868. "locale": "pl"
  869. },
  870. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  871. "locale": "pt-BR"
  872. },
  873. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  874. "locale": "ru"
  875. },
  876. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  877. "locale": "tr"
  878. },
  879. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  880. "locale": "zh-Hans"
  881. },
  882. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  883. "locale": "zh-Hant"
  884. }
  885. }
  886. },
  887. "Microsoft.CSharp/4.7.0": {
  888. "type": "package",
  889. "compile": {
  890. "ref/netcoreapp2.0/_._": {}
  891. },
  892. "runtime": {
  893. "lib/netcoreapp2.0/_._": {}
  894. }
  895. },
  896. "Microsoft.Data.SqlClient/2.0.1": {
  897. "type": "package",
  898. "dependencies": {
  899. "Microsoft.Data.SqlClient.SNI.runtime": "2.0.1",
  900. "Microsoft.Identity.Client": "4.14.0",
  901. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  902. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.6.0",
  903. "Microsoft.Win32.Registry": "4.7.0",
  904. "System.Configuration.ConfigurationManager": "4.7.0",
  905. "System.Diagnostics.DiagnosticSource": "4.7.0",
  906. "System.Runtime.Caching": "4.7.0",
  907. "System.Security.Principal.Windows": "4.7.0",
  908. "System.Text.Encoding.CodePages": "4.7.0"
  909. },
  910. "compile": {
  911. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  912. "related": ".pdb;.xml"
  913. }
  914. },
  915. "runtime": {
  916. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  917. "related": ".pdb;.xml"
  918. }
  919. },
  920. "runtimeTargets": {
  921. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  922. "assetType": "runtime",
  923. "rid": "unix"
  924. },
  925. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": {
  926. "assetType": "runtime",
  927. "rid": "win"
  928. }
  929. }
  930. },
  931. "Microsoft.Data.SqlClient.SNI.runtime/2.0.1": {
  932. "type": "package",
  933. "runtimeTargets": {
  934. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
  935. "assetType": "native",
  936. "rid": "win-arm"
  937. },
  938. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb": {
  939. "assetType": "native",
  940. "rid": "win-arm"
  941. },
  942. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
  943. "assetType": "native",
  944. "rid": "win-arm64"
  945. },
  946. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb": {
  947. "assetType": "native",
  948. "rid": "win-arm64"
  949. },
  950. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
  951. "assetType": "native",
  952. "rid": "win-x64"
  953. },
  954. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb": {
  955. "assetType": "native",
  956. "rid": "win-x64"
  957. },
  958. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
  959. "assetType": "native",
  960. "rid": "win-x86"
  961. },
  962. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb": {
  963. "assetType": "native",
  964. "rid": "win-x86"
  965. }
  966. }
  967. },
  968. "Microsoft.DotNet.PlatformAbstractions/2.0.0": {
  969. "type": "package",
  970. "dependencies": {
  971. "System.AppContext": "4.1.0",
  972. "System.Collections": "4.0.11",
  973. "System.IO": "4.1.0",
  974. "System.IO.FileSystem": "4.0.1",
  975. "System.Reflection.TypeExtensions": "4.1.0",
  976. "System.Runtime.Extensions": "4.1.0",
  977. "System.Runtime.InteropServices": "4.1.0",
  978. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  979. },
  980. "compile": {
  981. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  982. },
  983. "runtime": {
  984. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  985. }
  986. },
  987. "Microsoft.EntityFrameworkCore/5.0.0": {
  988. "type": "package",
  989. "dependencies": {
  990. "Microsoft.EntityFrameworkCore.Abstractions": "5.0.0",
  991. "Microsoft.EntityFrameworkCore.Analyzers": "5.0.0",
  992. "Microsoft.Extensions.Caching.Memory": "5.0.0",
  993. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  994. "Microsoft.Extensions.Logging": "5.0.0",
  995. "System.Collections.Immutable": "5.0.0",
  996. "System.ComponentModel.Annotations": "5.0.0",
  997. "System.Diagnostics.DiagnosticSource": "5.0.0"
  998. },
  999. "compile": {
  1000. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  1001. "related": ".xml"
  1002. }
  1003. },
  1004. "runtime": {
  1005. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {
  1006. "related": ".xml"
  1007. }
  1008. }
  1009. },
  1010. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  1011. "type": "package",
  1012. "compile": {
  1013. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  1014. "related": ".xml"
  1015. }
  1016. },
  1017. "runtime": {
  1018. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {
  1019. "related": ".xml"
  1020. }
  1021. }
  1022. },
  1023. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  1024. "type": "package",
  1025. "compile": {
  1026. "lib/netstandard2.0/_._": {}
  1027. },
  1028. "runtime": {
  1029. "lib/netstandard2.0/_._": {}
  1030. }
  1031. },
  1032. "Microsoft.EntityFrameworkCore.Design/5.0.0": {
  1033. "type": "package",
  1034. "dependencies": {
  1035. "Humanizer.Core": "2.8.26",
  1036. "Microsoft.CSharp": "4.7.0",
  1037. "Microsoft.EntityFrameworkCore.Relational": "5.0.0"
  1038. },
  1039. "compile": {
  1040. "lib/netstandard2.1/_._": {
  1041. "related": ".xml"
  1042. }
  1043. },
  1044. "runtime": {
  1045. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll": {
  1046. "related": ".xml"
  1047. }
  1048. },
  1049. "build": {
  1050. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props": {}
  1051. }
  1052. },
  1053. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  1054. "type": "package",
  1055. "dependencies": {
  1056. "Microsoft.EntityFrameworkCore": "5.0.0",
  1057. "Microsoft.Extensions.Configuration.Abstractions": "5.0.0"
  1058. },
  1059. "compile": {
  1060. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  1061. "related": ".xml"
  1062. }
  1063. },
  1064. "runtime": {
  1065. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {
  1066. "related": ".xml"
  1067. }
  1068. }
  1069. },
  1070. "Microsoft.EntityFrameworkCore.SqlServer/5.0.0": {
  1071. "type": "package",
  1072. "dependencies": {
  1073. "Microsoft.Data.SqlClient": "2.0.1",
  1074. "Microsoft.EntityFrameworkCore.Relational": "5.0.0"
  1075. },
  1076. "compile": {
  1077. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  1078. "related": ".xml"
  1079. }
  1080. },
  1081. "runtime": {
  1082. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll": {
  1083. "related": ".xml"
  1084. }
  1085. }
  1086. },
  1087. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  1088. "type": "package",
  1089. "dependencies": {
  1090. "Microsoft.Extensions.Primitives": "5.0.0"
  1091. },
  1092. "compile": {
  1093. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1094. "related": ".xml"
  1095. }
  1096. },
  1097. "runtime": {
  1098. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
  1099. "related": ".xml"
  1100. }
  1101. }
  1102. },
  1103. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  1104. "type": "package",
  1105. "dependencies": {
  1106. "Microsoft.Extensions.Caching.Abstractions": "5.0.0",
  1107. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1108. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1109. "Microsoft.Extensions.Options": "5.0.0",
  1110. "Microsoft.Extensions.Primitives": "5.0.0"
  1111. },
  1112. "compile": {
  1113. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  1114. "related": ".xml"
  1115. }
  1116. },
  1117. "runtime": {
  1118. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
  1119. "related": ".xml"
  1120. }
  1121. }
  1122. },
  1123. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  1124. "type": "package",
  1125. "dependencies": {
  1126. "Microsoft.Extensions.Primitives": "5.0.0"
  1127. },
  1128. "compile": {
  1129. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1130. "related": ".xml"
  1131. }
  1132. },
  1133. "runtime": {
  1134. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
  1135. "related": ".xml"
  1136. }
  1137. }
  1138. },
  1139. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  1140. "type": "package",
  1141. "dependencies": {
  1142. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
  1143. },
  1144. "compile": {
  1145. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1146. "related": ".xml"
  1147. }
  1148. },
  1149. "runtime": {
  1150. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
  1151. "related": ".xml"
  1152. }
  1153. }
  1154. },
  1155. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  1156. "type": "package",
  1157. "compile": {
  1158. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1159. "related": ".xml"
  1160. }
  1161. },
  1162. "runtime": {
  1163. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
  1164. "related": ".xml"
  1165. }
  1166. }
  1167. },
  1168. "Microsoft.Extensions.DependencyModel/2.0.0": {
  1169. "type": "package",
  1170. "dependencies": {
  1171. "Microsoft.DotNet.PlatformAbstractions": "2.0.0",
  1172. "Newtonsoft.Json": "9.0.1",
  1173. "System.Diagnostics.Debug": "4.0.11",
  1174. "System.Dynamic.Runtime": "4.0.11",
  1175. "System.Linq": "4.1.0"
  1176. },
  1177. "compile": {
  1178. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1179. },
  1180. "runtime": {
  1181. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  1182. }
  1183. },
  1184. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  1185. "type": "package",
  1186. "dependencies": {
  1187. "Microsoft.Extensions.Primitives": "2.2.0"
  1188. },
  1189. "compile": {
  1190. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1191. "related": ".xml"
  1192. }
  1193. },
  1194. "runtime": {
  1195. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
  1196. "related": ".xml"
  1197. }
  1198. }
  1199. },
  1200. "Microsoft.Extensions.FileProviders.Composite/2.0.0": {
  1201. "type": "package",
  1202. "dependencies": {
  1203. "Microsoft.Extensions.FileProviders.Abstractions": "2.0.0"
  1204. },
  1205. "compile": {
  1206. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1207. "related": ".xml"
  1208. }
  1209. },
  1210. "runtime": {
  1211. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll": {
  1212. "related": ".xml"
  1213. }
  1214. }
  1215. },
  1216. "Microsoft.Extensions.FileSystemGlobbing/2.0.0": {
  1217. "type": "package",
  1218. "compile": {
  1219. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1220. "related": ".xml"
  1221. }
  1222. },
  1223. "runtime": {
  1224. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
  1225. "related": ".xml"
  1226. }
  1227. }
  1228. },
  1229. "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
  1230. "type": "package",
  1231. "dependencies": {
  1232. "System.Collections.Concurrent": "4.0.12",
  1233. "System.Linq": "4.1.0",
  1234. "System.Resources.ResourceManager": "4.0.1"
  1235. },
  1236. "compile": {
  1237. "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {
  1238. "related": ".xml"
  1239. }
  1240. },
  1241. "runtime": {
  1242. "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {
  1243. "related": ".xml"
  1244. }
  1245. }
  1246. },
  1247. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  1248. "type": "package",
  1249. "dependencies": {
  1250. "Microsoft.Extensions.Configuration.Abstractions": "2.2.0",
  1251. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
  1252. "Microsoft.Extensions.FileProviders.Abstractions": "2.2.0",
  1253. "Microsoft.Extensions.Logging.Abstractions": "2.2.0"
  1254. },
  1255. "compile": {
  1256. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1257. "related": ".xml"
  1258. }
  1259. },
  1260. "runtime": {
  1261. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll": {
  1262. "related": ".xml"
  1263. }
  1264. }
  1265. },
  1266. "Microsoft.Extensions.Localization/2.0.0": {
  1267. "type": "package",
  1268. "dependencies": {
  1269. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
  1270. "Microsoft.Extensions.Localization.Abstractions": "2.0.0",
  1271. "Microsoft.Extensions.Logging.Abstractions": "2.0.0",
  1272. "Microsoft.Extensions.Options": "2.0.0"
  1273. },
  1274. "compile": {
  1275. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  1276. "related": ".xml"
  1277. }
  1278. },
  1279. "runtime": {
  1280. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll": {
  1281. "related": ".xml"
  1282. }
  1283. }
  1284. },
  1285. "Microsoft.Extensions.Localization.Abstractions/2.0.0": {
  1286. "type": "package",
  1287. "compile": {
  1288. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1289. "related": ".xml"
  1290. }
  1291. },
  1292. "runtime": {
  1293. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll": {
  1294. "related": ".xml"
  1295. }
  1296. }
  1297. },
  1298. "Microsoft.Extensions.Logging/5.0.0": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1302. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1303. "Microsoft.Extensions.Logging.Abstractions": "5.0.0",
  1304. "Microsoft.Extensions.Options": "5.0.0"
  1305. },
  1306. "compile": {
  1307. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1308. "related": ".xml"
  1309. }
  1310. },
  1311. "runtime": {
  1312. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
  1313. "related": ".xml"
  1314. }
  1315. }
  1316. },
  1317. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  1318. "type": "package",
  1319. "compile": {
  1320. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1321. "related": ".xml"
  1322. }
  1323. },
  1324. "runtime": {
  1325. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
  1326. "related": ".xml"
  1327. }
  1328. }
  1329. },
  1330. "Microsoft.Extensions.ObjectPool/2.2.0": {
  1331. "type": "package",
  1332. "compile": {
  1333. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1334. "related": ".xml"
  1335. }
  1336. },
  1337. "runtime": {
  1338. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll": {
  1339. "related": ".xml"
  1340. }
  1341. }
  1342. },
  1343. "Microsoft.Extensions.Options/5.0.0": {
  1344. "type": "package",
  1345. "dependencies": {
  1346. "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
  1347. "Microsoft.Extensions.Primitives": "5.0.0"
  1348. },
  1349. "compile": {
  1350. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1351. "related": ".xml"
  1352. }
  1353. },
  1354. "runtime": {
  1355. "lib/net5.0/Microsoft.Extensions.Options.dll": {
  1356. "related": ".xml"
  1357. }
  1358. }
  1359. },
  1360. "Microsoft.Extensions.Primitives/5.0.1": {
  1361. "type": "package",
  1362. "compile": {
  1363. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1364. "related": ".xml"
  1365. }
  1366. },
  1367. "runtime": {
  1368. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
  1369. "related": ".xml"
  1370. }
  1371. }
  1372. },
  1373. "Microsoft.Extensions.WebEncoders/2.0.0": {
  1374. "type": "package",
  1375. "dependencies": {
  1376. "Microsoft.Extensions.DependencyInjection.Abstractions": "2.0.0",
  1377. "Microsoft.Extensions.Options": "2.0.0",
  1378. "System.Text.Encodings.Web": "4.4.0"
  1379. },
  1380. "compile": {
  1381. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  1382. "related": ".xml"
  1383. }
  1384. },
  1385. "runtime": {
  1386. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll": {
  1387. "related": ".xml"
  1388. }
  1389. }
  1390. },
  1391. "Microsoft.Identity.Client/4.14.0": {
  1392. "type": "package",
  1393. "dependencies": {
  1394. "Microsoft.CSharp": "4.5.0",
  1395. "System.ComponentModel.TypeConverter": "4.3.0",
  1396. "System.Net.NameResolution": "4.3.0",
  1397. "System.Private.Uri": "4.3.2",
  1398. "System.Runtime.Serialization.Formatters": "4.3.0",
  1399. "System.Runtime.Serialization.Json": "4.3.0",
  1400. "System.Runtime.Serialization.Primitives": "4.3.0",
  1401. "System.Security.SecureString": "4.3.0",
  1402. "System.Xml.XDocument": "4.3.0"
  1403. },
  1404. "compile": {
  1405. "ref/netcoreapp2.1/_._": {
  1406. "related": ".xml"
  1407. }
  1408. },
  1409. "runtime": {
  1410. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {
  1411. "related": ".xml"
  1412. }
  1413. }
  1414. },
  1415. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  1416. "type": "package",
  1417. "dependencies": {
  1418. "Microsoft.IdentityModel.Tokens": "5.6.0",
  1419. "Newtonsoft.Json": "10.0.1"
  1420. },
  1421. "compile": {
  1422. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1423. "related": ".xml"
  1424. }
  1425. },
  1426. "runtime": {
  1427. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
  1428. "related": ".xml"
  1429. }
  1430. }
  1431. },
  1432. "Microsoft.IdentityModel.Logging/5.6.0": {
  1433. "type": "package",
  1434. "compile": {
  1435. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1436. "related": ".xml"
  1437. }
  1438. },
  1439. "runtime": {
  1440. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {
  1441. "related": ".xml"
  1442. }
  1443. }
  1444. },
  1445. "Microsoft.IdentityModel.Protocols/5.6.0": {
  1446. "type": "package",
  1447. "dependencies": {
  1448. "Microsoft.IdentityModel.Logging": "5.6.0",
  1449. "Microsoft.IdentityModel.Tokens": "5.6.0"
  1450. },
  1451. "compile": {
  1452. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1453. "related": ".xml"
  1454. }
  1455. },
  1456. "runtime": {
  1457. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {
  1458. "related": ".xml"
  1459. }
  1460. }
  1461. },
  1462. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.6.0": {
  1463. "type": "package",
  1464. "dependencies": {
  1465. "Microsoft.IdentityModel.Protocols": "5.6.0",
  1466. "Newtonsoft.Json": "10.0.1",
  1467. "System.IdentityModel.Tokens.Jwt": "5.6.0"
  1468. },
  1469. "compile": {
  1470. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1471. "related": ".xml"
  1472. }
  1473. },
  1474. "runtime": {
  1475. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
  1476. "related": ".xml"
  1477. }
  1478. }
  1479. },
  1480. "Microsoft.IdentityModel.Tokens/5.6.0": {
  1481. "type": "package",
  1482. "dependencies": {
  1483. "Microsoft.IdentityModel.Logging": "5.6.0",
  1484. "Newtonsoft.Json": "10.0.1",
  1485. "System.Security.Cryptography.Cng": "4.5.0"
  1486. },
  1487. "compile": {
  1488. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1489. "related": ".xml"
  1490. }
  1491. },
  1492. "runtime": {
  1493. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {
  1494. "related": ".xml"
  1495. }
  1496. }
  1497. },
  1498. "Microsoft.Net.Http.Headers/2.2.0": {
  1499. "type": "package",
  1500. "dependencies": {
  1501. "Microsoft.Extensions.Primitives": "2.2.0",
  1502. "System.Buffers": "4.5.0"
  1503. },
  1504. "compile": {
  1505. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1506. "related": ".xml"
  1507. }
  1508. },
  1509. "runtime": {
  1510. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll": {
  1511. "related": ".xml"
  1512. }
  1513. }
  1514. },
  1515. "Microsoft.NETCore.Platforms/3.1.0": {
  1516. "type": "package",
  1517. "compile": {
  1518. "lib/netstandard1.0/_._": {}
  1519. },
  1520. "runtime": {
  1521. "lib/netstandard1.0/_._": {}
  1522. }
  1523. },
  1524. "Microsoft.NETCore.Targets/1.1.3": {
  1525. "type": "package",
  1526. "compile": {
  1527. "lib/netstandard1.0/_._": {}
  1528. },
  1529. "runtime": {
  1530. "lib/netstandard1.0/_._": {}
  1531. }
  1532. },
  1533. "Microsoft.VisualStudio.Web.CodeGeneration/5.0.2": {
  1534. "type": "package",
  1535. "dependencies": {
  1536. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1537. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "5.0.2"
  1538. },
  1539. "compile": {
  1540. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
  1541. "related": ".xml"
  1542. }
  1543. },
  1544. "runtime": {
  1545. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
  1546. "related": ".xml"
  1547. }
  1548. }
  1549. },
  1550. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/5.0.2": {
  1551. "type": "package",
  1552. "dependencies": {
  1553. "Newtonsoft.Json": "11.0.2",
  1554. "System.Collections.Immutable": "1.7.0"
  1555. },
  1556. "compile": {
  1557. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {
  1558. "related": ".xml"
  1559. }
  1560. },
  1561. "runtime": {
  1562. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {
  1563. "related": ".xml"
  1564. }
  1565. }
  1566. },
  1567. "Microsoft.VisualStudio.Web.CodeGeneration.Core/5.0.2": {
  1568. "type": "package",
  1569. "dependencies": {
  1570. "Microsoft.Extensions.DependencyInjection": "5.0.0",
  1571. "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "5.0.2",
  1572. "Newtonsoft.Json": "11.0.2"
  1573. },
  1574. "compile": {
  1575. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
  1576. "related": ".xml"
  1577. }
  1578. },
  1579. "runtime": {
  1580. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
  1581. "related": ".xml"
  1582. }
  1583. }
  1584. },
  1585. "Microsoft.VisualStudio.Web.CodeGeneration.Design/5.0.2": {
  1586. "type": "package",
  1587. "dependencies": {
  1588. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "5.0.2"
  1589. },
  1590. "compile": {
  1591. "lib/net5.0/dotnet-aspnet-codegenerator-design.dll": {
  1592. "related": ".xml"
  1593. }
  1594. },
  1595. "runtime": {
  1596. "lib/net5.0/dotnet-aspnet-codegenerator-design.dll": {
  1597. "related": ".xml"
  1598. }
  1599. },
  1600. "runtimeTargets": {
  1601. "runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe": {
  1602. "assetType": "runtime",
  1603. "rid": "win-arm"
  1604. },
  1605. "runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe": {
  1606. "assetType": "runtime",
  1607. "rid": "win-arm64"
  1608. }
  1609. }
  1610. },
  1611. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/5.0.2": {
  1612. "type": "package",
  1613. "dependencies": {
  1614. "Microsoft.VisualStudio.Web.CodeGeneration.Core": "5.0.2"
  1615. },
  1616. "compile": {
  1617. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
  1618. "related": ".runtimeconfig.json;.xml"
  1619. }
  1620. },
  1621. "runtime": {
  1622. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
  1623. "related": ".runtimeconfig.json;.xml"
  1624. }
  1625. }
  1626. },
  1627. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/5.0.2": {
  1628. "type": "package",
  1629. "dependencies": {
  1630. "Microsoft.AspNetCore.Razor.Language": "5.0.0",
  1631. "Microsoft.AspNetCore.Razor.Runtime": "2.2.0",
  1632. "Microsoft.CodeAnalysis.CSharp": "3.8.0",
  1633. "Microsoft.CodeAnalysis.Razor": "5.0.0",
  1634. "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "5.0.2"
  1635. },
  1636. "compile": {
  1637. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
  1638. "related": ".xml"
  1639. }
  1640. },
  1641. "runtime": {
  1642. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
  1643. "related": ".xml"
  1644. }
  1645. }
  1646. },
  1647. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/5.0.2": {
  1648. "type": "package",
  1649. "dependencies": {
  1650. "Microsoft.CodeAnalysis.CSharp.Workspaces": "3.8.0",
  1651. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "5.0.2",
  1652. "Newtonsoft.Json": "11.0.2"
  1653. },
  1654. "compile": {
  1655. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
  1656. "related": ".xml"
  1657. }
  1658. },
  1659. "runtime": {
  1660. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
  1661. "related": ".xml"
  1662. }
  1663. }
  1664. },
  1665. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/5.0.2": {
  1666. "type": "package",
  1667. "dependencies": {
  1668. "Microsoft.VisualStudio.Web.CodeGeneration": "5.0.2"
  1669. },
  1670. "compile": {
  1671. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
  1672. "related": ".xml"
  1673. }
  1674. },
  1675. "runtime": {
  1676. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
  1677. "related": ".xml"
  1678. }
  1679. }
  1680. },
  1681. "Microsoft.Win32.Primitives/4.3.0": {
  1682. "type": "package",
  1683. "dependencies": {
  1684. "Microsoft.NETCore.Platforms": "1.1.0",
  1685. "Microsoft.NETCore.Targets": "1.1.0",
  1686. "System.Runtime": "4.3.0"
  1687. },
  1688. "compile": {
  1689. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {
  1690. "related": ".xml"
  1691. }
  1692. }
  1693. },
  1694. "Microsoft.Win32.Registry/4.7.0": {
  1695. "type": "package",
  1696. "dependencies": {
  1697. "System.Security.AccessControl": "4.7.0",
  1698. "System.Security.Principal.Windows": "4.7.0"
  1699. },
  1700. "compile": {
  1701. "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1702. "related": ".xml"
  1703. }
  1704. },
  1705. "runtime": {
  1706. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1707. "related": ".xml"
  1708. }
  1709. },
  1710. "runtimeTargets": {
  1711. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1712. "assetType": "runtime",
  1713. "rid": "unix"
  1714. },
  1715. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  1716. "assetType": "runtime",
  1717. "rid": "win"
  1718. }
  1719. }
  1720. },
  1721. "Microsoft.Win32.SystemEvents/4.7.0": {
  1722. "type": "package",
  1723. "dependencies": {
  1724. "Microsoft.NETCore.Platforms": "3.1.0"
  1725. },
  1726. "compile": {
  1727. "ref/netstandard2.0/_._": {
  1728. "related": ".xml"
  1729. }
  1730. },
  1731. "runtime": {
  1732. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
  1733. "related": ".xml"
  1734. }
  1735. },
  1736. "runtimeTargets": {
  1737. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": {
  1738. "assetType": "runtime",
  1739. "rid": "win"
  1740. }
  1741. }
  1742. },
  1743. "NETStandard.Library/1.6.1": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "Microsoft.NETCore.Platforms": "1.1.0",
  1747. "Microsoft.Win32.Primitives": "4.3.0",
  1748. "System.AppContext": "4.3.0",
  1749. "System.Collections": "4.3.0",
  1750. "System.Collections.Concurrent": "4.3.0",
  1751. "System.Console": "4.3.0",
  1752. "System.Diagnostics.Debug": "4.3.0",
  1753. "System.Diagnostics.Tools": "4.3.0",
  1754. "System.Diagnostics.Tracing": "4.3.0",
  1755. "System.Globalization": "4.3.0",
  1756. "System.Globalization.Calendars": "4.3.0",
  1757. "System.IO": "4.3.0",
  1758. "System.IO.Compression": "4.3.0",
  1759. "System.IO.Compression.ZipFile": "4.3.0",
  1760. "System.IO.FileSystem": "4.3.0",
  1761. "System.IO.FileSystem.Primitives": "4.3.0",
  1762. "System.Linq": "4.3.0",
  1763. "System.Linq.Expressions": "4.3.0",
  1764. "System.Net.Http": "4.3.0",
  1765. "System.Net.Primitives": "4.3.0",
  1766. "System.Net.Sockets": "4.3.0",
  1767. "System.ObjectModel": "4.3.0",
  1768. "System.Reflection": "4.3.0",
  1769. "System.Reflection.Extensions": "4.3.0",
  1770. "System.Reflection.Primitives": "4.3.0",
  1771. "System.Resources.ResourceManager": "4.3.0",
  1772. "System.Runtime": "4.3.0",
  1773. "System.Runtime.Extensions": "4.3.0",
  1774. "System.Runtime.Handles": "4.3.0",
  1775. "System.Runtime.InteropServices": "4.3.0",
  1776. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1777. "System.Runtime.Numerics": "4.3.0",
  1778. "System.Security.Cryptography.Algorithms": "4.3.0",
  1779. "System.Security.Cryptography.Encoding": "4.3.0",
  1780. "System.Security.Cryptography.Primitives": "4.3.0",
  1781. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1782. "System.Text.Encoding": "4.3.0",
  1783. "System.Text.Encoding.Extensions": "4.3.0",
  1784. "System.Text.RegularExpressions": "4.3.0",
  1785. "System.Threading": "4.3.0",
  1786. "System.Threading.Tasks": "4.3.0",
  1787. "System.Threading.Timer": "4.3.0",
  1788. "System.Xml.ReaderWriter": "4.3.0",
  1789. "System.Xml.XDocument": "4.3.0"
  1790. }
  1791. },
  1792. "Newtonsoft.Json/11.0.2": {
  1793. "type": "package",
  1794. "compile": {
  1795. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1796. "related": ".xml"
  1797. }
  1798. },
  1799. "runtime": {
  1800. "lib/netstandard2.0/Newtonsoft.Json.dll": {
  1801. "related": ".xml"
  1802. }
  1803. }
  1804. },
  1805. "Newtonsoft.Json.Bson/1.0.1": {
  1806. "type": "package",
  1807. "dependencies": {
  1808. "NETStandard.Library": "1.6.1",
  1809. "Newtonsoft.Json": "10.0.1"
  1810. },
  1811. "compile": {
  1812. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  1813. "related": ".xml"
  1814. }
  1815. },
  1816. "runtime": {
  1817. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {
  1818. "related": ".xml"
  1819. }
  1820. }
  1821. },
  1822. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1823. "type": "package",
  1824. "runtimeTargets": {
  1825. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1826. "assetType": "native",
  1827. "rid": "debian.8-x64"
  1828. }
  1829. }
  1830. },
  1831. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1832. "type": "package",
  1833. "runtimeTargets": {
  1834. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1835. "assetType": "native",
  1836. "rid": "fedora.23-x64"
  1837. }
  1838. }
  1839. },
  1840. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1841. "type": "package",
  1842. "runtimeTargets": {
  1843. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1844. "assetType": "native",
  1845. "rid": "fedora.24-x64"
  1846. }
  1847. }
  1848. },
  1849. "runtime.native.System/4.3.0": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "Microsoft.NETCore.Platforms": "1.1.0",
  1853. "Microsoft.NETCore.Targets": "1.1.0"
  1854. },
  1855. "compile": {
  1856. "lib/netstandard1.0/_._": {}
  1857. },
  1858. "runtime": {
  1859. "lib/netstandard1.0/_._": {}
  1860. }
  1861. },
  1862. "runtime.native.System.IO.Compression/4.3.0": {
  1863. "type": "package",
  1864. "dependencies": {
  1865. "Microsoft.NETCore.Platforms": "1.1.0",
  1866. "Microsoft.NETCore.Targets": "1.1.0"
  1867. },
  1868. "compile": {
  1869. "lib/netstandard1.0/_._": {}
  1870. },
  1871. "runtime": {
  1872. "lib/netstandard1.0/_._": {}
  1873. }
  1874. },
  1875. "runtime.native.System.Net.Http/4.3.0": {
  1876. "type": "package",
  1877. "dependencies": {
  1878. "Microsoft.NETCore.Platforms": "1.1.0",
  1879. "Microsoft.NETCore.Targets": "1.1.0"
  1880. },
  1881. "compile": {
  1882. "lib/netstandard1.0/_._": {}
  1883. },
  1884. "runtime": {
  1885. "lib/netstandard1.0/_._": {}
  1886. }
  1887. },
  1888. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1889. "type": "package",
  1890. "dependencies": {
  1891. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1892. },
  1893. "compile": {
  1894. "lib/netstandard1.0/_._": {}
  1895. },
  1896. "runtime": {
  1897. "lib/netstandard1.0/_._": {}
  1898. }
  1899. },
  1900. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1901. "type": "package",
  1902. "dependencies": {
  1903. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1904. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1905. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1906. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1907. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1908. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1909. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1910. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1911. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1912. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1913. },
  1914. "compile": {
  1915. "lib/netstandard1.0/_._": {}
  1916. },
  1917. "runtime": {
  1918. "lib/netstandard1.0/_._": {}
  1919. }
  1920. },
  1921. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1922. "type": "package",
  1923. "runtimeTargets": {
  1924. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1925. "assetType": "native",
  1926. "rid": "opensuse.13.2-x64"
  1927. }
  1928. }
  1929. },
  1930. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1931. "type": "package",
  1932. "runtimeTargets": {
  1933. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1934. "assetType": "native",
  1935. "rid": "opensuse.42.1-x64"
  1936. }
  1937. }
  1938. },
  1939. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1940. "type": "package",
  1941. "runtimeTargets": {
  1942. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1943. "assetType": "native",
  1944. "rid": "osx.10.10-x64"
  1945. }
  1946. }
  1947. },
  1948. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1949. "type": "package",
  1950. "runtimeTargets": {
  1951. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1952. "assetType": "native",
  1953. "rid": "osx.10.10-x64"
  1954. }
  1955. }
  1956. },
  1957. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1958. "type": "package",
  1959. "runtimeTargets": {
  1960. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1961. "assetType": "native",
  1962. "rid": "rhel.7-x64"
  1963. }
  1964. }
  1965. },
  1966. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1967. "type": "package",
  1968. "runtimeTargets": {
  1969. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1970. "assetType": "native",
  1971. "rid": "ubuntu.14.04-x64"
  1972. }
  1973. }
  1974. },
  1975. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1976. "type": "package",
  1977. "runtimeTargets": {
  1978. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1979. "assetType": "native",
  1980. "rid": "ubuntu.16.04-x64"
  1981. }
  1982. }
  1983. },
  1984. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1985. "type": "package",
  1986. "runtimeTargets": {
  1987. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1988. "assetType": "native",
  1989. "rid": "ubuntu.16.10-x64"
  1990. }
  1991. }
  1992. },
  1993. "System.AppContext/4.3.0": {
  1994. "type": "package",
  1995. "dependencies": {
  1996. "System.Runtime": "4.3.0"
  1997. },
  1998. "compile": {
  1999. "ref/netstandard1.6/System.AppContext.dll": {
  2000. "related": ".xml"
  2001. }
  2002. },
  2003. "runtime": {
  2004. "lib/netstandard1.6/System.AppContext.dll": {}
  2005. }
  2006. },
  2007. "System.Buffers/4.5.0": {
  2008. "type": "package",
  2009. "compile": {
  2010. "ref/netcoreapp2.0/_._": {}
  2011. },
  2012. "runtime": {
  2013. "lib/netcoreapp2.0/_._": {}
  2014. }
  2015. },
  2016. "System.Collections/4.3.0": {
  2017. "type": "package",
  2018. "dependencies": {
  2019. "Microsoft.NETCore.Platforms": "1.1.0",
  2020. "Microsoft.NETCore.Targets": "1.1.0",
  2021. "System.Runtime": "4.3.0"
  2022. },
  2023. "compile": {
  2024. "ref/netstandard1.3/System.Collections.dll": {
  2025. "related": ".xml"
  2026. }
  2027. }
  2028. },
  2029. "System.Collections.Concurrent/4.3.0": {
  2030. "type": "package",
  2031. "dependencies": {
  2032. "System.Collections": "4.3.0",
  2033. "System.Diagnostics.Debug": "4.3.0",
  2034. "System.Diagnostics.Tracing": "4.3.0",
  2035. "System.Globalization": "4.3.0",
  2036. "System.Reflection": "4.3.0",
  2037. "System.Resources.ResourceManager": "4.3.0",
  2038. "System.Runtime": "4.3.0",
  2039. "System.Runtime.Extensions": "4.3.0",
  2040. "System.Threading": "4.3.0",
  2041. "System.Threading.Tasks": "4.3.0"
  2042. },
  2043. "compile": {
  2044. "ref/netstandard1.3/System.Collections.Concurrent.dll": {
  2045. "related": ".xml"
  2046. }
  2047. },
  2048. "runtime": {
  2049. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  2050. }
  2051. },
  2052. "System.Collections.Immutable/5.0.0": {
  2053. "type": "package",
  2054. "compile": {
  2055. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2056. "related": ".xml"
  2057. }
  2058. },
  2059. "runtime": {
  2060. "lib/netstandard2.0/System.Collections.Immutable.dll": {
  2061. "related": ".xml"
  2062. }
  2063. }
  2064. },
  2065. "System.Collections.NonGeneric/4.3.0": {
  2066. "type": "package",
  2067. "dependencies": {
  2068. "System.Diagnostics.Debug": "4.3.0",
  2069. "System.Globalization": "4.3.0",
  2070. "System.Resources.ResourceManager": "4.3.0",
  2071. "System.Runtime": "4.3.0",
  2072. "System.Runtime.Extensions": "4.3.0",
  2073. "System.Threading": "4.3.0"
  2074. },
  2075. "compile": {
  2076. "ref/netstandard1.3/_._": {
  2077. "related": ".xml"
  2078. }
  2079. },
  2080. "runtime": {
  2081. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  2082. }
  2083. },
  2084. "System.Collections.Specialized/4.3.0": {
  2085. "type": "package",
  2086. "dependencies": {
  2087. "System.Collections.NonGeneric": "4.3.0",
  2088. "System.Globalization": "4.3.0",
  2089. "System.Globalization.Extensions": "4.3.0",
  2090. "System.Resources.ResourceManager": "4.3.0",
  2091. "System.Runtime": "4.3.0",
  2092. "System.Runtime.Extensions": "4.3.0",
  2093. "System.Threading": "4.3.0"
  2094. },
  2095. "compile": {
  2096. "ref/netstandard1.3/_._": {
  2097. "related": ".xml"
  2098. }
  2099. },
  2100. "runtime": {
  2101. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  2102. }
  2103. },
  2104. "System.ComponentModel/4.3.0": {
  2105. "type": "package",
  2106. "dependencies": {
  2107. "System.Runtime": "4.3.0"
  2108. },
  2109. "compile": {
  2110. "ref/netstandard1.0/_._": {
  2111. "related": ".xml"
  2112. }
  2113. },
  2114. "runtime": {
  2115. "lib/netstandard1.3/System.ComponentModel.dll": {}
  2116. }
  2117. },
  2118. "System.ComponentModel.Annotations/5.0.0": {
  2119. "type": "package",
  2120. "compile": {
  2121. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2122. "related": ".xml"
  2123. }
  2124. },
  2125. "runtime": {
  2126. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
  2127. "related": ".xml"
  2128. }
  2129. }
  2130. },
  2131. "System.ComponentModel.Primitives/4.3.0": {
  2132. "type": "package",
  2133. "dependencies": {
  2134. "System.ComponentModel": "4.3.0",
  2135. "System.Resources.ResourceManager": "4.3.0",
  2136. "System.Runtime": "4.3.0"
  2137. },
  2138. "compile": {
  2139. "ref/netstandard1.0/_._": {
  2140. "related": ".xml"
  2141. }
  2142. },
  2143. "runtime": {
  2144. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  2145. }
  2146. },
  2147. "System.ComponentModel.TypeConverter/4.3.0": {
  2148. "type": "package",
  2149. "dependencies": {
  2150. "System.Collections": "4.3.0",
  2151. "System.Collections.NonGeneric": "4.3.0",
  2152. "System.Collections.Specialized": "4.3.0",
  2153. "System.ComponentModel": "4.3.0",
  2154. "System.ComponentModel.Primitives": "4.3.0",
  2155. "System.Globalization": "4.3.0",
  2156. "System.Linq": "4.3.0",
  2157. "System.Reflection": "4.3.0",
  2158. "System.Reflection.Extensions": "4.3.0",
  2159. "System.Reflection.Primitives": "4.3.0",
  2160. "System.Reflection.TypeExtensions": "4.3.0",
  2161. "System.Resources.ResourceManager": "4.3.0",
  2162. "System.Runtime": "4.3.0",
  2163. "System.Runtime.Extensions": "4.3.0",
  2164. "System.Threading": "4.3.0"
  2165. },
  2166. "compile": {
  2167. "ref/netstandard1.5/_._": {
  2168. "related": ".xml"
  2169. }
  2170. },
  2171. "runtime": {
  2172. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  2173. }
  2174. },
  2175. "System.Composition/1.0.31": {
  2176. "type": "package",
  2177. "dependencies": {
  2178. "System.Composition.AttributedModel": "1.0.31",
  2179. "System.Composition.Convention": "1.0.31",
  2180. "System.Composition.Hosting": "1.0.31",
  2181. "System.Composition.Runtime": "1.0.31",
  2182. "System.Composition.TypedParts": "1.0.31"
  2183. }
  2184. },
  2185. "System.Composition.AttributedModel/1.0.31": {
  2186. "type": "package",
  2187. "dependencies": {
  2188. "System.Reflection": "4.3.0",
  2189. "System.Runtime": "4.3.0"
  2190. },
  2191. "compile": {
  2192. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  2193. },
  2194. "runtime": {
  2195. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  2196. }
  2197. },
  2198. "System.Composition.Convention/1.0.31": {
  2199. "type": "package",
  2200. "dependencies": {
  2201. "System.Collections": "4.3.0",
  2202. "System.Composition.AttributedModel": "1.0.31",
  2203. "System.Diagnostics.Debug": "4.3.0",
  2204. "System.Diagnostics.Tools": "4.3.0",
  2205. "System.Globalization": "4.3.0",
  2206. "System.Linq": "4.3.0",
  2207. "System.Linq.Expressions": "4.3.0",
  2208. "System.Reflection": "4.3.0",
  2209. "System.Reflection.Extensions": "4.3.0",
  2210. "System.Resources.ResourceManager": "4.3.0",
  2211. "System.Runtime": "4.3.0",
  2212. "System.Threading": "4.3.0"
  2213. },
  2214. "compile": {
  2215. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  2216. },
  2217. "runtime": {
  2218. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  2219. }
  2220. },
  2221. "System.Composition.Hosting/1.0.31": {
  2222. "type": "package",
  2223. "dependencies": {
  2224. "System.Collections": "4.3.0",
  2225. "System.Composition.Runtime": "1.0.31",
  2226. "System.Diagnostics.Debug": "4.3.0",
  2227. "System.Diagnostics.Tools": "4.3.0",
  2228. "System.Globalization": "4.3.0",
  2229. "System.Linq": "4.3.0",
  2230. "System.Linq.Expressions": "4.3.0",
  2231. "System.ObjectModel": "4.3.0",
  2232. "System.Reflection": "4.3.0",
  2233. "System.Reflection.Extensions": "4.3.0",
  2234. "System.Resources.ResourceManager": "4.3.0",
  2235. "System.Runtime": "4.3.0",
  2236. "System.Threading": "4.3.0"
  2237. },
  2238. "compile": {
  2239. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  2240. },
  2241. "runtime": {
  2242. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  2243. }
  2244. },
  2245. "System.Composition.Runtime/1.0.31": {
  2246. "type": "package",
  2247. "dependencies": {
  2248. "System.Collections": "4.3.0",
  2249. "System.Diagnostics.Debug": "4.3.0",
  2250. "System.Diagnostics.Tools": "4.3.0",
  2251. "System.Globalization": "4.3.0",
  2252. "System.Linq": "4.3.0",
  2253. "System.Reflection": "4.3.0",
  2254. "System.Resources.ResourceManager": "4.3.0",
  2255. "System.Runtime": "4.3.0"
  2256. },
  2257. "compile": {
  2258. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  2259. },
  2260. "runtime": {
  2261. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  2262. }
  2263. },
  2264. "System.Composition.TypedParts/1.0.31": {
  2265. "type": "package",
  2266. "dependencies": {
  2267. "System.Collections": "4.3.0",
  2268. "System.Composition.AttributedModel": "1.0.31",
  2269. "System.Composition.Hosting": "1.0.31",
  2270. "System.Composition.Runtime": "1.0.31",
  2271. "System.Diagnostics.Debug": "4.3.0",
  2272. "System.Diagnostics.Tools": "4.3.0",
  2273. "System.Globalization": "4.3.0",
  2274. "System.Linq": "4.3.0",
  2275. "System.Linq.Expressions": "4.3.0",
  2276. "System.Reflection": "4.3.0",
  2277. "System.Reflection.Extensions": "4.3.0",
  2278. "System.Resources.ResourceManager": "4.3.0",
  2279. "System.Runtime": "4.3.0",
  2280. "System.Runtime.Extensions": "4.3.0"
  2281. },
  2282. "compile": {
  2283. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  2284. },
  2285. "runtime": {
  2286. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  2287. }
  2288. },
  2289. "System.Configuration.ConfigurationManager/4.7.0": {
  2290. "type": "package",
  2291. "dependencies": {
  2292. "System.Security.Cryptography.ProtectedData": "4.7.0",
  2293. "System.Security.Permissions": "4.7.0"
  2294. },
  2295. "compile": {
  2296. "ref/netstandard2.0/_._": {
  2297. "related": ".xml"
  2298. }
  2299. },
  2300. "runtime": {
  2301. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {
  2302. "related": ".xml"
  2303. }
  2304. }
  2305. },
  2306. "System.Console/4.3.0": {
  2307. "type": "package",
  2308. "dependencies": {
  2309. "Microsoft.NETCore.Platforms": "1.1.0",
  2310. "Microsoft.NETCore.Targets": "1.1.0",
  2311. "System.IO": "4.3.0",
  2312. "System.Runtime": "4.3.0",
  2313. "System.Text.Encoding": "4.3.0"
  2314. },
  2315. "compile": {
  2316. "ref/netstandard1.3/System.Console.dll": {
  2317. "related": ".xml"
  2318. }
  2319. }
  2320. },
  2321. "System.Diagnostics.Debug/4.3.0": {
  2322. "type": "package",
  2323. "dependencies": {
  2324. "Microsoft.NETCore.Platforms": "1.1.0",
  2325. "Microsoft.NETCore.Targets": "1.1.0",
  2326. "System.Runtime": "4.3.0"
  2327. },
  2328. "compile": {
  2329. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {
  2330. "related": ".xml"
  2331. }
  2332. }
  2333. },
  2334. "System.Diagnostics.DiagnosticSource/5.0.0": {
  2335. "type": "package",
  2336. "compile": {
  2337. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2338. "related": ".xml"
  2339. }
  2340. },
  2341. "runtime": {
  2342. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {
  2343. "related": ".xml"
  2344. }
  2345. }
  2346. },
  2347. "System.Diagnostics.Tools/4.3.0": {
  2348. "type": "package",
  2349. "dependencies": {
  2350. "Microsoft.NETCore.Platforms": "1.1.0",
  2351. "Microsoft.NETCore.Targets": "1.1.0",
  2352. "System.Runtime": "4.3.0"
  2353. },
  2354. "compile": {
  2355. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {
  2356. "related": ".xml"
  2357. }
  2358. }
  2359. },
  2360. "System.Diagnostics.Tracing/4.3.0": {
  2361. "type": "package",
  2362. "dependencies": {
  2363. "Microsoft.NETCore.Platforms": "1.1.0",
  2364. "Microsoft.NETCore.Targets": "1.1.0",
  2365. "System.Runtime": "4.3.0"
  2366. },
  2367. "compile": {
  2368. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {
  2369. "related": ".xml"
  2370. }
  2371. }
  2372. },
  2373. "System.Drawing.Common/4.7.0": {
  2374. "type": "package",
  2375. "dependencies": {
  2376. "Microsoft.NETCore.Platforms": "3.1.0",
  2377. "Microsoft.Win32.SystemEvents": "4.7.0"
  2378. },
  2379. "compile": {
  2380. "ref/netcoreapp3.0/_._": {
  2381. "related": ".xml"
  2382. }
  2383. },
  2384. "runtime": {
  2385. "lib/netstandard2.0/System.Drawing.Common.dll": {}
  2386. },
  2387. "runtimeTargets": {
  2388. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2389. "assetType": "runtime",
  2390. "rid": "unix"
  2391. },
  2392. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": {
  2393. "assetType": "runtime",
  2394. "rid": "win"
  2395. }
  2396. }
  2397. },
  2398. "System.Dynamic.Runtime/4.0.11": {
  2399. "type": "package",
  2400. "dependencies": {
  2401. "System.Collections": "4.0.11",
  2402. "System.Diagnostics.Debug": "4.0.11",
  2403. "System.Globalization": "4.0.11",
  2404. "System.Linq": "4.1.0",
  2405. "System.Linq.Expressions": "4.1.0",
  2406. "System.ObjectModel": "4.0.12",
  2407. "System.Reflection": "4.1.0",
  2408. "System.Reflection.Emit": "4.0.1",
  2409. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2410. "System.Reflection.Primitives": "4.0.1",
  2411. "System.Reflection.TypeExtensions": "4.1.0",
  2412. "System.Resources.ResourceManager": "4.0.1",
  2413. "System.Runtime": "4.1.0",
  2414. "System.Runtime.Extensions": "4.1.0",
  2415. "System.Threading": "4.0.11"
  2416. },
  2417. "compile": {
  2418. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
  2419. "related": ".xml"
  2420. }
  2421. },
  2422. "runtime": {
  2423. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2424. }
  2425. },
  2426. "System.Globalization/4.3.0": {
  2427. "type": "package",
  2428. "dependencies": {
  2429. "Microsoft.NETCore.Platforms": "1.1.0",
  2430. "Microsoft.NETCore.Targets": "1.1.0",
  2431. "System.Runtime": "4.3.0"
  2432. },
  2433. "compile": {
  2434. "ref/netstandard1.3/System.Globalization.dll": {
  2435. "related": ".xml"
  2436. }
  2437. }
  2438. },
  2439. "System.Globalization.Calendars/4.3.0": {
  2440. "type": "package",
  2441. "dependencies": {
  2442. "Microsoft.NETCore.Platforms": "1.1.0",
  2443. "Microsoft.NETCore.Targets": "1.1.0",
  2444. "System.Globalization": "4.3.0",
  2445. "System.Runtime": "4.3.0"
  2446. },
  2447. "compile": {
  2448. "ref/netstandard1.3/System.Globalization.Calendars.dll": {
  2449. "related": ".xml"
  2450. }
  2451. }
  2452. },
  2453. "System.Globalization.Extensions/4.3.0": {
  2454. "type": "package",
  2455. "dependencies": {
  2456. "Microsoft.NETCore.Platforms": "1.1.0",
  2457. "System.Globalization": "4.3.0",
  2458. "System.Resources.ResourceManager": "4.3.0",
  2459. "System.Runtime": "4.3.0",
  2460. "System.Runtime.Extensions": "4.3.0",
  2461. "System.Runtime.InteropServices": "4.3.0"
  2462. },
  2463. "compile": {
  2464. "ref/netstandard1.3/_._": {
  2465. "related": ".xml"
  2466. }
  2467. },
  2468. "runtimeTargets": {
  2469. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2470. "assetType": "runtime",
  2471. "rid": "unix"
  2472. },
  2473. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2474. "assetType": "runtime",
  2475. "rid": "win"
  2476. }
  2477. }
  2478. },
  2479. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  2480. "type": "package",
  2481. "dependencies": {
  2482. "Microsoft.IdentityModel.JsonWebTokens": "5.6.0",
  2483. "Microsoft.IdentityModel.Tokens": "5.6.0",
  2484. "Newtonsoft.Json": "10.0.1"
  2485. },
  2486. "compile": {
  2487. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2488. "related": ".xml"
  2489. }
  2490. },
  2491. "runtime": {
  2492. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {
  2493. "related": ".xml"
  2494. }
  2495. }
  2496. },
  2497. "System.IO/4.3.0": {
  2498. "type": "package",
  2499. "dependencies": {
  2500. "Microsoft.NETCore.Platforms": "1.1.0",
  2501. "Microsoft.NETCore.Targets": "1.1.0",
  2502. "System.Runtime": "4.3.0",
  2503. "System.Text.Encoding": "4.3.0",
  2504. "System.Threading.Tasks": "4.3.0"
  2505. },
  2506. "compile": {
  2507. "ref/netstandard1.5/System.IO.dll": {
  2508. "related": ".xml"
  2509. }
  2510. }
  2511. },
  2512. "System.IO.Compression/4.3.0": {
  2513. "type": "package",
  2514. "dependencies": {
  2515. "Microsoft.NETCore.Platforms": "1.1.0",
  2516. "System.Buffers": "4.3.0",
  2517. "System.Collections": "4.3.0",
  2518. "System.Diagnostics.Debug": "4.3.0",
  2519. "System.IO": "4.3.0",
  2520. "System.Resources.ResourceManager": "4.3.0",
  2521. "System.Runtime": "4.3.0",
  2522. "System.Runtime.Extensions": "4.3.0",
  2523. "System.Runtime.Handles": "4.3.0",
  2524. "System.Runtime.InteropServices": "4.3.0",
  2525. "System.Text.Encoding": "4.3.0",
  2526. "System.Threading": "4.3.0",
  2527. "System.Threading.Tasks": "4.3.0",
  2528. "runtime.native.System": "4.3.0",
  2529. "runtime.native.System.IO.Compression": "4.3.0"
  2530. },
  2531. "compile": {
  2532. "ref/netstandard1.3/System.IO.Compression.dll": {
  2533. "related": ".xml"
  2534. }
  2535. },
  2536. "runtimeTargets": {
  2537. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2538. "assetType": "runtime",
  2539. "rid": "unix"
  2540. },
  2541. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2542. "assetType": "runtime",
  2543. "rid": "win"
  2544. }
  2545. }
  2546. },
  2547. "System.IO.Compression.ZipFile/4.3.0": {
  2548. "type": "package",
  2549. "dependencies": {
  2550. "System.Buffers": "4.3.0",
  2551. "System.IO": "4.3.0",
  2552. "System.IO.Compression": "4.3.0",
  2553. "System.IO.FileSystem": "4.3.0",
  2554. "System.IO.FileSystem.Primitives": "4.3.0",
  2555. "System.Resources.ResourceManager": "4.3.0",
  2556. "System.Runtime": "4.3.0",
  2557. "System.Runtime.Extensions": "4.3.0",
  2558. "System.Text.Encoding": "4.3.0"
  2559. },
  2560. "compile": {
  2561. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {
  2562. "related": ".xml"
  2563. }
  2564. },
  2565. "runtime": {
  2566. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2567. }
  2568. },
  2569. "System.IO.FileSystem/4.3.0": {
  2570. "type": "package",
  2571. "dependencies": {
  2572. "Microsoft.NETCore.Platforms": "1.1.0",
  2573. "Microsoft.NETCore.Targets": "1.1.0",
  2574. "System.IO": "4.3.0",
  2575. "System.IO.FileSystem.Primitives": "4.3.0",
  2576. "System.Runtime": "4.3.0",
  2577. "System.Runtime.Handles": "4.3.0",
  2578. "System.Text.Encoding": "4.3.0",
  2579. "System.Threading.Tasks": "4.3.0"
  2580. },
  2581. "compile": {
  2582. "ref/netstandard1.3/System.IO.FileSystem.dll": {
  2583. "related": ".xml"
  2584. }
  2585. }
  2586. },
  2587. "System.IO.FileSystem.Primitives/4.3.0": {
  2588. "type": "package",
  2589. "dependencies": {
  2590. "System.Runtime": "4.3.0"
  2591. },
  2592. "compile": {
  2593. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {
  2594. "related": ".xml"
  2595. }
  2596. },
  2597. "runtime": {
  2598. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2599. }
  2600. },
  2601. "System.IO.Pipelines/5.0.2": {
  2602. "type": "package",
  2603. "compile": {
  2604. "ref/netcoreapp2.0/System.IO.Pipelines.dll": {
  2605. "related": ".xml"
  2606. }
  2607. },
  2608. "runtime": {
  2609. "lib/netcoreapp3.0/System.IO.Pipelines.dll": {
  2610. "related": ".xml"
  2611. }
  2612. }
  2613. },
  2614. "System.Linq/4.3.0": {
  2615. "type": "package",
  2616. "dependencies": {
  2617. "System.Collections": "4.3.0",
  2618. "System.Diagnostics.Debug": "4.3.0",
  2619. "System.Resources.ResourceManager": "4.3.0",
  2620. "System.Runtime": "4.3.0",
  2621. "System.Runtime.Extensions": "4.3.0"
  2622. },
  2623. "compile": {
  2624. "ref/netstandard1.6/System.Linq.dll": {
  2625. "related": ".xml"
  2626. }
  2627. },
  2628. "runtime": {
  2629. "lib/netstandard1.6/System.Linq.dll": {}
  2630. }
  2631. },
  2632. "System.Linq.Expressions/4.3.0": {
  2633. "type": "package",
  2634. "dependencies": {
  2635. "System.Collections": "4.3.0",
  2636. "System.Diagnostics.Debug": "4.3.0",
  2637. "System.Globalization": "4.3.0",
  2638. "System.IO": "4.3.0",
  2639. "System.Linq": "4.3.0",
  2640. "System.ObjectModel": "4.3.0",
  2641. "System.Reflection": "4.3.0",
  2642. "System.Reflection.Emit": "4.3.0",
  2643. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2644. "System.Reflection.Emit.Lightweight": "4.3.0",
  2645. "System.Reflection.Extensions": "4.3.0",
  2646. "System.Reflection.Primitives": "4.3.0",
  2647. "System.Reflection.TypeExtensions": "4.3.0",
  2648. "System.Resources.ResourceManager": "4.3.0",
  2649. "System.Runtime": "4.3.0",
  2650. "System.Runtime.Extensions": "4.3.0",
  2651. "System.Threading": "4.3.0"
  2652. },
  2653. "compile": {
  2654. "ref/netstandard1.6/System.Linq.Expressions.dll": {
  2655. "related": ".xml"
  2656. }
  2657. },
  2658. "runtime": {
  2659. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2660. }
  2661. },
  2662. "System.Memory/4.5.4": {
  2663. "type": "package",
  2664. "compile": {
  2665. "ref/netcoreapp2.1/_._": {}
  2666. },
  2667. "runtime": {
  2668. "lib/netcoreapp2.1/_._": {}
  2669. }
  2670. },
  2671. "System.Net.Http/4.3.0": {
  2672. "type": "package",
  2673. "dependencies": {
  2674. "Microsoft.NETCore.Platforms": "1.1.0",
  2675. "System.Collections": "4.3.0",
  2676. "System.Diagnostics.Debug": "4.3.0",
  2677. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2678. "System.Diagnostics.Tracing": "4.3.0",
  2679. "System.Globalization": "4.3.0",
  2680. "System.Globalization.Extensions": "4.3.0",
  2681. "System.IO": "4.3.0",
  2682. "System.IO.FileSystem": "4.3.0",
  2683. "System.Net.Primitives": "4.3.0",
  2684. "System.Resources.ResourceManager": "4.3.0",
  2685. "System.Runtime": "4.3.0",
  2686. "System.Runtime.Extensions": "4.3.0",
  2687. "System.Runtime.Handles": "4.3.0",
  2688. "System.Runtime.InteropServices": "4.3.0",
  2689. "System.Security.Cryptography.Algorithms": "4.3.0",
  2690. "System.Security.Cryptography.Encoding": "4.3.0",
  2691. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2692. "System.Security.Cryptography.Primitives": "4.3.0",
  2693. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2694. "System.Text.Encoding": "4.3.0",
  2695. "System.Threading": "4.3.0",
  2696. "System.Threading.Tasks": "4.3.0",
  2697. "runtime.native.System": "4.3.0",
  2698. "runtime.native.System.Net.Http": "4.3.0",
  2699. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2700. },
  2701. "compile": {
  2702. "ref/netstandard1.3/System.Net.Http.dll": {
  2703. "related": ".xml"
  2704. }
  2705. },
  2706. "runtimeTargets": {
  2707. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2708. "assetType": "runtime",
  2709. "rid": "unix"
  2710. },
  2711. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2712. "assetType": "runtime",
  2713. "rid": "win"
  2714. }
  2715. }
  2716. },
  2717. "System.Net.NameResolution/4.3.0": {
  2718. "type": "package",
  2719. "dependencies": {
  2720. "Microsoft.NETCore.Platforms": "1.1.0",
  2721. "System.Collections": "4.3.0",
  2722. "System.Diagnostics.Tracing": "4.3.0",
  2723. "System.Globalization": "4.3.0",
  2724. "System.Net.Primitives": "4.3.0",
  2725. "System.Resources.ResourceManager": "4.3.0",
  2726. "System.Runtime": "4.3.0",
  2727. "System.Runtime.Extensions": "4.3.0",
  2728. "System.Runtime.Handles": "4.3.0",
  2729. "System.Runtime.InteropServices": "4.3.0",
  2730. "System.Security.Principal.Windows": "4.3.0",
  2731. "System.Threading": "4.3.0",
  2732. "System.Threading.Tasks": "4.3.0",
  2733. "runtime.native.System": "4.3.0"
  2734. },
  2735. "compile": {
  2736. "ref/netstandard1.3/_._": {
  2737. "related": ".xml"
  2738. }
  2739. },
  2740. "runtimeTargets": {
  2741. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2742. "assetType": "runtime",
  2743. "rid": "unix"
  2744. },
  2745. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2746. "assetType": "runtime",
  2747. "rid": "win"
  2748. }
  2749. }
  2750. },
  2751. "System.Net.Primitives/4.3.0": {
  2752. "type": "package",
  2753. "dependencies": {
  2754. "Microsoft.NETCore.Platforms": "1.1.0",
  2755. "Microsoft.NETCore.Targets": "1.1.0",
  2756. "System.Runtime": "4.3.0",
  2757. "System.Runtime.Handles": "4.3.0"
  2758. },
  2759. "compile": {
  2760. "ref/netstandard1.3/System.Net.Primitives.dll": {
  2761. "related": ".xml"
  2762. }
  2763. }
  2764. },
  2765. "System.Net.Sockets/4.3.0": {
  2766. "type": "package",
  2767. "dependencies": {
  2768. "Microsoft.NETCore.Platforms": "1.1.0",
  2769. "Microsoft.NETCore.Targets": "1.1.0",
  2770. "System.IO": "4.3.0",
  2771. "System.Net.Primitives": "4.3.0",
  2772. "System.Runtime": "4.3.0",
  2773. "System.Threading.Tasks": "4.3.0"
  2774. },
  2775. "compile": {
  2776. "ref/netstandard1.3/System.Net.Sockets.dll": {
  2777. "related": ".xml"
  2778. }
  2779. }
  2780. },
  2781. "System.ObjectModel/4.3.0": {
  2782. "type": "package",
  2783. "dependencies": {
  2784. "System.Collections": "4.3.0",
  2785. "System.Diagnostics.Debug": "4.3.0",
  2786. "System.Resources.ResourceManager": "4.3.0",
  2787. "System.Runtime": "4.3.0",
  2788. "System.Threading": "4.3.0"
  2789. },
  2790. "compile": {
  2791. "ref/netstandard1.3/System.ObjectModel.dll": {
  2792. "related": ".xml"
  2793. }
  2794. },
  2795. "runtime": {
  2796. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2797. }
  2798. },
  2799. "System.Private.DataContractSerialization/4.3.0": {
  2800. "type": "package",
  2801. "dependencies": {
  2802. "System.Collections": "4.3.0",
  2803. "System.Collections.Concurrent": "4.3.0",
  2804. "System.Diagnostics.Debug": "4.3.0",
  2805. "System.Globalization": "4.3.0",
  2806. "System.IO": "4.3.0",
  2807. "System.Linq": "4.3.0",
  2808. "System.Reflection": "4.3.0",
  2809. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2810. "System.Reflection.Emit.Lightweight": "4.3.0",
  2811. "System.Reflection.Extensions": "4.3.0",
  2812. "System.Reflection.Primitives": "4.3.0",
  2813. "System.Reflection.TypeExtensions": "4.3.0",
  2814. "System.Resources.ResourceManager": "4.3.0",
  2815. "System.Runtime": "4.3.0",
  2816. "System.Runtime.Extensions": "4.3.0",
  2817. "System.Runtime.Serialization.Primitives": "4.3.0",
  2818. "System.Text.Encoding": "4.3.0",
  2819. "System.Text.Encoding.Extensions": "4.3.0",
  2820. "System.Text.RegularExpressions": "4.3.0",
  2821. "System.Threading": "4.3.0",
  2822. "System.Threading.Tasks": "4.3.0",
  2823. "System.Xml.ReaderWriter": "4.3.0",
  2824. "System.Xml.XDocument": "4.3.0",
  2825. "System.Xml.XmlDocument": "4.3.0",
  2826. "System.Xml.XmlSerializer": "4.3.0"
  2827. },
  2828. "compile": {
  2829. "ref/netstandard/_._": {}
  2830. },
  2831. "runtime": {
  2832. "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
  2833. }
  2834. },
  2835. "System.Private.Uri/4.3.2": {
  2836. "type": "package",
  2837. "dependencies": {
  2838. "Microsoft.NETCore.Platforms": "1.1.1",
  2839. "Microsoft.NETCore.Targets": "1.1.3"
  2840. },
  2841. "compile": {
  2842. "ref/netstandard/_._": {}
  2843. }
  2844. },
  2845. "System.Reflection/4.3.0": {
  2846. "type": "package",
  2847. "dependencies": {
  2848. "Microsoft.NETCore.Platforms": "1.1.0",
  2849. "Microsoft.NETCore.Targets": "1.1.0",
  2850. "System.IO": "4.3.0",
  2851. "System.Reflection.Primitives": "4.3.0",
  2852. "System.Runtime": "4.3.0"
  2853. },
  2854. "compile": {
  2855. "ref/netstandard1.5/System.Reflection.dll": {
  2856. "related": ".xml"
  2857. }
  2858. }
  2859. },
  2860. "System.Reflection.Emit/4.3.0": {
  2861. "type": "package",
  2862. "dependencies": {
  2863. "System.IO": "4.3.0",
  2864. "System.Reflection": "4.3.0",
  2865. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2866. "System.Reflection.Primitives": "4.3.0",
  2867. "System.Runtime": "4.3.0"
  2868. },
  2869. "compile": {
  2870. "ref/netstandard1.1/_._": {
  2871. "related": ".xml"
  2872. }
  2873. },
  2874. "runtime": {
  2875. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2876. }
  2877. },
  2878. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2879. "type": "package",
  2880. "dependencies": {
  2881. "System.Reflection": "4.3.0",
  2882. "System.Reflection.Primitives": "4.3.0",
  2883. "System.Runtime": "4.3.0"
  2884. },
  2885. "compile": {
  2886. "ref/netstandard1.0/_._": {
  2887. "related": ".xml"
  2888. }
  2889. },
  2890. "runtime": {
  2891. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2892. }
  2893. },
  2894. "System.Reflection.Emit.Lightweight/4.3.0": {
  2895. "type": "package",
  2896. "dependencies": {
  2897. "System.Reflection": "4.3.0",
  2898. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2899. "System.Reflection.Primitives": "4.3.0",
  2900. "System.Runtime": "4.3.0"
  2901. },
  2902. "compile": {
  2903. "ref/netstandard1.0/_._": {
  2904. "related": ".xml"
  2905. }
  2906. },
  2907. "runtime": {
  2908. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2909. }
  2910. },
  2911. "System.Reflection.Extensions/4.3.0": {
  2912. "type": "package",
  2913. "dependencies": {
  2914. "Microsoft.NETCore.Platforms": "1.1.0",
  2915. "Microsoft.NETCore.Targets": "1.1.0",
  2916. "System.Reflection": "4.3.0",
  2917. "System.Runtime": "4.3.0"
  2918. },
  2919. "compile": {
  2920. "ref/netstandard1.0/System.Reflection.Extensions.dll": {
  2921. "related": ".xml"
  2922. }
  2923. }
  2924. },
  2925. "System.Reflection.Metadata/5.0.0": {
  2926. "type": "package",
  2927. "compile": {
  2928. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2929. "related": ".xml"
  2930. }
  2931. },
  2932. "runtime": {
  2933. "lib/netstandard2.0/System.Reflection.Metadata.dll": {
  2934. "related": ".xml"
  2935. }
  2936. }
  2937. },
  2938. "System.Reflection.Primitives/4.3.0": {
  2939. "type": "package",
  2940. "dependencies": {
  2941. "Microsoft.NETCore.Platforms": "1.1.0",
  2942. "Microsoft.NETCore.Targets": "1.1.0",
  2943. "System.Runtime": "4.3.0"
  2944. },
  2945. "compile": {
  2946. "ref/netstandard1.0/System.Reflection.Primitives.dll": {
  2947. "related": ".xml"
  2948. }
  2949. }
  2950. },
  2951. "System.Reflection.TypeExtensions/4.3.0": {
  2952. "type": "package",
  2953. "dependencies": {
  2954. "System.Reflection": "4.3.0",
  2955. "System.Runtime": "4.3.0"
  2956. },
  2957. "compile": {
  2958. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {
  2959. "related": ".xml"
  2960. }
  2961. },
  2962. "runtime": {
  2963. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2964. }
  2965. },
  2966. "System.Resources.ResourceManager/4.3.0": {
  2967. "type": "package",
  2968. "dependencies": {
  2969. "Microsoft.NETCore.Platforms": "1.1.0",
  2970. "Microsoft.NETCore.Targets": "1.1.0",
  2971. "System.Globalization": "4.3.0",
  2972. "System.Reflection": "4.3.0",
  2973. "System.Runtime": "4.3.0"
  2974. },
  2975. "compile": {
  2976. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {
  2977. "related": ".xml"
  2978. }
  2979. }
  2980. },
  2981. "System.Runtime/4.3.0": {
  2982. "type": "package",
  2983. "dependencies": {
  2984. "Microsoft.NETCore.Platforms": "1.1.0",
  2985. "Microsoft.NETCore.Targets": "1.1.0"
  2986. },
  2987. "compile": {
  2988. "ref/netstandard1.5/System.Runtime.dll": {
  2989. "related": ".xml"
  2990. }
  2991. }
  2992. },
  2993. "System.Runtime.Caching/4.7.0": {
  2994. "type": "package",
  2995. "dependencies": {
  2996. "System.Configuration.ConfigurationManager": "4.7.0"
  2997. },
  2998. "compile": {
  2999. "ref/netstandard2.0/_._": {
  3000. "related": ".xml"
  3001. }
  3002. },
  3003. "runtime": {
  3004. "lib/netstandard2.0/System.Runtime.Caching.dll": {
  3005. "related": ".xml"
  3006. }
  3007. },
  3008. "runtimeTargets": {
  3009. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": {
  3010. "assetType": "runtime",
  3011. "rid": "win"
  3012. }
  3013. }
  3014. },
  3015. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  3016. "type": "package",
  3017. "compile": {
  3018. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  3019. "related": ".xml"
  3020. }
  3021. },
  3022. "runtime": {
  3023. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
  3024. "related": ".xml"
  3025. }
  3026. }
  3027. },
  3028. "System.Runtime.Extensions/4.3.0": {
  3029. "type": "package",
  3030. "dependencies": {
  3031. "Microsoft.NETCore.Platforms": "1.1.0",
  3032. "Microsoft.NETCore.Targets": "1.1.0",
  3033. "System.Runtime": "4.3.0"
  3034. },
  3035. "compile": {
  3036. "ref/netstandard1.5/System.Runtime.Extensions.dll": {
  3037. "related": ".xml"
  3038. }
  3039. }
  3040. },
  3041. "System.Runtime.Handles/4.3.0": {
  3042. "type": "package",
  3043. "dependencies": {
  3044. "Microsoft.NETCore.Platforms": "1.1.0",
  3045. "Microsoft.NETCore.Targets": "1.1.0",
  3046. "System.Runtime": "4.3.0"
  3047. },
  3048. "compile": {
  3049. "ref/netstandard1.3/System.Runtime.Handles.dll": {
  3050. "related": ".xml"
  3051. }
  3052. }
  3053. },
  3054. "System.Runtime.InteropServices/4.3.0": {
  3055. "type": "package",
  3056. "dependencies": {
  3057. "Microsoft.NETCore.Platforms": "1.1.0",
  3058. "Microsoft.NETCore.Targets": "1.1.0",
  3059. "System.Reflection": "4.3.0",
  3060. "System.Reflection.Primitives": "4.3.0",
  3061. "System.Runtime": "4.3.0",
  3062. "System.Runtime.Handles": "4.3.0"
  3063. },
  3064. "compile": {
  3065. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  3066. }
  3067. },
  3068. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  3069. "type": "package",
  3070. "dependencies": {
  3071. "System.Reflection": "4.3.0",
  3072. "System.Reflection.Extensions": "4.3.0",
  3073. "System.Resources.ResourceManager": "4.3.0",
  3074. "System.Runtime": "4.3.0",
  3075. "System.Runtime.InteropServices": "4.3.0",
  3076. "System.Threading": "4.3.0",
  3077. "runtime.native.System": "4.3.0"
  3078. },
  3079. "compile": {
  3080. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3081. },
  3082. "runtime": {
  3083. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3084. },
  3085. "runtimeTargets": {
  3086. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3087. "assetType": "runtime",
  3088. "rid": "unix"
  3089. },
  3090. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3091. "assetType": "runtime",
  3092. "rid": "win"
  3093. }
  3094. }
  3095. },
  3096. "System.Runtime.Numerics/4.3.0": {
  3097. "type": "package",
  3098. "dependencies": {
  3099. "System.Globalization": "4.3.0",
  3100. "System.Resources.ResourceManager": "4.3.0",
  3101. "System.Runtime": "4.3.0",
  3102. "System.Runtime.Extensions": "4.3.0"
  3103. },
  3104. "compile": {
  3105. "ref/netstandard1.1/System.Runtime.Numerics.dll": {
  3106. "related": ".xml"
  3107. }
  3108. },
  3109. "runtime": {
  3110. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  3111. }
  3112. },
  3113. "System.Runtime.Serialization.Formatters/4.3.0": {
  3114. "type": "package",
  3115. "dependencies": {
  3116. "System.Collections": "4.3.0",
  3117. "System.Reflection": "4.3.0",
  3118. "System.Resources.ResourceManager": "4.3.0",
  3119. "System.Runtime": "4.3.0",
  3120. "System.Runtime.Serialization.Primitives": "4.3.0"
  3121. },
  3122. "compile": {
  3123. "ref/netstandard1.3/_._": {}
  3124. },
  3125. "runtime": {
  3126. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  3127. }
  3128. },
  3129. "System.Runtime.Serialization.Json/4.3.0": {
  3130. "type": "package",
  3131. "dependencies": {
  3132. "System.IO": "4.3.0",
  3133. "System.Private.DataContractSerialization": "4.3.0",
  3134. "System.Runtime": "4.3.0"
  3135. },
  3136. "compile": {
  3137. "ref/netstandard1.0/_._": {
  3138. "related": ".xml"
  3139. }
  3140. },
  3141. "runtime": {
  3142. "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {}
  3143. }
  3144. },
  3145. "System.Runtime.Serialization.Primitives/4.3.0": {
  3146. "type": "package",
  3147. "dependencies": {
  3148. "System.Resources.ResourceManager": "4.3.0",
  3149. "System.Runtime": "4.3.0"
  3150. },
  3151. "compile": {
  3152. "ref/netstandard1.3/_._": {
  3153. "related": ".xml"
  3154. }
  3155. },
  3156. "runtime": {
  3157. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3158. }
  3159. },
  3160. "System.Security.AccessControl/4.7.0": {
  3161. "type": "package",
  3162. "dependencies": {
  3163. "Microsoft.NETCore.Platforms": "3.1.0",
  3164. "System.Security.Principal.Windows": "4.7.0"
  3165. },
  3166. "compile": {
  3167. "ref/netstandard2.0/System.Security.AccessControl.dll": {
  3168. "related": ".xml"
  3169. }
  3170. },
  3171. "runtime": {
  3172. "lib/netstandard2.0/System.Security.AccessControl.dll": {
  3173. "related": ".xml"
  3174. }
  3175. },
  3176. "runtimeTargets": {
  3177. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  3178. "assetType": "runtime",
  3179. "rid": "win"
  3180. }
  3181. }
  3182. },
  3183. "System.Security.Cryptography.Algorithms/4.3.0": {
  3184. "type": "package",
  3185. "dependencies": {
  3186. "Microsoft.NETCore.Platforms": "1.1.0",
  3187. "System.Collections": "4.3.0",
  3188. "System.IO": "4.3.0",
  3189. "System.Resources.ResourceManager": "4.3.0",
  3190. "System.Runtime": "4.3.0",
  3191. "System.Runtime.Extensions": "4.3.0",
  3192. "System.Runtime.Handles": "4.3.0",
  3193. "System.Runtime.InteropServices": "4.3.0",
  3194. "System.Runtime.Numerics": "4.3.0",
  3195. "System.Security.Cryptography.Encoding": "4.3.0",
  3196. "System.Security.Cryptography.Primitives": "4.3.0",
  3197. "System.Text.Encoding": "4.3.0",
  3198. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  3199. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3200. },
  3201. "compile": {
  3202. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3203. },
  3204. "runtimeTargets": {
  3205. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3206. "assetType": "runtime",
  3207. "rid": "osx"
  3208. },
  3209. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3210. "assetType": "runtime",
  3211. "rid": "unix"
  3212. },
  3213. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3214. "assetType": "runtime",
  3215. "rid": "win"
  3216. }
  3217. }
  3218. },
  3219. "System.Security.Cryptography.Cng/4.5.0": {
  3220. "type": "package",
  3221. "compile": {
  3222. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  3223. "related": ".xml"
  3224. }
  3225. },
  3226. "runtime": {
  3227. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  3228. },
  3229. "runtimeTargets": {
  3230. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  3231. "assetType": "runtime",
  3232. "rid": "win"
  3233. }
  3234. }
  3235. },
  3236. "System.Security.Cryptography.Csp/4.3.0": {
  3237. "type": "package",
  3238. "dependencies": {
  3239. "Microsoft.NETCore.Platforms": "1.1.0",
  3240. "System.IO": "4.3.0",
  3241. "System.Reflection": "4.3.0",
  3242. "System.Resources.ResourceManager": "4.3.0",
  3243. "System.Runtime": "4.3.0",
  3244. "System.Runtime.Extensions": "4.3.0",
  3245. "System.Runtime.Handles": "4.3.0",
  3246. "System.Runtime.InteropServices": "4.3.0",
  3247. "System.Security.Cryptography.Algorithms": "4.3.0",
  3248. "System.Security.Cryptography.Encoding": "4.3.0",
  3249. "System.Security.Cryptography.Primitives": "4.3.0",
  3250. "System.Text.Encoding": "4.3.0",
  3251. "System.Threading": "4.3.0"
  3252. },
  3253. "compile": {
  3254. "ref/netstandard1.3/_._": {}
  3255. },
  3256. "runtimeTargets": {
  3257. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3258. "assetType": "runtime",
  3259. "rid": "unix"
  3260. },
  3261. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3262. "assetType": "runtime",
  3263. "rid": "win"
  3264. }
  3265. }
  3266. },
  3267. "System.Security.Cryptography.Encoding/4.3.0": {
  3268. "type": "package",
  3269. "dependencies": {
  3270. "Microsoft.NETCore.Platforms": "1.1.0",
  3271. "System.Collections": "4.3.0",
  3272. "System.Collections.Concurrent": "4.3.0",
  3273. "System.Linq": "4.3.0",
  3274. "System.Resources.ResourceManager": "4.3.0",
  3275. "System.Runtime": "4.3.0",
  3276. "System.Runtime.Extensions": "4.3.0",
  3277. "System.Runtime.Handles": "4.3.0",
  3278. "System.Runtime.InteropServices": "4.3.0",
  3279. "System.Security.Cryptography.Primitives": "4.3.0",
  3280. "System.Text.Encoding": "4.3.0",
  3281. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3282. },
  3283. "compile": {
  3284. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3285. "related": ".xml"
  3286. }
  3287. },
  3288. "runtimeTargets": {
  3289. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3290. "assetType": "runtime",
  3291. "rid": "unix"
  3292. },
  3293. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3294. "assetType": "runtime",
  3295. "rid": "win"
  3296. }
  3297. }
  3298. },
  3299. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3300. "type": "package",
  3301. "dependencies": {
  3302. "System.Collections": "4.3.0",
  3303. "System.IO": "4.3.0",
  3304. "System.Resources.ResourceManager": "4.3.0",
  3305. "System.Runtime": "4.3.0",
  3306. "System.Runtime.Extensions": "4.3.0",
  3307. "System.Runtime.Handles": "4.3.0",
  3308. "System.Runtime.InteropServices": "4.3.0",
  3309. "System.Runtime.Numerics": "4.3.0",
  3310. "System.Security.Cryptography.Algorithms": "4.3.0",
  3311. "System.Security.Cryptography.Encoding": "4.3.0",
  3312. "System.Security.Cryptography.Primitives": "4.3.0",
  3313. "System.Text.Encoding": "4.3.0",
  3314. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3315. },
  3316. "compile": {
  3317. "ref/netstandard1.6/_._": {}
  3318. },
  3319. "runtime": {
  3320. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3321. },
  3322. "runtimeTargets": {
  3323. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3324. "assetType": "runtime",
  3325. "rid": "unix"
  3326. }
  3327. }
  3328. },
  3329. "System.Security.Cryptography.Primitives/4.3.0": {
  3330. "type": "package",
  3331. "dependencies": {
  3332. "System.Diagnostics.Debug": "4.3.0",
  3333. "System.Globalization": "4.3.0",
  3334. "System.IO": "4.3.0",
  3335. "System.Resources.ResourceManager": "4.3.0",
  3336. "System.Runtime": "4.3.0",
  3337. "System.Threading": "4.3.0",
  3338. "System.Threading.Tasks": "4.3.0"
  3339. },
  3340. "compile": {
  3341. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3342. },
  3343. "runtime": {
  3344. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3345. }
  3346. },
  3347. "System.Security.Cryptography.ProtectedData/4.7.0": {
  3348. "type": "package",
  3349. "compile": {
  3350. "ref/netstandard2.0/_._": {
  3351. "related": ".xml"
  3352. }
  3353. },
  3354. "runtime": {
  3355. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3356. "related": ".xml"
  3357. }
  3358. },
  3359. "runtimeTargets": {
  3360. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  3361. "assetType": "runtime",
  3362. "rid": "win"
  3363. }
  3364. }
  3365. },
  3366. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3367. "type": "package",
  3368. "dependencies": {
  3369. "Microsoft.NETCore.Platforms": "1.1.0",
  3370. "System.Collections": "4.3.0",
  3371. "System.Diagnostics.Debug": "4.3.0",
  3372. "System.Globalization": "4.3.0",
  3373. "System.Globalization.Calendars": "4.3.0",
  3374. "System.IO": "4.3.0",
  3375. "System.IO.FileSystem": "4.3.0",
  3376. "System.IO.FileSystem.Primitives": "4.3.0",
  3377. "System.Resources.ResourceManager": "4.3.0",
  3378. "System.Runtime": "4.3.0",
  3379. "System.Runtime.Extensions": "4.3.0",
  3380. "System.Runtime.Handles": "4.3.0",
  3381. "System.Runtime.InteropServices": "4.3.0",
  3382. "System.Runtime.Numerics": "4.3.0",
  3383. "System.Security.Cryptography.Algorithms": "4.3.0",
  3384. "System.Security.Cryptography.Cng": "4.3.0",
  3385. "System.Security.Cryptography.Csp": "4.3.0",
  3386. "System.Security.Cryptography.Encoding": "4.3.0",
  3387. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3388. "System.Security.Cryptography.Primitives": "4.3.0",
  3389. "System.Text.Encoding": "4.3.0",
  3390. "System.Threading": "4.3.0",
  3391. "runtime.native.System": "4.3.0",
  3392. "runtime.native.System.Net.Http": "4.3.0",
  3393. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3394. },
  3395. "compile": {
  3396. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {
  3397. "related": ".xml"
  3398. }
  3399. },
  3400. "runtimeTargets": {
  3401. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3402. "assetType": "runtime",
  3403. "rid": "unix"
  3404. },
  3405. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3406. "assetType": "runtime",
  3407. "rid": "win"
  3408. }
  3409. }
  3410. },
  3411. "System.Security.Cryptography.Xml/4.4.0": {
  3412. "type": "package",
  3413. "compile": {
  3414. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll": {
  3415. "related": ".xml"
  3416. }
  3417. },
  3418. "runtime": {
  3419. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll": {}
  3420. }
  3421. },
  3422. "System.Security.Permissions/4.7.0": {
  3423. "type": "package",
  3424. "dependencies": {
  3425. "System.Security.AccessControl": "4.7.0",
  3426. "System.Windows.Extensions": "4.7.0"
  3427. },
  3428. "compile": {
  3429. "ref/netcoreapp3.0/_._": {
  3430. "related": ".xml"
  3431. }
  3432. },
  3433. "runtime": {
  3434. "lib/netcoreapp3.0/System.Security.Permissions.dll": {
  3435. "related": ".xml"
  3436. }
  3437. }
  3438. },
  3439. "System.Security.Principal.Windows/4.7.0": {
  3440. "type": "package",
  3441. "compile": {
  3442. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {
  3443. "related": ".xml"
  3444. }
  3445. },
  3446. "runtime": {
  3447. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
  3448. "related": ".xml"
  3449. }
  3450. },
  3451. "runtimeTargets": {
  3452. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3453. "assetType": "runtime",
  3454. "rid": "unix"
  3455. },
  3456. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": {
  3457. "assetType": "runtime",
  3458. "rid": "win"
  3459. }
  3460. }
  3461. },
  3462. "System.Security.SecureString/4.3.0": {
  3463. "type": "package",
  3464. "dependencies": {
  3465. "Microsoft.NETCore.Platforms": "1.1.0",
  3466. "System.Resources.ResourceManager": "4.3.0",
  3467. "System.Runtime": "4.3.0",
  3468. "System.Runtime.Handles": "4.3.0",
  3469. "System.Runtime.InteropServices": "4.3.0",
  3470. "System.Security.Cryptography.Primitives": "4.3.0",
  3471. "System.Text.Encoding": "4.3.0",
  3472. "System.Threading": "4.3.0"
  3473. },
  3474. "compile": {
  3475. "ref/netstandard1.3/_._": {
  3476. "related": ".xml"
  3477. }
  3478. },
  3479. "runtimeTargets": {
  3480. "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll": {
  3481. "assetType": "runtime",
  3482. "rid": "unix"
  3483. },
  3484. "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll": {
  3485. "assetType": "runtime",
  3486. "rid": "win"
  3487. }
  3488. }
  3489. },
  3490. "System.Text.Encoding/4.3.0": {
  3491. "type": "package",
  3492. "dependencies": {
  3493. "Microsoft.NETCore.Platforms": "1.1.0",
  3494. "Microsoft.NETCore.Targets": "1.1.0",
  3495. "System.Runtime": "4.3.0"
  3496. },
  3497. "compile": {
  3498. "ref/netstandard1.3/System.Text.Encoding.dll": {
  3499. "related": ".xml"
  3500. }
  3501. }
  3502. },
  3503. "System.Text.Encoding.CodePages/4.7.0": {
  3504. "type": "package",
  3505. "dependencies": {
  3506. "Microsoft.NETCore.Platforms": "3.1.0"
  3507. },
  3508. "compile": {
  3509. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3510. "related": ".xml"
  3511. }
  3512. },
  3513. "runtime": {
  3514. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
  3515. "related": ".xml"
  3516. }
  3517. },
  3518. "runtimeTargets": {
  3519. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  3520. "assetType": "runtime",
  3521. "rid": "win"
  3522. }
  3523. }
  3524. },
  3525. "System.Text.Encoding.Extensions/4.3.0": {
  3526. "type": "package",
  3527. "dependencies": {
  3528. "Microsoft.NETCore.Platforms": "1.1.0",
  3529. "Microsoft.NETCore.Targets": "1.1.0",
  3530. "System.Runtime": "4.3.0",
  3531. "System.Text.Encoding": "4.3.0"
  3532. },
  3533. "compile": {
  3534. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {
  3535. "related": ".xml"
  3536. }
  3537. }
  3538. },
  3539. "System.Text.Encodings.Web/4.5.0": {
  3540. "type": "package",
  3541. "compile": {
  3542. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3543. "related": ".xml"
  3544. }
  3545. },
  3546. "runtime": {
  3547. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {
  3548. "related": ".xml"
  3549. }
  3550. }
  3551. },
  3552. "System.Text.RegularExpressions/4.3.0": {
  3553. "type": "package",
  3554. "dependencies": {
  3555. "System.Runtime": "4.3.0"
  3556. },
  3557. "compile": {
  3558. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  3559. },
  3560. "runtime": {
  3561. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3562. }
  3563. },
  3564. "System.Threading/4.3.0": {
  3565. "type": "package",
  3566. "dependencies": {
  3567. "System.Runtime": "4.3.0",
  3568. "System.Threading.Tasks": "4.3.0"
  3569. },
  3570. "compile": {
  3571. "ref/netstandard1.3/System.Threading.dll": {
  3572. "related": ".xml"
  3573. }
  3574. },
  3575. "runtime": {
  3576. "lib/netstandard1.3/System.Threading.dll": {}
  3577. }
  3578. },
  3579. "System.Threading.Tasks/4.3.0": {
  3580. "type": "package",
  3581. "dependencies": {
  3582. "Microsoft.NETCore.Platforms": "1.1.0",
  3583. "Microsoft.NETCore.Targets": "1.1.0",
  3584. "System.Runtime": "4.3.0"
  3585. },
  3586. "compile": {
  3587. "ref/netstandard1.3/System.Threading.Tasks.dll": {
  3588. "related": ".xml"
  3589. }
  3590. }
  3591. },
  3592. "System.Threading.Tasks.Extensions/4.5.4": {
  3593. "type": "package",
  3594. "compile": {
  3595. "ref/netcoreapp2.1/_._": {}
  3596. },
  3597. "runtime": {
  3598. "lib/netcoreapp2.1/_._": {}
  3599. }
  3600. },
  3601. "System.Threading.Timer/4.3.0": {
  3602. "type": "package",
  3603. "dependencies": {
  3604. "Microsoft.NETCore.Platforms": "1.1.0",
  3605. "Microsoft.NETCore.Targets": "1.1.0",
  3606. "System.Runtime": "4.3.0"
  3607. },
  3608. "compile": {
  3609. "ref/netstandard1.2/System.Threading.Timer.dll": {
  3610. "related": ".xml"
  3611. }
  3612. }
  3613. },
  3614. "System.Windows.Extensions/4.7.0": {
  3615. "type": "package",
  3616. "dependencies": {
  3617. "System.Drawing.Common": "4.7.0"
  3618. },
  3619. "compile": {
  3620. "ref/netcoreapp3.0/_._": {
  3621. "related": ".xml"
  3622. }
  3623. },
  3624. "runtime": {
  3625. "lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3626. "related": ".xml"
  3627. }
  3628. },
  3629. "runtimeTargets": {
  3630. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": {
  3631. "assetType": "runtime",
  3632. "rid": "win"
  3633. }
  3634. }
  3635. },
  3636. "System.Xml.ReaderWriter/4.3.0": {
  3637. "type": "package",
  3638. "dependencies": {
  3639. "System.Collections": "4.3.0",
  3640. "System.Diagnostics.Debug": "4.3.0",
  3641. "System.Globalization": "4.3.0",
  3642. "System.IO": "4.3.0",
  3643. "System.IO.FileSystem": "4.3.0",
  3644. "System.IO.FileSystem.Primitives": "4.3.0",
  3645. "System.Resources.ResourceManager": "4.3.0",
  3646. "System.Runtime": "4.3.0",
  3647. "System.Runtime.Extensions": "4.3.0",
  3648. "System.Runtime.InteropServices": "4.3.0",
  3649. "System.Text.Encoding": "4.3.0",
  3650. "System.Text.Encoding.Extensions": "4.3.0",
  3651. "System.Text.RegularExpressions": "4.3.0",
  3652. "System.Threading.Tasks": "4.3.0",
  3653. "System.Threading.Tasks.Extensions": "4.3.0"
  3654. },
  3655. "compile": {
  3656. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {
  3657. "related": ".xml"
  3658. }
  3659. },
  3660. "runtime": {
  3661. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3662. }
  3663. },
  3664. "System.Xml.XDocument/4.3.0": {
  3665. "type": "package",
  3666. "dependencies": {
  3667. "System.Collections": "4.3.0",
  3668. "System.Diagnostics.Debug": "4.3.0",
  3669. "System.Diagnostics.Tools": "4.3.0",
  3670. "System.Globalization": "4.3.0",
  3671. "System.IO": "4.3.0",
  3672. "System.Reflection": "4.3.0",
  3673. "System.Resources.ResourceManager": "4.3.0",
  3674. "System.Runtime": "4.3.0",
  3675. "System.Runtime.Extensions": "4.3.0",
  3676. "System.Text.Encoding": "4.3.0",
  3677. "System.Threading": "4.3.0",
  3678. "System.Xml.ReaderWriter": "4.3.0"
  3679. },
  3680. "compile": {
  3681. "ref/netstandard1.3/System.Xml.XDocument.dll": {
  3682. "related": ".xml"
  3683. }
  3684. },
  3685. "runtime": {
  3686. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3687. }
  3688. },
  3689. "System.Xml.XmlDocument/4.3.0": {
  3690. "type": "package",
  3691. "dependencies": {
  3692. "System.Collections": "4.3.0",
  3693. "System.Diagnostics.Debug": "4.3.0",
  3694. "System.Globalization": "4.3.0",
  3695. "System.IO": "4.3.0",
  3696. "System.Resources.ResourceManager": "4.3.0",
  3697. "System.Runtime": "4.3.0",
  3698. "System.Runtime.Extensions": "4.3.0",
  3699. "System.Text.Encoding": "4.3.0",
  3700. "System.Threading": "4.3.0",
  3701. "System.Xml.ReaderWriter": "4.3.0"
  3702. },
  3703. "compile": {
  3704. "ref/netstandard1.3/_._": {
  3705. "related": ".xml"
  3706. }
  3707. },
  3708. "runtime": {
  3709. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3710. }
  3711. },
  3712. "System.Xml.XmlSerializer/4.3.0": {
  3713. "type": "package",
  3714. "dependencies": {
  3715. "System.Collections": "4.3.0",
  3716. "System.Globalization": "4.3.0",
  3717. "System.IO": "4.3.0",
  3718. "System.Linq": "4.3.0",
  3719. "System.Reflection": "4.3.0",
  3720. "System.Reflection.Emit": "4.3.0",
  3721. "System.Reflection.Emit.ILGeneration": "4.3.0",
  3722. "System.Reflection.Extensions": "4.3.0",
  3723. "System.Reflection.Primitives": "4.3.0",
  3724. "System.Reflection.TypeExtensions": "4.3.0",
  3725. "System.Resources.ResourceManager": "4.3.0",
  3726. "System.Runtime": "4.3.0",
  3727. "System.Runtime.Extensions": "4.3.0",
  3728. "System.Text.RegularExpressions": "4.3.0",
  3729. "System.Threading": "4.3.0",
  3730. "System.Xml.ReaderWriter": "4.3.0",
  3731. "System.Xml.XmlDocument": "4.3.0"
  3732. },
  3733. "compile": {
  3734. "ref/netstandard1.3/_._": {
  3735. "related": ".xml"
  3736. }
  3737. },
  3738. "runtime": {
  3739. "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {}
  3740. }
  3741. },
  3742. "Karsha_Site.Application/1.0.0": {
  3743. "type": "project",
  3744. "framework": ".NETCoreApp,Version=v5.0",
  3745. "dependencies": {
  3746. "Karsha_Site.Common": "1.0.0",
  3747. "Karsha_Site.Domain": "1.0.0",
  3748. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  3749. "Microsoft.AspNetCore.Http.Features": "5.0.17",
  3750. "Microsoft.EntityFrameworkCore": "5.0.0"
  3751. },
  3752. "compile": {
  3753. "bin/placeholder/Karsha_Site.Application.dll": {}
  3754. },
  3755. "runtime": {
  3756. "bin/placeholder/Karsha_Site.Application.dll": {}
  3757. }
  3758. },
  3759. "Karsha_Site.Common/1.0.0": {
  3760. "type": "project",
  3761. "framework": ".NETCoreApp,Version=v5.0",
  3762. "dependencies": {
  3763. "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0",
  3764. "Microsoft.AspNetCore.Http.Features": "5.0.17"
  3765. },
  3766. "compile": {
  3767. "bin/placeholder/Karsha_Site.Common.dll": {}
  3768. },
  3769. "runtime": {
  3770. "bin/placeholder/Karsha_Site.Common.dll": {}
  3771. }
  3772. },
  3773. "Karsha_Site.Domain/1.0.0": {
  3774. "type": "project",
  3775. "framework": ".NETCoreApp,Version=v5.0",
  3776. "compile": {
  3777. "bin/placeholder/Karsha_Site.Domain.dll": {}
  3778. },
  3779. "runtime": {
  3780. "bin/placeholder/Karsha_Site.Domain.dll": {}
  3781. }
  3782. },
  3783. "Karsha_Site.Persistance/1.0.0": {
  3784. "type": "project",
  3785. "framework": ".NETCoreApp,Version=v5.0",
  3786. "dependencies": {
  3787. "Karsha_Site.Application": "1.0.0",
  3788. "Microsoft.EntityFrameworkCore": "5.0.0",
  3789. "Microsoft.EntityFrameworkCore.Relational": "5.0.0",
  3790. "Microsoft.EntityFrameworkCore.SqlServer": "5.0.0"
  3791. },
  3792. "compile": {
  3793. "bin/placeholder/Karsha_Site.Persistance.dll": {}
  3794. },
  3795. "runtime": {
  3796. "bin/placeholder/Karsha_Site.Persistance.dll": {}
  3797. }
  3798. }
  3799. }
  3800. },
  3801. "libraries": {
  3802. "Humanizer.Core/2.8.26": {
  3803. "sha512": "OiKusGL20vby4uDEswj2IgkdchC1yQ6rwbIkZDVBPIR6al2b7n3pC91elBul9q33KaBgRKhbZH3+2Ur4fnWx2A==",
  3804. "type": "package",
  3805. "path": "humanizer.core/2.8.26",
  3806. "files": [
  3807. ".nupkg.metadata",
  3808. ".signature.p7s",
  3809. "humanizer.core.2.8.26.nupkg.sha512",
  3810. "humanizer.core.nuspec",
  3811. "lib/netstandard1.0/Humanizer.dll",
  3812. "lib/netstandard1.0/Humanizer.xml",
  3813. "lib/netstandard2.0/Humanizer.dll",
  3814. "lib/netstandard2.0/Humanizer.xml",
  3815. "logo.png"
  3816. ]
  3817. },
  3818. "LazZiya.TagHelpers/2.2.0": {
  3819. "sha512": "aySYiBe3TxbRY2uOHtM3Pkpoohkz/gV8JlKhLYXXPnZPFuZrrQlTg/BGw2bo/oIeZpSkiZ0ByPPdzcxoiJf1jg==",
  3820. "type": "package",
  3821. "path": "lazziya.taghelpers/2.2.0",
  3822. "files": [
  3823. ".nupkg.metadata",
  3824. ".signature.p7s",
  3825. "lazziya.taghelpers.2.2.0.nupkg.sha512",
  3826. "lazziya.taghelpers.nuspec",
  3827. "lib/netcoreapp1.0/LazZiya.TagHelpers.dll",
  3828. "lib/netcoreapp1.0/LazZiya.TagHelpers.xml",
  3829. "lib/netcoreapp1.1/LazZiya.TagHelpers.dll",
  3830. "lib/netcoreapp2.0/LazZiya.TagHelpers.dll",
  3831. "lib/netcoreapp2.1/LazZiya.TagHelpers.dll",
  3832. "lib/netcoreapp2.2/LazZiya.TagHelpers.dll",
  3833. "license.txt"
  3834. ]
  3835. },
  3836. "Microsoft.AspNetCore.Antiforgery/2.0.0": {
  3837. "sha512": "BFdjKs38tu7UEHhe1eyZ340+oVfusWhtYGGrOKB/JmjAO8nfaF3NrT6oGUVyXGaZzWxTsdJr9BhsEEN/GoQxkQ==",
  3838. "type": "package",
  3839. "path": "microsoft.aspnetcore.antiforgery/2.0.0",
  3840. "files": [
  3841. ".nupkg.metadata",
  3842. ".signature.p7s",
  3843. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll",
  3844. "lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.xml",
  3845. "microsoft.aspnetcore.antiforgery.2.0.0.nupkg.sha512",
  3846. "microsoft.aspnetcore.antiforgery.nuspec"
  3847. ]
  3848. },
  3849. "Microsoft.AspNetCore.Authentication.Abstractions/2.0.0": {
  3850. "sha512": "eDrNQlYPL5lw8DXMlEvo61VhkZ9DFq9/8Fds8+aaMa4nMtIJvwEwbFyYfJ+Zblh/8NNBkDQHkDD1p4i3g0HFWg==",
  3851. "type": "package",
  3852. "path": "microsoft.aspnetcore.authentication.abstractions/2.0.0",
  3853. "files": [
  3854. ".nupkg.metadata",
  3855. ".signature.p7s",
  3856. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.dll",
  3857. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Abstractions.xml",
  3858. "microsoft.aspnetcore.authentication.abstractions.2.0.0.nupkg.sha512",
  3859. "microsoft.aspnetcore.authentication.abstractions.nuspec"
  3860. ]
  3861. },
  3862. "Microsoft.AspNetCore.Authentication.Core/2.0.0": {
  3863. "sha512": "fO3HRV8+8trdBvi0zpQBu/TtoK//JC4fdeREud08589wxc8+mkP9gzXuLMMst88fa5EkjPeIGEnc2OvRpOLyMw==",
  3864. "type": "package",
  3865. "path": "microsoft.aspnetcore.authentication.core/2.0.0",
  3866. "files": [
  3867. ".nupkg.metadata",
  3868. ".signature.p7s",
  3869. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.dll",
  3870. "lib/netstandard2.0/Microsoft.AspNetCore.Authentication.Core.xml",
  3871. "microsoft.aspnetcore.authentication.core.2.0.0.nupkg.sha512",
  3872. "microsoft.aspnetcore.authentication.core.nuspec"
  3873. ]
  3874. },
  3875. "Microsoft.AspNetCore.Authorization/2.0.0": {
  3876. "sha512": "jyU6UjcqHmuzuzqUsmpgMXHbnybaPcNYKDEHHaCJ1YhIiSlStb1bGy7L0IDViqdZWmiRi3UPjdIMkaU6FbuDag==",
  3877. "type": "package",
  3878. "path": "microsoft.aspnetcore.authorization/2.0.0",
  3879. "files": [
  3880. ".nupkg.metadata",
  3881. ".signature.p7s",
  3882. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
  3883. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
  3884. "microsoft.aspnetcore.authorization.2.0.0.nupkg.sha512",
  3885. "microsoft.aspnetcore.authorization.nuspec"
  3886. ]
  3887. },
  3888. "Microsoft.AspNetCore.Authorization.Policy/2.0.0": {
  3889. "sha512": "pICwOI/LptLrTIa4eYeYglODNYuk5tsEm/4Ny5utvy5cu6H+Jm5wYBGbPUEPLqRTQX/2SJcnBEZA2gZYBlubYw==",
  3890. "type": "package",
  3891. "path": "microsoft.aspnetcore.authorization.policy/2.0.0",
  3892. "files": [
  3893. ".nupkg.metadata",
  3894. ".signature.p7s",
  3895. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.dll",
  3896. "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.Policy.xml",
  3897. "microsoft.aspnetcore.authorization.policy.2.0.0.nupkg.sha512",
  3898. "microsoft.aspnetcore.authorization.policy.nuspec"
  3899. ]
  3900. },
  3901. "Microsoft.AspNetCore.Cryptography.Internal/2.0.0": {
  3902. "sha512": "SY6GQyZZ5o09rqFmy3nhyJzx3lkFDBl0wO2Kb7EoLCPyH6dC7KB+QXysHfa9P5jHPiYB9VEkcQ9H7kQKcXQ1sw==",
  3903. "type": "package",
  3904. "path": "microsoft.aspnetcore.cryptography.internal/2.0.0",
  3905. "files": [
  3906. ".nupkg.metadata",
  3907. ".signature.p7s",
  3908. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3909. "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3910. "microsoft.aspnetcore.cryptography.internal.2.0.0.nupkg.sha512",
  3911. "microsoft.aspnetcore.cryptography.internal.nuspec"
  3912. ]
  3913. },
  3914. "Microsoft.AspNetCore.DataProtection/2.0.0": {
  3915. "sha512": "CjRLA26BpKrzBqpw1g9F3rGYNGisPd+zsnYdpJbHsjH4iIbi/OHfgKzGdHZCwmfQWrlL4e8Q0SpS+DMvgf6Jpg==",
  3916. "type": "package",
  3917. "path": "microsoft.aspnetcore.dataprotection/2.0.0",
  3918. "files": [
  3919. ".nupkg.metadata",
  3920. ".signature.p7s",
  3921. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.dll",
  3922. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.xml",
  3923. "microsoft.aspnetcore.dataprotection.2.0.0.nupkg.sha512",
  3924. "microsoft.aspnetcore.dataprotection.nuspec"
  3925. ]
  3926. },
  3927. "Microsoft.AspNetCore.DataProtection.Abstractions/2.0.0": {
  3928. "sha512": "BiFPWLZTKw253oQ5lAXcCkFkNFSRNi8fDCUB2yOTQyuYVMR8pnBAhVJ37o/E6bnuFYrE6eFCU4iDYrShmBIBYA==",
  3929. "type": "package",
  3930. "path": "microsoft.aspnetcore.dataprotection.abstractions/2.0.0",
  3931. "files": [
  3932. ".nupkg.metadata",
  3933. ".signature.p7s",
  3934. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  3935. "lib/netstandard2.0/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  3936. "microsoft.aspnetcore.dataprotection.abstractions.2.0.0.nupkg.sha512",
  3937. "microsoft.aspnetcore.dataprotection.abstractions.nuspec"
  3938. ]
  3939. },
  3940. "Microsoft.AspNetCore.Diagnostics.Abstractions/2.0.0": {
  3941. "sha512": "HSeShQlUPT9A2rQNYTaoXldpJKXU8+IArW37f86RNmhLPNisewOhy0khfJUS4viFj1H3TqPs1vaOj6fAcV4pBA==",
  3942. "type": "package",
  3943. "path": "microsoft.aspnetcore.diagnostics.abstractions/2.0.0",
  3944. "files": [
  3945. ".nupkg.metadata",
  3946. ".signature.p7s",
  3947. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
  3948. "lib/netstandard2.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml",
  3949. "microsoft.aspnetcore.diagnostics.abstractions.2.0.0.nupkg.sha512",
  3950. "microsoft.aspnetcore.diagnostics.abstractions.nuspec"
  3951. ]
  3952. },
  3953. "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": {
  3954. "sha512": "ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==",
  3955. "type": "package",
  3956. "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0",
  3957. "files": [
  3958. ".nupkg.metadata",
  3959. ".signature.p7s",
  3960. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  3961. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  3962. "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
  3963. "microsoft.aspnetcore.hosting.abstractions.nuspec"
  3964. ]
  3965. },
  3966. "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": {
  3967. "sha512": "1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==",
  3968. "type": "package",
  3969. "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0",
  3970. "files": [
  3971. ".nupkg.metadata",
  3972. ".signature.p7s",
  3973. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  3974. "lib/netstandard2.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  3975. "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
  3976. "microsoft.aspnetcore.hosting.server.abstractions.nuspec"
  3977. ]
  3978. },
  3979. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  3980. "sha512": "Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==",
  3981. "type": "package",
  3982. "path": "microsoft.aspnetcore.html.abstractions/2.2.0",
  3983. "files": [
  3984. ".nupkg.metadata",
  3985. ".signature.p7s",
  3986. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  3987. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml",
  3988. "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
  3989. "microsoft.aspnetcore.html.abstractions.nuspec"
  3990. ]
  3991. },
  3992. "Microsoft.AspNetCore.Http/2.0.0": {
  3993. "sha512": "2YNhcHrGxo2YufA8TYGyaEMIJwikyisZqEzHCRpIuI0D6ZXkA47U/3NJg2r/x5/gGHNM3TXO7DsqH88qRda+yg==",
  3994. "type": "package",
  3995. "path": "microsoft.aspnetcore.http/2.0.0",
  3996. "files": [
  3997. ".nupkg.metadata",
  3998. ".signature.p7s",
  3999. "lib/netstandard2.0/Microsoft.AspNetCore.Http.dll",
  4000. "lib/netstandard2.0/Microsoft.AspNetCore.Http.xml",
  4001. "microsoft.aspnetcore.http.2.0.0.nupkg.sha512",
  4002. "microsoft.aspnetcore.http.nuspec"
  4003. ]
  4004. },
  4005. "Microsoft.AspNetCore.Http.Abstractions/2.2.0": {
  4006. "sha512": "Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==",
  4007. "type": "package",
  4008. "path": "microsoft.aspnetcore.http.abstractions/2.2.0",
  4009. "files": [
  4010. ".nupkg.metadata",
  4011. ".signature.p7s",
  4012. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.dll",
  4013. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Abstractions.xml",
  4014. "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
  4015. "microsoft.aspnetcore.http.abstractions.nuspec"
  4016. ]
  4017. },
  4018. "Microsoft.AspNetCore.Http.Extensions/2.2.0": {
  4019. "sha512": "2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==",
  4020. "type": "package",
  4021. "path": "microsoft.aspnetcore.http.extensions/2.2.0",
  4022. "files": [
  4023. ".nupkg.metadata",
  4024. ".signature.p7s",
  4025. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.dll",
  4026. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Extensions.xml",
  4027. "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
  4028. "microsoft.aspnetcore.http.extensions.nuspec"
  4029. ]
  4030. },
  4031. "Microsoft.AspNetCore.Http.Features/5.0.17": {
  4032. "sha512": "3jG2xS+dx8DDCGV/F+STdPTg89lX3ao3dF/VEPvJaz3wzBIjuadipTtYNEXDIVuOPZwb6jdmhrX9jkzOIBm5cw==",
  4033. "type": "package",
  4034. "path": "microsoft.aspnetcore.http.features/5.0.17",
  4035. "files": [
  4036. ".nupkg.metadata",
  4037. ".signature.p7s",
  4038. "Icon.png",
  4039. "THIRD-PARTY-NOTICES.TXT",
  4040. "lib/net461/Microsoft.AspNetCore.Http.Features.dll",
  4041. "lib/net461/Microsoft.AspNetCore.Http.Features.xml",
  4042. "lib/net5.0/Microsoft.AspNetCore.Http.Features.dll",
  4043. "lib/net5.0/Microsoft.AspNetCore.Http.Features.xml",
  4044. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.dll",
  4045. "lib/netstandard2.0/Microsoft.AspNetCore.Http.Features.xml",
  4046. "microsoft.aspnetcore.http.features.5.0.17.nupkg.sha512",
  4047. "microsoft.aspnetcore.http.features.nuspec"
  4048. ]
  4049. },
  4050. "Microsoft.AspNetCore.JsonPatch/2.0.0": {
  4051. "sha512": "US78cfi7nrPTXeONgcSWbgrUBLs1Aca4kCJTieWXDLg0G0gwmdfPbd6S3c5TdJRQdA69K3UhPAs9r9ZAMjIFAA==",
  4052. "type": "package",
  4053. "path": "microsoft.aspnetcore.jsonpatch/2.0.0",
  4054. "files": [
  4055. ".nupkg.metadata",
  4056. ".signature.p7s",
  4057. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.dll",
  4058. "lib/netstandard2.0/Microsoft.AspNetCore.JsonPatch.xml",
  4059. "microsoft.aspnetcore.jsonpatch.2.0.0.nupkg.sha512",
  4060. "microsoft.aspnetcore.jsonpatch.nuspec"
  4061. ]
  4062. },
  4063. "Microsoft.AspNetCore.Localization/1.0.0": {
  4064. "sha512": "DF/maMd9f6ZPoTlU8n6/AGm3fpZNPiiip34bPrBQuloX2a5O0KwyV72qKhJhJNqmVVnDnTu8XYT16ysoFXRxQA==",
  4065. "type": "package",
  4066. "path": "microsoft.aspnetcore.localization/1.0.0",
  4067. "files": [
  4068. ".nupkg.metadata",
  4069. "lib/net451/Microsoft.AspNetCore.Localization.dll",
  4070. "lib/net451/Microsoft.AspNetCore.Localization.xml",
  4071. "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll",
  4072. "lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml",
  4073. "microsoft.aspnetcore.localization.1.0.0.nupkg.sha512",
  4074. "microsoft.aspnetcore.localization.nuspec"
  4075. ]
  4076. },
  4077. "Microsoft.AspNetCore.Mvc.Abstractions/2.0.0": {
  4078. "sha512": "SnotrRhgn/Z1yse9vOSiRLy0FfZ7l+84zBYM9XitShM4rFJuKxNvZK2Hf0pacNvVvUzgJ1Ab88Np4D1Gi1Stcg==",
  4079. "type": "package",
  4080. "path": "microsoft.aspnetcore.mvc.abstractions/2.0.0",
  4081. "files": [
  4082. ".nupkg.metadata",
  4083. ".signature.p7s",
  4084. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  4085. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Abstractions.xml",
  4086. "microsoft.aspnetcore.mvc.abstractions.2.0.0.nupkg.sha512",
  4087. "microsoft.aspnetcore.mvc.abstractions.nuspec"
  4088. ]
  4089. },
  4090. "Microsoft.AspNetCore.Mvc.Core/2.0.0": {
  4091. "sha512": "VQTTuotnhiLwE6CJHldwIm2UgVEy6BEijdHv09P8VpCv7bokds260bH74RA2Pjp975zqCd2BqVgXM0KSu+K1sw==",
  4092. "type": "package",
  4093. "path": "microsoft.aspnetcore.mvc.core/2.0.0",
  4094. "files": [
  4095. ".nupkg.metadata",
  4096. ".signature.p7s",
  4097. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.dll",
  4098. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Core.xml",
  4099. "microsoft.aspnetcore.mvc.core.2.0.0.nupkg.sha512",
  4100. "microsoft.aspnetcore.mvc.core.nuspec"
  4101. ]
  4102. },
  4103. "Microsoft.AspNetCore.Mvc.DataAnnotations/2.0.0": {
  4104. "sha512": "o2Oxu40COGl6w7jcsj6Hsdy6D7/xN7qWydudl+2kfqoo+jGzaxlbnGwzF9q/ppchSqcLhL/KfJXcyZU+t0PEuQ==",
  4105. "type": "package",
  4106. "path": "microsoft.aspnetcore.mvc.dataannotations/2.0.0",
  4107. "files": [
  4108. ".nupkg.metadata",
  4109. ".signature.p7s",
  4110. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  4111. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
  4112. "microsoft.aspnetcore.mvc.dataannotations.2.0.0.nupkg.sha512",
  4113. "microsoft.aspnetcore.mvc.dataannotations.nuspec"
  4114. ]
  4115. },
  4116. "Microsoft.AspNetCore.Mvc.Formatters.Json/2.0.0": {
  4117. "sha512": "o7Ska3CMy+MRmkLkYrL8qR8SyQNkhxAjTCLT3IjVK+lKOBhwpQwRWtEzSDex3sxFxdTmDDmOueMnlQ951OMDYQ==",
  4118. "type": "package",
  4119. "path": "microsoft.aspnetcore.mvc.formatters.json/2.0.0",
  4120. "files": [
  4121. ".nupkg.metadata",
  4122. ".signature.p7s",
  4123. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  4124. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
  4125. "microsoft.aspnetcore.mvc.formatters.json.2.0.0.nupkg.sha512",
  4126. "microsoft.aspnetcore.mvc.formatters.json.nuspec"
  4127. ]
  4128. },
  4129. "Microsoft.AspNetCore.Mvc.Razor/2.0.0": {
  4130. "sha512": "QRvitnAHnZ35MSt94uXG0tmmLb2bLnXb+iQXK9zoirMk+Kgh7FHO/gbA2tq+9LX6feUSTokK+K5XGIVSQRqTKA==",
  4131. "type": "package",
  4132. "path": "microsoft.aspnetcore.mvc.razor/2.0.0",
  4133. "files": [
  4134. ".nupkg.metadata",
  4135. ".signature.p7s",
  4136. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.dll",
  4137. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.xml",
  4138. "microsoft.aspnetcore.mvc.razor.2.0.0.nupkg.sha512",
  4139. "microsoft.aspnetcore.mvc.razor.nuspec"
  4140. ]
  4141. },
  4142. "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.0.0": {
  4143. "sha512": "QPGxE5tcyZK4AT46hiXJNWXF5CKzWe0E26mhox5fxIayqzbco9AjIlX68xdqGD6iKSLbJHXNPJjNe9CUFlIqwg==",
  4144. "type": "package",
  4145. "path": "microsoft.aspnetcore.mvc.razor.extensions/2.0.0",
  4146. "files": [
  4147. ".nupkg.metadata",
  4148. ".signature.p7s",
  4149. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  4150. "lib/net46/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  4151. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll",
  4152. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.xml",
  4153. "microsoft.aspnetcore.mvc.razor.extensions.2.0.0.nupkg.sha512",
  4154. "microsoft.aspnetcore.mvc.razor.extensions.nuspec"
  4155. ]
  4156. },
  4157. "Microsoft.AspNetCore.Mvc.TagHelpers/2.0.0": {
  4158. "sha512": "ca69I4LI7Myg7Pl7k1oocHSwoCqkuItapqjTZZQHaV+SE1R6pzzTEcCVtGLxoL95SGIC9/Y9Zx10PYtsGCQGYQ==",
  4159. "type": "package",
  4160. "path": "microsoft.aspnetcore.mvc.taghelpers/2.0.0",
  4161. "files": [
  4162. ".nupkg.metadata",
  4163. ".signature.p7s",
  4164. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.dll",
  4165. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.TagHelpers.xml",
  4166. "microsoft.aspnetcore.mvc.taghelpers.2.0.0.nupkg.sha512",
  4167. "microsoft.aspnetcore.mvc.taghelpers.nuspec"
  4168. ]
  4169. },
  4170. "Microsoft.AspNetCore.Mvc.ViewFeatures/2.0.0": {
  4171. "sha512": "7MB1ylS9Ax2xToeTDBNsmZSODV0EXfp86ebuUraBYLe2t5D0/qouWF84p1w7TR3WRStaLTBKkgQgPuBPpmFsSw==",
  4172. "type": "package",
  4173. "path": "microsoft.aspnetcore.mvc.viewfeatures/2.0.0",
  4174. "files": [
  4175. ".nupkg.metadata",
  4176. ".signature.p7s",
  4177. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  4178. "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
  4179. "microsoft.aspnetcore.mvc.viewfeatures.2.0.0.nupkg.sha512",
  4180. "microsoft.aspnetcore.mvc.viewfeatures.nuspec"
  4181. ]
  4182. },
  4183. "Microsoft.AspNetCore.Razor/2.2.0": {
  4184. "sha512": "V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==",
  4185. "type": "package",
  4186. "path": "microsoft.aspnetcore.razor/2.2.0",
  4187. "files": [
  4188. ".nupkg.metadata",
  4189. ".signature.p7s",
  4190. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll",
  4191. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml",
  4192. "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
  4193. "microsoft.aspnetcore.razor.nuspec"
  4194. ]
  4195. },
  4196. "Microsoft.AspNetCore.Razor.Language/5.0.0": {
  4197. "sha512": "6yOBBASGfXMx1fY6hyjvG+oM3eR8vovIehDdEZW7jAV4gKlY4xuAvTm7Iw1fEq7KPunh2VrJwo7oRK1XxUn1OQ==",
  4198. "type": "package",
  4199. "path": "microsoft.aspnetcore.razor.language/5.0.0",
  4200. "files": [
  4201. ".nupkg.metadata",
  4202. ".signature.p7s",
  4203. "Icon.png",
  4204. "THIRD-PARTY-NOTICES.TXT",
  4205. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  4206. "microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512",
  4207. "microsoft.aspnetcore.razor.language.nuspec"
  4208. ]
  4209. },
  4210. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  4211. "sha512": "7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==",
  4212. "type": "package",
  4213. "path": "microsoft.aspnetcore.razor.runtime/2.2.0",
  4214. "files": [
  4215. ".nupkg.metadata",
  4216. ".signature.p7s",
  4217. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll",
  4218. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml",
  4219. "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
  4220. "microsoft.aspnetcore.razor.runtime.nuspec"
  4221. ]
  4222. },
  4223. "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.0.0": {
  4224. "sha512": "4KhJcdcvrKEWq/BpBFKXHkcjOGbinI3UlPXeYNxC+MjfZIZ58L5HNyb2WWpBvzRPm6f4FjuTJQyhCi/sY9kJmg==",
  4225. "type": "package",
  4226. "path": "microsoft.aspnetcore.responsecaching.abstractions/2.0.0",
  4227. "files": [
  4228. ".nupkg.metadata",
  4229. ".signature.p7s",
  4230. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll",
  4231. "lib/netstandard2.0/Microsoft.AspNetCore.ResponseCaching.Abstractions.xml",
  4232. "microsoft.aspnetcore.responsecaching.abstractions.2.0.0.nupkg.sha512",
  4233. "microsoft.aspnetcore.responsecaching.abstractions.nuspec"
  4234. ]
  4235. },
  4236. "Microsoft.AspNetCore.Routing/2.2.0": {
  4237. "sha512": "jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==",
  4238. "type": "package",
  4239. "path": "microsoft.aspnetcore.routing/2.2.0",
  4240. "files": [
  4241. ".nupkg.metadata",
  4242. ".signature.p7s",
  4243. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.dll",
  4244. "lib/netcoreapp2.2/Microsoft.AspNetCore.Routing.xml",
  4245. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.dll",
  4246. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.xml",
  4247. "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
  4248. "microsoft.aspnetcore.routing.nuspec"
  4249. ]
  4250. },
  4251. "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": {
  4252. "sha512": "lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==",
  4253. "type": "package",
  4254. "path": "microsoft.aspnetcore.routing.abstractions/2.2.0",
  4255. "files": [
  4256. ".nupkg.metadata",
  4257. ".signature.p7s",
  4258. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4259. "lib/netstandard2.0/Microsoft.AspNetCore.Routing.Abstractions.xml",
  4260. "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
  4261. "microsoft.aspnetcore.routing.abstractions.nuspec"
  4262. ]
  4263. },
  4264. "Microsoft.AspNetCore.WebUtilities/2.0.0": {
  4265. "sha512": "RqDEwy7jdHJ0NunWydSzJrpODnsF7NPdB0KaRdG60H1bMEt4DbjcWkUb+XxjZ15uWCMi7clTQClpPuIFLwD1yQ==",
  4266. "type": "package",
  4267. "path": "microsoft.aspnetcore.webutilities/2.0.0",
  4268. "files": [
  4269. ".nupkg.metadata",
  4270. ".signature.p7s",
  4271. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.dll",
  4272. "lib/netstandard2.0/Microsoft.AspNetCore.WebUtilities.xml",
  4273. "microsoft.aspnetcore.webutilities.2.0.0.nupkg.sha512",
  4274. "microsoft.aspnetcore.webutilities.nuspec"
  4275. ]
  4276. },
  4277. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  4278. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  4279. "type": "package",
  4280. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  4281. "files": [
  4282. ".nupkg.metadata",
  4283. ".signature.p7s",
  4284. "Icon.png",
  4285. "LICENSE.TXT",
  4286. "THIRD-PARTY-NOTICES.TXT",
  4287. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  4288. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  4289. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4290. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  4291. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4292. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  4293. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  4294. "microsoft.bcl.asyncinterfaces.nuspec",
  4295. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  4296. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  4297. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  4298. "useSharedDesignerContext.txt",
  4299. "version.txt"
  4300. ]
  4301. },
  4302. "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
  4303. "sha512": "ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
  4304. "type": "package",
  4305. "path": "microsoft.codeanalysis.analyzers/3.0.0",
  4306. "hasTools": true,
  4307. "files": [
  4308. ".nupkg.metadata",
  4309. ".signature.p7s",
  4310. "EULA.rtf",
  4311. "ThirdPartyNotices.rtf",
  4312. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4313. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4314. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4315. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4316. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4317. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4318. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4319. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4320. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4321. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4322. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4323. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4324. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4325. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4326. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4327. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4328. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4329. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4330. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4331. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4332. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4333. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4334. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4335. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4336. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4337. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4338. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4339. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4340. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4341. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  4342. "build/Microsoft.CodeAnalysis.Analyzers.props",
  4343. "build/Microsoft.CodeAnalysis.Analyzers.targets",
  4344. "documentation/Analyzer Configuration.md",
  4345. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  4346. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  4347. "editorconfig/AllRulesDefault/.editorconfig",
  4348. "editorconfig/AllRulesDisabled/.editorconfig",
  4349. "editorconfig/AllRulesEnabled/.editorconfig",
  4350. "editorconfig/CorrectnessRulesDefault/.editorconfig",
  4351. "editorconfig/CorrectnessRulesEnabled/.editorconfig",
  4352. "editorconfig/DataflowRulesDefault/.editorconfig",
  4353. "editorconfig/DataflowRulesEnabled/.editorconfig",
  4354. "editorconfig/LibraryRulesDefault/.editorconfig",
  4355. "editorconfig/LibraryRulesEnabled/.editorconfig",
  4356. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
  4357. "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
  4358. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
  4359. "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
  4360. "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
  4361. "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
  4362. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
  4363. "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
  4364. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
  4365. "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
  4366. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
  4367. "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
  4368. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
  4369. "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
  4370. "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
  4371. "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
  4372. "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
  4373. "microsoft.codeanalysis.analyzers.nuspec",
  4374. "rulesets/AllRulesDefault.ruleset",
  4375. "rulesets/AllRulesDisabled.ruleset",
  4376. "rulesets/AllRulesEnabled.ruleset",
  4377. "rulesets/CorrectnessRulesDefault.ruleset",
  4378. "rulesets/CorrectnessRulesEnabled.ruleset",
  4379. "rulesets/DataflowRulesDefault.ruleset",
  4380. "rulesets/DataflowRulesEnabled.ruleset",
  4381. "rulesets/LibraryRulesDefault.ruleset",
  4382. "rulesets/LibraryRulesEnabled.ruleset",
  4383. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  4384. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  4385. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  4386. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  4387. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  4388. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  4389. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  4390. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  4391. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  4392. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  4393. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  4394. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  4395. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
  4396. "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
  4397. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  4398. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  4399. "tools/install.ps1",
  4400. "tools/uninstall.ps1"
  4401. ]
  4402. },
  4403. "Microsoft.CodeAnalysis.Common/3.8.0": {
  4404. "sha512": "8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
  4405. "type": "package",
  4406. "path": "microsoft.codeanalysis.common/3.8.0",
  4407. "files": [
  4408. ".nupkg.metadata",
  4409. ".signature.p7s",
  4410. "Icon.png",
  4411. "ThirdPartyNotices.rtf",
  4412. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
  4413. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
  4414. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
  4415. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
  4416. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
  4417. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
  4418. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
  4419. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
  4420. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
  4421. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
  4422. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
  4423. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4424. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
  4425. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
  4426. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4427. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4428. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  4429. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  4430. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  4431. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  4432. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  4433. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  4434. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  4435. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  4436. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  4437. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  4438. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  4439. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  4440. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  4441. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  4442. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  4443. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  4444. "microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
  4445. "microsoft.codeanalysis.common.nuspec"
  4446. ]
  4447. },
  4448. "Microsoft.CodeAnalysis.CSharp/3.8.0": {
  4449. "sha512": "hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
  4450. "type": "package",
  4451. "path": "microsoft.codeanalysis.csharp/3.8.0",
  4452. "files": [
  4453. ".nupkg.metadata",
  4454. ".signature.p7s",
  4455. "Icon.png",
  4456. "ThirdPartyNotices.rtf",
  4457. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
  4458. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
  4459. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
  4460. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4461. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4462. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4463. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4464. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4465. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4466. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4467. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4468. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4469. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4470. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4471. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4472. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4473. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  4474. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  4475. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  4476. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4477. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4478. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4479. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4480. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4481. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4482. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4483. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4484. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4485. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4486. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4487. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4488. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  4489. "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
  4490. "microsoft.codeanalysis.csharp.nuspec"
  4491. ]
  4492. },
  4493. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.8.0": {
  4494. "sha512": "rdEBvPWqe/IIscsnp7OkZ4tQin8khxBcSLyV9tU+sHdw9uW9U0GKL+Dv2rD4voC1bZBaO18Hp+m4Vkyfmaz0OA==",
  4495. "type": "package",
  4496. "path": "microsoft.codeanalysis.csharp.workspaces/3.8.0",
  4497. "files": [
  4498. ".nupkg.metadata",
  4499. ".signature.p7s",
  4500. "Icon.png",
  4501. "ThirdPartyNotices.rtf",
  4502. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  4503. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  4504. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  4505. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4506. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4507. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4508. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4509. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4510. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4511. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4512. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4513. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4514. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4515. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4516. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4517. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4518. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  4519. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  4520. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  4521. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4522. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4523. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4524. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4525. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4526. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4527. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4528. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4529. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4530. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4531. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4532. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4533. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  4534. "microsoft.codeanalysis.csharp.workspaces.3.8.0.nupkg.sha512",
  4535. "microsoft.codeanalysis.csharp.workspaces.nuspec"
  4536. ]
  4537. },
  4538. "Microsoft.CodeAnalysis.Razor/5.0.0": {
  4539. "sha512": "s4u/6z/MQ35y/egrXf4WgJlUZf5GGvuba9mZ700dH4XxLBrA9Fw9kFZ8uymoATry7hwz5owvFhBVo+2VnoiGRg==",
  4540. "type": "package",
  4541. "path": "microsoft.codeanalysis.razor/5.0.0",
  4542. "files": [
  4543. ".nupkg.metadata",
  4544. ".signature.p7s",
  4545. "Icon.png",
  4546. "THIRD-PARTY-NOTICES.TXT",
  4547. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  4548. "microsoft.codeanalysis.razor.5.0.0.nupkg.sha512",
  4549. "microsoft.codeanalysis.razor.nuspec"
  4550. ]
  4551. },
  4552. "Microsoft.CodeAnalysis.Workspaces.Common/3.8.0": {
  4553. "sha512": "GPYVydsmOmScOWDJA1LFky7/MkoXpx1JI3lZJShxC+bvVUvL9zVKE8WDZMLsYJ5MAbry2xkZftdfeMpZ+kvLDQ==",
  4554. "type": "package",
  4555. "path": "microsoft.codeanalysis.workspaces.common/3.8.0",
  4556. "files": [
  4557. ".nupkg.metadata",
  4558. ".signature.p7s",
  4559. "Icon.png",
  4560. "ThirdPartyNotices.rtf",
  4561. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll",
  4562. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb",
  4563. "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml",
  4564. "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4565. "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4566. "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4567. "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4568. "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4569. "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4570. "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4571. "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4572. "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4573. "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4574. "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4575. "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4576. "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4577. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
  4578. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  4579. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
  4580. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4581. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4582. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4583. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4584. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4585. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4586. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4587. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4588. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4589. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4590. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4591. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4592. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  4593. "microsoft.codeanalysis.workspaces.common.3.8.0.nupkg.sha512",
  4594. "microsoft.codeanalysis.workspaces.common.nuspec"
  4595. ]
  4596. },
  4597. "Microsoft.CSharp/4.7.0": {
  4598. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  4599. "type": "package",
  4600. "path": "microsoft.csharp/4.7.0",
  4601. "files": [
  4602. ".nupkg.metadata",
  4603. ".signature.p7s",
  4604. "LICENSE.TXT",
  4605. "Microsoft.CSharp.4.7.0.nupkg.sha512",
  4606. "Microsoft.CSharp.nuspec",
  4607. "THIRD-PARTY-NOTICES.TXT",
  4608. "lib/MonoAndroid10/_._",
  4609. "lib/MonoTouch10/_._",
  4610. "lib/net45/_._",
  4611. "lib/netcore50/Microsoft.CSharp.dll",
  4612. "lib/netcoreapp2.0/_._",
  4613. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4614. "lib/netstandard2.0/Microsoft.CSharp.dll",
  4615. "lib/netstandard2.0/Microsoft.CSharp.xml",
  4616. "lib/portable-net45+win8+wp8+wpa81/_._",
  4617. "lib/uap10.0.16299/_._",
  4618. "lib/win8/_._",
  4619. "lib/wp80/_._",
  4620. "lib/wpa81/_._",
  4621. "lib/xamarinios10/_._",
  4622. "lib/xamarinmac20/_._",
  4623. "lib/xamarintvos10/_._",
  4624. "lib/xamarinwatchos10/_._",
  4625. "ref/MonoAndroid10/_._",
  4626. "ref/MonoTouch10/_._",
  4627. "ref/net45/_._",
  4628. "ref/netcore50/Microsoft.CSharp.dll",
  4629. "ref/netcore50/Microsoft.CSharp.xml",
  4630. "ref/netcore50/de/Microsoft.CSharp.xml",
  4631. "ref/netcore50/es/Microsoft.CSharp.xml",
  4632. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4633. "ref/netcore50/it/Microsoft.CSharp.xml",
  4634. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4635. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4636. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4637. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4638. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4639. "ref/netcoreapp2.0/_._",
  4640. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4641. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4642. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4643. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4644. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4645. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4646. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4647. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4648. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4649. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4650. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4651. "ref/netstandard2.0/Microsoft.CSharp.dll",
  4652. "ref/netstandard2.0/Microsoft.CSharp.xml",
  4653. "ref/portable-net45+win8+wp8+wpa81/_._",
  4654. "ref/uap10.0.16299/_._",
  4655. "ref/win8/_._",
  4656. "ref/wp80/_._",
  4657. "ref/wpa81/_._",
  4658. "ref/xamarinios10/_._",
  4659. "ref/xamarinmac20/_._",
  4660. "ref/xamarintvos10/_._",
  4661. "ref/xamarinwatchos10/_._",
  4662. "useSharedDesignerContext.txt",
  4663. "version.txt"
  4664. ]
  4665. },
  4666. "Microsoft.Data.SqlClient/2.0.1": {
  4667. "sha512": "cff+ug/XZnGmX6DFgLY92t7G9W3i8r23w5Qnuby41l9rS+X+f7Y51hV5glvIrmsu3tIcnxbR+Z4CQ2zGhksIJw==",
  4668. "type": "package",
  4669. "path": "microsoft.data.sqlclient/2.0.1",
  4670. "files": [
  4671. ".nupkg.metadata",
  4672. ".signature.p7s",
  4673. "dotnet.png",
  4674. "lib/net46/Microsoft.Data.SqlClient.dll",
  4675. "lib/net46/Microsoft.Data.SqlClient.pdb",
  4676. "lib/net46/Microsoft.Data.SqlClient.xml",
  4677. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  4678. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  4679. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  4680. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  4681. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  4682. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  4683. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  4684. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  4685. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  4686. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  4687. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  4688. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  4689. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  4690. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  4691. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  4692. "lib/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  4693. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  4694. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  4695. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  4696. "microsoft.data.sqlclient.2.0.1.nupkg.sha512",
  4697. "microsoft.data.sqlclient.nuspec",
  4698. "ref/net46/Microsoft.Data.SqlClient.dll",
  4699. "ref/net46/Microsoft.Data.SqlClient.pdb",
  4700. "ref/net46/Microsoft.Data.SqlClient.xml",
  4701. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  4702. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  4703. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  4704. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  4705. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  4706. "ref/netcoreapp3.1/Microsoft.Data.SqlClient.xml",
  4707. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  4708. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  4709. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  4710. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  4711. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  4712. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  4713. "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  4714. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  4715. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  4716. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  4717. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  4718. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  4719. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  4720. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll",
  4721. "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.pdb",
  4722. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  4723. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb"
  4724. ]
  4725. },
  4726. "Microsoft.Data.SqlClient.SNI.runtime/2.0.1": {
  4727. "sha512": "MalWSIMdwLZoNXxjmFmeRrFgaUXbEADkYNGm6HM33pculFv8gKt53s1Frs+kTfVPWMYjocd4gqwz92KrkcLfXA==",
  4728. "type": "package",
  4729. "path": "microsoft.data.sqlclient.sni.runtime/2.0.1",
  4730. "files": [
  4731. ".nupkg.metadata",
  4732. ".signature.p7s",
  4733. "LICENSE.txt",
  4734. "dotnet.png",
  4735. "microsoft.data.sqlclient.sni.runtime.2.0.1.nupkg.sha512",
  4736. "microsoft.data.sqlclient.sni.runtime.nuspec",
  4737. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll",
  4738. "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.pdb",
  4739. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll",
  4740. "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.pdb",
  4741. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll",
  4742. "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.pdb",
  4743. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll",
  4744. "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.pdb"
  4745. ]
  4746. },
  4747. "Microsoft.DotNet.PlatformAbstractions/2.0.0": {
  4748. "sha512": "l5tDOSom+qpx4pDEoIcqMHnGC7jJ4Uq1DiJ6St/bn0rb5xIh/q4u7OQTIcE1k+1o7E0lYnJA4ZluzS6HGFr4zw==",
  4749. "type": "package",
  4750. "path": "microsoft.dotnet.platformabstractions/2.0.0",
  4751. "files": [
  4752. ".nupkg.metadata",
  4753. ".signature.p7s",
  4754. "LICENSE.TXT",
  4755. "THIRD-PARTY-NOTICES.TXT",
  4756. "lib/net45/Microsoft.DotNet.PlatformAbstractions.dll",
  4757. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll",
  4758. "microsoft.dotnet.platformabstractions.2.0.0.nupkg.sha512",
  4759. "microsoft.dotnet.platformabstractions.nuspec"
  4760. ]
  4761. },
  4762. "Microsoft.EntityFrameworkCore/5.0.0": {
  4763. "sha512": "QJk6pwN5wCriRdaNXQQxifeDNYephqqDMSXAQFX1nZjHwz/hChD0kDwklX20FexN9IAwQftepMbglcjwTX3l4Q==",
  4764. "type": "package",
  4765. "path": "microsoft.entityframeworkcore/5.0.0",
  4766. "files": [
  4767. ".nupkg.metadata",
  4768. ".signature.p7s",
  4769. "Icon.png",
  4770. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll",
  4771. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml",
  4772. "microsoft.entityframeworkcore.5.0.0.nupkg.sha512",
  4773. "microsoft.entityframeworkcore.nuspec"
  4774. ]
  4775. },
  4776. "Microsoft.EntityFrameworkCore.Abstractions/5.0.0": {
  4777. "sha512": "PCDiskNvB+1rs+d3ET0Itm3mPj6+CpFO7V1nPXfVL6ipS6+27vKs9mnEP4C8vTr2BhSpyvKQetp4Z0ktrqv+wg==",
  4778. "type": "package",
  4779. "path": "microsoft.entityframeworkcore.abstractions/5.0.0",
  4780. "files": [
  4781. ".nupkg.metadata",
  4782. ".signature.p7s",
  4783. "Icon.png",
  4784. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll",
  4785. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml",
  4786. "microsoft.entityframeworkcore.abstractions.5.0.0.nupkg.sha512",
  4787. "microsoft.entityframeworkcore.abstractions.nuspec"
  4788. ]
  4789. },
  4790. "Microsoft.EntityFrameworkCore.Analyzers/5.0.0": {
  4791. "sha512": "l1c/1ge8ymXgLqtstTyX3PZOLRuFo1jn0FQ9H4ag3Bwz70KTMyEOXwkKBZZ1gDlCibETrooflMis8wvvXFh5YQ==",
  4792. "type": "package",
  4793. "path": "microsoft.entityframeworkcore.analyzers/5.0.0",
  4794. "files": [
  4795. ".nupkg.metadata",
  4796. ".signature.p7s",
  4797. "Icon.png",
  4798. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  4799. "lib/netstandard2.0/_._",
  4800. "microsoft.entityframeworkcore.analyzers.5.0.0.nupkg.sha512",
  4801. "microsoft.entityframeworkcore.analyzers.nuspec"
  4802. ]
  4803. },
  4804. "Microsoft.EntityFrameworkCore.Design/5.0.0": {
  4805. "sha512": "kyd66aJDTZjpo4awTpJb6BOVGnhS/pZgD3O2JH1A9QhtE+0kqEVXJLpNN9CPfbKWERipXAEUyUadPHNclZCc3g==",
  4806. "type": "package",
  4807. "path": "microsoft.entityframeworkcore.design/5.0.0",
  4808. "files": [
  4809. ".nupkg.metadata",
  4810. ".signature.p7s",
  4811. "Icon.png",
  4812. "build/netcoreapp3.0/Microsoft.EntityFrameworkCore.Design.props",
  4813. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.dll",
  4814. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Design.xml",
  4815. "microsoft.entityframeworkcore.design.5.0.0.nupkg.sha512",
  4816. "microsoft.entityframeworkcore.design.nuspec"
  4817. ]
  4818. },
  4819. "Microsoft.EntityFrameworkCore.Relational/5.0.0": {
  4820. "sha512": "UMhoo0t3eii73AUwsvbGpYMGXS0ga/uA/cukgJza+IJ4EtcuNfdhGsA3emzf9nYpQ7urJzWzU6VOfG59h935Ag==",
  4821. "type": "package",
  4822. "path": "microsoft.entityframeworkcore.relational/5.0.0",
  4823. "files": [
  4824. ".nupkg.metadata",
  4825. ".signature.p7s",
  4826. "Icon.png",
  4827. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll",
  4828. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml",
  4829. "microsoft.entityframeworkcore.relational.5.0.0.nupkg.sha512",
  4830. "microsoft.entityframeworkcore.relational.nuspec"
  4831. ]
  4832. },
  4833. "Microsoft.EntityFrameworkCore.SqlServer/5.0.0": {
  4834. "sha512": "ChtvV0o7F1LsD1ek6pgADRJOzswf2YiPlqlEo0SZOfTp3daHgibp4JC9XXI/oXnQoUuRPuqMGtvgxuDXpr2xwQ==",
  4835. "type": "package",
  4836. "path": "microsoft.entityframeworkcore.sqlserver/5.0.0",
  4837. "files": [
  4838. ".nupkg.metadata",
  4839. ".signature.p7s",
  4840. "Icon.png",
  4841. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.dll",
  4842. "lib/netstandard2.1/Microsoft.EntityFrameworkCore.SqlServer.xml",
  4843. "microsoft.entityframeworkcore.sqlserver.5.0.0.nupkg.sha512",
  4844. "microsoft.entityframeworkcore.sqlserver.nuspec"
  4845. ]
  4846. },
  4847. "Microsoft.Extensions.Caching.Abstractions/5.0.0": {
  4848. "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==",
  4849. "type": "package",
  4850. "path": "microsoft.extensions.caching.abstractions/5.0.0",
  4851. "files": [
  4852. ".nupkg.metadata",
  4853. ".signature.p7s",
  4854. "Icon.png",
  4855. "LICENSE.TXT",
  4856. "THIRD-PARTY-NOTICES.TXT",
  4857. "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll",
  4858. "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml",
  4859. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4860. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  4861. "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512",
  4862. "microsoft.extensions.caching.abstractions.nuspec",
  4863. "useSharedDesignerContext.txt",
  4864. "version.txt"
  4865. ]
  4866. },
  4867. "Microsoft.Extensions.Caching.Memory/5.0.0": {
  4868. "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==",
  4869. "type": "package",
  4870. "path": "microsoft.extensions.caching.memory/5.0.0",
  4871. "files": [
  4872. ".nupkg.metadata",
  4873. ".signature.p7s",
  4874. "Icon.png",
  4875. "LICENSE.TXT",
  4876. "THIRD-PARTY-NOTICES.TXT",
  4877. "lib/net461/Microsoft.Extensions.Caching.Memory.dll",
  4878. "lib/net461/Microsoft.Extensions.Caching.Memory.xml",
  4879. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  4880. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  4881. "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512",
  4882. "microsoft.extensions.caching.memory.nuspec",
  4883. "useSharedDesignerContext.txt",
  4884. "version.txt"
  4885. ]
  4886. },
  4887. "Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
  4888. "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
  4889. "type": "package",
  4890. "path": "microsoft.extensions.configuration.abstractions/5.0.0",
  4891. "files": [
  4892. ".nupkg.metadata",
  4893. ".signature.p7s",
  4894. "Icon.png",
  4895. "LICENSE.TXT",
  4896. "THIRD-PARTY-NOTICES.TXT",
  4897. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
  4898. "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
  4899. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4900. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  4901. "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
  4902. "microsoft.extensions.configuration.abstractions.nuspec",
  4903. "useSharedDesignerContext.txt",
  4904. "version.txt"
  4905. ]
  4906. },
  4907. "Microsoft.Extensions.DependencyInjection/5.0.0": {
  4908. "sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
  4909. "type": "package",
  4910. "path": "microsoft.extensions.dependencyinjection/5.0.0",
  4911. "files": [
  4912. ".nupkg.metadata",
  4913. ".signature.p7s",
  4914. "Icon.png",
  4915. "LICENSE.TXT",
  4916. "THIRD-PARTY-NOTICES.TXT",
  4917. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  4918. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  4919. "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
  4920. "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
  4921. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  4922. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  4923. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  4924. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  4925. "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
  4926. "microsoft.extensions.dependencyinjection.nuspec",
  4927. "useSharedDesignerContext.txt",
  4928. "version.txt"
  4929. ]
  4930. },
  4931. "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
  4932. "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
  4933. "type": "package",
  4934. "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
  4935. "files": [
  4936. ".nupkg.metadata",
  4937. ".signature.p7s",
  4938. "Icon.png",
  4939. "LICENSE.TXT",
  4940. "THIRD-PARTY-NOTICES.TXT",
  4941. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4942. "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4943. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4944. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  4945. "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
  4946. "microsoft.extensions.dependencyinjection.abstractions.nuspec",
  4947. "useSharedDesignerContext.txt",
  4948. "version.txt"
  4949. ]
  4950. },
  4951. "Microsoft.Extensions.DependencyModel/2.0.0": {
  4952. "sha512": "DyZ/Ibv/SZRMpYhaDCj0nlA+Qe52NyEL51onxAL94bUPauX0jxrK6jyxXN5DI8NVbzE5sOUWZYjTduNqUdbB+g==",
  4953. "type": "package",
  4954. "path": "microsoft.extensions.dependencymodel/2.0.0",
  4955. "files": [
  4956. ".nupkg.metadata",
  4957. ".signature.p7s",
  4958. "LICENSE.TXT",
  4959. "THIRD-PARTY-NOTICES.TXT",
  4960. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  4961. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  4962. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll",
  4963. "microsoft.extensions.dependencymodel.2.0.0.nupkg.sha512",
  4964. "microsoft.extensions.dependencymodel.nuspec"
  4965. ]
  4966. },
  4967. "Microsoft.Extensions.FileProviders.Abstractions/2.2.0": {
  4968. "sha512": "EcnaSsPTqx2MGnHrmWOD0ugbuuqVT8iICqSqPzi45V5/MA1LjUNb0kwgcxBGqizV1R+WeBK7/Gw25Jzkyk9bIw==",
  4969. "type": "package",
  4970. "path": "microsoft.extensions.fileproviders.abstractions/2.2.0",
  4971. "files": [
  4972. ".nupkg.metadata",
  4973. ".signature.p7s",
  4974. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4975. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml",
  4976. "microsoft.extensions.fileproviders.abstractions.2.2.0.nupkg.sha512",
  4977. "microsoft.extensions.fileproviders.abstractions.nuspec"
  4978. ]
  4979. },
  4980. "Microsoft.Extensions.FileProviders.Composite/2.0.0": {
  4981. "sha512": "/Q95H1pFJuss7np9Pp6mKxg4ornSrBnrYwNkgHnW+YRqhjfaQLVgL+X+LN95M9YeGPNA4QHJDkbrqQ/n+jYc9g==",
  4982. "type": "package",
  4983. "path": "microsoft.extensions.fileproviders.composite/2.0.0",
  4984. "files": [
  4985. ".nupkg.metadata",
  4986. ".signature.p7s",
  4987. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.dll",
  4988. "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Composite.xml",
  4989. "microsoft.extensions.fileproviders.composite.2.0.0.nupkg.sha512",
  4990. "microsoft.extensions.fileproviders.composite.nuspec"
  4991. ]
  4992. },
  4993. "Microsoft.Extensions.FileSystemGlobbing/2.0.0": {
  4994. "sha512": "UC87vRDUB7/vSaNY/FVhbdAyRkfFBTkYmcUoglxk6TyTojhSqYaG5pZsoP4e1ZuXktFXJXJBTvK8U/QwCo0z3g==",
  4995. "type": "package",
  4996. "path": "microsoft.extensions.filesystemglobbing/2.0.0",
  4997. "files": [
  4998. ".nupkg.metadata",
  4999. ".signature.p7s",
  5000. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll",
  5001. "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml",
  5002. "microsoft.extensions.filesystemglobbing.2.0.0.nupkg.sha512",
  5003. "microsoft.extensions.filesystemglobbing.nuspec"
  5004. ]
  5005. },
  5006. "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0": {
  5007. "sha512": "nxGoN8o+4clQk103krYRqS5FVVCZc3Tlc09AYj4W8gZ9Q5Jxa2BLW7ss+ogKU/hvNSg2NkJyQTfi9SegGU6ssQ==",
  5008. "type": "package",
  5009. "path": "microsoft.extensions.globalization.cultureinfocache/1.0.0",
  5010. "files": [
  5011. ".nupkg.metadata",
  5012. "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll",
  5013. "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml",
  5014. "microsoft.extensions.globalization.cultureinfocache.1.0.0.nupkg.sha512",
  5015. "microsoft.extensions.globalization.cultureinfocache.nuspec"
  5016. ]
  5017. },
  5018. "Microsoft.Extensions.Hosting.Abstractions/2.2.0": {
  5019. "sha512": "+k4AEn68HOJat5gj1TWa6X28WlirNQO9sPIIeQbia+91n03esEtMSSoekSTpMjUzjqtJWQN3McVx0GvSPFHF/Q==",
  5020. "type": "package",
  5021. "path": "microsoft.extensions.hosting.abstractions/2.2.0",
  5022. "files": [
  5023. ".nupkg.metadata",
  5024. ".signature.p7s",
  5025. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll",
  5026. "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml",
  5027. "microsoft.extensions.hosting.abstractions.2.2.0.nupkg.sha512",
  5028. "microsoft.extensions.hosting.abstractions.nuspec"
  5029. ]
  5030. },
  5031. "Microsoft.Extensions.Localization/2.0.0": {
  5032. "sha512": "w0z3LORsHiJfHoYr4PedTsvHuFQjj+bOc4cbaqklsttlZzOUm4nexYZy6riuF2mGzgzEf/ZTi13hfkEkmmajRw==",
  5033. "type": "package",
  5034. "path": "microsoft.extensions.localization/2.0.0",
  5035. "files": [
  5036. ".nupkg.metadata",
  5037. ".signature.p7s",
  5038. "lib/netstandard2.0/Microsoft.Extensions.Localization.dll",
  5039. "lib/netstandard2.0/Microsoft.Extensions.Localization.xml",
  5040. "microsoft.extensions.localization.2.0.0.nupkg.sha512",
  5041. "microsoft.extensions.localization.nuspec"
  5042. ]
  5043. },
  5044. "Microsoft.Extensions.Localization.Abstractions/2.0.0": {
  5045. "sha512": "MkCH+LPSupHoI4W3K1tICHxk9sCfHQY2WAzRNSWOZQyyIFhvNfk8/f9cBY588w1ngi2lPipDaHKJtNQe0Pmeug==",
  5046. "type": "package",
  5047. "path": "microsoft.extensions.localization.abstractions/2.0.0",
  5048. "files": [
  5049. ".nupkg.metadata",
  5050. ".signature.p7s",
  5051. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll",
  5052. "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml",
  5053. "microsoft.extensions.localization.abstractions.2.0.0.nupkg.sha512",
  5054. "microsoft.extensions.localization.abstractions.nuspec"
  5055. ]
  5056. },
  5057. "Microsoft.Extensions.Logging/5.0.0": {
  5058. "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
  5059. "type": "package",
  5060. "path": "microsoft.extensions.logging/5.0.0",
  5061. "files": [
  5062. ".nupkg.metadata",
  5063. ".signature.p7s",
  5064. "Icon.png",
  5065. "LICENSE.TXT",
  5066. "THIRD-PARTY-NOTICES.TXT",
  5067. "lib/net461/Microsoft.Extensions.Logging.dll",
  5068. "lib/net461/Microsoft.Extensions.Logging.xml",
  5069. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  5070. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  5071. "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
  5072. "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
  5073. "microsoft.extensions.logging.5.0.0.nupkg.sha512",
  5074. "microsoft.extensions.logging.nuspec",
  5075. "useSharedDesignerContext.txt",
  5076. "version.txt"
  5077. ]
  5078. },
  5079. "Microsoft.Extensions.Logging.Abstractions/5.0.0": {
  5080. "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
  5081. "type": "package",
  5082. "path": "microsoft.extensions.logging.abstractions/5.0.0",
  5083. "files": [
  5084. ".nupkg.metadata",
  5085. ".signature.p7s",
  5086. "Icon.png",
  5087. "LICENSE.TXT",
  5088. "THIRD-PARTY-NOTICES.TXT",
  5089. "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
  5090. "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml",
  5091. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  5092. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  5093. "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
  5094. "microsoft.extensions.logging.abstractions.nuspec",
  5095. "useSharedDesignerContext.txt",
  5096. "version.txt"
  5097. ]
  5098. },
  5099. "Microsoft.Extensions.ObjectPool/2.2.0": {
  5100. "sha512": "gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==",
  5101. "type": "package",
  5102. "path": "microsoft.extensions.objectpool/2.2.0",
  5103. "files": [
  5104. ".nupkg.metadata",
  5105. ".signature.p7s",
  5106. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll",
  5107. "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml",
  5108. "microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
  5109. "microsoft.extensions.objectpool.nuspec"
  5110. ]
  5111. },
  5112. "Microsoft.Extensions.Options/5.0.0": {
  5113. "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
  5114. "type": "package",
  5115. "path": "microsoft.extensions.options/5.0.0",
  5116. "files": [
  5117. ".nupkg.metadata",
  5118. ".signature.p7s",
  5119. "Icon.png",
  5120. "LICENSE.TXT",
  5121. "THIRD-PARTY-NOTICES.TXT",
  5122. "lib/net461/Microsoft.Extensions.Options.dll",
  5123. "lib/net461/Microsoft.Extensions.Options.xml",
  5124. "lib/net5.0/Microsoft.Extensions.Options.dll",
  5125. "lib/net5.0/Microsoft.Extensions.Options.xml",
  5126. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  5127. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  5128. "microsoft.extensions.options.5.0.0.nupkg.sha512",
  5129. "microsoft.extensions.options.nuspec",
  5130. "useSharedDesignerContext.txt",
  5131. "version.txt"
  5132. ]
  5133. },
  5134. "Microsoft.Extensions.Primitives/5.0.1": {
  5135. "sha512": "5WPSmL4YeP7eW+Vc8XZ4DwjYWBAiSwDV9Hm63JJWcz1Ie3Xjv4KuJXzgCstj48LkLfVCYa7mLcx7y+q6yqVvtw==",
  5136. "type": "package",
  5137. "path": "microsoft.extensions.primitives/5.0.1",
  5138. "files": [
  5139. ".nupkg.metadata",
  5140. ".signature.p7s",
  5141. "Icon.png",
  5142. "LICENSE.TXT",
  5143. "THIRD-PARTY-NOTICES.TXT",
  5144. "lib/net461/Microsoft.Extensions.Primitives.dll",
  5145. "lib/net461/Microsoft.Extensions.Primitives.xml",
  5146. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
  5147. "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
  5148. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  5149. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  5150. "microsoft.extensions.primitives.5.0.1.nupkg.sha512",
  5151. "microsoft.extensions.primitives.nuspec",
  5152. "useSharedDesignerContext.txt",
  5153. "version.txt"
  5154. ]
  5155. },
  5156. "Microsoft.Extensions.WebEncoders/2.0.0": {
  5157. "sha512": "5lXmAmfMaVssZwruaPM5hgk7QfzL1dfAaPEw9Ex24wt/D3EPRt7kOqsZoJP3IhVBoccjsTj8DsFJHtQ8bZIFkA==",
  5158. "type": "package",
  5159. "path": "microsoft.extensions.webencoders/2.0.0",
  5160. "files": [
  5161. ".nupkg.metadata",
  5162. ".signature.p7s",
  5163. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.dll",
  5164. "lib/netstandard2.0/Microsoft.Extensions.WebEncoders.xml",
  5165. "microsoft.extensions.webencoders.2.0.0.nupkg.sha512",
  5166. "microsoft.extensions.webencoders.nuspec"
  5167. ]
  5168. },
  5169. "Microsoft.Identity.Client/4.14.0": {
  5170. "sha512": "Etqux6Zuuv1yEN4UwKbAn6EZv0Rooc+vM4N9z7gxmeT7dyoKlXIRN44DQPzD9LV1CW0KsTVqH+2B42p1NKqPlQ==",
  5171. "type": "package",
  5172. "path": "microsoft.identity.client/4.14.0",
  5173. "files": [
  5174. ".nupkg.metadata",
  5175. ".signature.p7s",
  5176. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  5177. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  5178. "lib/net45/Microsoft.Identity.Client.dll",
  5179. "lib/net45/Microsoft.Identity.Client.xml",
  5180. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  5181. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  5182. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  5183. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  5184. "lib/uap10.0/Microsoft.Identity.Client.dll",
  5185. "lib/uap10.0/Microsoft.Identity.Client.pri",
  5186. "lib/uap10.0/Microsoft.Identity.Client.xml",
  5187. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  5188. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  5189. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  5190. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  5191. "microsoft.identity.client.4.14.0.nupkg.sha512",
  5192. "microsoft.identity.client.nuspec",
  5193. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  5194. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  5195. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  5196. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  5197. "ref/net45/Microsoft.Identity.Client.dll",
  5198. "ref/net45/Microsoft.Identity.Client.xml",
  5199. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  5200. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  5201. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  5202. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  5203. "ref/uap10.0/Microsoft.Identity.Client.dll",
  5204. "ref/uap10.0/Microsoft.Identity.Client.xml",
  5205. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  5206. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  5207. ]
  5208. },
  5209. "Microsoft.IdentityModel.JsonWebTokens/5.6.0": {
  5210. "sha512": "0q0U1W+gX1jmfmv7uU7GXFGB518atmSwucxsVwPGpuaGS3jwd2tUi+Gau+ezxR6oAFEBFKG9lz/fxRZzGMeDXg==",
  5211. "type": "package",
  5212. "path": "microsoft.identitymodel.jsonwebtokens/5.6.0",
  5213. "files": [
  5214. ".nupkg.metadata",
  5215. ".signature.p7s",
  5216. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  5217. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  5218. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  5219. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  5220. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  5221. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  5222. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  5223. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  5224. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  5225. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  5226. "microsoft.identitymodel.jsonwebtokens.5.6.0.nupkg.sha512",
  5227. "microsoft.identitymodel.jsonwebtokens.nuspec"
  5228. ]
  5229. },
  5230. "Microsoft.IdentityModel.Logging/5.6.0": {
  5231. "sha512": "zEDrfEVW5x5w2hbTV94WwAcWvtue5hNTXYqoPh3ypF6U8csm09JazEYy+VPp2RtczkyMfcsvWY9Fea17e+isYQ==",
  5232. "type": "package",
  5233. "path": "microsoft.identitymodel.logging/5.6.0",
  5234. "files": [
  5235. ".nupkg.metadata",
  5236. ".signature.p7s",
  5237. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  5238. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  5239. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  5240. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  5241. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  5242. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  5243. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  5244. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  5245. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  5246. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  5247. "microsoft.identitymodel.logging.5.6.0.nupkg.sha512",
  5248. "microsoft.identitymodel.logging.nuspec"
  5249. ]
  5250. },
  5251. "Microsoft.IdentityModel.Protocols/5.6.0": {
  5252. "sha512": "ei7YqYx0pIFL6JjK8ZnPK0MXZRWUNHtJPUl3KqSvj9+2f5CMa6GRSEC+BMDHr17tP6yujYUg0IQOcKzmC7qN5g==",
  5253. "type": "package",
  5254. "path": "microsoft.identitymodel.protocols/5.6.0",
  5255. "files": [
  5256. ".nupkg.metadata",
  5257. ".signature.p7s",
  5258. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  5259. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  5260. "lib/net451/Microsoft.IdentityModel.Protocols.dll",
  5261. "lib/net451/Microsoft.IdentityModel.Protocols.xml",
  5262. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  5263. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  5264. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll",
  5265. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml",
  5266. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  5267. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  5268. "microsoft.identitymodel.protocols.5.6.0.nupkg.sha512",
  5269. "microsoft.identitymodel.protocols.nuspec"
  5270. ]
  5271. },
  5272. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.6.0": {
  5273. "sha512": "yh3n+uXiwpBy/5+t67tYcmRxb9kwQdaKRyG/DNipRMF37bg5Jr0vENOo1BQz6OySMl5WIK544SzPjtr7/KkucA==",
  5274. "type": "package",
  5275. "path": "microsoft.identitymodel.protocols.openidconnect/5.6.0",
  5276. "files": [
  5277. ".nupkg.metadata",
  5278. ".signature.p7s",
  5279. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5280. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5281. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5282. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5283. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5284. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5285. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5286. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5287. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  5288. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  5289. "microsoft.identitymodel.protocols.openidconnect.5.6.0.nupkg.sha512",
  5290. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  5291. ]
  5292. },
  5293. "Microsoft.IdentityModel.Tokens/5.6.0": {
  5294. "sha512": "C3OqR3QfBQ7wcC7yAsdMQqay87OsV6yWPYG/Ai3n7dvmWIGkouQhXoVxRP0xz3cAFL4hxZBXyw4aLTC421PaMg==",
  5295. "type": "package",
  5296. "path": "microsoft.identitymodel.tokens/5.6.0",
  5297. "files": [
  5298. ".nupkg.metadata",
  5299. ".signature.p7s",
  5300. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  5301. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  5302. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  5303. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  5304. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  5305. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  5306. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  5307. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  5308. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  5309. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  5310. "microsoft.identitymodel.tokens.5.6.0.nupkg.sha512",
  5311. "microsoft.identitymodel.tokens.nuspec"
  5312. ]
  5313. },
  5314. "Microsoft.Net.Http.Headers/2.2.0": {
  5315. "sha512": "iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==",
  5316. "type": "package",
  5317. "path": "microsoft.net.http.headers/2.2.0",
  5318. "files": [
  5319. ".nupkg.metadata",
  5320. ".signature.p7s",
  5321. "lib/netstandard2.0/Microsoft.Net.Http.Headers.dll",
  5322. "lib/netstandard2.0/Microsoft.Net.Http.Headers.xml",
  5323. "microsoft.net.http.headers.2.2.0.nupkg.sha512",
  5324. "microsoft.net.http.headers.nuspec"
  5325. ]
  5326. },
  5327. "Microsoft.NETCore.Platforms/3.1.0": {
  5328. "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==",
  5329. "type": "package",
  5330. "path": "microsoft.netcore.platforms/3.1.0",
  5331. "files": [
  5332. ".nupkg.metadata",
  5333. ".signature.p7s",
  5334. "LICENSE.TXT",
  5335. "THIRD-PARTY-NOTICES.TXT",
  5336. "lib/netstandard1.0/_._",
  5337. "microsoft.netcore.platforms.3.1.0.nupkg.sha512",
  5338. "microsoft.netcore.platforms.nuspec",
  5339. "runtime.json",
  5340. "useSharedDesignerContext.txt",
  5341. "version.txt"
  5342. ]
  5343. },
  5344. "Microsoft.NETCore.Targets/1.1.3": {
  5345. "sha512": "3Wrmi0kJDzClwAC+iBdUBpEKmEle8FQNsCs77fkiOIw/9oYA07bL1EZNX0kQ2OMN3xpwvl0vAtOCYY3ndDNlhQ==",
  5346. "type": "package",
  5347. "path": "microsoft.netcore.targets/1.1.3",
  5348. "files": [
  5349. ".nupkg.metadata",
  5350. ".signature.p7s",
  5351. "ThirdPartyNotices.txt",
  5352. "dotnet_library_license.txt",
  5353. "lib/netstandard1.0/_._",
  5354. "microsoft.netcore.targets.1.1.3.nupkg.sha512",
  5355. "microsoft.netcore.targets.nuspec",
  5356. "runtime.json"
  5357. ]
  5358. },
  5359. "Microsoft.VisualStudio.Web.CodeGeneration/5.0.2": {
  5360. "sha512": "YUah81QG5q/ViVbr1BZcTbDLNJ5/k84fr+xx3/IoDVJR8KEUm89HmPAGM+FMMyWOjit+CIVpyOq7yEmRBBWXxQ==",
  5361. "type": "package",
  5362. "path": "microsoft.visualstudio.web.codegeneration/5.0.2",
  5363. "files": [
  5364. ".nupkg.metadata",
  5365. ".signature.p7s",
  5366. "Icon.png",
  5367. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
  5368. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
  5369. "microsoft.visualstudio.web.codegeneration.5.0.2.nupkg.sha512",
  5370. "microsoft.visualstudio.web.codegeneration.nuspec"
  5371. ]
  5372. },
  5373. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/5.0.2": {
  5374. "sha512": "34v6AkkRJykgFq7rHwNbzXBsLFquevLuegM9XDQl2j+wyOfj+ql1++jUR1WdZoPkv04WoM09mD47S3lMzJmHrQ==",
  5375. "type": "package",
  5376. "path": "microsoft.visualstudio.web.codegeneration.contracts/5.0.2",
  5377. "files": [
  5378. ".nupkg.metadata",
  5379. ".signature.p7s",
  5380. "Icon.png",
  5381. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll",
  5382. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml",
  5383. "microsoft.visualstudio.web.codegeneration.contracts.5.0.2.nupkg.sha512",
  5384. "microsoft.visualstudio.web.codegeneration.contracts.nuspec"
  5385. ]
  5386. },
  5387. "Microsoft.VisualStudio.Web.CodeGeneration.Core/5.0.2": {
  5388. "sha512": "R7mrxvTtv/MiEH42OtHYi/3L0A/vaAH8mwg+3yAyQtVuy6v9CeeVyL30lfTQ7EYV4ezUmuQKFwfjcU6PP0/KSQ==",
  5389. "type": "package",
  5390. "path": "microsoft.visualstudio.web.codegeneration.core/5.0.2",
  5391. "files": [
  5392. ".nupkg.metadata",
  5393. ".signature.p7s",
  5394. "Icon.png",
  5395. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
  5396. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
  5397. "microsoft.visualstudio.web.codegeneration.core.5.0.2.nupkg.sha512",
  5398. "microsoft.visualstudio.web.codegeneration.core.nuspec"
  5399. ]
  5400. },
  5401. "Microsoft.VisualStudio.Web.CodeGeneration.Design/5.0.2": {
  5402. "sha512": "9eTZV7W+S2iO2AJD03xXyXJZ+Nf71Y25gMXhqyXb8bB63jPfn+VQhV8I1lb6J+NR3jW98m5EB9QBftBSrjgiYQ==",
  5403. "type": "package",
  5404. "path": "microsoft.visualstudio.web.codegeneration.design/5.0.2",
  5405. "files": [
  5406. ".nupkg.metadata",
  5407. ".signature.p7s",
  5408. "Icon.png",
  5409. "lib/net5.0/dotnet-aspnet-codegenerator-design.dll",
  5410. "lib/net5.0/dotnet-aspnet-codegenerator-design.xml",
  5411. "microsoft.visualstudio.web.codegeneration.design.5.0.2.nupkg.sha512",
  5412. "microsoft.visualstudio.web.codegeneration.design.nuspec",
  5413. "runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe",
  5414. "runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.xml",
  5415. "runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe",
  5416. "runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.xml"
  5417. ]
  5418. },
  5419. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/5.0.2": {
  5420. "sha512": "f9XeBRS9ICosrCpbO9jnAVMd/ISLhaZgx388XNBjigiyBJuq577J6tQgQWZA8PQTiPj6MKe9HVIW2GnKXDiUrQ==",
  5421. "type": "package",
  5422. "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/5.0.2",
  5423. "files": [
  5424. ".nupkg.metadata",
  5425. ".signature.p7s",
  5426. "Icon.png",
  5427. "Templates/DbContext/NewLocalDbContext.cshtml",
  5428. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
  5429. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json",
  5430. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
  5431. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.2.nupkg.sha512",
  5432. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
  5433. ]
  5434. },
  5435. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/5.0.2": {
  5436. "sha512": "P3z/JZTGP5DhSc8ik4xrimWuCZ2ZaEZ6q7WGgfgmSVibfXxwh2Oo+dtdkiXwq8MNlkrcP0AZAo3+1wowYUzluA==",
  5437. "type": "package",
  5438. "path": "microsoft.visualstudio.web.codegeneration.templating/5.0.2",
  5439. "files": [
  5440. ".nupkg.metadata",
  5441. ".signature.p7s",
  5442. "Icon.png",
  5443. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
  5444. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
  5445. "microsoft.visualstudio.web.codegeneration.templating.5.0.2.nupkg.sha512",
  5446. "microsoft.visualstudio.web.codegeneration.templating.nuspec"
  5447. ]
  5448. },
  5449. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/5.0.2": {
  5450. "sha512": "4zViWGIFeKsGxDmc5xpn2G8kWs2FSHiLOolw85ZPHihDXc2jiFKp7qjA3SRt8U23kR3zeb0vZiFlETxgTHwAUA==",
  5451. "type": "package",
  5452. "path": "microsoft.visualstudio.web.codegeneration.utils/5.0.2",
  5453. "files": [
  5454. ".nupkg.metadata",
  5455. ".signature.p7s",
  5456. "Icon.png",
  5457. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
  5458. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
  5459. "microsoft.visualstudio.web.codegeneration.utils.5.0.2.nupkg.sha512",
  5460. "microsoft.visualstudio.web.codegeneration.utils.nuspec"
  5461. ]
  5462. },
  5463. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/5.0.2": {
  5464. "sha512": "W4Uk2y0oja+4E+XP5d5OFu+ViTEtlqm3a6nYuuC3tjA+lTK6dLaMf0G6WnO4BO18i0kM0l49XjTwwXd5XpjnAQ==",
  5465. "type": "package",
  5466. "path": "microsoft.visualstudio.web.codegenerators.mvc/5.0.2",
  5467. "files": [
  5468. ".nupkg.metadata",
  5469. ".signature.p7s",
  5470. "Generators/ParameterDefinitions/area.json",
  5471. "Generators/ParameterDefinitions/controller.json",
  5472. "Generators/ParameterDefinitions/identity.json",
  5473. "Generators/ParameterDefinitions/razorpage.json",
  5474. "Generators/ParameterDefinitions/view.json",
  5475. "Icon.png",
  5476. "Templates/ControllerGenerator/ApiControllerWithActions.cshtml",
  5477. "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
  5478. "Templates/ControllerGenerator/ApiEmptyController.cshtml",
  5479. "Templates/ControllerGenerator/ControllerWithActions.cshtml",
  5480. "Templates/ControllerGenerator/EmptyController.cshtml",
  5481. "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
  5482. "Templates/Identity/Data/ApplicationDbContext.cshtml",
  5483. "Templates/Identity/Data/ApplicationUser.cshtml",
  5484. "Templates/Identity/IdentityHostingStartup.cshtml",
  5485. "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
  5486. "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
  5487. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  5488. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
  5489. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  5490. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
  5491. "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
  5492. "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
  5493. "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
  5494. "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
  5495. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  5496. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  5497. "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
  5498. "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
  5499. "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
  5500. "Templates/Identity/Pages/Account/Account.Login.cshtml",
  5501. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  5502. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
  5503. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  5504. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  5505. "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
  5506. "Templates/Identity/Pages/Account/Account.Logout.cshtml",
  5507. "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
  5508. "Templates/Identity/Pages/Account/Account.Register.cshtml",
  5509. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  5510. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
  5511. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  5512. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  5513. "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
  5514. "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
  5515. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  5516. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  5517. "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
  5518. "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
  5519. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  5520. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  5521. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  5522. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  5523. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  5524. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  5525. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  5526. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  5527. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  5528. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
  5529. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  5530. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  5531. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  5532. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  5533. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  5534. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  5535. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  5536. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
  5537. "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  5538. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  5539. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  5540. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  5541. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  5542. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  5543. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  5544. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  5545. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  5546. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  5547. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  5548. "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  5549. "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  5550. "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  5551. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  5552. "Templates/Identity/Pages/Error.cs.cshtml",
  5553. "Templates/Identity/Pages/Error.cshtml",
  5554. "Templates/Identity/Pages/_Layout.cshtml",
  5555. "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
  5556. "Templates/Identity/Pages/_ViewImports.cshtml",
  5557. "Templates/Identity/Pages/_ViewStart.cshtml",
  5558. "Templates/Identity/ScaffoldingReadme.cshtml",
  5559. "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
  5560. "Templates/Identity/SupportPages._ViewImports.cshtml",
  5561. "Templates/Identity/SupportPages._ViewStart.cshtml",
  5562. "Templates/Identity/_LoginPartial.cshtml",
  5563. "Templates/Identity/wwwroot/css/site.css",
  5564. "Templates/Identity/wwwroot/favicon.ico",
  5565. "Templates/Identity/wwwroot/js/site.js",
  5566. "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
  5567. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  5568. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  5569. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  5570. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  5571. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  5572. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  5573. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  5574. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  5575. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  5576. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  5577. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  5578. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  5579. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  5580. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  5581. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  5582. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  5583. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  5584. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  5585. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  5586. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  5587. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  5588. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  5589. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  5590. "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
  5591. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  5592. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  5593. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  5594. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  5595. "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
  5596. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
  5597. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
  5598. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
  5599. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml",
  5600. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml",
  5601. "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml",
  5602. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml",
  5603. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml",
  5604. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  5605. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml",
  5606. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  5607. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cshtml",
  5608. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml",
  5609. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml",
  5610. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml",
  5611. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml",
  5612. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  5613. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  5614. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml",
  5615. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml",
  5616. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml",
  5617. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml",
  5618. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  5619. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml",
  5620. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  5621. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  5622. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml",
  5623. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml",
  5624. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml",
  5625. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml",
  5626. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  5627. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cshtml",
  5628. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml",
  5629. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  5630. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml",
  5631. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml",
  5632. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  5633. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  5634. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._StatusMessage.cshtml",
  5635. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml",
  5636. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  5637. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  5638. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  5639. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  5640. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  5641. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  5642. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  5643. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  5644. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  5645. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cshtml",
  5646. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  5647. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  5648. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  5649. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  5650. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  5651. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  5652. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  5653. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml",
  5654. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  5655. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  5656. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  5657. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  5658. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  5659. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  5660. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  5661. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  5662. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  5663. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  5664. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  5665. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  5666. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  5667. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  5668. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  5669. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml",
  5670. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml",
  5671. "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml",
  5672. "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml",
  5673. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml",
  5674. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml",
  5675. "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml",
  5676. "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml",
  5677. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml",
  5678. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml",
  5679. "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml",
  5680. "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css",
  5681. "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico",
  5682. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg",
  5683. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg",
  5684. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg",
  5685. "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js",
  5686. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE",
  5687. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css",
  5688. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map",
  5689. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css",
  5690. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map",
  5691. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  5692. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  5693. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  5694. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  5695. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot",
  5696. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg",
  5697. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf",
  5698. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff",
  5699. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2",
  5700. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  5701. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  5702. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js",
  5703. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  5704. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  5705. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  5706. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md",
  5707. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  5708. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  5709. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  5710. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  5711. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt",
  5712. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js",
  5713. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js",
  5714. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map",
  5715. "Templates/MvcLayout/Error.cshtml",
  5716. "Templates/MvcLayout/_Layout.cshtml",
  5717. "Templates/RazorPageGenerator/Create.cshtml",
  5718. "Templates/RazorPageGenerator/CreatePageModel.cshtml",
  5719. "Templates/RazorPageGenerator/Delete.cshtml",
  5720. "Templates/RazorPageGenerator/DeletePageModel.cshtml",
  5721. "Templates/RazorPageGenerator/Details.cshtml",
  5722. "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
  5723. "Templates/RazorPageGenerator/Edit.cshtml",
  5724. "Templates/RazorPageGenerator/EditPageModel.cshtml",
  5725. "Templates/RazorPageGenerator/Empty.cshtml",
  5726. "Templates/RazorPageGenerator/EmptyPageModel.cshtml",
  5727. "Templates/RazorPageGenerator/List.cshtml",
  5728. "Templates/RazorPageGenerator/ListPageModel.cshtml",
  5729. "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
  5730. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml",
  5731. "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml",
  5732. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml",
  5733. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml",
  5734. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml",
  5735. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml",
  5736. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml",
  5737. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml",
  5738. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml",
  5739. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml",
  5740. "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml",
  5741. "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml",
  5742. "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  5743. "Templates/Startup/ReadMe.cshtml",
  5744. "Templates/Startup/Startup.cshtml",
  5745. "Templates/ViewGenerator/Create.cshtml",
  5746. "Templates/ViewGenerator/Delete.cshtml",
  5747. "Templates/ViewGenerator/Details.cshtml",
  5748. "Templates/ViewGenerator/Edit.cshtml",
  5749. "Templates/ViewGenerator/Empty.cshtml",
  5750. "Templates/ViewGenerator/List.cshtml",
  5751. "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
  5752. "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml",
  5753. "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml",
  5754. "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml",
  5755. "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml",
  5756. "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml",
  5757. "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml",
  5758. "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  5759. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
  5760. "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
  5761. "lib/net5.0/bootstrap3_identitygeneratorfilesconfig.json",
  5762. "lib/net5.0/bootstrap4_identitygeneratorfilesconfig.json",
  5763. "microsoft.visualstudio.web.codegenerators.mvc.5.0.2.nupkg.sha512",
  5764. "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
  5765. ]
  5766. },
  5767. "Microsoft.Win32.Primitives/4.3.0": {
  5768. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  5769. "type": "package",
  5770. "path": "microsoft.win32.primitives/4.3.0",
  5771. "files": [
  5772. ".nupkg.metadata",
  5773. "ThirdPartyNotices.txt",
  5774. "dotnet_library_license.txt",
  5775. "lib/MonoAndroid10/_._",
  5776. "lib/MonoTouch10/_._",
  5777. "lib/net46/Microsoft.Win32.Primitives.dll",
  5778. "lib/xamarinios10/_._",
  5779. "lib/xamarinmac20/_._",
  5780. "lib/xamarintvos10/_._",
  5781. "lib/xamarinwatchos10/_._",
  5782. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  5783. "microsoft.win32.primitives.nuspec",
  5784. "ref/MonoAndroid10/_._",
  5785. "ref/MonoTouch10/_._",
  5786. "ref/net46/Microsoft.Win32.Primitives.dll",
  5787. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5788. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5789. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5790. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5791. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5792. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5793. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5794. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5795. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5796. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5797. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5798. "ref/xamarinios10/_._",
  5799. "ref/xamarinmac20/_._",
  5800. "ref/xamarintvos10/_._",
  5801. "ref/xamarinwatchos10/_._"
  5802. ]
  5803. },
  5804. "Microsoft.Win32.Registry/4.7.0": {
  5805. "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==",
  5806. "type": "package",
  5807. "path": "microsoft.win32.registry/4.7.0",
  5808. "files": [
  5809. ".nupkg.metadata",
  5810. ".signature.p7s",
  5811. "LICENSE.TXT",
  5812. "THIRD-PARTY-NOTICES.TXT",
  5813. "lib/net46/Microsoft.Win32.Registry.dll",
  5814. "lib/net461/Microsoft.Win32.Registry.dll",
  5815. "lib/net461/Microsoft.Win32.Registry.xml",
  5816. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5817. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5818. "lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5819. "microsoft.win32.registry.4.7.0.nupkg.sha512",
  5820. "microsoft.win32.registry.nuspec",
  5821. "ref/net46/Microsoft.Win32.Registry.dll",
  5822. "ref/net461/Microsoft.Win32.Registry.dll",
  5823. "ref/net461/Microsoft.Win32.Registry.xml",
  5824. "ref/net472/Microsoft.Win32.Registry.dll",
  5825. "ref/net472/Microsoft.Win32.Registry.xml",
  5826. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  5827. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  5828. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  5829. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  5830. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  5831. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  5832. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  5833. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  5834. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  5835. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  5836. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  5837. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  5838. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  5839. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5840. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5841. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  5842. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  5843. "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml",
  5844. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5845. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  5846. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml",
  5847. "useSharedDesignerContext.txt",
  5848. "version.txt"
  5849. ]
  5850. },
  5851. "Microsoft.Win32.SystemEvents/4.7.0": {
  5852. "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==",
  5853. "type": "package",
  5854. "path": "microsoft.win32.systemevents/4.7.0",
  5855. "files": [
  5856. ".nupkg.metadata",
  5857. ".signature.p7s",
  5858. "LICENSE.TXT",
  5859. "THIRD-PARTY-NOTICES.TXT",
  5860. "lib/net461/Microsoft.Win32.SystemEvents.dll",
  5861. "lib/net461/Microsoft.Win32.SystemEvents.xml",
  5862. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5863. "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5864. "microsoft.win32.systemevents.4.7.0.nupkg.sha512",
  5865. "microsoft.win32.systemevents.nuspec",
  5866. "ref/net461/Microsoft.Win32.SystemEvents.dll",
  5867. "ref/net461/Microsoft.Win32.SystemEvents.xml",
  5868. "ref/net472/Microsoft.Win32.SystemEvents.dll",
  5869. "ref/net472/Microsoft.Win32.SystemEvents.xml",
  5870. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
  5871. "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
  5872. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
  5873. "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml",
  5874. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll",
  5875. "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml",
  5876. "useSharedDesignerContext.txt",
  5877. "version.txt"
  5878. ]
  5879. },
  5880. "NETStandard.Library/1.6.1": {
  5881. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  5882. "type": "package",
  5883. "path": "netstandard.library/1.6.1",
  5884. "files": [
  5885. ".nupkg.metadata",
  5886. "ThirdPartyNotices.txt",
  5887. "dotnet_library_license.txt",
  5888. "netstandard.library.1.6.1.nupkg.sha512",
  5889. "netstandard.library.nuspec"
  5890. ]
  5891. },
  5892. "Newtonsoft.Json/11.0.2": {
  5893. "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  5894. "type": "package",
  5895. "path": "newtonsoft.json/11.0.2",
  5896. "files": [
  5897. ".nupkg.metadata",
  5898. ".signature.p7s",
  5899. "LICENSE.md",
  5900. "lib/net20/Newtonsoft.Json.dll",
  5901. "lib/net20/Newtonsoft.Json.xml",
  5902. "lib/net35/Newtonsoft.Json.dll",
  5903. "lib/net35/Newtonsoft.Json.xml",
  5904. "lib/net40/Newtonsoft.Json.dll",
  5905. "lib/net40/Newtonsoft.Json.xml",
  5906. "lib/net45/Newtonsoft.Json.dll",
  5907. "lib/net45/Newtonsoft.Json.xml",
  5908. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5909. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5910. "lib/netstandard1.3/Newtonsoft.Json.dll",
  5911. "lib/netstandard1.3/Newtonsoft.Json.xml",
  5912. "lib/netstandard2.0/Newtonsoft.Json.dll",
  5913. "lib/netstandard2.0/Newtonsoft.Json.xml",
  5914. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  5915. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  5916. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  5917. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  5918. "newtonsoft.json.11.0.2.nupkg.sha512",
  5919. "newtonsoft.json.nuspec"
  5920. ]
  5921. },
  5922. "Newtonsoft.Json.Bson/1.0.1": {
  5923. "sha512": "5PYT/IqQ+UK31AmZiSS102R6EsTo+LGTSI8bp7WAUqDKaF4wHXD8U9u4WxTI1vc64tYi++8p3dk3WWNqPFgldw==",
  5924. "type": "package",
  5925. "path": "newtonsoft.json.bson/1.0.1",
  5926. "files": [
  5927. ".nupkg.metadata",
  5928. ".signature.p7s",
  5929. "lib/net45/Newtonsoft.Json.Bson.dll",
  5930. "lib/net45/Newtonsoft.Json.Bson.xml",
  5931. "lib/netstandard1.3/Newtonsoft.Json.Bson.dll",
  5932. "lib/netstandard1.3/Newtonsoft.Json.Bson.xml",
  5933. "newtonsoft.json.bson.1.0.1.nupkg.sha512",
  5934. "newtonsoft.json.bson.nuspec"
  5935. ]
  5936. },
  5937. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5938. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  5939. "type": "package",
  5940. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5941. "files": [
  5942. ".nupkg.metadata",
  5943. "ThirdPartyNotices.txt",
  5944. "dotnet_library_license.txt",
  5945. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5946. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5947. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5948. ]
  5949. },
  5950. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5951. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  5952. "type": "package",
  5953. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5954. "files": [
  5955. ".nupkg.metadata",
  5956. "ThirdPartyNotices.txt",
  5957. "dotnet_library_license.txt",
  5958. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5959. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5960. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5961. ]
  5962. },
  5963. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5964. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  5965. "type": "package",
  5966. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  5967. "files": [
  5968. ".nupkg.metadata",
  5969. "ThirdPartyNotices.txt",
  5970. "dotnet_library_license.txt",
  5971. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  5972. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  5973. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5974. ]
  5975. },
  5976. "runtime.native.System/4.3.0": {
  5977. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  5978. "type": "package",
  5979. "path": "runtime.native.system/4.3.0",
  5980. "files": [
  5981. ".nupkg.metadata",
  5982. "ThirdPartyNotices.txt",
  5983. "dotnet_library_license.txt",
  5984. "lib/netstandard1.0/_._",
  5985. "runtime.native.system.4.3.0.nupkg.sha512",
  5986. "runtime.native.system.nuspec"
  5987. ]
  5988. },
  5989. "runtime.native.System.IO.Compression/4.3.0": {
  5990. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  5991. "type": "package",
  5992. "path": "runtime.native.system.io.compression/4.3.0",
  5993. "files": [
  5994. ".nupkg.metadata",
  5995. "ThirdPartyNotices.txt",
  5996. "dotnet_library_license.txt",
  5997. "lib/netstandard1.0/_._",
  5998. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  5999. "runtime.native.system.io.compression.nuspec"
  6000. ]
  6001. },
  6002. "runtime.native.System.Net.Http/4.3.0": {
  6003. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  6004. "type": "package",
  6005. "path": "runtime.native.system.net.http/4.3.0",
  6006. "files": [
  6007. ".nupkg.metadata",
  6008. "ThirdPartyNotices.txt",
  6009. "dotnet_library_license.txt",
  6010. "lib/netstandard1.0/_._",
  6011. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  6012. "runtime.native.system.net.http.nuspec"
  6013. ]
  6014. },
  6015. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  6016. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  6017. "type": "package",
  6018. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  6019. "files": [
  6020. ".nupkg.metadata",
  6021. "ThirdPartyNotices.txt",
  6022. "dotnet_library_license.txt",
  6023. "lib/netstandard1.0/_._",
  6024. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  6025. "runtime.native.system.security.cryptography.apple.nuspec"
  6026. ]
  6027. },
  6028. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  6029. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  6030. "type": "package",
  6031. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  6032. "files": [
  6033. ".nupkg.metadata",
  6034. "ThirdPartyNotices.txt",
  6035. "dotnet_library_license.txt",
  6036. "lib/netstandard1.0/_._",
  6037. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6038. "runtime.native.system.security.cryptography.openssl.nuspec"
  6039. ]
  6040. },
  6041. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  6042. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  6043. "type": "package",
  6044. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  6045. "files": [
  6046. ".nupkg.metadata",
  6047. "ThirdPartyNotices.txt",
  6048. "dotnet_library_license.txt",
  6049. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6050. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6051. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6052. ]
  6053. },
  6054. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  6055. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  6056. "type": "package",
  6057. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  6058. "files": [
  6059. ".nupkg.metadata",
  6060. "ThirdPartyNotices.txt",
  6061. "dotnet_library_license.txt",
  6062. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6063. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6064. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6065. ]
  6066. },
  6067. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  6068. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  6069. "type": "package",
  6070. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  6071. "files": [
  6072. ".nupkg.metadata",
  6073. "ThirdPartyNotices.txt",
  6074. "dotnet_library_license.txt",
  6075. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  6076. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  6077. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  6078. ]
  6079. },
  6080. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  6081. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  6082. "type": "package",
  6083. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  6084. "files": [
  6085. ".nupkg.metadata",
  6086. "ThirdPartyNotices.txt",
  6087. "dotnet_library_license.txt",
  6088. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6089. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6090. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  6091. ]
  6092. },
  6093. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  6094. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  6095. "type": "package",
  6096. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  6097. "files": [
  6098. ".nupkg.metadata",
  6099. "ThirdPartyNotices.txt",
  6100. "dotnet_library_license.txt",
  6101. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6102. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6103. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6104. ]
  6105. },
  6106. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  6107. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  6108. "type": "package",
  6109. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  6110. "files": [
  6111. ".nupkg.metadata",
  6112. "ThirdPartyNotices.txt",
  6113. "dotnet_library_license.txt",
  6114. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6115. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6116. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6117. ]
  6118. },
  6119. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  6120. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  6121. "type": "package",
  6122. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  6123. "files": [
  6124. ".nupkg.metadata",
  6125. "ThirdPartyNotices.txt",
  6126. "dotnet_library_license.txt",
  6127. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6128. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6129. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6130. ]
  6131. },
  6132. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  6133. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  6134. "type": "package",
  6135. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  6136. "files": [
  6137. ".nupkg.metadata",
  6138. "ThirdPartyNotices.txt",
  6139. "dotnet_library_license.txt",
  6140. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  6141. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  6142. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  6143. ]
  6144. },
  6145. "System.AppContext/4.3.0": {
  6146. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  6147. "type": "package",
  6148. "path": "system.appcontext/4.3.0",
  6149. "files": [
  6150. ".nupkg.metadata",
  6151. "ThirdPartyNotices.txt",
  6152. "dotnet_library_license.txt",
  6153. "lib/MonoAndroid10/_._",
  6154. "lib/MonoTouch10/_._",
  6155. "lib/net46/System.AppContext.dll",
  6156. "lib/net463/System.AppContext.dll",
  6157. "lib/netcore50/System.AppContext.dll",
  6158. "lib/netstandard1.6/System.AppContext.dll",
  6159. "lib/xamarinios10/_._",
  6160. "lib/xamarinmac20/_._",
  6161. "lib/xamarintvos10/_._",
  6162. "lib/xamarinwatchos10/_._",
  6163. "ref/MonoAndroid10/_._",
  6164. "ref/MonoTouch10/_._",
  6165. "ref/net46/System.AppContext.dll",
  6166. "ref/net463/System.AppContext.dll",
  6167. "ref/netstandard/_._",
  6168. "ref/netstandard1.3/System.AppContext.dll",
  6169. "ref/netstandard1.3/System.AppContext.xml",
  6170. "ref/netstandard1.3/de/System.AppContext.xml",
  6171. "ref/netstandard1.3/es/System.AppContext.xml",
  6172. "ref/netstandard1.3/fr/System.AppContext.xml",
  6173. "ref/netstandard1.3/it/System.AppContext.xml",
  6174. "ref/netstandard1.3/ja/System.AppContext.xml",
  6175. "ref/netstandard1.3/ko/System.AppContext.xml",
  6176. "ref/netstandard1.3/ru/System.AppContext.xml",
  6177. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  6178. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  6179. "ref/netstandard1.6/System.AppContext.dll",
  6180. "ref/netstandard1.6/System.AppContext.xml",
  6181. "ref/netstandard1.6/de/System.AppContext.xml",
  6182. "ref/netstandard1.6/es/System.AppContext.xml",
  6183. "ref/netstandard1.6/fr/System.AppContext.xml",
  6184. "ref/netstandard1.6/it/System.AppContext.xml",
  6185. "ref/netstandard1.6/ja/System.AppContext.xml",
  6186. "ref/netstandard1.6/ko/System.AppContext.xml",
  6187. "ref/netstandard1.6/ru/System.AppContext.xml",
  6188. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  6189. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  6190. "ref/xamarinios10/_._",
  6191. "ref/xamarinmac20/_._",
  6192. "ref/xamarintvos10/_._",
  6193. "ref/xamarinwatchos10/_._",
  6194. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  6195. "system.appcontext.4.3.0.nupkg.sha512",
  6196. "system.appcontext.nuspec"
  6197. ]
  6198. },
  6199. "System.Buffers/4.5.0": {
  6200. "sha512": "pL2ChpaRRWI/p4LXyy4RgeWlYF2sgfj/pnVMvBqwNFr5cXg7CXNnWZWxrOONLg8VGdFB8oB+EG2Qw4MLgTOe+A==",
  6201. "type": "package",
  6202. "path": "system.buffers/4.5.0",
  6203. "files": [
  6204. ".nupkg.metadata",
  6205. ".signature.p7s",
  6206. "LICENSE.TXT",
  6207. "THIRD-PARTY-NOTICES.TXT",
  6208. "lib/netcoreapp2.0/_._",
  6209. "lib/netstandard1.1/System.Buffers.dll",
  6210. "lib/netstandard1.1/System.Buffers.xml",
  6211. "lib/netstandard2.0/System.Buffers.dll",
  6212. "lib/netstandard2.0/System.Buffers.xml",
  6213. "lib/uap10.0.16299/_._",
  6214. "ref/net45/System.Buffers.dll",
  6215. "ref/net45/System.Buffers.xml",
  6216. "ref/netcoreapp2.0/_._",
  6217. "ref/netstandard1.1/System.Buffers.dll",
  6218. "ref/netstandard1.1/System.Buffers.xml",
  6219. "ref/netstandard2.0/System.Buffers.dll",
  6220. "ref/netstandard2.0/System.Buffers.xml",
  6221. "ref/uap10.0.16299/_._",
  6222. "system.buffers.4.5.0.nupkg.sha512",
  6223. "system.buffers.nuspec",
  6224. "useSharedDesignerContext.txt",
  6225. "version.txt"
  6226. ]
  6227. },
  6228. "System.Collections/4.3.0": {
  6229. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  6230. "type": "package",
  6231. "path": "system.collections/4.3.0",
  6232. "files": [
  6233. ".nupkg.metadata",
  6234. "ThirdPartyNotices.txt",
  6235. "dotnet_library_license.txt",
  6236. "lib/MonoAndroid10/_._",
  6237. "lib/MonoTouch10/_._",
  6238. "lib/net45/_._",
  6239. "lib/portable-net45+win8+wp8+wpa81/_._",
  6240. "lib/win8/_._",
  6241. "lib/wp80/_._",
  6242. "lib/wpa81/_._",
  6243. "lib/xamarinios10/_._",
  6244. "lib/xamarinmac20/_._",
  6245. "lib/xamarintvos10/_._",
  6246. "lib/xamarinwatchos10/_._",
  6247. "ref/MonoAndroid10/_._",
  6248. "ref/MonoTouch10/_._",
  6249. "ref/net45/_._",
  6250. "ref/netcore50/System.Collections.dll",
  6251. "ref/netcore50/System.Collections.xml",
  6252. "ref/netcore50/de/System.Collections.xml",
  6253. "ref/netcore50/es/System.Collections.xml",
  6254. "ref/netcore50/fr/System.Collections.xml",
  6255. "ref/netcore50/it/System.Collections.xml",
  6256. "ref/netcore50/ja/System.Collections.xml",
  6257. "ref/netcore50/ko/System.Collections.xml",
  6258. "ref/netcore50/ru/System.Collections.xml",
  6259. "ref/netcore50/zh-hans/System.Collections.xml",
  6260. "ref/netcore50/zh-hant/System.Collections.xml",
  6261. "ref/netstandard1.0/System.Collections.dll",
  6262. "ref/netstandard1.0/System.Collections.xml",
  6263. "ref/netstandard1.0/de/System.Collections.xml",
  6264. "ref/netstandard1.0/es/System.Collections.xml",
  6265. "ref/netstandard1.0/fr/System.Collections.xml",
  6266. "ref/netstandard1.0/it/System.Collections.xml",
  6267. "ref/netstandard1.0/ja/System.Collections.xml",
  6268. "ref/netstandard1.0/ko/System.Collections.xml",
  6269. "ref/netstandard1.0/ru/System.Collections.xml",
  6270. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  6271. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  6272. "ref/netstandard1.3/System.Collections.dll",
  6273. "ref/netstandard1.3/System.Collections.xml",
  6274. "ref/netstandard1.3/de/System.Collections.xml",
  6275. "ref/netstandard1.3/es/System.Collections.xml",
  6276. "ref/netstandard1.3/fr/System.Collections.xml",
  6277. "ref/netstandard1.3/it/System.Collections.xml",
  6278. "ref/netstandard1.3/ja/System.Collections.xml",
  6279. "ref/netstandard1.3/ko/System.Collections.xml",
  6280. "ref/netstandard1.3/ru/System.Collections.xml",
  6281. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  6282. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  6283. "ref/portable-net45+win8+wp8+wpa81/_._",
  6284. "ref/win8/_._",
  6285. "ref/wp80/_._",
  6286. "ref/wpa81/_._",
  6287. "ref/xamarinios10/_._",
  6288. "ref/xamarinmac20/_._",
  6289. "ref/xamarintvos10/_._",
  6290. "ref/xamarinwatchos10/_._",
  6291. "system.collections.4.3.0.nupkg.sha512",
  6292. "system.collections.nuspec"
  6293. ]
  6294. },
  6295. "System.Collections.Concurrent/4.3.0": {
  6296. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  6297. "type": "package",
  6298. "path": "system.collections.concurrent/4.3.0",
  6299. "files": [
  6300. ".nupkg.metadata",
  6301. "ThirdPartyNotices.txt",
  6302. "dotnet_library_license.txt",
  6303. "lib/MonoAndroid10/_._",
  6304. "lib/MonoTouch10/_._",
  6305. "lib/net45/_._",
  6306. "lib/netcore50/System.Collections.Concurrent.dll",
  6307. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  6308. "lib/portable-net45+win8+wpa81/_._",
  6309. "lib/win8/_._",
  6310. "lib/wpa81/_._",
  6311. "lib/xamarinios10/_._",
  6312. "lib/xamarinmac20/_._",
  6313. "lib/xamarintvos10/_._",
  6314. "lib/xamarinwatchos10/_._",
  6315. "ref/MonoAndroid10/_._",
  6316. "ref/MonoTouch10/_._",
  6317. "ref/net45/_._",
  6318. "ref/netcore50/System.Collections.Concurrent.dll",
  6319. "ref/netcore50/System.Collections.Concurrent.xml",
  6320. "ref/netcore50/de/System.Collections.Concurrent.xml",
  6321. "ref/netcore50/es/System.Collections.Concurrent.xml",
  6322. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  6323. "ref/netcore50/it/System.Collections.Concurrent.xml",
  6324. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  6325. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  6326. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  6327. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  6328. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  6329. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  6330. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  6331. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  6332. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  6333. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  6334. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  6335. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  6336. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  6337. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  6338. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  6339. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  6340. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  6341. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  6342. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  6343. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  6344. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  6345. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  6346. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  6347. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  6348. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  6349. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  6350. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  6351. "ref/portable-net45+win8+wpa81/_._",
  6352. "ref/win8/_._",
  6353. "ref/wpa81/_._",
  6354. "ref/xamarinios10/_._",
  6355. "ref/xamarinmac20/_._",
  6356. "ref/xamarintvos10/_._",
  6357. "ref/xamarinwatchos10/_._",
  6358. "system.collections.concurrent.4.3.0.nupkg.sha512",
  6359. "system.collections.concurrent.nuspec"
  6360. ]
  6361. },
  6362. "System.Collections.Immutable/5.0.0": {
  6363. "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
  6364. "type": "package",
  6365. "path": "system.collections.immutable/5.0.0",
  6366. "files": [
  6367. ".nupkg.metadata",
  6368. ".signature.p7s",
  6369. "Icon.png",
  6370. "LICENSE.TXT",
  6371. "THIRD-PARTY-NOTICES.TXT",
  6372. "lib/net461/System.Collections.Immutable.dll",
  6373. "lib/net461/System.Collections.Immutable.xml",
  6374. "lib/netstandard1.0/System.Collections.Immutable.dll",
  6375. "lib/netstandard1.0/System.Collections.Immutable.xml",
  6376. "lib/netstandard1.3/System.Collections.Immutable.dll",
  6377. "lib/netstandard1.3/System.Collections.Immutable.xml",
  6378. "lib/netstandard2.0/System.Collections.Immutable.dll",
  6379. "lib/netstandard2.0/System.Collections.Immutable.xml",
  6380. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  6381. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  6382. "system.collections.immutable.5.0.0.nupkg.sha512",
  6383. "system.collections.immutable.nuspec",
  6384. "useSharedDesignerContext.txt",
  6385. "version.txt"
  6386. ]
  6387. },
  6388. "System.Collections.NonGeneric/4.3.0": {
  6389. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  6390. "type": "package",
  6391. "path": "system.collections.nongeneric/4.3.0",
  6392. "files": [
  6393. ".nupkg.metadata",
  6394. "ThirdPartyNotices.txt",
  6395. "dotnet_library_license.txt",
  6396. "lib/MonoAndroid10/_._",
  6397. "lib/MonoTouch10/_._",
  6398. "lib/net46/System.Collections.NonGeneric.dll",
  6399. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  6400. "lib/xamarinios10/_._",
  6401. "lib/xamarinmac20/_._",
  6402. "lib/xamarintvos10/_._",
  6403. "lib/xamarinwatchos10/_._",
  6404. "ref/MonoAndroid10/_._",
  6405. "ref/MonoTouch10/_._",
  6406. "ref/net46/System.Collections.NonGeneric.dll",
  6407. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  6408. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  6409. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  6410. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  6411. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  6412. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  6413. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  6414. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  6415. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  6416. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  6417. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  6418. "ref/xamarinios10/_._",
  6419. "ref/xamarinmac20/_._",
  6420. "ref/xamarintvos10/_._",
  6421. "ref/xamarinwatchos10/_._",
  6422. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  6423. "system.collections.nongeneric.nuspec"
  6424. ]
  6425. },
  6426. "System.Collections.Specialized/4.3.0": {
  6427. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  6428. "type": "package",
  6429. "path": "system.collections.specialized/4.3.0",
  6430. "files": [
  6431. ".nupkg.metadata",
  6432. "ThirdPartyNotices.txt",
  6433. "dotnet_library_license.txt",
  6434. "lib/MonoAndroid10/_._",
  6435. "lib/MonoTouch10/_._",
  6436. "lib/net46/System.Collections.Specialized.dll",
  6437. "lib/netstandard1.3/System.Collections.Specialized.dll",
  6438. "lib/xamarinios10/_._",
  6439. "lib/xamarinmac20/_._",
  6440. "lib/xamarintvos10/_._",
  6441. "lib/xamarinwatchos10/_._",
  6442. "ref/MonoAndroid10/_._",
  6443. "ref/MonoTouch10/_._",
  6444. "ref/net46/System.Collections.Specialized.dll",
  6445. "ref/netstandard1.3/System.Collections.Specialized.dll",
  6446. "ref/netstandard1.3/System.Collections.Specialized.xml",
  6447. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  6448. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  6449. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  6450. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  6451. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  6452. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  6453. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  6454. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  6455. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  6456. "ref/xamarinios10/_._",
  6457. "ref/xamarinmac20/_._",
  6458. "ref/xamarintvos10/_._",
  6459. "ref/xamarinwatchos10/_._",
  6460. "system.collections.specialized.4.3.0.nupkg.sha512",
  6461. "system.collections.specialized.nuspec"
  6462. ]
  6463. },
  6464. "System.ComponentModel/4.3.0": {
  6465. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  6466. "type": "package",
  6467. "path": "system.componentmodel/4.3.0",
  6468. "files": [
  6469. ".nupkg.metadata",
  6470. "ThirdPartyNotices.txt",
  6471. "dotnet_library_license.txt",
  6472. "lib/MonoAndroid10/_._",
  6473. "lib/MonoTouch10/_._",
  6474. "lib/net45/_._",
  6475. "lib/netcore50/System.ComponentModel.dll",
  6476. "lib/netstandard1.3/System.ComponentModel.dll",
  6477. "lib/portable-net45+win8+wp8+wpa81/_._",
  6478. "lib/win8/_._",
  6479. "lib/wp80/_._",
  6480. "lib/wpa81/_._",
  6481. "lib/xamarinios10/_._",
  6482. "lib/xamarinmac20/_._",
  6483. "lib/xamarintvos10/_._",
  6484. "lib/xamarinwatchos10/_._",
  6485. "ref/MonoAndroid10/_._",
  6486. "ref/MonoTouch10/_._",
  6487. "ref/net45/_._",
  6488. "ref/netcore50/System.ComponentModel.dll",
  6489. "ref/netcore50/System.ComponentModel.xml",
  6490. "ref/netcore50/de/System.ComponentModel.xml",
  6491. "ref/netcore50/es/System.ComponentModel.xml",
  6492. "ref/netcore50/fr/System.ComponentModel.xml",
  6493. "ref/netcore50/it/System.ComponentModel.xml",
  6494. "ref/netcore50/ja/System.ComponentModel.xml",
  6495. "ref/netcore50/ko/System.ComponentModel.xml",
  6496. "ref/netcore50/ru/System.ComponentModel.xml",
  6497. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  6498. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  6499. "ref/netstandard1.0/System.ComponentModel.dll",
  6500. "ref/netstandard1.0/System.ComponentModel.xml",
  6501. "ref/netstandard1.0/de/System.ComponentModel.xml",
  6502. "ref/netstandard1.0/es/System.ComponentModel.xml",
  6503. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  6504. "ref/netstandard1.0/it/System.ComponentModel.xml",
  6505. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  6506. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  6507. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  6508. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  6509. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  6510. "ref/portable-net45+win8+wp8+wpa81/_._",
  6511. "ref/win8/_._",
  6512. "ref/wp80/_._",
  6513. "ref/wpa81/_._",
  6514. "ref/xamarinios10/_._",
  6515. "ref/xamarinmac20/_._",
  6516. "ref/xamarintvos10/_._",
  6517. "ref/xamarinwatchos10/_._",
  6518. "system.componentmodel.4.3.0.nupkg.sha512",
  6519. "system.componentmodel.nuspec"
  6520. ]
  6521. },
  6522. "System.ComponentModel.Annotations/5.0.0": {
  6523. "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
  6524. "type": "package",
  6525. "path": "system.componentmodel.annotations/5.0.0",
  6526. "files": [
  6527. ".nupkg.metadata",
  6528. ".signature.p7s",
  6529. "Icon.png",
  6530. "LICENSE.TXT",
  6531. "THIRD-PARTY-NOTICES.TXT",
  6532. "lib/MonoAndroid10/_._",
  6533. "lib/MonoTouch10/_._",
  6534. "lib/net45/_._",
  6535. "lib/net461/System.ComponentModel.Annotations.dll",
  6536. "lib/netcore50/System.ComponentModel.Annotations.dll",
  6537. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  6538. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  6539. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  6540. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  6541. "lib/portable-net45+win8/_._",
  6542. "lib/win8/_._",
  6543. "lib/xamarinios10/_._",
  6544. "lib/xamarinmac20/_._",
  6545. "lib/xamarintvos10/_._",
  6546. "lib/xamarinwatchos10/_._",
  6547. "ref/MonoAndroid10/_._",
  6548. "ref/MonoTouch10/_._",
  6549. "ref/net45/_._",
  6550. "ref/net461/System.ComponentModel.Annotations.dll",
  6551. "ref/net461/System.ComponentModel.Annotations.xml",
  6552. "ref/netcore50/System.ComponentModel.Annotations.dll",
  6553. "ref/netcore50/System.ComponentModel.Annotations.xml",
  6554. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  6555. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  6556. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  6557. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  6558. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  6559. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  6560. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  6561. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  6562. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  6563. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  6564. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  6565. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  6566. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  6567. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  6568. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  6569. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  6570. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  6571. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  6572. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  6573. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  6574. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  6575. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  6576. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  6577. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  6578. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  6579. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  6580. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  6581. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  6582. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  6583. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  6584. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  6585. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  6586. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  6587. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  6588. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  6589. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  6590. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  6591. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  6592. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  6593. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  6594. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  6595. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  6596. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  6597. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  6598. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  6599. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  6600. "ref/portable-net45+win8/_._",
  6601. "ref/win8/_._",
  6602. "ref/xamarinios10/_._",
  6603. "ref/xamarinmac20/_._",
  6604. "ref/xamarintvos10/_._",
  6605. "ref/xamarinwatchos10/_._",
  6606. "system.componentmodel.annotations.5.0.0.nupkg.sha512",
  6607. "system.componentmodel.annotations.nuspec",
  6608. "useSharedDesignerContext.txt",
  6609. "version.txt"
  6610. ]
  6611. },
  6612. "System.ComponentModel.Primitives/4.3.0": {
  6613. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  6614. "type": "package",
  6615. "path": "system.componentmodel.primitives/4.3.0",
  6616. "files": [
  6617. ".nupkg.metadata",
  6618. "ThirdPartyNotices.txt",
  6619. "dotnet_library_license.txt",
  6620. "lib/MonoAndroid10/_._",
  6621. "lib/MonoTouch10/_._",
  6622. "lib/net45/System.ComponentModel.Primitives.dll",
  6623. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  6624. "lib/xamarinios10/_._",
  6625. "lib/xamarinmac20/_._",
  6626. "lib/xamarintvos10/_._",
  6627. "lib/xamarinwatchos10/_._",
  6628. "ref/MonoAndroid10/_._",
  6629. "ref/MonoTouch10/_._",
  6630. "ref/net45/System.ComponentModel.Primitives.dll",
  6631. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  6632. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  6633. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  6634. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  6635. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  6636. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  6637. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  6638. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  6639. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  6640. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  6641. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  6642. "ref/xamarinios10/_._",
  6643. "ref/xamarinmac20/_._",
  6644. "ref/xamarintvos10/_._",
  6645. "ref/xamarinwatchos10/_._",
  6646. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  6647. "system.componentmodel.primitives.nuspec"
  6648. ]
  6649. },
  6650. "System.ComponentModel.TypeConverter/4.3.0": {
  6651. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  6652. "type": "package",
  6653. "path": "system.componentmodel.typeconverter/4.3.0",
  6654. "files": [
  6655. ".nupkg.metadata",
  6656. "ThirdPartyNotices.txt",
  6657. "dotnet_library_license.txt",
  6658. "lib/MonoAndroid10/_._",
  6659. "lib/MonoTouch10/_._",
  6660. "lib/net45/System.ComponentModel.TypeConverter.dll",
  6661. "lib/net462/System.ComponentModel.TypeConverter.dll",
  6662. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6663. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6664. "lib/xamarinios10/_._",
  6665. "lib/xamarinmac20/_._",
  6666. "lib/xamarintvos10/_._",
  6667. "lib/xamarinwatchos10/_._",
  6668. "ref/MonoAndroid10/_._",
  6669. "ref/MonoTouch10/_._",
  6670. "ref/net45/System.ComponentModel.TypeConverter.dll",
  6671. "ref/net462/System.ComponentModel.TypeConverter.dll",
  6672. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  6673. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  6674. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  6675. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  6676. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  6677. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  6678. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  6679. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  6680. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  6681. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  6682. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  6683. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  6684. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  6685. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  6686. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  6687. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  6688. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  6689. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  6690. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  6691. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  6692. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  6693. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  6694. "ref/xamarinios10/_._",
  6695. "ref/xamarinmac20/_._",
  6696. "ref/xamarintvos10/_._",
  6697. "ref/xamarinwatchos10/_._",
  6698. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  6699. "system.componentmodel.typeconverter.nuspec"
  6700. ]
  6701. },
  6702. "System.Composition/1.0.31": {
  6703. "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
  6704. "type": "package",
  6705. "path": "system.composition/1.0.31",
  6706. "files": [
  6707. ".nupkg.metadata",
  6708. ".signature.p7s",
  6709. "ThirdPartyNotices.txt",
  6710. "dotnet_library_license.txt",
  6711. "system.composition.1.0.31.nupkg.sha512",
  6712. "system.composition.nuspec"
  6713. ]
  6714. },
  6715. "System.Composition.AttributedModel/1.0.31": {
  6716. "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
  6717. "type": "package",
  6718. "path": "system.composition.attributedmodel/1.0.31",
  6719. "files": [
  6720. ".nupkg.metadata",
  6721. ".signature.p7s",
  6722. "ThirdPartyNotices.txt",
  6723. "dotnet_library_license.txt",
  6724. "lib/netstandard1.0/System.Composition.AttributedModel.dll",
  6725. "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll",
  6726. "system.composition.attributedmodel.1.0.31.nupkg.sha512",
  6727. "system.composition.attributedmodel.nuspec"
  6728. ]
  6729. },
  6730. "System.Composition.Convention/1.0.31": {
  6731. "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
  6732. "type": "package",
  6733. "path": "system.composition.convention/1.0.31",
  6734. "files": [
  6735. ".nupkg.metadata",
  6736. ".signature.p7s",
  6737. "ThirdPartyNotices.txt",
  6738. "dotnet_library_license.txt",
  6739. "lib/netstandard1.0/System.Composition.Convention.dll",
  6740. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll",
  6741. "system.composition.convention.1.0.31.nupkg.sha512",
  6742. "system.composition.convention.nuspec"
  6743. ]
  6744. },
  6745. "System.Composition.Hosting/1.0.31": {
  6746. "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
  6747. "type": "package",
  6748. "path": "system.composition.hosting/1.0.31",
  6749. "files": [
  6750. ".nupkg.metadata",
  6751. ".signature.p7s",
  6752. "ThirdPartyNotices.txt",
  6753. "dotnet_library_license.txt",
  6754. "lib/netstandard1.0/System.Composition.Hosting.dll",
  6755. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll",
  6756. "system.composition.hosting.1.0.31.nupkg.sha512",
  6757. "system.composition.hosting.nuspec"
  6758. ]
  6759. },
  6760. "System.Composition.Runtime/1.0.31": {
  6761. "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
  6762. "type": "package",
  6763. "path": "system.composition.runtime/1.0.31",
  6764. "files": [
  6765. ".nupkg.metadata",
  6766. ".signature.p7s",
  6767. "ThirdPartyNotices.txt",
  6768. "dotnet_library_license.txt",
  6769. "lib/netstandard1.0/System.Composition.Runtime.dll",
  6770. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll",
  6771. "system.composition.runtime.1.0.31.nupkg.sha512",
  6772. "system.composition.runtime.nuspec"
  6773. ]
  6774. },
  6775. "System.Composition.TypedParts/1.0.31": {
  6776. "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
  6777. "type": "package",
  6778. "path": "system.composition.typedparts/1.0.31",
  6779. "files": [
  6780. ".nupkg.metadata",
  6781. ".signature.p7s",
  6782. "ThirdPartyNotices.txt",
  6783. "dotnet_library_license.txt",
  6784. "lib/netstandard1.0/System.Composition.TypedParts.dll",
  6785. "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll",
  6786. "system.composition.typedparts.1.0.31.nupkg.sha512",
  6787. "system.composition.typedparts.nuspec"
  6788. ]
  6789. },
  6790. "System.Configuration.ConfigurationManager/4.7.0": {
  6791. "sha512": "/anOTeSZCNNI2zDilogWrZ8pNqCmYbzGNexUnNhjW8k0sHqEZ2nHJBp147jBV3hGYswu5lINpNg1vxR7bnqvVA==",
  6792. "type": "package",
  6793. "path": "system.configuration.configurationmanager/4.7.0",
  6794. "files": [
  6795. ".nupkg.metadata",
  6796. ".signature.p7s",
  6797. "LICENSE.TXT",
  6798. "THIRD-PARTY-NOTICES.TXT",
  6799. "lib/net461/System.Configuration.ConfigurationManager.dll",
  6800. "lib/net461/System.Configuration.ConfigurationManager.xml",
  6801. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6802. "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6803. "ref/net461/System.Configuration.ConfigurationManager.dll",
  6804. "ref/net461/System.Configuration.ConfigurationManager.xml",
  6805. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  6806. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  6807. "system.configuration.configurationmanager.4.7.0.nupkg.sha512",
  6808. "system.configuration.configurationmanager.nuspec",
  6809. "useSharedDesignerContext.txt",
  6810. "version.txt"
  6811. ]
  6812. },
  6813. "System.Console/4.3.0": {
  6814. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  6815. "type": "package",
  6816. "path": "system.console/4.3.0",
  6817. "files": [
  6818. ".nupkg.metadata",
  6819. "ThirdPartyNotices.txt",
  6820. "dotnet_library_license.txt",
  6821. "lib/MonoAndroid10/_._",
  6822. "lib/MonoTouch10/_._",
  6823. "lib/net46/System.Console.dll",
  6824. "lib/xamarinios10/_._",
  6825. "lib/xamarinmac20/_._",
  6826. "lib/xamarintvos10/_._",
  6827. "lib/xamarinwatchos10/_._",
  6828. "ref/MonoAndroid10/_._",
  6829. "ref/MonoTouch10/_._",
  6830. "ref/net46/System.Console.dll",
  6831. "ref/netstandard1.3/System.Console.dll",
  6832. "ref/netstandard1.3/System.Console.xml",
  6833. "ref/netstandard1.3/de/System.Console.xml",
  6834. "ref/netstandard1.3/es/System.Console.xml",
  6835. "ref/netstandard1.3/fr/System.Console.xml",
  6836. "ref/netstandard1.3/it/System.Console.xml",
  6837. "ref/netstandard1.3/ja/System.Console.xml",
  6838. "ref/netstandard1.3/ko/System.Console.xml",
  6839. "ref/netstandard1.3/ru/System.Console.xml",
  6840. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6841. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6842. "ref/xamarinios10/_._",
  6843. "ref/xamarinmac20/_._",
  6844. "ref/xamarintvos10/_._",
  6845. "ref/xamarinwatchos10/_._",
  6846. "system.console.4.3.0.nupkg.sha512",
  6847. "system.console.nuspec"
  6848. ]
  6849. },
  6850. "System.Diagnostics.Debug/4.3.0": {
  6851. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  6852. "type": "package",
  6853. "path": "system.diagnostics.debug/4.3.0",
  6854. "files": [
  6855. ".nupkg.metadata",
  6856. "ThirdPartyNotices.txt",
  6857. "dotnet_library_license.txt",
  6858. "lib/MonoAndroid10/_._",
  6859. "lib/MonoTouch10/_._",
  6860. "lib/net45/_._",
  6861. "lib/portable-net45+win8+wp8+wpa81/_._",
  6862. "lib/win8/_._",
  6863. "lib/wp80/_._",
  6864. "lib/wpa81/_._",
  6865. "lib/xamarinios10/_._",
  6866. "lib/xamarinmac20/_._",
  6867. "lib/xamarintvos10/_._",
  6868. "lib/xamarinwatchos10/_._",
  6869. "ref/MonoAndroid10/_._",
  6870. "ref/MonoTouch10/_._",
  6871. "ref/net45/_._",
  6872. "ref/netcore50/System.Diagnostics.Debug.dll",
  6873. "ref/netcore50/System.Diagnostics.Debug.xml",
  6874. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6875. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6876. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6877. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6878. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6879. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6880. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6881. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6882. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6883. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6884. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6885. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6886. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6887. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6888. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6889. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6890. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6891. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6892. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6893. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6894. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6895. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6896. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6897. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6898. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6899. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6900. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6901. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6902. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6903. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6904. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6905. "ref/portable-net45+win8+wp8+wpa81/_._",
  6906. "ref/win8/_._",
  6907. "ref/wp80/_._",
  6908. "ref/wpa81/_._",
  6909. "ref/xamarinios10/_._",
  6910. "ref/xamarinmac20/_._",
  6911. "ref/xamarintvos10/_._",
  6912. "ref/xamarinwatchos10/_._",
  6913. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  6914. "system.diagnostics.debug.nuspec"
  6915. ]
  6916. },
  6917. "System.Diagnostics.DiagnosticSource/5.0.0": {
  6918. "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==",
  6919. "type": "package",
  6920. "path": "system.diagnostics.diagnosticsource/5.0.0",
  6921. "files": [
  6922. ".nupkg.metadata",
  6923. ".signature.p7s",
  6924. "Icon.png",
  6925. "LICENSE.TXT",
  6926. "THIRD-PARTY-NOTICES.TXT",
  6927. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  6928. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  6929. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6930. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6931. "lib/net5.0/System.Diagnostics.DiagnosticSource.dll",
  6932. "lib/net5.0/System.Diagnostics.DiagnosticSource.xml",
  6933. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6934. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6935. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6936. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6937. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6938. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  6939. "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512",
  6940. "system.diagnostics.diagnosticsource.nuspec",
  6941. "useSharedDesignerContext.txt",
  6942. "version.txt"
  6943. ]
  6944. },
  6945. "System.Diagnostics.Tools/4.3.0": {
  6946. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  6947. "type": "package",
  6948. "path": "system.diagnostics.tools/4.3.0",
  6949. "files": [
  6950. ".nupkg.metadata",
  6951. "ThirdPartyNotices.txt",
  6952. "dotnet_library_license.txt",
  6953. "lib/MonoAndroid10/_._",
  6954. "lib/MonoTouch10/_._",
  6955. "lib/net45/_._",
  6956. "lib/portable-net45+win8+wp8+wpa81/_._",
  6957. "lib/win8/_._",
  6958. "lib/wp80/_._",
  6959. "lib/wpa81/_._",
  6960. "lib/xamarinios10/_._",
  6961. "lib/xamarinmac20/_._",
  6962. "lib/xamarintvos10/_._",
  6963. "lib/xamarinwatchos10/_._",
  6964. "ref/MonoAndroid10/_._",
  6965. "ref/MonoTouch10/_._",
  6966. "ref/net45/_._",
  6967. "ref/netcore50/System.Diagnostics.Tools.dll",
  6968. "ref/netcore50/System.Diagnostics.Tools.xml",
  6969. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6970. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6971. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6972. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6973. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6974. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6975. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6976. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6977. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6978. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6979. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6980. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6981. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6982. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6983. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6984. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6985. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6986. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6987. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6988. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6989. "ref/portable-net45+win8+wp8+wpa81/_._",
  6990. "ref/win8/_._",
  6991. "ref/wp80/_._",
  6992. "ref/wpa81/_._",
  6993. "ref/xamarinios10/_._",
  6994. "ref/xamarinmac20/_._",
  6995. "ref/xamarintvos10/_._",
  6996. "ref/xamarinwatchos10/_._",
  6997. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  6998. "system.diagnostics.tools.nuspec"
  6999. ]
  7000. },
  7001. "System.Diagnostics.Tracing/4.3.0": {
  7002. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  7003. "type": "package",
  7004. "path": "system.diagnostics.tracing/4.3.0",
  7005. "files": [
  7006. ".nupkg.metadata",
  7007. "ThirdPartyNotices.txt",
  7008. "dotnet_library_license.txt",
  7009. "lib/MonoAndroid10/_._",
  7010. "lib/MonoTouch10/_._",
  7011. "lib/net45/_._",
  7012. "lib/net462/System.Diagnostics.Tracing.dll",
  7013. "lib/portable-net45+win8+wpa81/_._",
  7014. "lib/win8/_._",
  7015. "lib/wpa81/_._",
  7016. "lib/xamarinios10/_._",
  7017. "lib/xamarinmac20/_._",
  7018. "lib/xamarintvos10/_._",
  7019. "lib/xamarinwatchos10/_._",
  7020. "ref/MonoAndroid10/_._",
  7021. "ref/MonoTouch10/_._",
  7022. "ref/net45/_._",
  7023. "ref/net462/System.Diagnostics.Tracing.dll",
  7024. "ref/netcore50/System.Diagnostics.Tracing.dll",
  7025. "ref/netcore50/System.Diagnostics.Tracing.xml",
  7026. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  7027. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  7028. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  7029. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  7030. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  7031. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  7032. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  7033. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  7034. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  7035. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  7036. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  7037. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  7038. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  7039. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  7040. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  7041. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  7042. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  7043. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  7044. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  7045. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  7046. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  7047. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  7048. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  7049. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  7050. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  7051. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  7052. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  7053. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  7054. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  7055. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  7056. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  7057. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  7058. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  7059. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  7060. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  7061. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  7062. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  7063. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  7064. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  7065. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  7066. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  7067. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  7068. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  7069. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  7070. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  7071. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  7072. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  7073. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  7074. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  7075. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  7076. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  7077. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  7078. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  7079. "ref/portable-net45+win8+wpa81/_._",
  7080. "ref/win8/_._",
  7081. "ref/wpa81/_._",
  7082. "ref/xamarinios10/_._",
  7083. "ref/xamarinmac20/_._",
  7084. "ref/xamarintvos10/_._",
  7085. "ref/xamarinwatchos10/_._",
  7086. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  7087. "system.diagnostics.tracing.nuspec"
  7088. ]
  7089. },
  7090. "System.Drawing.Common/4.7.0": {
  7091. "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==",
  7092. "type": "package",
  7093. "path": "system.drawing.common/4.7.0",
  7094. "files": [
  7095. ".nupkg.metadata",
  7096. ".signature.p7s",
  7097. "LICENSE.TXT",
  7098. "THIRD-PARTY-NOTICES.TXT",
  7099. "lib/MonoAndroid10/_._",
  7100. "lib/MonoTouch10/_._",
  7101. "lib/net461/System.Drawing.Common.dll",
  7102. "lib/netstandard2.0/System.Drawing.Common.dll",
  7103. "lib/xamarinios10/_._",
  7104. "lib/xamarinmac20/_._",
  7105. "lib/xamarintvos10/_._",
  7106. "lib/xamarinwatchos10/_._",
  7107. "ref/MonoAndroid10/_._",
  7108. "ref/MonoTouch10/_._",
  7109. "ref/net461/System.Drawing.Common.dll",
  7110. "ref/netcoreapp3.0/System.Drawing.Common.dll",
  7111. "ref/netcoreapp3.0/System.Drawing.Common.xml",
  7112. "ref/netstandard2.0/System.Drawing.Common.dll",
  7113. "ref/xamarinios10/_._",
  7114. "ref/xamarinmac20/_._",
  7115. "ref/xamarintvos10/_._",
  7116. "ref/xamarinwatchos10/_._",
  7117. "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
  7118. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll",
  7119. "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml",
  7120. "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
  7121. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll",
  7122. "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml",
  7123. "system.drawing.common.4.7.0.nupkg.sha512",
  7124. "system.drawing.common.nuspec",
  7125. "useSharedDesignerContext.txt",
  7126. "version.txt"
  7127. ]
  7128. },
  7129. "System.Dynamic.Runtime/4.0.11": {
  7130. "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==",
  7131. "type": "package",
  7132. "path": "system.dynamic.runtime/4.0.11",
  7133. "files": [
  7134. ".nupkg.metadata",
  7135. "ThirdPartyNotices.txt",
  7136. "dotnet_library_license.txt",
  7137. "lib/MonoAndroid10/_._",
  7138. "lib/MonoTouch10/_._",
  7139. "lib/net45/_._",
  7140. "lib/netcore50/System.Dynamic.Runtime.dll",
  7141. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  7142. "lib/portable-net45+win8+wp8+wpa81/_._",
  7143. "lib/win8/_._",
  7144. "lib/wp80/_._",
  7145. "lib/wpa81/_._",
  7146. "lib/xamarinios10/_._",
  7147. "lib/xamarinmac20/_._",
  7148. "lib/xamarintvos10/_._",
  7149. "lib/xamarinwatchos10/_._",
  7150. "ref/MonoAndroid10/_._",
  7151. "ref/MonoTouch10/_._",
  7152. "ref/net45/_._",
  7153. "ref/netcore50/System.Dynamic.Runtime.dll",
  7154. "ref/netcore50/System.Dynamic.Runtime.xml",
  7155. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  7156. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  7157. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  7158. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  7159. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  7160. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  7161. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  7162. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  7163. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  7164. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  7165. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  7166. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  7167. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  7168. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  7169. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  7170. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  7171. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  7172. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  7173. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  7174. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  7175. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  7176. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  7177. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  7178. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  7179. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  7180. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  7181. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  7182. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  7183. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  7184. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  7185. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  7186. "ref/portable-net45+win8+wp8+wpa81/_._",
  7187. "ref/win8/_._",
  7188. "ref/wp80/_._",
  7189. "ref/wpa81/_._",
  7190. "ref/xamarinios10/_._",
  7191. "ref/xamarinmac20/_._",
  7192. "ref/xamarintvos10/_._",
  7193. "ref/xamarinwatchos10/_._",
  7194. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
  7195. "system.dynamic.runtime.4.0.11.nupkg.sha512",
  7196. "system.dynamic.runtime.nuspec"
  7197. ]
  7198. },
  7199. "System.Globalization/4.3.0": {
  7200. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  7201. "type": "package",
  7202. "path": "system.globalization/4.3.0",
  7203. "files": [
  7204. ".nupkg.metadata",
  7205. "ThirdPartyNotices.txt",
  7206. "dotnet_library_license.txt",
  7207. "lib/MonoAndroid10/_._",
  7208. "lib/MonoTouch10/_._",
  7209. "lib/net45/_._",
  7210. "lib/portable-net45+win8+wp8+wpa81/_._",
  7211. "lib/win8/_._",
  7212. "lib/wp80/_._",
  7213. "lib/wpa81/_._",
  7214. "lib/xamarinios10/_._",
  7215. "lib/xamarinmac20/_._",
  7216. "lib/xamarintvos10/_._",
  7217. "lib/xamarinwatchos10/_._",
  7218. "ref/MonoAndroid10/_._",
  7219. "ref/MonoTouch10/_._",
  7220. "ref/net45/_._",
  7221. "ref/netcore50/System.Globalization.dll",
  7222. "ref/netcore50/System.Globalization.xml",
  7223. "ref/netcore50/de/System.Globalization.xml",
  7224. "ref/netcore50/es/System.Globalization.xml",
  7225. "ref/netcore50/fr/System.Globalization.xml",
  7226. "ref/netcore50/it/System.Globalization.xml",
  7227. "ref/netcore50/ja/System.Globalization.xml",
  7228. "ref/netcore50/ko/System.Globalization.xml",
  7229. "ref/netcore50/ru/System.Globalization.xml",
  7230. "ref/netcore50/zh-hans/System.Globalization.xml",
  7231. "ref/netcore50/zh-hant/System.Globalization.xml",
  7232. "ref/netstandard1.0/System.Globalization.dll",
  7233. "ref/netstandard1.0/System.Globalization.xml",
  7234. "ref/netstandard1.0/de/System.Globalization.xml",
  7235. "ref/netstandard1.0/es/System.Globalization.xml",
  7236. "ref/netstandard1.0/fr/System.Globalization.xml",
  7237. "ref/netstandard1.0/it/System.Globalization.xml",
  7238. "ref/netstandard1.0/ja/System.Globalization.xml",
  7239. "ref/netstandard1.0/ko/System.Globalization.xml",
  7240. "ref/netstandard1.0/ru/System.Globalization.xml",
  7241. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  7242. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  7243. "ref/netstandard1.3/System.Globalization.dll",
  7244. "ref/netstandard1.3/System.Globalization.xml",
  7245. "ref/netstandard1.3/de/System.Globalization.xml",
  7246. "ref/netstandard1.3/es/System.Globalization.xml",
  7247. "ref/netstandard1.3/fr/System.Globalization.xml",
  7248. "ref/netstandard1.3/it/System.Globalization.xml",
  7249. "ref/netstandard1.3/ja/System.Globalization.xml",
  7250. "ref/netstandard1.3/ko/System.Globalization.xml",
  7251. "ref/netstandard1.3/ru/System.Globalization.xml",
  7252. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  7253. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  7254. "ref/portable-net45+win8+wp8+wpa81/_._",
  7255. "ref/win8/_._",
  7256. "ref/wp80/_._",
  7257. "ref/wpa81/_._",
  7258. "ref/xamarinios10/_._",
  7259. "ref/xamarinmac20/_._",
  7260. "ref/xamarintvos10/_._",
  7261. "ref/xamarinwatchos10/_._",
  7262. "system.globalization.4.3.0.nupkg.sha512",
  7263. "system.globalization.nuspec"
  7264. ]
  7265. },
  7266. "System.Globalization.Calendars/4.3.0": {
  7267. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  7268. "type": "package",
  7269. "path": "system.globalization.calendars/4.3.0",
  7270. "files": [
  7271. ".nupkg.metadata",
  7272. "ThirdPartyNotices.txt",
  7273. "dotnet_library_license.txt",
  7274. "lib/MonoAndroid10/_._",
  7275. "lib/MonoTouch10/_._",
  7276. "lib/net46/System.Globalization.Calendars.dll",
  7277. "lib/xamarinios10/_._",
  7278. "lib/xamarinmac20/_._",
  7279. "lib/xamarintvos10/_._",
  7280. "lib/xamarinwatchos10/_._",
  7281. "ref/MonoAndroid10/_._",
  7282. "ref/MonoTouch10/_._",
  7283. "ref/net46/System.Globalization.Calendars.dll",
  7284. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  7285. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  7286. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  7287. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  7288. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  7289. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  7290. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  7291. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  7292. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  7293. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  7294. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  7295. "ref/xamarinios10/_._",
  7296. "ref/xamarinmac20/_._",
  7297. "ref/xamarintvos10/_._",
  7298. "ref/xamarinwatchos10/_._",
  7299. "system.globalization.calendars.4.3.0.nupkg.sha512",
  7300. "system.globalization.calendars.nuspec"
  7301. ]
  7302. },
  7303. "System.Globalization.Extensions/4.3.0": {
  7304. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  7305. "type": "package",
  7306. "path": "system.globalization.extensions/4.3.0",
  7307. "files": [
  7308. ".nupkg.metadata",
  7309. "ThirdPartyNotices.txt",
  7310. "dotnet_library_license.txt",
  7311. "lib/MonoAndroid10/_._",
  7312. "lib/MonoTouch10/_._",
  7313. "lib/net46/System.Globalization.Extensions.dll",
  7314. "lib/xamarinios10/_._",
  7315. "lib/xamarinmac20/_._",
  7316. "lib/xamarintvos10/_._",
  7317. "lib/xamarinwatchos10/_._",
  7318. "ref/MonoAndroid10/_._",
  7319. "ref/MonoTouch10/_._",
  7320. "ref/net46/System.Globalization.Extensions.dll",
  7321. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  7322. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  7323. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  7324. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  7325. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  7326. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  7327. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  7328. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  7329. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  7330. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  7331. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  7332. "ref/xamarinios10/_._",
  7333. "ref/xamarinmac20/_._",
  7334. "ref/xamarintvos10/_._",
  7335. "ref/xamarinwatchos10/_._",
  7336. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7337. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  7338. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  7339. "system.globalization.extensions.4.3.0.nupkg.sha512",
  7340. "system.globalization.extensions.nuspec"
  7341. ]
  7342. },
  7343. "System.IdentityModel.Tokens.Jwt/5.6.0": {
  7344. "sha512": "KMvPpX4exs2fe7Upq5zHMSR4yupc+jy8WG8yjucZL0XvT+r/T0hRvLIe9fP/SeN8/UVxFYBRAkRI5k1zbRGqmA==",
  7345. "type": "package",
  7346. "path": "system.identitymodel.tokens.jwt/5.6.0",
  7347. "files": [
  7348. ".nupkg.metadata",
  7349. ".signature.p7s",
  7350. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  7351. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  7352. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  7353. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  7354. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  7355. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  7356. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  7357. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  7358. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  7359. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  7360. "system.identitymodel.tokens.jwt.5.6.0.nupkg.sha512",
  7361. "system.identitymodel.tokens.jwt.nuspec"
  7362. ]
  7363. },
  7364. "System.IO/4.3.0": {
  7365. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  7366. "type": "package",
  7367. "path": "system.io/4.3.0",
  7368. "files": [
  7369. ".nupkg.metadata",
  7370. "ThirdPartyNotices.txt",
  7371. "dotnet_library_license.txt",
  7372. "lib/MonoAndroid10/_._",
  7373. "lib/MonoTouch10/_._",
  7374. "lib/net45/_._",
  7375. "lib/net462/System.IO.dll",
  7376. "lib/portable-net45+win8+wp8+wpa81/_._",
  7377. "lib/win8/_._",
  7378. "lib/wp80/_._",
  7379. "lib/wpa81/_._",
  7380. "lib/xamarinios10/_._",
  7381. "lib/xamarinmac20/_._",
  7382. "lib/xamarintvos10/_._",
  7383. "lib/xamarinwatchos10/_._",
  7384. "ref/MonoAndroid10/_._",
  7385. "ref/MonoTouch10/_._",
  7386. "ref/net45/_._",
  7387. "ref/net462/System.IO.dll",
  7388. "ref/netcore50/System.IO.dll",
  7389. "ref/netcore50/System.IO.xml",
  7390. "ref/netcore50/de/System.IO.xml",
  7391. "ref/netcore50/es/System.IO.xml",
  7392. "ref/netcore50/fr/System.IO.xml",
  7393. "ref/netcore50/it/System.IO.xml",
  7394. "ref/netcore50/ja/System.IO.xml",
  7395. "ref/netcore50/ko/System.IO.xml",
  7396. "ref/netcore50/ru/System.IO.xml",
  7397. "ref/netcore50/zh-hans/System.IO.xml",
  7398. "ref/netcore50/zh-hant/System.IO.xml",
  7399. "ref/netstandard1.0/System.IO.dll",
  7400. "ref/netstandard1.0/System.IO.xml",
  7401. "ref/netstandard1.0/de/System.IO.xml",
  7402. "ref/netstandard1.0/es/System.IO.xml",
  7403. "ref/netstandard1.0/fr/System.IO.xml",
  7404. "ref/netstandard1.0/it/System.IO.xml",
  7405. "ref/netstandard1.0/ja/System.IO.xml",
  7406. "ref/netstandard1.0/ko/System.IO.xml",
  7407. "ref/netstandard1.0/ru/System.IO.xml",
  7408. "ref/netstandard1.0/zh-hans/System.IO.xml",
  7409. "ref/netstandard1.0/zh-hant/System.IO.xml",
  7410. "ref/netstandard1.3/System.IO.dll",
  7411. "ref/netstandard1.3/System.IO.xml",
  7412. "ref/netstandard1.3/de/System.IO.xml",
  7413. "ref/netstandard1.3/es/System.IO.xml",
  7414. "ref/netstandard1.3/fr/System.IO.xml",
  7415. "ref/netstandard1.3/it/System.IO.xml",
  7416. "ref/netstandard1.3/ja/System.IO.xml",
  7417. "ref/netstandard1.3/ko/System.IO.xml",
  7418. "ref/netstandard1.3/ru/System.IO.xml",
  7419. "ref/netstandard1.3/zh-hans/System.IO.xml",
  7420. "ref/netstandard1.3/zh-hant/System.IO.xml",
  7421. "ref/netstandard1.5/System.IO.dll",
  7422. "ref/netstandard1.5/System.IO.xml",
  7423. "ref/netstandard1.5/de/System.IO.xml",
  7424. "ref/netstandard1.5/es/System.IO.xml",
  7425. "ref/netstandard1.5/fr/System.IO.xml",
  7426. "ref/netstandard1.5/it/System.IO.xml",
  7427. "ref/netstandard1.5/ja/System.IO.xml",
  7428. "ref/netstandard1.5/ko/System.IO.xml",
  7429. "ref/netstandard1.5/ru/System.IO.xml",
  7430. "ref/netstandard1.5/zh-hans/System.IO.xml",
  7431. "ref/netstandard1.5/zh-hant/System.IO.xml",
  7432. "ref/portable-net45+win8+wp8+wpa81/_._",
  7433. "ref/win8/_._",
  7434. "ref/wp80/_._",
  7435. "ref/wpa81/_._",
  7436. "ref/xamarinios10/_._",
  7437. "ref/xamarinmac20/_._",
  7438. "ref/xamarintvos10/_._",
  7439. "ref/xamarinwatchos10/_._",
  7440. "system.io.4.3.0.nupkg.sha512",
  7441. "system.io.nuspec"
  7442. ]
  7443. },
  7444. "System.IO.Compression/4.3.0": {
  7445. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  7446. "type": "package",
  7447. "path": "system.io.compression/4.3.0",
  7448. "files": [
  7449. ".nupkg.metadata",
  7450. "ThirdPartyNotices.txt",
  7451. "dotnet_library_license.txt",
  7452. "lib/MonoAndroid10/_._",
  7453. "lib/MonoTouch10/_._",
  7454. "lib/net45/_._",
  7455. "lib/net46/System.IO.Compression.dll",
  7456. "lib/portable-net45+win8+wpa81/_._",
  7457. "lib/win8/_._",
  7458. "lib/wpa81/_._",
  7459. "lib/xamarinios10/_._",
  7460. "lib/xamarinmac20/_._",
  7461. "lib/xamarintvos10/_._",
  7462. "lib/xamarinwatchos10/_._",
  7463. "ref/MonoAndroid10/_._",
  7464. "ref/MonoTouch10/_._",
  7465. "ref/net45/_._",
  7466. "ref/net46/System.IO.Compression.dll",
  7467. "ref/netcore50/System.IO.Compression.dll",
  7468. "ref/netcore50/System.IO.Compression.xml",
  7469. "ref/netcore50/de/System.IO.Compression.xml",
  7470. "ref/netcore50/es/System.IO.Compression.xml",
  7471. "ref/netcore50/fr/System.IO.Compression.xml",
  7472. "ref/netcore50/it/System.IO.Compression.xml",
  7473. "ref/netcore50/ja/System.IO.Compression.xml",
  7474. "ref/netcore50/ko/System.IO.Compression.xml",
  7475. "ref/netcore50/ru/System.IO.Compression.xml",
  7476. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  7477. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  7478. "ref/netstandard1.1/System.IO.Compression.dll",
  7479. "ref/netstandard1.1/System.IO.Compression.xml",
  7480. "ref/netstandard1.1/de/System.IO.Compression.xml",
  7481. "ref/netstandard1.1/es/System.IO.Compression.xml",
  7482. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  7483. "ref/netstandard1.1/it/System.IO.Compression.xml",
  7484. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  7485. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  7486. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  7487. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  7488. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  7489. "ref/netstandard1.3/System.IO.Compression.dll",
  7490. "ref/netstandard1.3/System.IO.Compression.xml",
  7491. "ref/netstandard1.3/de/System.IO.Compression.xml",
  7492. "ref/netstandard1.3/es/System.IO.Compression.xml",
  7493. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  7494. "ref/netstandard1.3/it/System.IO.Compression.xml",
  7495. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  7496. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  7497. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  7498. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  7499. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  7500. "ref/portable-net45+win8+wpa81/_._",
  7501. "ref/win8/_._",
  7502. "ref/wpa81/_._",
  7503. "ref/xamarinios10/_._",
  7504. "ref/xamarinmac20/_._",
  7505. "ref/xamarintvos10/_._",
  7506. "ref/xamarinwatchos10/_._",
  7507. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  7508. "runtimes/win/lib/net46/System.IO.Compression.dll",
  7509. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  7510. "system.io.compression.4.3.0.nupkg.sha512",
  7511. "system.io.compression.nuspec"
  7512. ]
  7513. },
  7514. "System.IO.Compression.ZipFile/4.3.0": {
  7515. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  7516. "type": "package",
  7517. "path": "system.io.compression.zipfile/4.3.0",
  7518. "files": [
  7519. ".nupkg.metadata",
  7520. "ThirdPartyNotices.txt",
  7521. "dotnet_library_license.txt",
  7522. "lib/MonoAndroid10/_._",
  7523. "lib/MonoTouch10/_._",
  7524. "lib/net46/System.IO.Compression.ZipFile.dll",
  7525. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7526. "lib/xamarinios10/_._",
  7527. "lib/xamarinmac20/_._",
  7528. "lib/xamarintvos10/_._",
  7529. "lib/xamarinwatchos10/_._",
  7530. "ref/MonoAndroid10/_._",
  7531. "ref/MonoTouch10/_._",
  7532. "ref/net46/System.IO.Compression.ZipFile.dll",
  7533. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  7534. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  7535. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  7536. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  7537. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  7538. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  7539. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  7540. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  7541. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  7542. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  7543. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  7544. "ref/xamarinios10/_._",
  7545. "ref/xamarinmac20/_._",
  7546. "ref/xamarintvos10/_._",
  7547. "ref/xamarinwatchos10/_._",
  7548. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  7549. "system.io.compression.zipfile.nuspec"
  7550. ]
  7551. },
  7552. "System.IO.FileSystem/4.3.0": {
  7553. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  7554. "type": "package",
  7555. "path": "system.io.filesystem/4.3.0",
  7556. "files": [
  7557. ".nupkg.metadata",
  7558. "ThirdPartyNotices.txt",
  7559. "dotnet_library_license.txt",
  7560. "lib/MonoAndroid10/_._",
  7561. "lib/MonoTouch10/_._",
  7562. "lib/net46/System.IO.FileSystem.dll",
  7563. "lib/xamarinios10/_._",
  7564. "lib/xamarinmac20/_._",
  7565. "lib/xamarintvos10/_._",
  7566. "lib/xamarinwatchos10/_._",
  7567. "ref/MonoAndroid10/_._",
  7568. "ref/MonoTouch10/_._",
  7569. "ref/net46/System.IO.FileSystem.dll",
  7570. "ref/netstandard1.3/System.IO.FileSystem.dll",
  7571. "ref/netstandard1.3/System.IO.FileSystem.xml",
  7572. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  7573. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  7574. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  7575. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  7576. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  7577. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  7578. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  7579. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  7580. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  7581. "ref/xamarinios10/_._",
  7582. "ref/xamarinmac20/_._",
  7583. "ref/xamarintvos10/_._",
  7584. "ref/xamarinwatchos10/_._",
  7585. "system.io.filesystem.4.3.0.nupkg.sha512",
  7586. "system.io.filesystem.nuspec"
  7587. ]
  7588. },
  7589. "System.IO.FileSystem.Primitives/4.3.0": {
  7590. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  7591. "type": "package",
  7592. "path": "system.io.filesystem.primitives/4.3.0",
  7593. "files": [
  7594. ".nupkg.metadata",
  7595. "ThirdPartyNotices.txt",
  7596. "dotnet_library_license.txt",
  7597. "lib/MonoAndroid10/_._",
  7598. "lib/MonoTouch10/_._",
  7599. "lib/net46/System.IO.FileSystem.Primitives.dll",
  7600. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7601. "lib/xamarinios10/_._",
  7602. "lib/xamarinmac20/_._",
  7603. "lib/xamarintvos10/_._",
  7604. "lib/xamarinwatchos10/_._",
  7605. "ref/MonoAndroid10/_._",
  7606. "ref/MonoTouch10/_._",
  7607. "ref/net46/System.IO.FileSystem.Primitives.dll",
  7608. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  7609. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  7610. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  7611. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  7612. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  7613. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  7614. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  7615. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  7616. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  7617. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  7618. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  7619. "ref/xamarinios10/_._",
  7620. "ref/xamarinmac20/_._",
  7621. "ref/xamarintvos10/_._",
  7622. "ref/xamarinwatchos10/_._",
  7623. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  7624. "system.io.filesystem.primitives.nuspec"
  7625. ]
  7626. },
  7627. "System.IO.Pipelines/5.0.2": {
  7628. "sha512": "Iew+dfa6FFiyvWBdRmXApixRY1db+beyutpIck4SOSe0NLM8FD/7AD54MscqVLhvfSMLHO7KadjTRT7fqxOGTA==",
  7629. "type": "package",
  7630. "path": "system.io.pipelines/5.0.2",
  7631. "files": [
  7632. ".nupkg.metadata",
  7633. ".signature.p7s",
  7634. "Icon.png",
  7635. "LICENSE.TXT",
  7636. "THIRD-PARTY-NOTICES.TXT",
  7637. "lib/net461/System.IO.Pipelines.dll",
  7638. "lib/net461/System.IO.Pipelines.xml",
  7639. "lib/netcoreapp3.0/System.IO.Pipelines.dll",
  7640. "lib/netcoreapp3.0/System.IO.Pipelines.xml",
  7641. "lib/netstandard1.3/System.IO.Pipelines.dll",
  7642. "lib/netstandard1.3/System.IO.Pipelines.xml",
  7643. "lib/netstandard2.0/System.IO.Pipelines.dll",
  7644. "lib/netstandard2.0/System.IO.Pipelines.xml",
  7645. "ref/netcoreapp2.0/System.IO.Pipelines.dll",
  7646. "ref/netcoreapp2.0/System.IO.Pipelines.xml",
  7647. "system.io.pipelines.5.0.2.nupkg.sha512",
  7648. "system.io.pipelines.nuspec",
  7649. "useSharedDesignerContext.txt",
  7650. "version.txt"
  7651. ]
  7652. },
  7653. "System.Linq/4.3.0": {
  7654. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  7655. "type": "package",
  7656. "path": "system.linq/4.3.0",
  7657. "files": [
  7658. ".nupkg.metadata",
  7659. "ThirdPartyNotices.txt",
  7660. "dotnet_library_license.txt",
  7661. "lib/MonoAndroid10/_._",
  7662. "lib/MonoTouch10/_._",
  7663. "lib/net45/_._",
  7664. "lib/net463/System.Linq.dll",
  7665. "lib/netcore50/System.Linq.dll",
  7666. "lib/netstandard1.6/System.Linq.dll",
  7667. "lib/portable-net45+win8+wp8+wpa81/_._",
  7668. "lib/win8/_._",
  7669. "lib/wp80/_._",
  7670. "lib/wpa81/_._",
  7671. "lib/xamarinios10/_._",
  7672. "lib/xamarinmac20/_._",
  7673. "lib/xamarintvos10/_._",
  7674. "lib/xamarinwatchos10/_._",
  7675. "ref/MonoAndroid10/_._",
  7676. "ref/MonoTouch10/_._",
  7677. "ref/net45/_._",
  7678. "ref/net463/System.Linq.dll",
  7679. "ref/netcore50/System.Linq.dll",
  7680. "ref/netcore50/System.Linq.xml",
  7681. "ref/netcore50/de/System.Linq.xml",
  7682. "ref/netcore50/es/System.Linq.xml",
  7683. "ref/netcore50/fr/System.Linq.xml",
  7684. "ref/netcore50/it/System.Linq.xml",
  7685. "ref/netcore50/ja/System.Linq.xml",
  7686. "ref/netcore50/ko/System.Linq.xml",
  7687. "ref/netcore50/ru/System.Linq.xml",
  7688. "ref/netcore50/zh-hans/System.Linq.xml",
  7689. "ref/netcore50/zh-hant/System.Linq.xml",
  7690. "ref/netstandard1.0/System.Linq.dll",
  7691. "ref/netstandard1.0/System.Linq.xml",
  7692. "ref/netstandard1.0/de/System.Linq.xml",
  7693. "ref/netstandard1.0/es/System.Linq.xml",
  7694. "ref/netstandard1.0/fr/System.Linq.xml",
  7695. "ref/netstandard1.0/it/System.Linq.xml",
  7696. "ref/netstandard1.0/ja/System.Linq.xml",
  7697. "ref/netstandard1.0/ko/System.Linq.xml",
  7698. "ref/netstandard1.0/ru/System.Linq.xml",
  7699. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7700. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7701. "ref/netstandard1.6/System.Linq.dll",
  7702. "ref/netstandard1.6/System.Linq.xml",
  7703. "ref/netstandard1.6/de/System.Linq.xml",
  7704. "ref/netstandard1.6/es/System.Linq.xml",
  7705. "ref/netstandard1.6/fr/System.Linq.xml",
  7706. "ref/netstandard1.6/it/System.Linq.xml",
  7707. "ref/netstandard1.6/ja/System.Linq.xml",
  7708. "ref/netstandard1.6/ko/System.Linq.xml",
  7709. "ref/netstandard1.6/ru/System.Linq.xml",
  7710. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7711. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7712. "ref/portable-net45+win8+wp8+wpa81/_._",
  7713. "ref/win8/_._",
  7714. "ref/wp80/_._",
  7715. "ref/wpa81/_._",
  7716. "ref/xamarinios10/_._",
  7717. "ref/xamarinmac20/_._",
  7718. "ref/xamarintvos10/_._",
  7719. "ref/xamarinwatchos10/_._",
  7720. "system.linq.4.3.0.nupkg.sha512",
  7721. "system.linq.nuspec"
  7722. ]
  7723. },
  7724. "System.Linq.Expressions/4.3.0": {
  7725. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  7726. "type": "package",
  7727. "path": "system.linq.expressions/4.3.0",
  7728. "files": [
  7729. ".nupkg.metadata",
  7730. "ThirdPartyNotices.txt",
  7731. "dotnet_library_license.txt",
  7732. "lib/MonoAndroid10/_._",
  7733. "lib/MonoTouch10/_._",
  7734. "lib/net45/_._",
  7735. "lib/net463/System.Linq.Expressions.dll",
  7736. "lib/netcore50/System.Linq.Expressions.dll",
  7737. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7738. "lib/portable-net45+win8+wp8+wpa81/_._",
  7739. "lib/win8/_._",
  7740. "lib/wp80/_._",
  7741. "lib/wpa81/_._",
  7742. "lib/xamarinios10/_._",
  7743. "lib/xamarinmac20/_._",
  7744. "lib/xamarintvos10/_._",
  7745. "lib/xamarinwatchos10/_._",
  7746. "ref/MonoAndroid10/_._",
  7747. "ref/MonoTouch10/_._",
  7748. "ref/net45/_._",
  7749. "ref/net463/System.Linq.Expressions.dll",
  7750. "ref/netcore50/System.Linq.Expressions.dll",
  7751. "ref/netcore50/System.Linq.Expressions.xml",
  7752. "ref/netcore50/de/System.Linq.Expressions.xml",
  7753. "ref/netcore50/es/System.Linq.Expressions.xml",
  7754. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7755. "ref/netcore50/it/System.Linq.Expressions.xml",
  7756. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7757. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7758. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7759. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7760. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7761. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7762. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7763. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7764. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7765. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7766. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7767. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7768. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7769. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7770. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7771. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7772. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7773. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7774. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7775. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7776. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7777. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7778. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7779. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7780. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7781. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7782. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7783. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7784. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7785. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7786. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7787. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7788. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7789. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7790. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7791. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7792. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7793. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7794. "ref/portable-net45+win8+wp8+wpa81/_._",
  7795. "ref/win8/_._",
  7796. "ref/wp80/_._",
  7797. "ref/wpa81/_._",
  7798. "ref/xamarinios10/_._",
  7799. "ref/xamarinmac20/_._",
  7800. "ref/xamarintvos10/_._",
  7801. "ref/xamarinwatchos10/_._",
  7802. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  7803. "system.linq.expressions.4.3.0.nupkg.sha512",
  7804. "system.linq.expressions.nuspec"
  7805. ]
  7806. },
  7807. "System.Memory/4.5.4": {
  7808. "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
  7809. "type": "package",
  7810. "path": "system.memory/4.5.4",
  7811. "files": [
  7812. ".nupkg.metadata",
  7813. ".signature.p7s",
  7814. "LICENSE.TXT",
  7815. "THIRD-PARTY-NOTICES.TXT",
  7816. "lib/net461/System.Memory.dll",
  7817. "lib/net461/System.Memory.xml",
  7818. "lib/netcoreapp2.1/_._",
  7819. "lib/netstandard1.1/System.Memory.dll",
  7820. "lib/netstandard1.1/System.Memory.xml",
  7821. "lib/netstandard2.0/System.Memory.dll",
  7822. "lib/netstandard2.0/System.Memory.xml",
  7823. "ref/netcoreapp2.1/_._",
  7824. "system.memory.4.5.4.nupkg.sha512",
  7825. "system.memory.nuspec",
  7826. "useSharedDesignerContext.txt",
  7827. "version.txt"
  7828. ]
  7829. },
  7830. "System.Net.Http/4.3.0": {
  7831. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  7832. "type": "package",
  7833. "path": "system.net.http/4.3.0",
  7834. "files": [
  7835. ".nupkg.metadata",
  7836. "ThirdPartyNotices.txt",
  7837. "dotnet_library_license.txt",
  7838. "lib/Xamarinmac20/_._",
  7839. "lib/monoandroid10/_._",
  7840. "lib/monotouch10/_._",
  7841. "lib/net45/_._",
  7842. "lib/net46/System.Net.Http.dll",
  7843. "lib/portable-net45+win8+wpa81/_._",
  7844. "lib/win8/_._",
  7845. "lib/wpa81/_._",
  7846. "lib/xamarinios10/_._",
  7847. "lib/xamarintvos10/_._",
  7848. "lib/xamarinwatchos10/_._",
  7849. "ref/Xamarinmac20/_._",
  7850. "ref/monoandroid10/_._",
  7851. "ref/monotouch10/_._",
  7852. "ref/net45/_._",
  7853. "ref/net46/System.Net.Http.dll",
  7854. "ref/net46/System.Net.Http.xml",
  7855. "ref/net46/de/System.Net.Http.xml",
  7856. "ref/net46/es/System.Net.Http.xml",
  7857. "ref/net46/fr/System.Net.Http.xml",
  7858. "ref/net46/it/System.Net.Http.xml",
  7859. "ref/net46/ja/System.Net.Http.xml",
  7860. "ref/net46/ko/System.Net.Http.xml",
  7861. "ref/net46/ru/System.Net.Http.xml",
  7862. "ref/net46/zh-hans/System.Net.Http.xml",
  7863. "ref/net46/zh-hant/System.Net.Http.xml",
  7864. "ref/netcore50/System.Net.Http.dll",
  7865. "ref/netcore50/System.Net.Http.xml",
  7866. "ref/netcore50/de/System.Net.Http.xml",
  7867. "ref/netcore50/es/System.Net.Http.xml",
  7868. "ref/netcore50/fr/System.Net.Http.xml",
  7869. "ref/netcore50/it/System.Net.Http.xml",
  7870. "ref/netcore50/ja/System.Net.Http.xml",
  7871. "ref/netcore50/ko/System.Net.Http.xml",
  7872. "ref/netcore50/ru/System.Net.Http.xml",
  7873. "ref/netcore50/zh-hans/System.Net.Http.xml",
  7874. "ref/netcore50/zh-hant/System.Net.Http.xml",
  7875. "ref/netstandard1.1/System.Net.Http.dll",
  7876. "ref/netstandard1.1/System.Net.Http.xml",
  7877. "ref/netstandard1.1/de/System.Net.Http.xml",
  7878. "ref/netstandard1.1/es/System.Net.Http.xml",
  7879. "ref/netstandard1.1/fr/System.Net.Http.xml",
  7880. "ref/netstandard1.1/it/System.Net.Http.xml",
  7881. "ref/netstandard1.1/ja/System.Net.Http.xml",
  7882. "ref/netstandard1.1/ko/System.Net.Http.xml",
  7883. "ref/netstandard1.1/ru/System.Net.Http.xml",
  7884. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  7885. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  7886. "ref/netstandard1.3/System.Net.Http.dll",
  7887. "ref/netstandard1.3/System.Net.Http.xml",
  7888. "ref/netstandard1.3/de/System.Net.Http.xml",
  7889. "ref/netstandard1.3/es/System.Net.Http.xml",
  7890. "ref/netstandard1.3/fr/System.Net.Http.xml",
  7891. "ref/netstandard1.3/it/System.Net.Http.xml",
  7892. "ref/netstandard1.3/ja/System.Net.Http.xml",
  7893. "ref/netstandard1.3/ko/System.Net.Http.xml",
  7894. "ref/netstandard1.3/ru/System.Net.Http.xml",
  7895. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  7896. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  7897. "ref/portable-net45+win8+wpa81/_._",
  7898. "ref/win8/_._",
  7899. "ref/wpa81/_._",
  7900. "ref/xamarinios10/_._",
  7901. "ref/xamarintvos10/_._",
  7902. "ref/xamarinwatchos10/_._",
  7903. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7904. "runtimes/win/lib/net46/System.Net.Http.dll",
  7905. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7906. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  7907. "system.net.http.4.3.0.nupkg.sha512",
  7908. "system.net.http.nuspec"
  7909. ]
  7910. },
  7911. "System.Net.NameResolution/4.3.0": {
  7912. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  7913. "type": "package",
  7914. "path": "system.net.nameresolution/4.3.0",
  7915. "files": [
  7916. ".nupkg.metadata",
  7917. "ThirdPartyNotices.txt",
  7918. "dotnet_library_license.txt",
  7919. "lib/MonoAndroid10/_._",
  7920. "lib/MonoTouch10/_._",
  7921. "lib/net46/System.Net.NameResolution.dll",
  7922. "lib/xamarinios10/_._",
  7923. "lib/xamarinmac20/_._",
  7924. "lib/xamarintvos10/_._",
  7925. "lib/xamarinwatchos10/_._",
  7926. "ref/MonoAndroid10/_._",
  7927. "ref/MonoTouch10/_._",
  7928. "ref/net46/System.Net.NameResolution.dll",
  7929. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7930. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7931. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7932. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7933. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7934. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7935. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7936. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7937. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7938. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7939. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7940. "ref/xamarinios10/_._",
  7941. "ref/xamarinmac20/_._",
  7942. "ref/xamarintvos10/_._",
  7943. "ref/xamarinwatchos10/_._",
  7944. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7945. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7946. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7947. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  7948. "system.net.nameresolution.4.3.0.nupkg.sha512",
  7949. "system.net.nameresolution.nuspec"
  7950. ]
  7951. },
  7952. "System.Net.Primitives/4.3.0": {
  7953. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  7954. "type": "package",
  7955. "path": "system.net.primitives/4.3.0",
  7956. "files": [
  7957. ".nupkg.metadata",
  7958. "ThirdPartyNotices.txt",
  7959. "dotnet_library_license.txt",
  7960. "lib/MonoAndroid10/_._",
  7961. "lib/MonoTouch10/_._",
  7962. "lib/net45/_._",
  7963. "lib/portable-net45+win8+wp8+wpa81/_._",
  7964. "lib/win8/_._",
  7965. "lib/wp80/_._",
  7966. "lib/wpa81/_._",
  7967. "lib/xamarinios10/_._",
  7968. "lib/xamarinmac20/_._",
  7969. "lib/xamarintvos10/_._",
  7970. "lib/xamarinwatchos10/_._",
  7971. "ref/MonoAndroid10/_._",
  7972. "ref/MonoTouch10/_._",
  7973. "ref/net45/_._",
  7974. "ref/netcore50/System.Net.Primitives.dll",
  7975. "ref/netcore50/System.Net.Primitives.xml",
  7976. "ref/netcore50/de/System.Net.Primitives.xml",
  7977. "ref/netcore50/es/System.Net.Primitives.xml",
  7978. "ref/netcore50/fr/System.Net.Primitives.xml",
  7979. "ref/netcore50/it/System.Net.Primitives.xml",
  7980. "ref/netcore50/ja/System.Net.Primitives.xml",
  7981. "ref/netcore50/ko/System.Net.Primitives.xml",
  7982. "ref/netcore50/ru/System.Net.Primitives.xml",
  7983. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7984. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7985. "ref/netstandard1.0/System.Net.Primitives.dll",
  7986. "ref/netstandard1.0/System.Net.Primitives.xml",
  7987. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7988. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7989. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7990. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7991. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7992. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7993. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7994. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7995. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7996. "ref/netstandard1.1/System.Net.Primitives.dll",
  7997. "ref/netstandard1.1/System.Net.Primitives.xml",
  7998. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7999. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  8000. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  8001. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  8002. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  8003. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  8004. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  8005. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  8006. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  8007. "ref/netstandard1.3/System.Net.Primitives.dll",
  8008. "ref/netstandard1.3/System.Net.Primitives.xml",
  8009. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  8010. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  8011. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  8012. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  8013. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  8014. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  8015. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  8016. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  8017. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  8018. "ref/portable-net45+win8+wp8+wpa81/_._",
  8019. "ref/win8/_._",
  8020. "ref/wp80/_._",
  8021. "ref/wpa81/_._",
  8022. "ref/xamarinios10/_._",
  8023. "ref/xamarinmac20/_._",
  8024. "ref/xamarintvos10/_._",
  8025. "ref/xamarinwatchos10/_._",
  8026. "system.net.primitives.4.3.0.nupkg.sha512",
  8027. "system.net.primitives.nuspec"
  8028. ]
  8029. },
  8030. "System.Net.Sockets/4.3.0": {
  8031. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  8032. "type": "package",
  8033. "path": "system.net.sockets/4.3.0",
  8034. "files": [
  8035. ".nupkg.metadata",
  8036. "ThirdPartyNotices.txt",
  8037. "dotnet_library_license.txt",
  8038. "lib/MonoAndroid10/_._",
  8039. "lib/MonoTouch10/_._",
  8040. "lib/net46/System.Net.Sockets.dll",
  8041. "lib/xamarinios10/_._",
  8042. "lib/xamarinmac20/_._",
  8043. "lib/xamarintvos10/_._",
  8044. "lib/xamarinwatchos10/_._",
  8045. "ref/MonoAndroid10/_._",
  8046. "ref/MonoTouch10/_._",
  8047. "ref/net46/System.Net.Sockets.dll",
  8048. "ref/netstandard1.3/System.Net.Sockets.dll",
  8049. "ref/netstandard1.3/System.Net.Sockets.xml",
  8050. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  8051. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  8052. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  8053. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  8054. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  8055. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  8056. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  8057. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  8058. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  8059. "ref/xamarinios10/_._",
  8060. "ref/xamarinmac20/_._",
  8061. "ref/xamarintvos10/_._",
  8062. "ref/xamarinwatchos10/_._",
  8063. "system.net.sockets.4.3.0.nupkg.sha512",
  8064. "system.net.sockets.nuspec"
  8065. ]
  8066. },
  8067. "System.ObjectModel/4.3.0": {
  8068. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  8069. "type": "package",
  8070. "path": "system.objectmodel/4.3.0",
  8071. "files": [
  8072. ".nupkg.metadata",
  8073. "ThirdPartyNotices.txt",
  8074. "dotnet_library_license.txt",
  8075. "lib/MonoAndroid10/_._",
  8076. "lib/MonoTouch10/_._",
  8077. "lib/net45/_._",
  8078. "lib/netcore50/System.ObjectModel.dll",
  8079. "lib/netstandard1.3/System.ObjectModel.dll",
  8080. "lib/portable-net45+win8+wp8+wpa81/_._",
  8081. "lib/win8/_._",
  8082. "lib/wp80/_._",
  8083. "lib/wpa81/_._",
  8084. "lib/xamarinios10/_._",
  8085. "lib/xamarinmac20/_._",
  8086. "lib/xamarintvos10/_._",
  8087. "lib/xamarinwatchos10/_._",
  8088. "ref/MonoAndroid10/_._",
  8089. "ref/MonoTouch10/_._",
  8090. "ref/net45/_._",
  8091. "ref/netcore50/System.ObjectModel.dll",
  8092. "ref/netcore50/System.ObjectModel.xml",
  8093. "ref/netcore50/de/System.ObjectModel.xml",
  8094. "ref/netcore50/es/System.ObjectModel.xml",
  8095. "ref/netcore50/fr/System.ObjectModel.xml",
  8096. "ref/netcore50/it/System.ObjectModel.xml",
  8097. "ref/netcore50/ja/System.ObjectModel.xml",
  8098. "ref/netcore50/ko/System.ObjectModel.xml",
  8099. "ref/netcore50/ru/System.ObjectModel.xml",
  8100. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  8101. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  8102. "ref/netstandard1.0/System.ObjectModel.dll",
  8103. "ref/netstandard1.0/System.ObjectModel.xml",
  8104. "ref/netstandard1.0/de/System.ObjectModel.xml",
  8105. "ref/netstandard1.0/es/System.ObjectModel.xml",
  8106. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  8107. "ref/netstandard1.0/it/System.ObjectModel.xml",
  8108. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  8109. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  8110. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  8111. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  8112. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  8113. "ref/netstandard1.3/System.ObjectModel.dll",
  8114. "ref/netstandard1.3/System.ObjectModel.xml",
  8115. "ref/netstandard1.3/de/System.ObjectModel.xml",
  8116. "ref/netstandard1.3/es/System.ObjectModel.xml",
  8117. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  8118. "ref/netstandard1.3/it/System.ObjectModel.xml",
  8119. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  8120. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  8121. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  8122. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  8123. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  8124. "ref/portable-net45+win8+wp8+wpa81/_._",
  8125. "ref/win8/_._",
  8126. "ref/wp80/_._",
  8127. "ref/wpa81/_._",
  8128. "ref/xamarinios10/_._",
  8129. "ref/xamarinmac20/_._",
  8130. "ref/xamarintvos10/_._",
  8131. "ref/xamarinwatchos10/_._",
  8132. "system.objectmodel.4.3.0.nupkg.sha512",
  8133. "system.objectmodel.nuspec"
  8134. ]
  8135. },
  8136. "System.Private.DataContractSerialization/4.3.0": {
  8137. "sha512": "yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
  8138. "type": "package",
  8139. "path": "system.private.datacontractserialization/4.3.0",
  8140. "files": [
  8141. ".nupkg.metadata",
  8142. "ThirdPartyNotices.txt",
  8143. "dotnet_library_license.txt",
  8144. "lib/netstandard1.3/System.Private.DataContractSerialization.dll",
  8145. "ref/netstandard/_._",
  8146. "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll",
  8147. "system.private.datacontractserialization.4.3.0.nupkg.sha512",
  8148. "system.private.datacontractserialization.nuspec"
  8149. ]
  8150. },
  8151. "System.Private.Uri/4.3.2": {
  8152. "sha512": "o1+7RJnu3Ik3PazR7Z7tJhjPdE000Eq2KGLLWhqJJKXj04wrS8lwb1OFtDF9jzXXADhUuZNJZlPc98uwwqmpFA==",
  8153. "type": "package",
  8154. "path": "system.private.uri/4.3.2",
  8155. "files": [
  8156. ".nupkg.metadata",
  8157. ".signature.p7s",
  8158. "ThirdPartyNotices.txt",
  8159. "dotnet_library_license.txt",
  8160. "ref/netstandard/_._",
  8161. "system.private.uri.4.3.2.nupkg.sha512",
  8162. "system.private.uri.nuspec"
  8163. ]
  8164. },
  8165. "System.Reflection/4.3.0": {
  8166. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  8167. "type": "package",
  8168. "path": "system.reflection/4.3.0",
  8169. "files": [
  8170. ".nupkg.metadata",
  8171. "ThirdPartyNotices.txt",
  8172. "dotnet_library_license.txt",
  8173. "lib/MonoAndroid10/_._",
  8174. "lib/MonoTouch10/_._",
  8175. "lib/net45/_._",
  8176. "lib/net462/System.Reflection.dll",
  8177. "lib/portable-net45+win8+wp8+wpa81/_._",
  8178. "lib/win8/_._",
  8179. "lib/wp80/_._",
  8180. "lib/wpa81/_._",
  8181. "lib/xamarinios10/_._",
  8182. "lib/xamarinmac20/_._",
  8183. "lib/xamarintvos10/_._",
  8184. "lib/xamarinwatchos10/_._",
  8185. "ref/MonoAndroid10/_._",
  8186. "ref/MonoTouch10/_._",
  8187. "ref/net45/_._",
  8188. "ref/net462/System.Reflection.dll",
  8189. "ref/netcore50/System.Reflection.dll",
  8190. "ref/netcore50/System.Reflection.xml",
  8191. "ref/netcore50/de/System.Reflection.xml",
  8192. "ref/netcore50/es/System.Reflection.xml",
  8193. "ref/netcore50/fr/System.Reflection.xml",
  8194. "ref/netcore50/it/System.Reflection.xml",
  8195. "ref/netcore50/ja/System.Reflection.xml",
  8196. "ref/netcore50/ko/System.Reflection.xml",
  8197. "ref/netcore50/ru/System.Reflection.xml",
  8198. "ref/netcore50/zh-hans/System.Reflection.xml",
  8199. "ref/netcore50/zh-hant/System.Reflection.xml",
  8200. "ref/netstandard1.0/System.Reflection.dll",
  8201. "ref/netstandard1.0/System.Reflection.xml",
  8202. "ref/netstandard1.0/de/System.Reflection.xml",
  8203. "ref/netstandard1.0/es/System.Reflection.xml",
  8204. "ref/netstandard1.0/fr/System.Reflection.xml",
  8205. "ref/netstandard1.0/it/System.Reflection.xml",
  8206. "ref/netstandard1.0/ja/System.Reflection.xml",
  8207. "ref/netstandard1.0/ko/System.Reflection.xml",
  8208. "ref/netstandard1.0/ru/System.Reflection.xml",
  8209. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  8210. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  8211. "ref/netstandard1.3/System.Reflection.dll",
  8212. "ref/netstandard1.3/System.Reflection.xml",
  8213. "ref/netstandard1.3/de/System.Reflection.xml",
  8214. "ref/netstandard1.3/es/System.Reflection.xml",
  8215. "ref/netstandard1.3/fr/System.Reflection.xml",
  8216. "ref/netstandard1.3/it/System.Reflection.xml",
  8217. "ref/netstandard1.3/ja/System.Reflection.xml",
  8218. "ref/netstandard1.3/ko/System.Reflection.xml",
  8219. "ref/netstandard1.3/ru/System.Reflection.xml",
  8220. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  8221. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  8222. "ref/netstandard1.5/System.Reflection.dll",
  8223. "ref/netstandard1.5/System.Reflection.xml",
  8224. "ref/netstandard1.5/de/System.Reflection.xml",
  8225. "ref/netstandard1.5/es/System.Reflection.xml",
  8226. "ref/netstandard1.5/fr/System.Reflection.xml",
  8227. "ref/netstandard1.5/it/System.Reflection.xml",
  8228. "ref/netstandard1.5/ja/System.Reflection.xml",
  8229. "ref/netstandard1.5/ko/System.Reflection.xml",
  8230. "ref/netstandard1.5/ru/System.Reflection.xml",
  8231. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  8232. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  8233. "ref/portable-net45+win8+wp8+wpa81/_._",
  8234. "ref/win8/_._",
  8235. "ref/wp80/_._",
  8236. "ref/wpa81/_._",
  8237. "ref/xamarinios10/_._",
  8238. "ref/xamarinmac20/_._",
  8239. "ref/xamarintvos10/_._",
  8240. "ref/xamarinwatchos10/_._",
  8241. "system.reflection.4.3.0.nupkg.sha512",
  8242. "system.reflection.nuspec"
  8243. ]
  8244. },
  8245. "System.Reflection.Emit/4.3.0": {
  8246. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  8247. "type": "package",
  8248. "path": "system.reflection.emit/4.3.0",
  8249. "files": [
  8250. ".nupkg.metadata",
  8251. "ThirdPartyNotices.txt",
  8252. "dotnet_library_license.txt",
  8253. "lib/MonoAndroid10/_._",
  8254. "lib/monotouch10/_._",
  8255. "lib/net45/_._",
  8256. "lib/netcore50/System.Reflection.Emit.dll",
  8257. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8258. "lib/xamarinios10/_._",
  8259. "lib/xamarinmac20/_._",
  8260. "lib/xamarintvos10/_._",
  8261. "lib/xamarinwatchos10/_._",
  8262. "ref/MonoAndroid10/_._",
  8263. "ref/net45/_._",
  8264. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8265. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8266. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8267. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8268. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8269. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8270. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8271. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8272. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8273. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8274. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8275. "ref/xamarinmac20/_._",
  8276. "system.reflection.emit.4.3.0.nupkg.sha512",
  8277. "system.reflection.emit.nuspec"
  8278. ]
  8279. },
  8280. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8281. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  8282. "type": "package",
  8283. "path": "system.reflection.emit.ilgeneration/4.3.0",
  8284. "files": [
  8285. ".nupkg.metadata",
  8286. "ThirdPartyNotices.txt",
  8287. "dotnet_library_license.txt",
  8288. "lib/MonoAndroid10/_._",
  8289. "lib/MonoTouch10/_._",
  8290. "lib/net45/_._",
  8291. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8292. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8293. "lib/portable-net45+wp8/_._",
  8294. "lib/wp80/_._",
  8295. "lib/xamarinios10/_._",
  8296. "lib/xamarinmac20/_._",
  8297. "lib/xamarintvos10/_._",
  8298. "lib/xamarinwatchos10/_._",
  8299. "ref/MonoAndroid10/_._",
  8300. "ref/MonoTouch10/_._",
  8301. "ref/net45/_._",
  8302. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8303. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8304. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8305. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8306. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8307. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8308. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8309. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8310. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8311. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8312. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8313. "ref/portable-net45+wp8/_._",
  8314. "ref/wp80/_._",
  8315. "ref/xamarinios10/_._",
  8316. "ref/xamarinmac20/_._",
  8317. "ref/xamarintvos10/_._",
  8318. "ref/xamarinwatchos10/_._",
  8319. "runtimes/aot/lib/netcore50/_._",
  8320. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  8321. "system.reflection.emit.ilgeneration.nuspec"
  8322. ]
  8323. },
  8324. "System.Reflection.Emit.Lightweight/4.3.0": {
  8325. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  8326. "type": "package",
  8327. "path": "system.reflection.emit.lightweight/4.3.0",
  8328. "files": [
  8329. ".nupkg.metadata",
  8330. "ThirdPartyNotices.txt",
  8331. "dotnet_library_license.txt",
  8332. "lib/MonoAndroid10/_._",
  8333. "lib/MonoTouch10/_._",
  8334. "lib/net45/_._",
  8335. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8336. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8337. "lib/portable-net45+wp8/_._",
  8338. "lib/wp80/_._",
  8339. "lib/xamarinios10/_._",
  8340. "lib/xamarinmac20/_._",
  8341. "lib/xamarintvos10/_._",
  8342. "lib/xamarinwatchos10/_._",
  8343. "ref/MonoAndroid10/_._",
  8344. "ref/MonoTouch10/_._",
  8345. "ref/net45/_._",
  8346. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8347. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8348. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8349. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8350. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8351. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8352. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8353. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8354. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8355. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8356. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8357. "ref/portable-net45+wp8/_._",
  8358. "ref/wp80/_._",
  8359. "ref/xamarinios10/_._",
  8360. "ref/xamarinmac20/_._",
  8361. "ref/xamarintvos10/_._",
  8362. "ref/xamarinwatchos10/_._",
  8363. "runtimes/aot/lib/netcore50/_._",
  8364. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  8365. "system.reflection.emit.lightweight.nuspec"
  8366. ]
  8367. },
  8368. "System.Reflection.Extensions/4.3.0": {
  8369. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  8370. "type": "package",
  8371. "path": "system.reflection.extensions/4.3.0",
  8372. "files": [
  8373. ".nupkg.metadata",
  8374. "ThirdPartyNotices.txt",
  8375. "dotnet_library_license.txt",
  8376. "lib/MonoAndroid10/_._",
  8377. "lib/MonoTouch10/_._",
  8378. "lib/net45/_._",
  8379. "lib/portable-net45+win8+wp8+wpa81/_._",
  8380. "lib/win8/_._",
  8381. "lib/wp80/_._",
  8382. "lib/wpa81/_._",
  8383. "lib/xamarinios10/_._",
  8384. "lib/xamarinmac20/_._",
  8385. "lib/xamarintvos10/_._",
  8386. "lib/xamarinwatchos10/_._",
  8387. "ref/MonoAndroid10/_._",
  8388. "ref/MonoTouch10/_._",
  8389. "ref/net45/_._",
  8390. "ref/netcore50/System.Reflection.Extensions.dll",
  8391. "ref/netcore50/System.Reflection.Extensions.xml",
  8392. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8393. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8394. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8395. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8396. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8397. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8398. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8399. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8400. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8401. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8402. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8403. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8404. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8405. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8406. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8407. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8408. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8409. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8410. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8411. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8412. "ref/portable-net45+win8+wp8+wpa81/_._",
  8413. "ref/win8/_._",
  8414. "ref/wp80/_._",
  8415. "ref/wpa81/_._",
  8416. "ref/xamarinios10/_._",
  8417. "ref/xamarinmac20/_._",
  8418. "ref/xamarintvos10/_._",
  8419. "ref/xamarinwatchos10/_._",
  8420. "system.reflection.extensions.4.3.0.nupkg.sha512",
  8421. "system.reflection.extensions.nuspec"
  8422. ]
  8423. },
  8424. "System.Reflection.Metadata/5.0.0": {
  8425. "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
  8426. "type": "package",
  8427. "path": "system.reflection.metadata/5.0.0",
  8428. "files": [
  8429. ".nupkg.metadata",
  8430. ".signature.p7s",
  8431. "Icon.png",
  8432. "LICENSE.TXT",
  8433. "THIRD-PARTY-NOTICES.TXT",
  8434. "lib/net461/System.Reflection.Metadata.dll",
  8435. "lib/net461/System.Reflection.Metadata.xml",
  8436. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  8437. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  8438. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  8439. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  8440. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  8441. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  8442. "system.reflection.metadata.5.0.0.nupkg.sha512",
  8443. "system.reflection.metadata.nuspec",
  8444. "useSharedDesignerContext.txt",
  8445. "version.txt"
  8446. ]
  8447. },
  8448. "System.Reflection.Primitives/4.3.0": {
  8449. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  8450. "type": "package",
  8451. "path": "system.reflection.primitives/4.3.0",
  8452. "files": [
  8453. ".nupkg.metadata",
  8454. "ThirdPartyNotices.txt",
  8455. "dotnet_library_license.txt",
  8456. "lib/MonoAndroid10/_._",
  8457. "lib/MonoTouch10/_._",
  8458. "lib/net45/_._",
  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/netcore50/System.Reflection.Primitives.dll",
  8471. "ref/netcore50/System.Reflection.Primitives.xml",
  8472. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8473. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8474. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8475. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8476. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8477. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8478. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8479. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8480. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8481. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8482. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8483. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8484. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8485. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8486. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8487. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8488. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8489. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8490. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8491. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8492. "ref/portable-net45+win8+wp8+wpa81/_._",
  8493. "ref/win8/_._",
  8494. "ref/wp80/_._",
  8495. "ref/wpa81/_._",
  8496. "ref/xamarinios10/_._",
  8497. "ref/xamarinmac20/_._",
  8498. "ref/xamarintvos10/_._",
  8499. "ref/xamarinwatchos10/_._",
  8500. "system.reflection.primitives.4.3.0.nupkg.sha512",
  8501. "system.reflection.primitives.nuspec"
  8502. ]
  8503. },
  8504. "System.Reflection.TypeExtensions/4.3.0": {
  8505. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  8506. "type": "package",
  8507. "path": "system.reflection.typeextensions/4.3.0",
  8508. "files": [
  8509. ".nupkg.metadata",
  8510. "ThirdPartyNotices.txt",
  8511. "dotnet_library_license.txt",
  8512. "lib/MonoAndroid10/_._",
  8513. "lib/MonoTouch10/_._",
  8514. "lib/net46/System.Reflection.TypeExtensions.dll",
  8515. "lib/net462/System.Reflection.TypeExtensions.dll",
  8516. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8517. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8518. "lib/xamarinios10/_._",
  8519. "lib/xamarinmac20/_._",
  8520. "lib/xamarintvos10/_._",
  8521. "lib/xamarinwatchos10/_._",
  8522. "ref/MonoAndroid10/_._",
  8523. "ref/MonoTouch10/_._",
  8524. "ref/net46/System.Reflection.TypeExtensions.dll",
  8525. "ref/net462/System.Reflection.TypeExtensions.dll",
  8526. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8527. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8528. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8529. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8530. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8531. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8532. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8533. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8534. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8535. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8536. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8537. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8538. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8539. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8540. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8541. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8542. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8543. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8544. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8545. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8546. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8547. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8548. "ref/xamarinios10/_._",
  8549. "ref/xamarinmac20/_._",
  8550. "ref/xamarintvos10/_._",
  8551. "ref/xamarinwatchos10/_._",
  8552. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  8553. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  8554. "system.reflection.typeextensions.nuspec"
  8555. ]
  8556. },
  8557. "System.Resources.ResourceManager/4.3.0": {
  8558. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  8559. "type": "package",
  8560. "path": "system.resources.resourcemanager/4.3.0",
  8561. "files": [
  8562. ".nupkg.metadata",
  8563. "ThirdPartyNotices.txt",
  8564. "dotnet_library_license.txt",
  8565. "lib/MonoAndroid10/_._",
  8566. "lib/MonoTouch10/_._",
  8567. "lib/net45/_._",
  8568. "lib/portable-net45+win8+wp8+wpa81/_._",
  8569. "lib/win8/_._",
  8570. "lib/wp80/_._",
  8571. "lib/wpa81/_._",
  8572. "lib/xamarinios10/_._",
  8573. "lib/xamarinmac20/_._",
  8574. "lib/xamarintvos10/_._",
  8575. "lib/xamarinwatchos10/_._",
  8576. "ref/MonoAndroid10/_._",
  8577. "ref/MonoTouch10/_._",
  8578. "ref/net45/_._",
  8579. "ref/netcore50/System.Resources.ResourceManager.dll",
  8580. "ref/netcore50/System.Resources.ResourceManager.xml",
  8581. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8582. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8583. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8584. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8585. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8586. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8587. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8588. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8589. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8590. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8591. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8592. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8593. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8594. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8595. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8596. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8597. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8598. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8599. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8600. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8601. "ref/portable-net45+win8+wp8+wpa81/_._",
  8602. "ref/win8/_._",
  8603. "ref/wp80/_._",
  8604. "ref/wpa81/_._",
  8605. "ref/xamarinios10/_._",
  8606. "ref/xamarinmac20/_._",
  8607. "ref/xamarintvos10/_._",
  8608. "ref/xamarinwatchos10/_._",
  8609. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  8610. "system.resources.resourcemanager.nuspec"
  8611. ]
  8612. },
  8613. "System.Runtime/4.3.0": {
  8614. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  8615. "type": "package",
  8616. "path": "system.runtime/4.3.0",
  8617. "files": [
  8618. ".nupkg.metadata",
  8619. "ThirdPartyNotices.txt",
  8620. "dotnet_library_license.txt",
  8621. "lib/MonoAndroid10/_._",
  8622. "lib/MonoTouch10/_._",
  8623. "lib/net45/_._",
  8624. "lib/net462/System.Runtime.dll",
  8625. "lib/portable-net45+win8+wp80+wpa81/_._",
  8626. "lib/win8/_._",
  8627. "lib/wp80/_._",
  8628. "lib/wpa81/_._",
  8629. "lib/xamarinios10/_._",
  8630. "lib/xamarinmac20/_._",
  8631. "lib/xamarintvos10/_._",
  8632. "lib/xamarinwatchos10/_._",
  8633. "ref/MonoAndroid10/_._",
  8634. "ref/MonoTouch10/_._",
  8635. "ref/net45/_._",
  8636. "ref/net462/System.Runtime.dll",
  8637. "ref/netcore50/System.Runtime.dll",
  8638. "ref/netcore50/System.Runtime.xml",
  8639. "ref/netcore50/de/System.Runtime.xml",
  8640. "ref/netcore50/es/System.Runtime.xml",
  8641. "ref/netcore50/fr/System.Runtime.xml",
  8642. "ref/netcore50/it/System.Runtime.xml",
  8643. "ref/netcore50/ja/System.Runtime.xml",
  8644. "ref/netcore50/ko/System.Runtime.xml",
  8645. "ref/netcore50/ru/System.Runtime.xml",
  8646. "ref/netcore50/zh-hans/System.Runtime.xml",
  8647. "ref/netcore50/zh-hant/System.Runtime.xml",
  8648. "ref/netstandard1.0/System.Runtime.dll",
  8649. "ref/netstandard1.0/System.Runtime.xml",
  8650. "ref/netstandard1.0/de/System.Runtime.xml",
  8651. "ref/netstandard1.0/es/System.Runtime.xml",
  8652. "ref/netstandard1.0/fr/System.Runtime.xml",
  8653. "ref/netstandard1.0/it/System.Runtime.xml",
  8654. "ref/netstandard1.0/ja/System.Runtime.xml",
  8655. "ref/netstandard1.0/ko/System.Runtime.xml",
  8656. "ref/netstandard1.0/ru/System.Runtime.xml",
  8657. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8658. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8659. "ref/netstandard1.2/System.Runtime.dll",
  8660. "ref/netstandard1.2/System.Runtime.xml",
  8661. "ref/netstandard1.2/de/System.Runtime.xml",
  8662. "ref/netstandard1.2/es/System.Runtime.xml",
  8663. "ref/netstandard1.2/fr/System.Runtime.xml",
  8664. "ref/netstandard1.2/it/System.Runtime.xml",
  8665. "ref/netstandard1.2/ja/System.Runtime.xml",
  8666. "ref/netstandard1.2/ko/System.Runtime.xml",
  8667. "ref/netstandard1.2/ru/System.Runtime.xml",
  8668. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8669. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8670. "ref/netstandard1.3/System.Runtime.dll",
  8671. "ref/netstandard1.3/System.Runtime.xml",
  8672. "ref/netstandard1.3/de/System.Runtime.xml",
  8673. "ref/netstandard1.3/es/System.Runtime.xml",
  8674. "ref/netstandard1.3/fr/System.Runtime.xml",
  8675. "ref/netstandard1.3/it/System.Runtime.xml",
  8676. "ref/netstandard1.3/ja/System.Runtime.xml",
  8677. "ref/netstandard1.3/ko/System.Runtime.xml",
  8678. "ref/netstandard1.3/ru/System.Runtime.xml",
  8679. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8680. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8681. "ref/netstandard1.5/System.Runtime.dll",
  8682. "ref/netstandard1.5/System.Runtime.xml",
  8683. "ref/netstandard1.5/de/System.Runtime.xml",
  8684. "ref/netstandard1.5/es/System.Runtime.xml",
  8685. "ref/netstandard1.5/fr/System.Runtime.xml",
  8686. "ref/netstandard1.5/it/System.Runtime.xml",
  8687. "ref/netstandard1.5/ja/System.Runtime.xml",
  8688. "ref/netstandard1.5/ko/System.Runtime.xml",
  8689. "ref/netstandard1.5/ru/System.Runtime.xml",
  8690. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8691. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8692. "ref/portable-net45+win8+wp80+wpa81/_._",
  8693. "ref/win8/_._",
  8694. "ref/wp80/_._",
  8695. "ref/wpa81/_._",
  8696. "ref/xamarinios10/_._",
  8697. "ref/xamarinmac20/_._",
  8698. "ref/xamarintvos10/_._",
  8699. "ref/xamarinwatchos10/_._",
  8700. "system.runtime.4.3.0.nupkg.sha512",
  8701. "system.runtime.nuspec"
  8702. ]
  8703. },
  8704. "System.Runtime.Caching/4.7.0": {
  8705. "sha512": "NdvNRjTPxYvIEhXQszT9L9vJhdQoX6AQ0AlhjTU+5NqFQVuacJTfhPVAvtGWNA2OJCqRiR/okBcZgMwI6MqcZg==",
  8706. "type": "package",
  8707. "path": "system.runtime.caching/4.7.0",
  8708. "files": [
  8709. ".nupkg.metadata",
  8710. ".signature.p7s",
  8711. "LICENSE.TXT",
  8712. "THIRD-PARTY-NOTICES.TXT",
  8713. "lib/MonoAndroid10/_._",
  8714. "lib/MonoTouch10/_._",
  8715. "lib/net45/_._",
  8716. "lib/netstandard2.0/System.Runtime.Caching.dll",
  8717. "lib/netstandard2.0/System.Runtime.Caching.xml",
  8718. "lib/xamarinios10/_._",
  8719. "lib/xamarinmac20/_._",
  8720. "lib/xamarintvos10/_._",
  8721. "lib/xamarinwatchos10/_._",
  8722. "ref/MonoAndroid10/_._",
  8723. "ref/MonoTouch10/_._",
  8724. "ref/net45/_._",
  8725. "ref/netstandard2.0/System.Runtime.Caching.dll",
  8726. "ref/netstandard2.0/System.Runtime.Caching.xml",
  8727. "ref/xamarinios10/_._",
  8728. "ref/xamarinmac20/_._",
  8729. "ref/xamarintvos10/_._",
  8730. "ref/xamarinwatchos10/_._",
  8731. "runtimes/win/lib/net45/_._",
  8732. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll",
  8733. "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml",
  8734. "system.runtime.caching.4.7.0.nupkg.sha512",
  8735. "system.runtime.caching.nuspec",
  8736. "useSharedDesignerContext.txt",
  8737. "version.txt"
  8738. ]
  8739. },
  8740. "System.Runtime.CompilerServices.Unsafe/4.7.1": {
  8741. "sha512": "zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
  8742. "type": "package",
  8743. "path": "system.runtime.compilerservices.unsafe/4.7.1",
  8744. "files": [
  8745. ".nupkg.metadata",
  8746. ".signature.p7s",
  8747. "Icon.png",
  8748. "LICENSE.TXT",
  8749. "THIRD-PARTY-NOTICES.TXT",
  8750. "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8751. "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8752. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8753. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8754. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8755. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8756. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8757. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8758. "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
  8759. "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
  8760. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8761. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  8762. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  8763. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  8764. "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
  8765. "system.runtime.compilerservices.unsafe.nuspec",
  8766. "useSharedDesignerContext.txt",
  8767. "version.txt"
  8768. ]
  8769. },
  8770. "System.Runtime.Extensions/4.3.0": {
  8771. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  8772. "type": "package",
  8773. "path": "system.runtime.extensions/4.3.0",
  8774. "files": [
  8775. ".nupkg.metadata",
  8776. "ThirdPartyNotices.txt",
  8777. "dotnet_library_license.txt",
  8778. "lib/MonoAndroid10/_._",
  8779. "lib/MonoTouch10/_._",
  8780. "lib/net45/_._",
  8781. "lib/net462/System.Runtime.Extensions.dll",
  8782. "lib/portable-net45+win8+wp8+wpa81/_._",
  8783. "lib/win8/_._",
  8784. "lib/wp80/_._",
  8785. "lib/wpa81/_._",
  8786. "lib/xamarinios10/_._",
  8787. "lib/xamarinmac20/_._",
  8788. "lib/xamarintvos10/_._",
  8789. "lib/xamarinwatchos10/_._",
  8790. "ref/MonoAndroid10/_._",
  8791. "ref/MonoTouch10/_._",
  8792. "ref/net45/_._",
  8793. "ref/net462/System.Runtime.Extensions.dll",
  8794. "ref/netcore50/System.Runtime.Extensions.dll",
  8795. "ref/netcore50/System.Runtime.Extensions.xml",
  8796. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8797. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8798. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8799. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8800. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8801. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8802. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8803. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8804. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8805. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8806. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8807. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8808. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8809. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8810. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8811. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8812. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8813. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8814. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8815. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8816. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8817. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8818. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8819. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8820. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8821. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8822. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8823. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8824. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8825. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8826. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8827. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8828. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8829. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8830. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8831. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8832. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8833. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8834. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8835. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8836. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8837. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8838. "ref/portable-net45+win8+wp8+wpa81/_._",
  8839. "ref/win8/_._",
  8840. "ref/wp80/_._",
  8841. "ref/wpa81/_._",
  8842. "ref/xamarinios10/_._",
  8843. "ref/xamarinmac20/_._",
  8844. "ref/xamarintvos10/_._",
  8845. "ref/xamarinwatchos10/_._",
  8846. "system.runtime.extensions.4.3.0.nupkg.sha512",
  8847. "system.runtime.extensions.nuspec"
  8848. ]
  8849. },
  8850. "System.Runtime.Handles/4.3.0": {
  8851. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  8852. "type": "package",
  8853. "path": "system.runtime.handles/4.3.0",
  8854. "files": [
  8855. ".nupkg.metadata",
  8856. "ThirdPartyNotices.txt",
  8857. "dotnet_library_license.txt",
  8858. "lib/MonoAndroid10/_._",
  8859. "lib/MonoTouch10/_._",
  8860. "lib/net46/_._",
  8861. "lib/xamarinios10/_._",
  8862. "lib/xamarinmac20/_._",
  8863. "lib/xamarintvos10/_._",
  8864. "lib/xamarinwatchos10/_._",
  8865. "ref/MonoAndroid10/_._",
  8866. "ref/MonoTouch10/_._",
  8867. "ref/net46/_._",
  8868. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8869. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8870. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8871. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8872. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8873. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8874. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8875. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8876. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8877. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8878. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8879. "ref/xamarinios10/_._",
  8880. "ref/xamarinmac20/_._",
  8881. "ref/xamarintvos10/_._",
  8882. "ref/xamarinwatchos10/_._",
  8883. "system.runtime.handles.4.3.0.nupkg.sha512",
  8884. "system.runtime.handles.nuspec"
  8885. ]
  8886. },
  8887. "System.Runtime.InteropServices/4.3.0": {
  8888. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  8889. "type": "package",
  8890. "path": "system.runtime.interopservices/4.3.0",
  8891. "files": [
  8892. ".nupkg.metadata",
  8893. "ThirdPartyNotices.txt",
  8894. "dotnet_library_license.txt",
  8895. "lib/MonoAndroid10/_._",
  8896. "lib/MonoTouch10/_._",
  8897. "lib/net45/_._",
  8898. "lib/net462/System.Runtime.InteropServices.dll",
  8899. "lib/net463/System.Runtime.InteropServices.dll",
  8900. "lib/portable-net45+win8+wpa81/_._",
  8901. "lib/win8/_._",
  8902. "lib/wpa81/_._",
  8903. "lib/xamarinios10/_._",
  8904. "lib/xamarinmac20/_._",
  8905. "lib/xamarintvos10/_._",
  8906. "lib/xamarinwatchos10/_._",
  8907. "ref/MonoAndroid10/_._",
  8908. "ref/MonoTouch10/_._",
  8909. "ref/net45/_._",
  8910. "ref/net462/System.Runtime.InteropServices.dll",
  8911. "ref/net463/System.Runtime.InteropServices.dll",
  8912. "ref/netcore50/System.Runtime.InteropServices.dll",
  8913. "ref/netcore50/System.Runtime.InteropServices.xml",
  8914. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8915. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8916. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8917. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8918. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8919. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8920. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8921. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8922. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8923. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8924. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8925. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8926. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8927. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8928. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8929. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8930. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8931. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8932. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8933. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8934. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8935. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8936. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8937. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8938. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8939. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8940. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8941. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8942. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8943. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8944. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8945. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8946. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8947. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8948. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8949. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8950. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8951. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8952. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8953. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8954. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8955. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8956. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8957. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8958. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8959. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8960. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8961. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8962. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8963. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8964. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8965. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8966. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8967. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8968. "ref/portable-net45+win8+wpa81/_._",
  8969. "ref/win8/_._",
  8970. "ref/wpa81/_._",
  8971. "ref/xamarinios10/_._",
  8972. "ref/xamarinmac20/_._",
  8973. "ref/xamarintvos10/_._",
  8974. "ref/xamarinwatchos10/_._",
  8975. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  8976. "system.runtime.interopservices.nuspec"
  8977. ]
  8978. },
  8979. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8980. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  8981. "type": "package",
  8982. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  8983. "files": [
  8984. ".nupkg.metadata",
  8985. "ThirdPartyNotices.txt",
  8986. "dotnet_library_license.txt",
  8987. "lib/MonoAndroid10/_._",
  8988. "lib/MonoTouch10/_._",
  8989. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8990. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8991. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8992. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8993. "lib/xamarinios10/_._",
  8994. "lib/xamarinmac20/_._",
  8995. "lib/xamarintvos10/_._",
  8996. "lib/xamarinwatchos10/_._",
  8997. "ref/MonoAndroid10/_._",
  8998. "ref/MonoTouch10/_._",
  8999. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9000. "ref/xamarinios10/_._",
  9001. "ref/xamarinmac20/_._",
  9002. "ref/xamarintvos10/_._",
  9003. "ref/xamarinwatchos10/_._",
  9004. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9005. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9006. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  9007. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  9008. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  9009. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  9010. "system.runtime.interopservices.runtimeinformation.nuspec"
  9011. ]
  9012. },
  9013. "System.Runtime.Numerics/4.3.0": {
  9014. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  9015. "type": "package",
  9016. "path": "system.runtime.numerics/4.3.0",
  9017. "files": [
  9018. ".nupkg.metadata",
  9019. "ThirdPartyNotices.txt",
  9020. "dotnet_library_license.txt",
  9021. "lib/MonoAndroid10/_._",
  9022. "lib/MonoTouch10/_._",
  9023. "lib/net45/_._",
  9024. "lib/netcore50/System.Runtime.Numerics.dll",
  9025. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  9026. "lib/portable-net45+win8+wpa81/_._",
  9027. "lib/win8/_._",
  9028. "lib/wpa81/_._",
  9029. "lib/xamarinios10/_._",
  9030. "lib/xamarinmac20/_._",
  9031. "lib/xamarintvos10/_._",
  9032. "lib/xamarinwatchos10/_._",
  9033. "ref/MonoAndroid10/_._",
  9034. "ref/MonoTouch10/_._",
  9035. "ref/net45/_._",
  9036. "ref/netcore50/System.Runtime.Numerics.dll",
  9037. "ref/netcore50/System.Runtime.Numerics.xml",
  9038. "ref/netcore50/de/System.Runtime.Numerics.xml",
  9039. "ref/netcore50/es/System.Runtime.Numerics.xml",
  9040. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  9041. "ref/netcore50/it/System.Runtime.Numerics.xml",
  9042. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  9043. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  9044. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  9045. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  9046. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  9047. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  9048. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  9049. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  9050. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  9051. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  9052. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  9053. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  9054. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  9055. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  9056. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  9057. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  9058. "ref/portable-net45+win8+wpa81/_._",
  9059. "ref/win8/_._",
  9060. "ref/wpa81/_._",
  9061. "ref/xamarinios10/_._",
  9062. "ref/xamarinmac20/_._",
  9063. "ref/xamarintvos10/_._",
  9064. "ref/xamarinwatchos10/_._",
  9065. "system.runtime.numerics.4.3.0.nupkg.sha512",
  9066. "system.runtime.numerics.nuspec"
  9067. ]
  9068. },
  9069. "System.Runtime.Serialization.Formatters/4.3.0": {
  9070. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  9071. "type": "package",
  9072. "path": "system.runtime.serialization.formatters/4.3.0",
  9073. "files": [
  9074. ".nupkg.metadata",
  9075. ".signature.p7s",
  9076. "ThirdPartyNotices.txt",
  9077. "dotnet_library_license.txt",
  9078. "lib/MonoAndroid10/_._",
  9079. "lib/MonoTouch10/_._",
  9080. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  9081. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  9082. "lib/xamarinios10/_._",
  9083. "lib/xamarinmac20/_._",
  9084. "lib/xamarintvos10/_._",
  9085. "lib/xamarinwatchos10/_._",
  9086. "ref/MonoAndroid10/_._",
  9087. "ref/MonoTouch10/_._",
  9088. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  9089. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  9090. "ref/xamarinios10/_._",
  9091. "ref/xamarinmac20/_._",
  9092. "ref/xamarintvos10/_._",
  9093. "ref/xamarinwatchos10/_._",
  9094. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  9095. "system.runtime.serialization.formatters.nuspec"
  9096. ]
  9097. },
  9098. "System.Runtime.Serialization.Json/4.3.0": {
  9099. "sha512": "CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
  9100. "type": "package",
  9101. "path": "system.runtime.serialization.json/4.3.0",
  9102. "files": [
  9103. ".nupkg.metadata",
  9104. ".signature.p7s",
  9105. "ThirdPartyNotices.txt",
  9106. "dotnet_library_license.txt",
  9107. "lib/MonoAndroid10/_._",
  9108. "lib/MonoTouch10/_._",
  9109. "lib/net45/_._",
  9110. "lib/netcore50/System.Runtime.Serialization.Json.dll",
  9111. "lib/netstandard1.3/System.Runtime.Serialization.Json.dll",
  9112. "lib/portable-net45+win8+wp8+wpa81/_._",
  9113. "lib/win8/_._",
  9114. "lib/wp80/_._",
  9115. "lib/wpa81/_._",
  9116. "lib/xamarinios10/_._",
  9117. "lib/xamarinmac20/_._",
  9118. "lib/xamarintvos10/_._",
  9119. "lib/xamarinwatchos10/_._",
  9120. "ref/MonoAndroid10/_._",
  9121. "ref/MonoTouch10/_._",
  9122. "ref/net45/_._",
  9123. "ref/netcore50/System.Runtime.Serialization.Json.dll",
  9124. "ref/netcore50/System.Runtime.Serialization.Json.xml",
  9125. "ref/netcore50/de/System.Runtime.Serialization.Json.xml",
  9126. "ref/netcore50/es/System.Runtime.Serialization.Json.xml",
  9127. "ref/netcore50/fr/System.Runtime.Serialization.Json.xml",
  9128. "ref/netcore50/it/System.Runtime.Serialization.Json.xml",
  9129. "ref/netcore50/ja/System.Runtime.Serialization.Json.xml",
  9130. "ref/netcore50/ko/System.Runtime.Serialization.Json.xml",
  9131. "ref/netcore50/ru/System.Runtime.Serialization.Json.xml",
  9132. "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml",
  9133. "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml",
  9134. "ref/netstandard1.0/System.Runtime.Serialization.Json.dll",
  9135. "ref/netstandard1.0/System.Runtime.Serialization.Json.xml",
  9136. "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml",
  9137. "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml",
  9138. "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml",
  9139. "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml",
  9140. "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml",
  9141. "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml",
  9142. "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml",
  9143. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml",
  9144. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml",
  9145. "ref/portable-net45+win8+wp8+wpa81/_._",
  9146. "ref/win8/_._",
  9147. "ref/wp80/_._",
  9148. "ref/wpa81/_._",
  9149. "ref/xamarinios10/_._",
  9150. "ref/xamarinmac20/_._",
  9151. "ref/xamarintvos10/_._",
  9152. "ref/xamarinwatchos10/_._",
  9153. "system.runtime.serialization.json.4.3.0.nupkg.sha512",
  9154. "system.runtime.serialization.json.nuspec"
  9155. ]
  9156. },
  9157. "System.Runtime.Serialization.Primitives/4.3.0": {
  9158. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  9159. "type": "package",
  9160. "path": "system.runtime.serialization.primitives/4.3.0",
  9161. "files": [
  9162. ".nupkg.metadata",
  9163. "ThirdPartyNotices.txt",
  9164. "dotnet_library_license.txt",
  9165. "lib/MonoAndroid10/_._",
  9166. "lib/MonoTouch10/_._",
  9167. "lib/net45/_._",
  9168. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  9169. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  9170. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  9171. "lib/portable-net45+win8+wp8+wpa81/_._",
  9172. "lib/win8/_._",
  9173. "lib/wp80/_._",
  9174. "lib/wpa81/_._",
  9175. "lib/xamarinios10/_._",
  9176. "lib/xamarinmac20/_._",
  9177. "lib/xamarintvos10/_._",
  9178. "lib/xamarinwatchos10/_._",
  9179. "ref/MonoAndroid10/_._",
  9180. "ref/MonoTouch10/_._",
  9181. "ref/net45/_._",
  9182. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  9183. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  9184. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  9185. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  9186. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  9187. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  9188. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  9189. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  9190. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  9191. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  9192. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9193. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9194. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  9195. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  9196. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  9197. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  9198. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  9199. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  9200. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  9201. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  9202. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  9203. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9204. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9205. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  9206. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  9207. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  9208. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  9209. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  9210. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  9211. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  9212. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  9213. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  9214. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  9215. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  9216. "ref/portable-net45+win8+wp8+wpa81/_._",
  9217. "ref/win8/_._",
  9218. "ref/wp80/_._",
  9219. "ref/wpa81/_._",
  9220. "ref/xamarinios10/_._",
  9221. "ref/xamarinmac20/_._",
  9222. "ref/xamarintvos10/_._",
  9223. "ref/xamarinwatchos10/_._",
  9224. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  9225. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  9226. "system.runtime.serialization.primitives.nuspec"
  9227. ]
  9228. },
  9229. "System.Security.AccessControl/4.7.0": {
  9230. "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==",
  9231. "type": "package",
  9232. "path": "system.security.accesscontrol/4.7.0",
  9233. "files": [
  9234. ".nupkg.metadata",
  9235. ".signature.p7s",
  9236. "LICENSE.TXT",
  9237. "THIRD-PARTY-NOTICES.TXT",
  9238. "lib/net46/System.Security.AccessControl.dll",
  9239. "lib/net461/System.Security.AccessControl.dll",
  9240. "lib/net461/System.Security.AccessControl.xml",
  9241. "lib/netstandard1.3/System.Security.AccessControl.dll",
  9242. "lib/netstandard2.0/System.Security.AccessControl.dll",
  9243. "lib/netstandard2.0/System.Security.AccessControl.xml",
  9244. "lib/uap10.0.16299/_._",
  9245. "ref/net46/System.Security.AccessControl.dll",
  9246. "ref/net461/System.Security.AccessControl.dll",
  9247. "ref/net461/System.Security.AccessControl.xml",
  9248. "ref/netstandard1.3/System.Security.AccessControl.dll",
  9249. "ref/netstandard1.3/System.Security.AccessControl.xml",
  9250. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  9251. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  9252. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  9253. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  9254. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  9255. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  9256. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  9257. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  9258. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  9259. "ref/netstandard2.0/System.Security.AccessControl.dll",
  9260. "ref/netstandard2.0/System.Security.AccessControl.xml",
  9261. "ref/uap10.0.16299/_._",
  9262. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  9263. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  9264. "runtimes/win/lib/net461/System.Security.AccessControl.xml",
  9265. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  9266. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml",
  9267. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  9268. "runtimes/win/lib/uap10.0.16299/_._",
  9269. "system.security.accesscontrol.4.7.0.nupkg.sha512",
  9270. "system.security.accesscontrol.nuspec",
  9271. "useSharedDesignerContext.txt",
  9272. "version.txt"
  9273. ]
  9274. },
  9275. "System.Security.Cryptography.Algorithms/4.3.0": {
  9276. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  9277. "type": "package",
  9278. "path": "system.security.cryptography.algorithms/4.3.0",
  9279. "files": [
  9280. ".nupkg.metadata",
  9281. "ThirdPartyNotices.txt",
  9282. "dotnet_library_license.txt",
  9283. "lib/MonoAndroid10/_._",
  9284. "lib/MonoTouch10/_._",
  9285. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  9286. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  9287. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  9288. "lib/xamarinios10/_._",
  9289. "lib/xamarinmac20/_._",
  9290. "lib/xamarintvos10/_._",
  9291. "lib/xamarinwatchos10/_._",
  9292. "ref/MonoAndroid10/_._",
  9293. "ref/MonoTouch10/_._",
  9294. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  9295. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  9296. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  9297. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  9298. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  9299. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9300. "ref/xamarinios10/_._",
  9301. "ref/xamarinmac20/_._",
  9302. "ref/xamarintvos10/_._",
  9303. "ref/xamarinwatchos10/_._",
  9304. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9305. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9306. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  9307. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  9308. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  9309. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  9310. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9311. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  9312. "system.security.cryptography.algorithms.nuspec"
  9313. ]
  9314. },
  9315. "System.Security.Cryptography.Cng/4.5.0": {
  9316. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  9317. "type": "package",
  9318. "path": "system.security.cryptography.cng/4.5.0",
  9319. "files": [
  9320. ".nupkg.metadata",
  9321. ".signature.p7s",
  9322. "LICENSE.TXT",
  9323. "THIRD-PARTY-NOTICES.TXT",
  9324. "lib/MonoAndroid10/_._",
  9325. "lib/MonoTouch10/_._",
  9326. "lib/net46/System.Security.Cryptography.Cng.dll",
  9327. "lib/net461/System.Security.Cryptography.Cng.dll",
  9328. "lib/net462/System.Security.Cryptography.Cng.dll",
  9329. "lib/net47/System.Security.Cryptography.Cng.dll",
  9330. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  9331. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9332. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9333. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9334. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  9335. "lib/uap10.0.16299/_._",
  9336. "lib/xamarinios10/_._",
  9337. "lib/xamarinmac20/_._",
  9338. "lib/xamarintvos10/_._",
  9339. "lib/xamarinwatchos10/_._",
  9340. "ref/MonoAndroid10/_._",
  9341. "ref/MonoTouch10/_._",
  9342. "ref/net46/System.Security.Cryptography.Cng.dll",
  9343. "ref/net461/System.Security.Cryptography.Cng.dll",
  9344. "ref/net461/System.Security.Cryptography.Cng.xml",
  9345. "ref/net462/System.Security.Cryptography.Cng.dll",
  9346. "ref/net462/System.Security.Cryptography.Cng.xml",
  9347. "ref/net47/System.Security.Cryptography.Cng.dll",
  9348. "ref/net47/System.Security.Cryptography.Cng.xml",
  9349. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  9350. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  9351. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  9352. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  9353. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9354. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9355. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9356. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  9357. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  9358. "ref/uap10.0.16299/_._",
  9359. "ref/xamarinios10/_._",
  9360. "ref/xamarinmac20/_._",
  9361. "ref/xamarintvos10/_._",
  9362. "ref/xamarinwatchos10/_._",
  9363. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  9364. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  9365. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  9366. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  9367. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  9368. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  9369. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9370. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9371. "runtimes/win/lib/uap10.0.16299/_._",
  9372. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  9373. "system.security.cryptography.cng.nuspec",
  9374. "useSharedDesignerContext.txt",
  9375. "version.txt"
  9376. ]
  9377. },
  9378. "System.Security.Cryptography.Csp/4.3.0": {
  9379. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  9380. "type": "package",
  9381. "path": "system.security.cryptography.csp/4.3.0",
  9382. "files": [
  9383. ".nupkg.metadata",
  9384. "ThirdPartyNotices.txt",
  9385. "dotnet_library_license.txt",
  9386. "lib/MonoAndroid10/_._",
  9387. "lib/MonoTouch10/_._",
  9388. "lib/net46/System.Security.Cryptography.Csp.dll",
  9389. "lib/xamarinios10/_._",
  9390. "lib/xamarinmac20/_._",
  9391. "lib/xamarintvos10/_._",
  9392. "lib/xamarinwatchos10/_._",
  9393. "ref/MonoAndroid10/_._",
  9394. "ref/MonoTouch10/_._",
  9395. "ref/net46/System.Security.Cryptography.Csp.dll",
  9396. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9397. "ref/xamarinios10/_._",
  9398. "ref/xamarinmac20/_._",
  9399. "ref/xamarintvos10/_._",
  9400. "ref/xamarinwatchos10/_._",
  9401. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9402. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9403. "runtimes/win/lib/netcore50/_._",
  9404. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9405. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  9406. "system.security.cryptography.csp.nuspec"
  9407. ]
  9408. },
  9409. "System.Security.Cryptography.Encoding/4.3.0": {
  9410. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  9411. "type": "package",
  9412. "path": "system.security.cryptography.encoding/4.3.0",
  9413. "files": [
  9414. ".nupkg.metadata",
  9415. "ThirdPartyNotices.txt",
  9416. "dotnet_library_license.txt",
  9417. "lib/MonoAndroid10/_._",
  9418. "lib/MonoTouch10/_._",
  9419. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9420. "lib/xamarinios10/_._",
  9421. "lib/xamarinmac20/_._",
  9422. "lib/xamarintvos10/_._",
  9423. "lib/xamarinwatchos10/_._",
  9424. "ref/MonoAndroid10/_._",
  9425. "ref/MonoTouch10/_._",
  9426. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9427. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9428. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9429. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9430. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9431. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9432. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9433. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9434. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9435. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9436. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9437. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9438. "ref/xamarinios10/_._",
  9439. "ref/xamarinmac20/_._",
  9440. "ref/xamarintvos10/_._",
  9441. "ref/xamarinwatchos10/_._",
  9442. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9443. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9444. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9445. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  9446. "system.security.cryptography.encoding.nuspec"
  9447. ]
  9448. },
  9449. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9450. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  9451. "type": "package",
  9452. "path": "system.security.cryptography.openssl/4.3.0",
  9453. "files": [
  9454. ".nupkg.metadata",
  9455. "ThirdPartyNotices.txt",
  9456. "dotnet_library_license.txt",
  9457. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9458. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9459. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9460. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  9461. "system.security.cryptography.openssl.nuspec"
  9462. ]
  9463. },
  9464. "System.Security.Cryptography.Primitives/4.3.0": {
  9465. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  9466. "type": "package",
  9467. "path": "system.security.cryptography.primitives/4.3.0",
  9468. "files": [
  9469. ".nupkg.metadata",
  9470. "ThirdPartyNotices.txt",
  9471. "dotnet_library_license.txt",
  9472. "lib/MonoAndroid10/_._",
  9473. "lib/MonoTouch10/_._",
  9474. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9475. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9476. "lib/xamarinios10/_._",
  9477. "lib/xamarinmac20/_._",
  9478. "lib/xamarintvos10/_._",
  9479. "lib/xamarinwatchos10/_._",
  9480. "ref/MonoAndroid10/_._",
  9481. "ref/MonoTouch10/_._",
  9482. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9483. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9484. "ref/xamarinios10/_._",
  9485. "ref/xamarinmac20/_._",
  9486. "ref/xamarintvos10/_._",
  9487. "ref/xamarinwatchos10/_._",
  9488. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  9489. "system.security.cryptography.primitives.nuspec"
  9490. ]
  9491. },
  9492. "System.Security.Cryptography.ProtectedData/4.7.0": {
  9493. "sha512": "ehYW0m9ptxpGWvE4zgqongBVWpSDU/JCFD4K7krxkQwSz/sFQjEXCUqpvencjy6DYDbn7Ig09R8GFffu8TtneQ==",
  9494. "type": "package",
  9495. "path": "system.security.cryptography.protecteddata/4.7.0",
  9496. "files": [
  9497. ".nupkg.metadata",
  9498. ".signature.p7s",
  9499. "LICENSE.TXT",
  9500. "THIRD-PARTY-NOTICES.TXT",
  9501. "lib/MonoAndroid10/_._",
  9502. "lib/MonoTouch10/_._",
  9503. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9504. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9505. "lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9506. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9507. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9508. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9509. "lib/xamarinios10/_._",
  9510. "lib/xamarinmac20/_._",
  9511. "lib/xamarintvos10/_._",
  9512. "lib/xamarinwatchos10/_._",
  9513. "ref/MonoAndroid10/_._",
  9514. "ref/MonoTouch10/_._",
  9515. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  9516. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  9517. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  9518. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9519. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9520. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9521. "ref/xamarinios10/_._",
  9522. "ref/xamarinmac20/_._",
  9523. "ref/xamarintvos10/_._",
  9524. "ref/xamarinwatchos10/_._",
  9525. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  9526. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  9527. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml",
  9528. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  9529. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  9530. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  9531. "system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
  9532. "system.security.cryptography.protecteddata.nuspec",
  9533. "useSharedDesignerContext.txt",
  9534. "version.txt"
  9535. ]
  9536. },
  9537. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9538. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  9539. "type": "package",
  9540. "path": "system.security.cryptography.x509certificates/4.3.0",
  9541. "files": [
  9542. ".nupkg.metadata",
  9543. "ThirdPartyNotices.txt",
  9544. "dotnet_library_license.txt",
  9545. "lib/MonoAndroid10/_._",
  9546. "lib/MonoTouch10/_._",
  9547. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9548. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9549. "lib/xamarinios10/_._",
  9550. "lib/xamarinmac20/_._",
  9551. "lib/xamarintvos10/_._",
  9552. "lib/xamarinwatchos10/_._",
  9553. "ref/MonoAndroid10/_._",
  9554. "ref/MonoTouch10/_._",
  9555. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9556. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9557. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9558. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9559. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9560. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9561. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9562. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9563. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9564. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9565. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9566. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9567. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9568. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9569. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9570. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9571. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9572. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9573. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9574. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9575. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9576. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9577. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9578. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9579. "ref/xamarinios10/_._",
  9580. "ref/xamarinmac20/_._",
  9581. "ref/xamarintvos10/_._",
  9582. "ref/xamarinwatchos10/_._",
  9583. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9584. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9585. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9586. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9587. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9588. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  9589. "system.security.cryptography.x509certificates.nuspec"
  9590. ]
  9591. },
  9592. "System.Security.Cryptography.Xml/4.4.0": {
  9593. "sha512": "1Xubvo4i+K+DO6YzVh6vBKmCl5xx/cAoiJEze6VQ+XwVQU25KQC9pPrmniz2EbbJnmoQ5Rm2FFjHsfQAi0Rs+Q==",
  9594. "type": "package",
  9595. "path": "system.security.cryptography.xml/4.4.0",
  9596. "files": [
  9597. ".nupkg.metadata",
  9598. ".signature.p7s",
  9599. "LICENSE.TXT",
  9600. "THIRD-PARTY-NOTICES.TXT",
  9601. "lib/net461/System.Security.Cryptography.Xml.dll",
  9602. "lib/netstandard2.0/System.Security.Cryptography.Xml.dll",
  9603. "ref/net461/System.Security.Cryptography.Xml.dll",
  9604. "ref/net461/System.Security.Cryptography.Xml.xml",
  9605. "ref/netstandard2.0/System.Security.Cryptography.Xml.dll",
  9606. "ref/netstandard2.0/System.Security.Cryptography.Xml.xml",
  9607. "system.security.cryptography.xml.4.4.0.nupkg.sha512",
  9608. "system.security.cryptography.xml.nuspec",
  9609. "useSharedDesignerContext.txt",
  9610. "version.txt"
  9611. ]
  9612. },
  9613. "System.Security.Permissions/4.7.0": {
  9614. "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==",
  9615. "type": "package",
  9616. "path": "system.security.permissions/4.7.0",
  9617. "files": [
  9618. ".nupkg.metadata",
  9619. ".signature.p7s",
  9620. "LICENSE.TXT",
  9621. "THIRD-PARTY-NOTICES.TXT",
  9622. "lib/net461/System.Security.Permissions.dll",
  9623. "lib/net461/System.Security.Permissions.xml",
  9624. "lib/netcoreapp3.0/System.Security.Permissions.dll",
  9625. "lib/netcoreapp3.0/System.Security.Permissions.xml",
  9626. "lib/netstandard2.0/System.Security.Permissions.dll",
  9627. "lib/netstandard2.0/System.Security.Permissions.xml",
  9628. "ref/net461/System.Security.Permissions.dll",
  9629. "ref/net461/System.Security.Permissions.xml",
  9630. "ref/netcoreapp3.0/System.Security.Permissions.dll",
  9631. "ref/netcoreapp3.0/System.Security.Permissions.xml",
  9632. "ref/netstandard2.0/System.Security.Permissions.dll",
  9633. "ref/netstandard2.0/System.Security.Permissions.xml",
  9634. "system.security.permissions.4.7.0.nupkg.sha512",
  9635. "system.security.permissions.nuspec",
  9636. "useSharedDesignerContext.txt",
  9637. "version.txt"
  9638. ]
  9639. },
  9640. "System.Security.Principal.Windows/4.7.0": {
  9641. "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
  9642. "type": "package",
  9643. "path": "system.security.principal.windows/4.7.0",
  9644. "files": [
  9645. ".nupkg.metadata",
  9646. ".signature.p7s",
  9647. "LICENSE.TXT",
  9648. "THIRD-PARTY-NOTICES.TXT",
  9649. "lib/net46/System.Security.Principal.Windows.dll",
  9650. "lib/net461/System.Security.Principal.Windows.dll",
  9651. "lib/net461/System.Security.Principal.Windows.xml",
  9652. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9653. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  9654. "lib/netstandard2.0/System.Security.Principal.Windows.xml",
  9655. "lib/uap10.0.16299/_._",
  9656. "ref/net46/System.Security.Principal.Windows.dll",
  9657. "ref/net461/System.Security.Principal.Windows.dll",
  9658. "ref/net461/System.Security.Principal.Windows.xml",
  9659. "ref/netcoreapp3.0/System.Security.Principal.Windows.dll",
  9660. "ref/netcoreapp3.0/System.Security.Principal.Windows.xml",
  9661. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9662. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9663. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9664. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9665. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9666. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9667. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9668. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9669. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9670. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9671. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9672. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  9673. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  9674. "ref/uap10.0.16299/_._",
  9675. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9676. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9677. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9678. "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9679. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9680. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  9681. "runtimes/win/lib/net461/System.Security.Principal.Windows.xml",
  9682. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  9683. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml",
  9684. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll",
  9685. "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml",
  9686. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9687. "runtimes/win/lib/uap10.0.16299/_._",
  9688. "system.security.principal.windows.4.7.0.nupkg.sha512",
  9689. "system.security.principal.windows.nuspec",
  9690. "useSharedDesignerContext.txt",
  9691. "version.txt"
  9692. ]
  9693. },
  9694. "System.Security.SecureString/4.3.0": {
  9695. "sha512": "PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
  9696. "type": "package",
  9697. "path": "system.security.securestring/4.3.0",
  9698. "files": [
  9699. ".nupkg.metadata",
  9700. ".signature.p7s",
  9701. "ThirdPartyNotices.txt",
  9702. "dotnet_library_license.txt",
  9703. "lib/MonoAndroid10/_._",
  9704. "lib/MonoTouch10/_._",
  9705. "lib/net46/System.Security.SecureString.dll",
  9706. "lib/xamarinios10/_._",
  9707. "lib/xamarinmac20/_._",
  9708. "lib/xamarintvos10/_._",
  9709. "lib/xamarinwatchos10/_._",
  9710. "ref/MonoAndroid10/_._",
  9711. "ref/MonoTouch10/_._",
  9712. "ref/net46/System.Security.SecureString.dll",
  9713. "ref/netstandard1.3/System.Security.SecureString.dll",
  9714. "ref/netstandard1.3/System.Security.SecureString.xml",
  9715. "ref/netstandard1.3/de/System.Security.SecureString.xml",
  9716. "ref/netstandard1.3/es/System.Security.SecureString.xml",
  9717. "ref/netstandard1.3/fr/System.Security.SecureString.xml",
  9718. "ref/netstandard1.3/it/System.Security.SecureString.xml",
  9719. "ref/netstandard1.3/ja/System.Security.SecureString.xml",
  9720. "ref/netstandard1.3/ko/System.Security.SecureString.xml",
  9721. "ref/netstandard1.3/ru/System.Security.SecureString.xml",
  9722. "ref/netstandard1.3/zh-hans/System.Security.SecureString.xml",
  9723. "ref/netstandard1.3/zh-hant/System.Security.SecureString.xml",
  9724. "ref/xamarinios10/_._",
  9725. "ref/xamarinmac20/_._",
  9726. "ref/xamarintvos10/_._",
  9727. "ref/xamarinwatchos10/_._",
  9728. "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll",
  9729. "runtimes/win/lib/net46/System.Security.SecureString.dll",
  9730. "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll",
  9731. "system.security.securestring.4.3.0.nupkg.sha512",
  9732. "system.security.securestring.nuspec"
  9733. ]
  9734. },
  9735. "System.Text.Encoding/4.3.0": {
  9736. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  9737. "type": "package",
  9738. "path": "system.text.encoding/4.3.0",
  9739. "files": [
  9740. ".nupkg.metadata",
  9741. "ThirdPartyNotices.txt",
  9742. "dotnet_library_license.txt",
  9743. "lib/MonoAndroid10/_._",
  9744. "lib/MonoTouch10/_._",
  9745. "lib/net45/_._",
  9746. "lib/portable-net45+win8+wp8+wpa81/_._",
  9747. "lib/win8/_._",
  9748. "lib/wp80/_._",
  9749. "lib/wpa81/_._",
  9750. "lib/xamarinios10/_._",
  9751. "lib/xamarinmac20/_._",
  9752. "lib/xamarintvos10/_._",
  9753. "lib/xamarinwatchos10/_._",
  9754. "ref/MonoAndroid10/_._",
  9755. "ref/MonoTouch10/_._",
  9756. "ref/net45/_._",
  9757. "ref/netcore50/System.Text.Encoding.dll",
  9758. "ref/netcore50/System.Text.Encoding.xml",
  9759. "ref/netcore50/de/System.Text.Encoding.xml",
  9760. "ref/netcore50/es/System.Text.Encoding.xml",
  9761. "ref/netcore50/fr/System.Text.Encoding.xml",
  9762. "ref/netcore50/it/System.Text.Encoding.xml",
  9763. "ref/netcore50/ja/System.Text.Encoding.xml",
  9764. "ref/netcore50/ko/System.Text.Encoding.xml",
  9765. "ref/netcore50/ru/System.Text.Encoding.xml",
  9766. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9767. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9768. "ref/netstandard1.0/System.Text.Encoding.dll",
  9769. "ref/netstandard1.0/System.Text.Encoding.xml",
  9770. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9771. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9772. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9773. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9774. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9775. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9776. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9777. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9778. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9779. "ref/netstandard1.3/System.Text.Encoding.dll",
  9780. "ref/netstandard1.3/System.Text.Encoding.xml",
  9781. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9782. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9783. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9784. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9785. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9786. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9787. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9788. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9789. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9790. "ref/portable-net45+win8+wp8+wpa81/_._",
  9791. "ref/win8/_._",
  9792. "ref/wp80/_._",
  9793. "ref/wpa81/_._",
  9794. "ref/xamarinios10/_._",
  9795. "ref/xamarinmac20/_._",
  9796. "ref/xamarintvos10/_._",
  9797. "ref/xamarinwatchos10/_._",
  9798. "system.text.encoding.4.3.0.nupkg.sha512",
  9799. "system.text.encoding.nuspec"
  9800. ]
  9801. },
  9802. "System.Text.Encoding.CodePages/4.7.0": {
  9803. "sha512": "aeu4FlaUTemuT1qOd1MyU4T516QR4Fy+9yDbwWMPHOHy7U8FD6SgTzdZFO7gHcfAPHtECqInbwklVvUK4RHcNg==",
  9804. "type": "package",
  9805. "path": "system.text.encoding.codepages/4.7.0",
  9806. "files": [
  9807. ".nupkg.metadata",
  9808. ".signature.p7s",
  9809. "LICENSE.TXT",
  9810. "THIRD-PARTY-NOTICES.TXT",
  9811. "lib/MonoAndroid10/_._",
  9812. "lib/MonoTouch10/_._",
  9813. "lib/net46/System.Text.Encoding.CodePages.dll",
  9814. "lib/net461/System.Text.Encoding.CodePages.dll",
  9815. "lib/net461/System.Text.Encoding.CodePages.xml",
  9816. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9817. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9818. "lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9819. "lib/xamarinios10/_._",
  9820. "lib/xamarinmac20/_._",
  9821. "lib/xamarintvos10/_._",
  9822. "lib/xamarinwatchos10/_._",
  9823. "ref/MonoAndroid10/_._",
  9824. "ref/MonoTouch10/_._",
  9825. "ref/xamarinios10/_._",
  9826. "ref/xamarinmac20/_._",
  9827. "ref/xamarintvos10/_._",
  9828. "ref/xamarinwatchos10/_._",
  9829. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  9830. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
  9831. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  9832. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
  9833. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9834. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  9835. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
  9836. "system.text.encoding.codepages.4.7.0.nupkg.sha512",
  9837. "system.text.encoding.codepages.nuspec",
  9838. "useSharedDesignerContext.txt",
  9839. "version.txt"
  9840. ]
  9841. },
  9842. "System.Text.Encoding.Extensions/4.3.0": {
  9843. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  9844. "type": "package",
  9845. "path": "system.text.encoding.extensions/4.3.0",
  9846. "files": [
  9847. ".nupkg.metadata",
  9848. "ThirdPartyNotices.txt",
  9849. "dotnet_library_license.txt",
  9850. "lib/MonoAndroid10/_._",
  9851. "lib/MonoTouch10/_._",
  9852. "lib/net45/_._",
  9853. "lib/portable-net45+win8+wp8+wpa81/_._",
  9854. "lib/win8/_._",
  9855. "lib/wp80/_._",
  9856. "lib/wpa81/_._",
  9857. "lib/xamarinios10/_._",
  9858. "lib/xamarinmac20/_._",
  9859. "lib/xamarintvos10/_._",
  9860. "lib/xamarinwatchos10/_._",
  9861. "ref/MonoAndroid10/_._",
  9862. "ref/MonoTouch10/_._",
  9863. "ref/net45/_._",
  9864. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9865. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9866. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9867. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9868. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9869. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9870. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9871. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9872. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9873. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9874. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9875. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9876. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9877. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9878. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9879. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9880. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9881. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9882. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9883. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9884. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9885. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9886. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9887. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9888. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9889. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9890. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9891. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9892. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9893. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9894. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9895. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9896. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9897. "ref/portable-net45+win8+wp8+wpa81/_._",
  9898. "ref/win8/_._",
  9899. "ref/wp80/_._",
  9900. "ref/wpa81/_._",
  9901. "ref/xamarinios10/_._",
  9902. "ref/xamarinmac20/_._",
  9903. "ref/xamarintvos10/_._",
  9904. "ref/xamarinwatchos10/_._",
  9905. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  9906. "system.text.encoding.extensions.nuspec"
  9907. ]
  9908. },
  9909. "System.Text.Encodings.Web/4.5.0": {
  9910. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  9911. "type": "package",
  9912. "path": "system.text.encodings.web/4.5.0",
  9913. "files": [
  9914. ".nupkg.metadata",
  9915. ".signature.p7s",
  9916. "LICENSE.TXT",
  9917. "THIRD-PARTY-NOTICES.TXT",
  9918. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9919. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  9920. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  9921. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  9922. "system.text.encodings.web.4.5.0.nupkg.sha512",
  9923. "system.text.encodings.web.nuspec",
  9924. "useSharedDesignerContext.txt",
  9925. "version.txt"
  9926. ]
  9927. },
  9928. "System.Text.RegularExpressions/4.3.0": {
  9929. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  9930. "type": "package",
  9931. "path": "system.text.regularexpressions/4.3.0",
  9932. "files": [
  9933. ".nupkg.metadata",
  9934. "ThirdPartyNotices.txt",
  9935. "dotnet_library_license.txt",
  9936. "lib/MonoAndroid10/_._",
  9937. "lib/MonoTouch10/_._",
  9938. "lib/net45/_._",
  9939. "lib/net463/System.Text.RegularExpressions.dll",
  9940. "lib/netcore50/System.Text.RegularExpressions.dll",
  9941. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9942. "lib/portable-net45+win8+wp8+wpa81/_._",
  9943. "lib/win8/_._",
  9944. "lib/wp80/_._",
  9945. "lib/wpa81/_._",
  9946. "lib/xamarinios10/_._",
  9947. "lib/xamarinmac20/_._",
  9948. "lib/xamarintvos10/_._",
  9949. "lib/xamarinwatchos10/_._",
  9950. "ref/MonoAndroid10/_._",
  9951. "ref/MonoTouch10/_._",
  9952. "ref/net45/_._",
  9953. "ref/net463/System.Text.RegularExpressions.dll",
  9954. "ref/netcore50/System.Text.RegularExpressions.dll",
  9955. "ref/netcore50/System.Text.RegularExpressions.xml",
  9956. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9957. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9958. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9959. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9960. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9961. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9962. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9963. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9964. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9965. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9966. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9967. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9968. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9969. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9970. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9971. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9972. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9973. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9974. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9975. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9976. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9977. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9978. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9979. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9980. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9981. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9982. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9983. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9984. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9985. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9986. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9987. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9988. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9989. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9990. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9991. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9992. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9993. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9994. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9995. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9996. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9997. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9998. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9999. "ref/portable-net45+win8+wp8+wpa81/_._",
  10000. "ref/win8/_._",
  10001. "ref/wp80/_._",
  10002. "ref/wpa81/_._",
  10003. "ref/xamarinios10/_._",
  10004. "ref/xamarinmac20/_._",
  10005. "ref/xamarintvos10/_._",
  10006. "ref/xamarinwatchos10/_._",
  10007. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  10008. "system.text.regularexpressions.nuspec"
  10009. ]
  10010. },
  10011. "System.Threading/4.3.0": {
  10012. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  10013. "type": "package",
  10014. "path": "system.threading/4.3.0",
  10015. "files": [
  10016. ".nupkg.metadata",
  10017. "ThirdPartyNotices.txt",
  10018. "dotnet_library_license.txt",
  10019. "lib/MonoAndroid10/_._",
  10020. "lib/MonoTouch10/_._",
  10021. "lib/net45/_._",
  10022. "lib/netcore50/System.Threading.dll",
  10023. "lib/netstandard1.3/System.Threading.dll",
  10024. "lib/portable-net45+win8+wp8+wpa81/_._",
  10025. "lib/win8/_._",
  10026. "lib/wp80/_._",
  10027. "lib/wpa81/_._",
  10028. "lib/xamarinios10/_._",
  10029. "lib/xamarinmac20/_._",
  10030. "lib/xamarintvos10/_._",
  10031. "lib/xamarinwatchos10/_._",
  10032. "ref/MonoAndroid10/_._",
  10033. "ref/MonoTouch10/_._",
  10034. "ref/net45/_._",
  10035. "ref/netcore50/System.Threading.dll",
  10036. "ref/netcore50/System.Threading.xml",
  10037. "ref/netcore50/de/System.Threading.xml",
  10038. "ref/netcore50/es/System.Threading.xml",
  10039. "ref/netcore50/fr/System.Threading.xml",
  10040. "ref/netcore50/it/System.Threading.xml",
  10041. "ref/netcore50/ja/System.Threading.xml",
  10042. "ref/netcore50/ko/System.Threading.xml",
  10043. "ref/netcore50/ru/System.Threading.xml",
  10044. "ref/netcore50/zh-hans/System.Threading.xml",
  10045. "ref/netcore50/zh-hant/System.Threading.xml",
  10046. "ref/netstandard1.0/System.Threading.dll",
  10047. "ref/netstandard1.0/System.Threading.xml",
  10048. "ref/netstandard1.0/de/System.Threading.xml",
  10049. "ref/netstandard1.0/es/System.Threading.xml",
  10050. "ref/netstandard1.0/fr/System.Threading.xml",
  10051. "ref/netstandard1.0/it/System.Threading.xml",
  10052. "ref/netstandard1.0/ja/System.Threading.xml",
  10053. "ref/netstandard1.0/ko/System.Threading.xml",
  10054. "ref/netstandard1.0/ru/System.Threading.xml",
  10055. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  10056. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  10057. "ref/netstandard1.3/System.Threading.dll",
  10058. "ref/netstandard1.3/System.Threading.xml",
  10059. "ref/netstandard1.3/de/System.Threading.xml",
  10060. "ref/netstandard1.3/es/System.Threading.xml",
  10061. "ref/netstandard1.3/fr/System.Threading.xml",
  10062. "ref/netstandard1.3/it/System.Threading.xml",
  10063. "ref/netstandard1.3/ja/System.Threading.xml",
  10064. "ref/netstandard1.3/ko/System.Threading.xml",
  10065. "ref/netstandard1.3/ru/System.Threading.xml",
  10066. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  10067. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  10068. "ref/portable-net45+win8+wp8+wpa81/_._",
  10069. "ref/win8/_._",
  10070. "ref/wp80/_._",
  10071. "ref/wpa81/_._",
  10072. "ref/xamarinios10/_._",
  10073. "ref/xamarinmac20/_._",
  10074. "ref/xamarintvos10/_._",
  10075. "ref/xamarinwatchos10/_._",
  10076. "runtimes/aot/lib/netcore50/System.Threading.dll",
  10077. "system.threading.4.3.0.nupkg.sha512",
  10078. "system.threading.nuspec"
  10079. ]
  10080. },
  10081. "System.Threading.Tasks/4.3.0": {
  10082. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  10083. "type": "package",
  10084. "path": "system.threading.tasks/4.3.0",
  10085. "files": [
  10086. ".nupkg.metadata",
  10087. "ThirdPartyNotices.txt",
  10088. "dotnet_library_license.txt",
  10089. "lib/MonoAndroid10/_._",
  10090. "lib/MonoTouch10/_._",
  10091. "lib/net45/_._",
  10092. "lib/portable-net45+win8+wp8+wpa81/_._",
  10093. "lib/win8/_._",
  10094. "lib/wp80/_._",
  10095. "lib/wpa81/_._",
  10096. "lib/xamarinios10/_._",
  10097. "lib/xamarinmac20/_._",
  10098. "lib/xamarintvos10/_._",
  10099. "lib/xamarinwatchos10/_._",
  10100. "ref/MonoAndroid10/_._",
  10101. "ref/MonoTouch10/_._",
  10102. "ref/net45/_._",
  10103. "ref/netcore50/System.Threading.Tasks.dll",
  10104. "ref/netcore50/System.Threading.Tasks.xml",
  10105. "ref/netcore50/de/System.Threading.Tasks.xml",
  10106. "ref/netcore50/es/System.Threading.Tasks.xml",
  10107. "ref/netcore50/fr/System.Threading.Tasks.xml",
  10108. "ref/netcore50/it/System.Threading.Tasks.xml",
  10109. "ref/netcore50/ja/System.Threading.Tasks.xml",
  10110. "ref/netcore50/ko/System.Threading.Tasks.xml",
  10111. "ref/netcore50/ru/System.Threading.Tasks.xml",
  10112. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  10113. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  10114. "ref/netstandard1.0/System.Threading.Tasks.dll",
  10115. "ref/netstandard1.0/System.Threading.Tasks.xml",
  10116. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  10117. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  10118. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  10119. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  10120. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  10121. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  10122. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  10123. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  10124. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  10125. "ref/netstandard1.3/System.Threading.Tasks.dll",
  10126. "ref/netstandard1.3/System.Threading.Tasks.xml",
  10127. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  10128. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  10129. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  10130. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  10131. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  10132. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  10133. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  10134. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  10135. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  10136. "ref/portable-net45+win8+wp8+wpa81/_._",
  10137. "ref/win8/_._",
  10138. "ref/wp80/_._",
  10139. "ref/wpa81/_._",
  10140. "ref/xamarinios10/_._",
  10141. "ref/xamarinmac20/_._",
  10142. "ref/xamarintvos10/_._",
  10143. "ref/xamarinwatchos10/_._",
  10144. "system.threading.tasks.4.3.0.nupkg.sha512",
  10145. "system.threading.tasks.nuspec"
  10146. ]
  10147. },
  10148. "System.Threading.Tasks.Extensions/4.5.4": {
  10149. "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
  10150. "type": "package",
  10151. "path": "system.threading.tasks.extensions/4.5.4",
  10152. "files": [
  10153. ".nupkg.metadata",
  10154. ".signature.p7s",
  10155. "LICENSE.TXT",
  10156. "THIRD-PARTY-NOTICES.TXT",
  10157. "lib/MonoAndroid10/_._",
  10158. "lib/MonoTouch10/_._",
  10159. "lib/net461/System.Threading.Tasks.Extensions.dll",
  10160. "lib/net461/System.Threading.Tasks.Extensions.xml",
  10161. "lib/netcoreapp2.1/_._",
  10162. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  10163. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  10164. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  10165. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  10166. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  10167. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  10168. "lib/xamarinios10/_._",
  10169. "lib/xamarinmac20/_._",
  10170. "lib/xamarintvos10/_._",
  10171. "lib/xamarinwatchos10/_._",
  10172. "ref/MonoAndroid10/_._",
  10173. "ref/MonoTouch10/_._",
  10174. "ref/netcoreapp2.1/_._",
  10175. "ref/xamarinios10/_._",
  10176. "ref/xamarinmac20/_._",
  10177. "ref/xamarintvos10/_._",
  10178. "ref/xamarinwatchos10/_._",
  10179. "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
  10180. "system.threading.tasks.extensions.nuspec",
  10181. "useSharedDesignerContext.txt",
  10182. "version.txt"
  10183. ]
  10184. },
  10185. "System.Threading.Timer/4.3.0": {
  10186. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  10187. "type": "package",
  10188. "path": "system.threading.timer/4.3.0",
  10189. "files": [
  10190. ".nupkg.metadata",
  10191. "ThirdPartyNotices.txt",
  10192. "dotnet_library_license.txt",
  10193. "lib/MonoAndroid10/_._",
  10194. "lib/MonoTouch10/_._",
  10195. "lib/net451/_._",
  10196. "lib/portable-net451+win81+wpa81/_._",
  10197. "lib/win81/_._",
  10198. "lib/wpa81/_._",
  10199. "lib/xamarinios10/_._",
  10200. "lib/xamarinmac20/_._",
  10201. "lib/xamarintvos10/_._",
  10202. "lib/xamarinwatchos10/_._",
  10203. "ref/MonoAndroid10/_._",
  10204. "ref/MonoTouch10/_._",
  10205. "ref/net451/_._",
  10206. "ref/netcore50/System.Threading.Timer.dll",
  10207. "ref/netcore50/System.Threading.Timer.xml",
  10208. "ref/netcore50/de/System.Threading.Timer.xml",
  10209. "ref/netcore50/es/System.Threading.Timer.xml",
  10210. "ref/netcore50/fr/System.Threading.Timer.xml",
  10211. "ref/netcore50/it/System.Threading.Timer.xml",
  10212. "ref/netcore50/ja/System.Threading.Timer.xml",
  10213. "ref/netcore50/ko/System.Threading.Timer.xml",
  10214. "ref/netcore50/ru/System.Threading.Timer.xml",
  10215. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  10216. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  10217. "ref/netstandard1.2/System.Threading.Timer.dll",
  10218. "ref/netstandard1.2/System.Threading.Timer.xml",
  10219. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  10220. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  10221. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  10222. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  10223. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  10224. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  10225. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  10226. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  10227. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  10228. "ref/portable-net451+win81+wpa81/_._",
  10229. "ref/win81/_._",
  10230. "ref/wpa81/_._",
  10231. "ref/xamarinios10/_._",
  10232. "ref/xamarinmac20/_._",
  10233. "ref/xamarintvos10/_._",
  10234. "ref/xamarinwatchos10/_._",
  10235. "system.threading.timer.4.3.0.nupkg.sha512",
  10236. "system.threading.timer.nuspec"
  10237. ]
  10238. },
  10239. "System.Windows.Extensions/4.7.0": {
  10240. "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==",
  10241. "type": "package",
  10242. "path": "system.windows.extensions/4.7.0",
  10243. "files": [
  10244. ".nupkg.metadata",
  10245. ".signature.p7s",
  10246. "LICENSE.TXT",
  10247. "THIRD-PARTY-NOTICES.TXT",
  10248. "lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10249. "lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10250. "ref/netcoreapp3.0/System.Windows.Extensions.dll",
  10251. "ref/netcoreapp3.0/System.Windows.Extensions.xml",
  10252. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll",
  10253. "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml",
  10254. "system.windows.extensions.4.7.0.nupkg.sha512",
  10255. "system.windows.extensions.nuspec",
  10256. "useSharedDesignerContext.txt",
  10257. "version.txt"
  10258. ]
  10259. },
  10260. "System.Xml.ReaderWriter/4.3.0": {
  10261. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  10262. "type": "package",
  10263. "path": "system.xml.readerwriter/4.3.0",
  10264. "files": [
  10265. ".nupkg.metadata",
  10266. "ThirdPartyNotices.txt",
  10267. "dotnet_library_license.txt",
  10268. "lib/MonoAndroid10/_._",
  10269. "lib/MonoTouch10/_._",
  10270. "lib/net45/_._",
  10271. "lib/net46/System.Xml.ReaderWriter.dll",
  10272. "lib/netcore50/System.Xml.ReaderWriter.dll",
  10273. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  10274. "lib/portable-net45+win8+wp8+wpa81/_._",
  10275. "lib/win8/_._",
  10276. "lib/wp80/_._",
  10277. "lib/wpa81/_._",
  10278. "lib/xamarinios10/_._",
  10279. "lib/xamarinmac20/_._",
  10280. "lib/xamarintvos10/_._",
  10281. "lib/xamarinwatchos10/_._",
  10282. "ref/MonoAndroid10/_._",
  10283. "ref/MonoTouch10/_._",
  10284. "ref/net45/_._",
  10285. "ref/net46/System.Xml.ReaderWriter.dll",
  10286. "ref/netcore50/System.Xml.ReaderWriter.dll",
  10287. "ref/netcore50/System.Xml.ReaderWriter.xml",
  10288. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  10289. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  10290. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  10291. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  10292. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  10293. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  10294. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  10295. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  10296. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  10297. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  10298. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  10299. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  10300. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  10301. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  10302. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  10303. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  10304. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  10305. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  10306. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  10307. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  10308. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10309. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10310. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10311. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10312. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10313. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10314. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10315. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10316. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10317. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10318. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10319. "ref/portable-net45+win8+wp8+wpa81/_._",
  10320. "ref/win8/_._",
  10321. "ref/wp80/_._",
  10322. "ref/wpa81/_._",
  10323. "ref/xamarinios10/_._",
  10324. "ref/xamarinmac20/_._",
  10325. "ref/xamarintvos10/_._",
  10326. "ref/xamarinwatchos10/_._",
  10327. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  10328. "system.xml.readerwriter.nuspec"
  10329. ]
  10330. },
  10331. "System.Xml.XDocument/4.3.0": {
  10332. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  10333. "type": "package",
  10334. "path": "system.xml.xdocument/4.3.0",
  10335. "files": [
  10336. ".nupkg.metadata",
  10337. "ThirdPartyNotices.txt",
  10338. "dotnet_library_license.txt",
  10339. "lib/MonoAndroid10/_._",
  10340. "lib/MonoTouch10/_._",
  10341. "lib/net45/_._",
  10342. "lib/netcore50/System.Xml.XDocument.dll",
  10343. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10344. "lib/portable-net45+win8+wp8+wpa81/_._",
  10345. "lib/win8/_._",
  10346. "lib/wp80/_._",
  10347. "lib/wpa81/_._",
  10348. "lib/xamarinios10/_._",
  10349. "lib/xamarinmac20/_._",
  10350. "lib/xamarintvos10/_._",
  10351. "lib/xamarinwatchos10/_._",
  10352. "ref/MonoAndroid10/_._",
  10353. "ref/MonoTouch10/_._",
  10354. "ref/net45/_._",
  10355. "ref/netcore50/System.Xml.XDocument.dll",
  10356. "ref/netcore50/System.Xml.XDocument.xml",
  10357. "ref/netcore50/de/System.Xml.XDocument.xml",
  10358. "ref/netcore50/es/System.Xml.XDocument.xml",
  10359. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10360. "ref/netcore50/it/System.Xml.XDocument.xml",
  10361. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10362. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10363. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10364. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10365. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10366. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10367. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10368. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10369. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10370. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10371. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10372. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10373. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10374. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10375. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10376. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10377. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10378. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10379. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10380. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10381. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10382. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10383. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10384. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10385. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10386. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10387. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10388. "ref/portable-net45+win8+wp8+wpa81/_._",
  10389. "ref/win8/_._",
  10390. "ref/wp80/_._",
  10391. "ref/wpa81/_._",
  10392. "ref/xamarinios10/_._",
  10393. "ref/xamarinmac20/_._",
  10394. "ref/xamarintvos10/_._",
  10395. "ref/xamarinwatchos10/_._",
  10396. "system.xml.xdocument.4.3.0.nupkg.sha512",
  10397. "system.xml.xdocument.nuspec"
  10398. ]
  10399. },
  10400. "System.Xml.XmlDocument/4.3.0": {
  10401. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  10402. "type": "package",
  10403. "path": "system.xml.xmldocument/4.3.0",
  10404. "files": [
  10405. ".nupkg.metadata",
  10406. "ThirdPartyNotices.txt",
  10407. "dotnet_library_license.txt",
  10408. "lib/MonoAndroid10/_._",
  10409. "lib/MonoTouch10/_._",
  10410. "lib/net46/System.Xml.XmlDocument.dll",
  10411. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10412. "lib/xamarinios10/_._",
  10413. "lib/xamarinmac20/_._",
  10414. "lib/xamarintvos10/_._",
  10415. "lib/xamarinwatchos10/_._",
  10416. "ref/MonoAndroid10/_._",
  10417. "ref/MonoTouch10/_._",
  10418. "ref/net46/System.Xml.XmlDocument.dll",
  10419. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10420. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10421. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10422. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10423. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10424. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10425. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10426. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10427. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10428. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10429. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10430. "ref/xamarinios10/_._",
  10431. "ref/xamarinmac20/_._",
  10432. "ref/xamarintvos10/_._",
  10433. "ref/xamarinwatchos10/_._",
  10434. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  10435. "system.xml.xmldocument.nuspec"
  10436. ]
  10437. },
  10438. "System.Xml.XmlSerializer/4.3.0": {
  10439. "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
  10440. "type": "package",
  10441. "path": "system.xml.xmlserializer/4.3.0",
  10442. "files": [
  10443. ".nupkg.metadata",
  10444. "ThirdPartyNotices.txt",
  10445. "dotnet_library_license.txt",
  10446. "lib/MonoAndroid10/_._",
  10447. "lib/MonoTouch10/_._",
  10448. "lib/net45/_._",
  10449. "lib/netcore50/System.Xml.XmlSerializer.dll",
  10450. "lib/netstandard1.3/System.Xml.XmlSerializer.dll",
  10451. "lib/portable-net45+win8+wp8+wpa81/_._",
  10452. "lib/win8/_._",
  10453. "lib/wp80/_._",
  10454. "lib/wpa81/_._",
  10455. "lib/xamarinios10/_._",
  10456. "lib/xamarinmac20/_._",
  10457. "lib/xamarintvos10/_._",
  10458. "lib/xamarinwatchos10/_._",
  10459. "ref/MonoAndroid10/_._",
  10460. "ref/MonoTouch10/_._",
  10461. "ref/net45/_._",
  10462. "ref/netcore50/System.Xml.XmlSerializer.dll",
  10463. "ref/netcore50/System.Xml.XmlSerializer.xml",
  10464. "ref/netcore50/de/System.Xml.XmlSerializer.xml",
  10465. "ref/netcore50/es/System.Xml.XmlSerializer.xml",
  10466. "ref/netcore50/fr/System.Xml.XmlSerializer.xml",
  10467. "ref/netcore50/it/System.Xml.XmlSerializer.xml",
  10468. "ref/netcore50/ja/System.Xml.XmlSerializer.xml",
  10469. "ref/netcore50/ko/System.Xml.XmlSerializer.xml",
  10470. "ref/netcore50/ru/System.Xml.XmlSerializer.xml",
  10471. "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
  10472. "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
  10473. "ref/netstandard1.0/System.Xml.XmlSerializer.dll",
  10474. "ref/netstandard1.0/System.Xml.XmlSerializer.xml",
  10475. "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
  10476. "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
  10477. "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
  10478. "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
  10479. "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
  10480. "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
  10481. "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
  10482. "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
  10483. "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
  10484. "ref/netstandard1.3/System.Xml.XmlSerializer.dll",
  10485. "ref/netstandard1.3/System.Xml.XmlSerializer.xml",
  10486. "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
  10487. "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
  10488. "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
  10489. "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
  10490. "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
  10491. "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
  10492. "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
  10493. "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
  10494. "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
  10495. "ref/portable-net45+win8+wp8+wpa81/_._",
  10496. "ref/win8/_._",
  10497. "ref/wp80/_._",
  10498. "ref/wpa81/_._",
  10499. "ref/xamarinios10/_._",
  10500. "ref/xamarinmac20/_._",
  10501. "ref/xamarintvos10/_._",
  10502. "ref/xamarinwatchos10/_._",
  10503. "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll",
  10504. "system.xml.xmlserializer.4.3.0.nupkg.sha512",
  10505. "system.xml.xmlserializer.nuspec"
  10506. ]
  10507. },
  10508. "Karsha_Site.Application/1.0.0": {
  10509. "type": "project",
  10510. "path": "../Karsha_Site.Application/Karsha_Site.Application.csproj",
  10511. "msbuildProject": "../Karsha_Site.Application/Karsha_Site.Application.csproj"
  10512. },
  10513. "Karsha_Site.Common/1.0.0": {
  10514. "type": "project",
  10515. "path": "../Karsha_Site.Common/Karsha_Site.Common.csproj",
  10516. "msbuildProject": "../Karsha_Site.Common/Karsha_Site.Common.csproj"
  10517. },
  10518. "Karsha_Site.Domain/1.0.0": {
  10519. "type": "project",
  10520. "path": "../Karsha_Site.Domain/Karsha_Site.Domain.csproj",
  10521. "msbuildProject": "../Karsha_Site.Domain/Karsha_Site.Domain.csproj"
  10522. },
  10523. "Karsha_Site.Persistance/1.0.0": {
  10524. "type": "project",
  10525. "path": "../Karsha_Site.Persistance/Karsha_Site.Persistance.csproj",
  10526. "msbuildProject": "../Karsha_Site.Persistance/Karsha_Site.Persistance.csproj"
  10527. }
  10528. },
  10529. "projectFileDependencyGroups": {
  10530. "net5.0": [
  10531. "Karsha_Site.Persistance >= 1.0.0",
  10532. "LazZiya.TagHelpers >= 2.2.0",
  10533. "Microsoft.EntityFrameworkCore >= 5.0.0",
  10534. "Microsoft.EntityFrameworkCore.Design >= 5.0.0",
  10535. "Microsoft.EntityFrameworkCore.SqlServer >= 5.0.0",
  10536. "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 5.0.2"
  10537. ]
  10538. },
  10539. "packageFolders": {
  10540. "C:\\Users\\sajjadi\\.nuget\\packages\\": {}
  10541. },
  10542. "project": {
  10543. "version": "1.0.0",
  10544. "restore": {
  10545. "projectUniqueName": "E:\\Project\\Projeh\\MyProjeh\\Karsha_Site\\EndPoint.Site\\EndPoint.Site.csproj",
  10546. "projectName": "EndPoint.Site",
  10547. "projectPath": "E:\\Project\\Projeh\\MyProjeh\\Karsha_Site\\EndPoint.Site\\EndPoint.Site.csproj",
  10548. "packagesPath": "C:\\Users\\sajjadi\\.nuget\\packages\\",
  10549. "outputPath": "E:\\Project\\Projeh\\MyProjeh\\Karsha_Site\\EndPoint.Site\\obj\\",
  10550. "projectStyle": "PackageReference",
  10551. "configFilePaths": [
  10552. "C:\\Users\\sajjadi\\AppData\\Roaming\\NuGet\\NuGet.Config",
  10553. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  10554. ],
  10555. "originalTargetFrameworks": [
  10556. "net5.0"
  10557. ],
  10558. "sources": {
  10559. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  10560. "C:\\Program Files\\dotnet\\sdk\\7.0.304\\Sdks\\Microsoft.NET.Sdk.Web\\library-packs": {},
  10561. "https://api.nuget.org/v3/index.json": {}
  10562. },
  10563. "frameworks": {
  10564. "net5.0": {
  10565. "targetAlias": "net5.0",
  10566. "projectReferences": {
  10567. "E:\\Project\\Projeh\\MyProjeh\\Karsha_Site\\Karsha_Site.Persistance\\Karsha_Site.Persistance.csproj": {
  10568. "projectPath": "E:\\Project\\Projeh\\MyProjeh\\Karsha_Site\\Karsha_Site.Persistance\\Karsha_Site.Persistance.csproj"
  10569. }
  10570. }
  10571. }
  10572. },
  10573. "warningProperties": {
  10574. "warnAsError": [
  10575. "NU1605"
  10576. ]
  10577. }
  10578. },
  10579. "frameworks": {
  10580. "net5.0": {
  10581. "targetAlias": "net5.0",
  10582. "dependencies": {
  10583. "LazZiya.TagHelpers": {
  10584. "target": "Package",
  10585. "version": "[2.2.0, )"
  10586. },
  10587. "Microsoft.EntityFrameworkCore": {
  10588. "target": "Package",
  10589. "version": "[5.0.0, )"
  10590. },
  10591. "Microsoft.EntityFrameworkCore.Design": {
  10592. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  10593. "suppressParent": "All",
  10594. "target": "Package",
  10595. "version": "[5.0.0, )"
  10596. },
  10597. "Microsoft.EntityFrameworkCore.SqlServer": {
  10598. "target": "Package",
  10599. "version": "[5.0.0, )"
  10600. },
  10601. "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
  10602. "target": "Package",
  10603. "version": "[5.0.2, )"
  10604. }
  10605. },
  10606. "imports": [
  10607. "net461",
  10608. "net462",
  10609. "net47",
  10610. "net471",
  10611. "net472",
  10612. "net48",
  10613. "net481"
  10614. ],
  10615. "assetTargetFallback": true,
  10616. "warn": true,
  10617. "frameworkReferences": {
  10618. "Microsoft.AspNetCore.App": {
  10619. "privateAssets": "none"
  10620. },
  10621. "Microsoft.NETCore.App": {
  10622. "privateAssets": "all"
  10623. }
  10624. },
  10625. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.304\\RuntimeIdentifierGraph.json"
  10626. }
  10627. }
  10628. }
  10629. }