project.assets.json 378 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646
  1. {
  2. "version": 3,
  3. "targets": {
  4. ".NETCoreApp,Version=v3.1": {
  5. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  6. "type": "package",
  7. "dependencies": {
  8. "System.Text.Encodings.Web": "4.5.0"
  9. },
  10. "compile": {
  11. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  12. },
  13. "runtime": {
  14. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  15. }
  16. },
  17. "Microsoft.AspNetCore.Razor/2.2.0": {
  18. "type": "package",
  19. "dependencies": {
  20. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0"
  21. },
  22. "compile": {
  23. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {}
  24. },
  25. "runtime": {
  26. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll": {}
  27. }
  28. },
  29. "Microsoft.AspNetCore.Razor.Language/3.1.0": {
  30. "type": "package",
  31. "compile": {
  32. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  33. },
  34. "runtime": {
  35. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {}
  36. }
  37. },
  38. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  39. "type": "package",
  40. "dependencies": {
  41. "Microsoft.AspNetCore.Html.Abstractions": "2.2.0",
  42. "Microsoft.AspNetCore.Razor": "2.2.0"
  43. },
  44. "compile": {
  45. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {}
  46. },
  47. "runtime": {
  48. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll": {}
  49. }
  50. },
  51. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  52. "type": "package",
  53. "compile": {
  54. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  55. },
  56. "runtime": {
  57. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {}
  58. }
  59. },
  60. "Microsoft.Bcl.HashCode/1.1.1": {
  61. "type": "package",
  62. "compile": {
  63. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  64. },
  65. "runtime": {
  66. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll": {}
  67. }
  68. },
  69. "Microsoft.CodeAnalysis.Analyzers/2.9.4": {
  70. "type": "package",
  71. "build": {
  72. "build/_._": {}
  73. }
  74. },
  75. "Microsoft.CodeAnalysis.Common/3.3.1": {
  76. "type": "package",
  77. "dependencies": {
  78. "Microsoft.CodeAnalysis.Analyzers": "2.9.4",
  79. "System.Collections.Immutable": "1.5.0",
  80. "System.Memory": "4.5.3",
  81. "System.Reflection.Metadata": "1.6.0",
  82. "System.Runtime.CompilerServices.Unsafe": "4.5.2",
  83. "System.Text.Encoding.CodePages": "4.5.1",
  84. "System.Threading.Tasks.Extensions": "4.5.3"
  85. },
  86. "compile": {
  87. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {}
  88. },
  89. "runtime": {
  90. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll": {}
  91. },
  92. "resource": {
  93. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll": {
  94. "locale": "cs"
  95. },
  96. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll": {
  97. "locale": "de"
  98. },
  99. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll": {
  100. "locale": "es"
  101. },
  102. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll": {
  103. "locale": "fr"
  104. },
  105. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll": {
  106. "locale": "it"
  107. },
  108. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll": {
  109. "locale": "ja"
  110. },
  111. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll": {
  112. "locale": "ko"
  113. },
  114. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll": {
  115. "locale": "pl"
  116. },
  117. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
  118. "locale": "pt-BR"
  119. },
  120. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll": {
  121. "locale": "ru"
  122. },
  123. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll": {
  124. "locale": "tr"
  125. },
  126. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
  127. "locale": "zh-Hans"
  128. },
  129. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
  130. "locale": "zh-Hant"
  131. }
  132. }
  133. },
  134. "Microsoft.CodeAnalysis.CSharp/3.3.1": {
  135. "type": "package",
  136. "dependencies": {
  137. "Microsoft.CodeAnalysis.Common": "[3.3.1]"
  138. },
  139. "compile": {
  140. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {}
  141. },
  142. "runtime": {
  143. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll": {}
  144. },
  145. "resource": {
  146. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  147. "locale": "cs"
  148. },
  149. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  150. "locale": "de"
  151. },
  152. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  153. "locale": "es"
  154. },
  155. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  156. "locale": "fr"
  157. },
  158. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  159. "locale": "it"
  160. },
  161. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  162. "locale": "ja"
  163. },
  164. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  165. "locale": "ko"
  166. },
  167. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  168. "locale": "pl"
  169. },
  170. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  171. "locale": "pt-BR"
  172. },
  173. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  174. "locale": "ru"
  175. },
  176. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  177. "locale": "tr"
  178. },
  179. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  180. "locale": "zh-Hans"
  181. },
  182. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
  183. "locale": "zh-Hant"
  184. }
  185. }
  186. },
  187. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.3.1": {
  188. "type": "package",
  189. "dependencies": {
  190. "Microsoft.CodeAnalysis.CSharp": "[3.3.1]",
  191. "Microsoft.CodeAnalysis.Common": "[3.3.1]",
  192. "Microsoft.CodeAnalysis.Workspaces.Common": "[3.3.1]"
  193. },
  194. "compile": {
  195. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
  196. },
  197. "runtime": {
  198. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
  199. },
  200. "resource": {
  201. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  202. "locale": "cs"
  203. },
  204. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  205. "locale": "de"
  206. },
  207. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  208. "locale": "es"
  209. },
  210. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  211. "locale": "fr"
  212. },
  213. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  214. "locale": "it"
  215. },
  216. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  217. "locale": "ja"
  218. },
  219. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  220. "locale": "ko"
  221. },
  222. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  223. "locale": "pl"
  224. },
  225. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  226. "locale": "pt-BR"
  227. },
  228. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  229. "locale": "ru"
  230. },
  231. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  232. "locale": "tr"
  233. },
  234. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  235. "locale": "zh-Hans"
  236. },
  237. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
  238. "locale": "zh-Hant"
  239. }
  240. }
  241. },
  242. "Microsoft.CodeAnalysis.Razor/3.1.0": {
  243. "type": "package",
  244. "dependencies": {
  245. "Microsoft.AspNetCore.Razor.Language": "3.1.0",
  246. "Microsoft.CodeAnalysis.CSharp": "3.3.0",
  247. "Microsoft.CodeAnalysis.Common": "3.3.0"
  248. },
  249. "compile": {
  250. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  251. },
  252. "runtime": {
  253. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
  254. }
  255. },
  256. "Microsoft.CodeAnalysis.Workspaces.Common/3.3.1": {
  257. "type": "package",
  258. "dependencies": {
  259. "Microsoft.CodeAnalysis.Common": "[3.3.1]",
  260. "System.Composition": "1.0.31"
  261. },
  262. "compile": {
  263. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll": {}
  264. },
  265. "runtime": {
  266. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll": {}
  267. },
  268. "resource": {
  269. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  270. "locale": "cs"
  271. },
  272. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  273. "locale": "de"
  274. },
  275. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  276. "locale": "es"
  277. },
  278. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  279. "locale": "fr"
  280. },
  281. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  282. "locale": "it"
  283. },
  284. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  285. "locale": "ja"
  286. },
  287. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  288. "locale": "ko"
  289. },
  290. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  291. "locale": "pl"
  292. },
  293. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  294. "locale": "pt-BR"
  295. },
  296. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  297. "locale": "ru"
  298. },
  299. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  300. "locale": "tr"
  301. },
  302. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  303. "locale": "zh-Hans"
  304. },
  305. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
  306. "locale": "zh-Hant"
  307. }
  308. }
  309. },
  310. "Microsoft.CSharp/4.7.0": {
  311. "type": "package",
  312. "compile": {
  313. "ref/netcoreapp2.0/_._": {}
  314. },
  315. "runtime": {
  316. "lib/netcoreapp2.0/_._": {}
  317. }
  318. },
  319. "Microsoft.Data.SqlClient/1.1.3": {
  320. "type": "package",
  321. "dependencies": {
  322. "Microsoft.Identity.Client": "3.0.8",
  323. "Microsoft.IdentityModel.JsonWebTokens": "5.5.0",
  324. "Microsoft.IdentityModel.Protocols.OpenIdConnect": "5.5.0",
  325. "Microsoft.Win32.Registry": "4.5.0",
  326. "System.Configuration.ConfigurationManager": "4.5.0",
  327. "System.Runtime.Caching": "4.5.0",
  328. "System.Security.Principal.Windows": "4.5.0",
  329. "System.Text.Encoding.CodePages": "4.5.0",
  330. "runtime.native.System.Data.SqlClient.sni": "4.4.0"
  331. },
  332. "compile": {
  333. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {}
  334. },
  335. "runtime": {
  336. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {}
  337. },
  338. "runtimeTargets": {
  339. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
  340. "assetType": "runtime",
  341. "rid": "unix"
  342. },
  343. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll": {
  344. "assetType": "runtime",
  345. "rid": "win"
  346. }
  347. }
  348. },
  349. "Microsoft.EntityFrameworkCore/3.1.32": {
  350. "type": "package",
  351. "dependencies": {
  352. "Microsoft.Bcl.AsyncInterfaces": "1.1.1",
  353. "Microsoft.Bcl.HashCode": "1.1.1",
  354. "Microsoft.EntityFrameworkCore.Abstractions": "3.1.32",
  355. "Microsoft.EntityFrameworkCore.Analyzers": "3.1.32",
  356. "Microsoft.Extensions.Caching.Memory": "3.1.32",
  357. "Microsoft.Extensions.DependencyInjection": "3.1.32",
  358. "Microsoft.Extensions.Logging": "3.1.32",
  359. "System.Collections.Immutable": "1.7.1",
  360. "System.ComponentModel.Annotations": "4.7.0",
  361. "System.Diagnostics.DiagnosticSource": "4.7.1"
  362. },
  363. "compile": {
  364. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  365. },
  366. "runtime": {
  367. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {}
  368. }
  369. },
  370. "Microsoft.EntityFrameworkCore.Abstractions/3.1.32": {
  371. "type": "package",
  372. "compile": {
  373. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  374. },
  375. "runtime": {
  376. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
  377. }
  378. },
  379. "Microsoft.EntityFrameworkCore.Analyzers/3.1.32": {
  380. "type": "package",
  381. "compile": {
  382. "lib/netstandard2.0/_._": {}
  383. },
  384. "runtime": {
  385. "lib/netstandard2.0/_._": {}
  386. }
  387. },
  388. "Microsoft.EntityFrameworkCore.Design/3.1.32": {
  389. "type": "package",
  390. "dependencies": {
  391. "Microsoft.CSharp": "4.7.0",
  392. "Microsoft.EntityFrameworkCore.Relational": "3.1.32"
  393. },
  394. "compile": {
  395. "lib/netstandard2.0/_._": {}
  396. },
  397. "runtime": {
  398. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {}
  399. },
  400. "build": {
  401. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props": {}
  402. }
  403. },
  404. "Microsoft.EntityFrameworkCore.Relational/3.1.32": {
  405. "type": "package",
  406. "dependencies": {
  407. "Microsoft.EntityFrameworkCore": "3.1.32"
  408. },
  409. "compile": {
  410. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  411. },
  412. "runtime": {
  413. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
  414. }
  415. },
  416. "Microsoft.EntityFrameworkCore.SqlServer/3.1.32": {
  417. "type": "package",
  418. "dependencies": {
  419. "Microsoft.Data.SqlClient": "1.1.3",
  420. "Microsoft.EntityFrameworkCore.Relational": "3.1.32"
  421. },
  422. "compile": {
  423. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  424. },
  425. "runtime": {
  426. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  427. }
  428. },
  429. "Microsoft.EntityFrameworkCore.Tools/3.1.32": {
  430. "type": "package",
  431. "dependencies": {
  432. "Microsoft.EntityFrameworkCore.Design": "3.1.32"
  433. },
  434. "compile": {
  435. "lib/netstandard2.0/_._": {}
  436. },
  437. "runtime": {
  438. "lib/netstandard2.0/_._": {}
  439. }
  440. },
  441. "Microsoft.Extensions.Caching.Abstractions/3.1.32": {
  442. "type": "package",
  443. "dependencies": {
  444. "Microsoft.Extensions.Primitives": "3.1.32"
  445. },
  446. "compile": {
  447. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  448. },
  449. "runtime": {
  450. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll": {}
  451. }
  452. },
  453. "Microsoft.Extensions.Caching.Memory/3.1.32": {
  454. "type": "package",
  455. "dependencies": {
  456. "Microsoft.Extensions.Caching.Abstractions": "3.1.32",
  457. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32",
  458. "Microsoft.Extensions.Logging.Abstractions": "3.1.32",
  459. "Microsoft.Extensions.Options": "3.1.32"
  460. },
  461. "compile": {
  462. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  463. },
  464. "runtime": {
  465. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll": {}
  466. }
  467. },
  468. "Microsoft.Extensions.Configuration/3.1.32": {
  469. "type": "package",
  470. "dependencies": {
  471. "Microsoft.Extensions.Configuration.Abstractions": "3.1.32"
  472. },
  473. "compile": {
  474. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  475. },
  476. "runtime": {
  477. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {}
  478. }
  479. },
  480. "Microsoft.Extensions.Configuration.Abstractions/3.1.32": {
  481. "type": "package",
  482. "dependencies": {
  483. "Microsoft.Extensions.Primitives": "3.1.32"
  484. },
  485. "compile": {
  486. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  487. },
  488. "runtime": {
  489. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  490. }
  491. },
  492. "Microsoft.Extensions.Configuration.Binder/3.1.32": {
  493. "type": "package",
  494. "dependencies": {
  495. "Microsoft.Extensions.Configuration": "3.1.32"
  496. },
  497. "compile": {
  498. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  499. },
  500. "runtime": {
  501. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll": {}
  502. }
  503. },
  504. "Microsoft.Extensions.DependencyInjection/3.1.32": {
  505. "type": "package",
  506. "dependencies": {
  507. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32"
  508. },
  509. "compile": {
  510. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  511. },
  512. "runtime": {
  513. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": {}
  514. }
  515. },
  516. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.32": {
  517. "type": "package",
  518. "compile": {
  519. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  520. },
  521. "runtime": {
  522. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  523. }
  524. },
  525. "Microsoft.Extensions.Logging/3.1.32": {
  526. "type": "package",
  527. "dependencies": {
  528. "Microsoft.Extensions.Configuration.Binder": "3.1.32",
  529. "Microsoft.Extensions.DependencyInjection": "3.1.32",
  530. "Microsoft.Extensions.Logging.Abstractions": "3.1.32",
  531. "Microsoft.Extensions.Options": "3.1.32"
  532. },
  533. "compile": {
  534. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  535. },
  536. "runtime": {
  537. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll": {}
  538. }
  539. },
  540. "Microsoft.Extensions.Logging.Abstractions/3.1.32": {
  541. "type": "package",
  542. "compile": {
  543. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  544. },
  545. "runtime": {
  546. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
  547. }
  548. },
  549. "Microsoft.Extensions.Options/3.1.32": {
  550. "type": "package",
  551. "dependencies": {
  552. "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.32",
  553. "Microsoft.Extensions.Primitives": "3.1.32"
  554. },
  555. "compile": {
  556. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  557. },
  558. "runtime": {
  559. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll": {}
  560. }
  561. },
  562. "Microsoft.Extensions.Primitives/3.1.32": {
  563. "type": "package",
  564. "compile": {
  565. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  566. },
  567. "runtime": {
  568. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {}
  569. }
  570. },
  571. "Microsoft.Identity.Client/3.0.8": {
  572. "type": "package",
  573. "dependencies": {
  574. "Microsoft.CSharp": "4.5.0",
  575. "System.ComponentModel.TypeConverter": "4.3.0",
  576. "System.Net.NameResolution": "4.3.0",
  577. "System.Runtime.Serialization.Formatters": "4.3.0",
  578. "System.Runtime.Serialization.Json": "4.3.0",
  579. "System.Runtime.Serialization.Primitives": "4.3.0",
  580. "System.Security.SecureString": "4.3.0",
  581. "System.Xml.XDocument": "4.3.0"
  582. },
  583. "compile": {
  584. "ref/netcoreapp2.1/_._": {}
  585. },
  586. "runtime": {
  587. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": {}
  588. }
  589. },
  590. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  591. "type": "package",
  592. "dependencies": {
  593. "Microsoft.IdentityModel.Tokens": "5.5.0",
  594. "Newtonsoft.Json": "10.0.1"
  595. },
  596. "compile": {
  597. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  598. },
  599. "runtime": {
  600. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": {}
  601. }
  602. },
  603. "Microsoft.IdentityModel.Logging/5.5.0": {
  604. "type": "package",
  605. "compile": {
  606. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  607. },
  608. "runtime": {
  609. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": {}
  610. }
  611. },
  612. "Microsoft.IdentityModel.Protocols/5.5.0": {
  613. "type": "package",
  614. "dependencies": {
  615. "Microsoft.IdentityModel.Logging": "5.5.0",
  616. "Microsoft.IdentityModel.Tokens": "5.5.0"
  617. },
  618. "compile": {
  619. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  620. },
  621. "runtime": {
  622. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": {}
  623. }
  624. },
  625. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  626. "type": "package",
  627. "dependencies": {
  628. "Microsoft.IdentityModel.Protocols": "5.5.0",
  629. "Newtonsoft.Json": "10.0.1",
  630. "System.IdentityModel.Tokens.Jwt": "5.5.0"
  631. },
  632. "compile": {
  633. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  634. },
  635. "runtime": {
  636. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  637. }
  638. },
  639. "Microsoft.IdentityModel.Tokens/5.5.0": {
  640. "type": "package",
  641. "dependencies": {
  642. "Microsoft.IdentityModel.Logging": "5.5.0",
  643. "Newtonsoft.Json": "10.0.1",
  644. "System.Security.Cryptography.Cng": "4.5.0"
  645. },
  646. "compile": {
  647. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  648. },
  649. "runtime": {
  650. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {}
  651. }
  652. },
  653. "Microsoft.NETCore.Platforms/2.1.2": {
  654. "type": "package",
  655. "compile": {
  656. "lib/netstandard1.0/_._": {}
  657. },
  658. "runtime": {
  659. "lib/netstandard1.0/_._": {}
  660. }
  661. },
  662. "Microsoft.NETCore.Targets/1.1.0": {
  663. "type": "package",
  664. "compile": {
  665. "lib/netstandard1.0/_._": {}
  666. },
  667. "runtime": {
  668. "lib/netstandard1.0/_._": {}
  669. }
  670. },
  671. "Microsoft.VisualStudio.Web.CodeGeneration/3.1.5": {
  672. "type": "package",
  673. "dependencies": {
  674. "Microsoft.Extensions.DependencyInjection": "3.1.0",
  675. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "3.1.5"
  676. },
  677. "compile": {
  678. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
  679. },
  680. "runtime": {
  681. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
  682. }
  683. },
  684. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/3.1.5": {
  685. "type": "package",
  686. "dependencies": {
  687. "Newtonsoft.Json": "11.0.2"
  688. },
  689. "compile": {
  690. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
  691. },
  692. "runtime": {
  693. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
  694. }
  695. },
  696. "Microsoft.VisualStudio.Web.CodeGeneration.Core/3.1.5": {
  697. "type": "package",
  698. "dependencies": {
  699. "Microsoft.Extensions.DependencyInjection": "3.1.0",
  700. "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "3.1.5",
  701. "Newtonsoft.Json": "11.0.2"
  702. },
  703. "compile": {
  704. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
  705. },
  706. "runtime": {
  707. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
  708. }
  709. },
  710. "Microsoft.VisualStudio.Web.CodeGeneration.Design/3.1.5": {
  711. "type": "package",
  712. "dependencies": {
  713. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "3.1.5"
  714. },
  715. "compile": {
  716. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll": {}
  717. },
  718. "runtime": {
  719. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll": {}
  720. }
  721. },
  722. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/3.1.5": {
  723. "type": "package",
  724. "dependencies": {
  725. "Microsoft.VisualStudio.Web.CodeGeneration.Core": "3.1.5"
  726. },
  727. "compile": {
  728. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
  729. },
  730. "runtime": {
  731. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
  732. }
  733. },
  734. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/3.1.5": {
  735. "type": "package",
  736. "dependencies": {
  737. "Microsoft.AspNetCore.Razor.Language": "3.1.0",
  738. "Microsoft.AspNetCore.Razor.Runtime": "2.2.0",
  739. "Microsoft.CodeAnalysis.CSharp": "3.3.1",
  740. "Microsoft.CodeAnalysis.Razor": "3.1.0",
  741. "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "3.1.5"
  742. },
  743. "compile": {
  744. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
  745. },
  746. "runtime": {
  747. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
  748. }
  749. },
  750. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/3.1.5": {
  751. "type": "package",
  752. "dependencies": {
  753. "Microsoft.CodeAnalysis.CSharp.Workspaces": "3.3.1",
  754. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "3.1.5",
  755. "Newtonsoft.Json": "11.0.2",
  756. "NuGet.Frameworks": "4.7.0"
  757. },
  758. "compile": {
  759. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
  760. },
  761. "runtime": {
  762. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
  763. }
  764. },
  765. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/3.1.5": {
  766. "type": "package",
  767. "dependencies": {
  768. "Microsoft.VisualStudio.Web.CodeGeneration": "3.1.5"
  769. },
  770. "compile": {
  771. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
  772. },
  773. "runtime": {
  774. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
  775. }
  776. },
  777. "Microsoft.Win32.Primitives/4.3.0": {
  778. "type": "package",
  779. "dependencies": {
  780. "Microsoft.NETCore.Platforms": "1.1.0",
  781. "Microsoft.NETCore.Targets": "1.1.0",
  782. "System.Runtime": "4.3.0"
  783. },
  784. "compile": {
  785. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  786. }
  787. },
  788. "Microsoft.Win32.Registry/4.5.0": {
  789. "type": "package",
  790. "dependencies": {
  791. "System.Security.AccessControl": "4.5.0",
  792. "System.Security.Principal.Windows": "4.5.0"
  793. },
  794. "compile": {
  795. "ref/netstandard2.0/_._": {}
  796. },
  797. "runtime": {
  798. "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {}
  799. },
  800. "runtimeTargets": {
  801. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  802. "assetType": "runtime",
  803. "rid": "unix"
  804. },
  805. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
  806. "assetType": "runtime",
  807. "rid": "win"
  808. }
  809. }
  810. },
  811. "MQTTnet/4.1.2.350": {
  812. "type": "package",
  813. "compile": {
  814. "lib/netcoreapp3.1/MQTTnet.dll": {}
  815. },
  816. "runtime": {
  817. "lib/netcoreapp3.1/MQTTnet.dll": {}
  818. }
  819. },
  820. "MQTTnet.AspNetCore/4.1.2.350": {
  821. "type": "package",
  822. "dependencies": {
  823. "MQTTnet": "4.1.2.350"
  824. },
  825. "compile": {
  826. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll": {}
  827. },
  828. "runtime": {
  829. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll": {}
  830. },
  831. "frameworkReferences": [
  832. "Microsoft.AspNetCore.App"
  833. ]
  834. },
  835. "NETStandard.Library/1.6.1": {
  836. "type": "package",
  837. "dependencies": {
  838. "Microsoft.NETCore.Platforms": "1.1.0",
  839. "Microsoft.Win32.Primitives": "4.3.0",
  840. "System.AppContext": "4.3.0",
  841. "System.Collections": "4.3.0",
  842. "System.Collections.Concurrent": "4.3.0",
  843. "System.Console": "4.3.0",
  844. "System.Diagnostics.Debug": "4.3.0",
  845. "System.Diagnostics.Tools": "4.3.0",
  846. "System.Diagnostics.Tracing": "4.3.0",
  847. "System.Globalization": "4.3.0",
  848. "System.Globalization.Calendars": "4.3.0",
  849. "System.IO": "4.3.0",
  850. "System.IO.Compression": "4.3.0",
  851. "System.IO.Compression.ZipFile": "4.3.0",
  852. "System.IO.FileSystem": "4.3.0",
  853. "System.IO.FileSystem.Primitives": "4.3.0",
  854. "System.Linq": "4.3.0",
  855. "System.Linq.Expressions": "4.3.0",
  856. "System.Net.Http": "4.3.0",
  857. "System.Net.Primitives": "4.3.0",
  858. "System.Net.Sockets": "4.3.0",
  859. "System.ObjectModel": "4.3.0",
  860. "System.Reflection": "4.3.0",
  861. "System.Reflection.Extensions": "4.3.0",
  862. "System.Reflection.Primitives": "4.3.0",
  863. "System.Resources.ResourceManager": "4.3.0",
  864. "System.Runtime": "4.3.0",
  865. "System.Runtime.Extensions": "4.3.0",
  866. "System.Runtime.Handles": "4.3.0",
  867. "System.Runtime.InteropServices": "4.3.0",
  868. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  869. "System.Runtime.Numerics": "4.3.0",
  870. "System.Security.Cryptography.Algorithms": "4.3.0",
  871. "System.Security.Cryptography.Encoding": "4.3.0",
  872. "System.Security.Cryptography.Primitives": "4.3.0",
  873. "System.Security.Cryptography.X509Certificates": "4.3.0",
  874. "System.Text.Encoding": "4.3.0",
  875. "System.Text.Encoding.Extensions": "4.3.0",
  876. "System.Text.RegularExpressions": "4.3.0",
  877. "System.Threading": "4.3.0",
  878. "System.Threading.Tasks": "4.3.0",
  879. "System.Threading.Timer": "4.3.0",
  880. "System.Xml.ReaderWriter": "4.3.0",
  881. "System.Xml.XDocument": "4.3.0"
  882. }
  883. },
  884. "Newtonsoft.Json/11.0.2": {
  885. "type": "package",
  886. "compile": {
  887. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  888. },
  889. "runtime": {
  890. "lib/netstandard2.0/Newtonsoft.Json.dll": {}
  891. }
  892. },
  893. "NuGet.Frameworks/4.7.0": {
  894. "type": "package",
  895. "dependencies": {
  896. "NETStandard.Library": "1.6.1"
  897. },
  898. "compile": {
  899. "lib/netstandard1.6/NuGet.Frameworks.dll": {}
  900. },
  901. "runtime": {
  902. "lib/netstandard1.6/NuGet.Frameworks.dll": {}
  903. }
  904. },
  905. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  906. "type": "package",
  907. "runtimeTargets": {
  908. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  909. "assetType": "native",
  910. "rid": "debian.8-x64"
  911. }
  912. }
  913. },
  914. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  915. "type": "package",
  916. "runtimeTargets": {
  917. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  918. "assetType": "native",
  919. "rid": "fedora.23-x64"
  920. }
  921. }
  922. },
  923. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  924. "type": "package",
  925. "runtimeTargets": {
  926. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  927. "assetType": "native",
  928. "rid": "fedora.24-x64"
  929. }
  930. }
  931. },
  932. "runtime.native.System/4.3.0": {
  933. "type": "package",
  934. "dependencies": {
  935. "Microsoft.NETCore.Platforms": "1.1.0",
  936. "Microsoft.NETCore.Targets": "1.1.0"
  937. },
  938. "compile": {
  939. "lib/netstandard1.0/_._": {}
  940. },
  941. "runtime": {
  942. "lib/netstandard1.0/_._": {}
  943. }
  944. },
  945. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  946. "type": "package",
  947. "dependencies": {
  948. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  949. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
  950. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
  951. }
  952. },
  953. "runtime.native.System.IO.Compression/4.3.0": {
  954. "type": "package",
  955. "dependencies": {
  956. "Microsoft.NETCore.Platforms": "1.1.0",
  957. "Microsoft.NETCore.Targets": "1.1.0"
  958. },
  959. "compile": {
  960. "lib/netstandard1.0/_._": {}
  961. },
  962. "runtime": {
  963. "lib/netstandard1.0/_._": {}
  964. }
  965. },
  966. "runtime.native.System.Net.Http/4.3.0": {
  967. "type": "package",
  968. "dependencies": {
  969. "Microsoft.NETCore.Platforms": "1.1.0",
  970. "Microsoft.NETCore.Targets": "1.1.0"
  971. },
  972. "compile": {
  973. "lib/netstandard1.0/_._": {}
  974. },
  975. "runtime": {
  976. "lib/netstandard1.0/_._": {}
  977. }
  978. },
  979. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  980. "type": "package",
  981. "dependencies": {
  982. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  983. },
  984. "compile": {
  985. "lib/netstandard1.0/_._": {}
  986. },
  987. "runtime": {
  988. "lib/netstandard1.0/_._": {}
  989. }
  990. },
  991. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  992. "type": "package",
  993. "dependencies": {
  994. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  995. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  996. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  997. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  998. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  999. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1000. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1001. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1002. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1003. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1004. },
  1005. "compile": {
  1006. "lib/netstandard1.0/_._": {}
  1007. },
  1008. "runtime": {
  1009. "lib/netstandard1.0/_._": {}
  1010. }
  1011. },
  1012. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1013. "type": "package",
  1014. "runtimeTargets": {
  1015. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1016. "assetType": "native",
  1017. "rid": "opensuse.13.2-x64"
  1018. }
  1019. }
  1020. },
  1021. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1022. "type": "package",
  1023. "runtimeTargets": {
  1024. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1025. "assetType": "native",
  1026. "rid": "opensuse.42.1-x64"
  1027. }
  1028. }
  1029. },
  1030. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1031. "type": "package",
  1032. "runtimeTargets": {
  1033. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1034. "assetType": "native",
  1035. "rid": "osx.10.10-x64"
  1036. }
  1037. }
  1038. },
  1039. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1040. "type": "package",
  1041. "runtimeTargets": {
  1042. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1043. "assetType": "native",
  1044. "rid": "osx.10.10-x64"
  1045. }
  1046. }
  1047. },
  1048. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1049. "type": "package",
  1050. "runtimeTargets": {
  1051. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1052. "assetType": "native",
  1053. "rid": "rhel.7-x64"
  1054. }
  1055. }
  1056. },
  1057. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1058. "type": "package",
  1059. "runtimeTargets": {
  1060. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1061. "assetType": "native",
  1062. "rid": "ubuntu.14.04-x64"
  1063. }
  1064. }
  1065. },
  1066. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1067. "type": "package",
  1068. "runtimeTargets": {
  1069. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1070. "assetType": "native",
  1071. "rid": "ubuntu.16.04-x64"
  1072. }
  1073. }
  1074. },
  1075. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1076. "type": "package",
  1077. "runtimeTargets": {
  1078. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1079. "assetType": "native",
  1080. "rid": "ubuntu.16.10-x64"
  1081. }
  1082. }
  1083. },
  1084. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1085. "type": "package",
  1086. "runtimeTargets": {
  1087. "runtimes/win-arm64/native/sni.dll": {
  1088. "assetType": "native",
  1089. "rid": "win-arm64"
  1090. }
  1091. }
  1092. },
  1093. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1094. "type": "package",
  1095. "runtimeTargets": {
  1096. "runtimes/win-x64/native/sni.dll": {
  1097. "assetType": "native",
  1098. "rid": "win-x64"
  1099. }
  1100. }
  1101. },
  1102. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  1103. "type": "package",
  1104. "runtimeTargets": {
  1105. "runtimes/win-x86/native/sni.dll": {
  1106. "assetType": "native",
  1107. "rid": "win-x86"
  1108. }
  1109. }
  1110. },
  1111. "System.AppContext/4.3.0": {
  1112. "type": "package",
  1113. "dependencies": {
  1114. "System.Runtime": "4.3.0"
  1115. },
  1116. "compile": {
  1117. "ref/netstandard1.6/System.AppContext.dll": {}
  1118. },
  1119. "runtime": {
  1120. "lib/netstandard1.6/System.AppContext.dll": {}
  1121. }
  1122. },
  1123. "System.Buffers/4.3.0": {
  1124. "type": "package",
  1125. "dependencies": {
  1126. "System.Diagnostics.Debug": "4.3.0",
  1127. "System.Diagnostics.Tracing": "4.3.0",
  1128. "System.Resources.ResourceManager": "4.3.0",
  1129. "System.Runtime": "4.3.0",
  1130. "System.Threading": "4.3.0"
  1131. },
  1132. "compile": {
  1133. "lib/netstandard1.1/_._": {}
  1134. },
  1135. "runtime": {
  1136. "lib/netstandard1.1/System.Buffers.dll": {}
  1137. }
  1138. },
  1139. "System.Collections/4.3.0": {
  1140. "type": "package",
  1141. "dependencies": {
  1142. "Microsoft.NETCore.Platforms": "1.1.0",
  1143. "Microsoft.NETCore.Targets": "1.1.0",
  1144. "System.Runtime": "4.3.0"
  1145. },
  1146. "compile": {
  1147. "ref/netstandard1.3/System.Collections.dll": {}
  1148. }
  1149. },
  1150. "System.Collections.Concurrent/4.3.0": {
  1151. "type": "package",
  1152. "dependencies": {
  1153. "System.Collections": "4.3.0",
  1154. "System.Diagnostics.Debug": "4.3.0",
  1155. "System.Diagnostics.Tracing": "4.3.0",
  1156. "System.Globalization": "4.3.0",
  1157. "System.Reflection": "4.3.0",
  1158. "System.Resources.ResourceManager": "4.3.0",
  1159. "System.Runtime": "4.3.0",
  1160. "System.Runtime.Extensions": "4.3.0",
  1161. "System.Threading": "4.3.0",
  1162. "System.Threading.Tasks": "4.3.0"
  1163. },
  1164. "compile": {
  1165. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1166. },
  1167. "runtime": {
  1168. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1169. }
  1170. },
  1171. "System.Collections.Immutable/1.7.1": {
  1172. "type": "package",
  1173. "compile": {
  1174. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1175. },
  1176. "runtime": {
  1177. "lib/netstandard2.0/System.Collections.Immutable.dll": {}
  1178. }
  1179. },
  1180. "System.Collections.NonGeneric/4.3.0": {
  1181. "type": "package",
  1182. "dependencies": {
  1183. "System.Diagnostics.Debug": "4.3.0",
  1184. "System.Globalization": "4.3.0",
  1185. "System.Resources.ResourceManager": "4.3.0",
  1186. "System.Runtime": "4.3.0",
  1187. "System.Runtime.Extensions": "4.3.0",
  1188. "System.Threading": "4.3.0"
  1189. },
  1190. "compile": {
  1191. "ref/netstandard1.3/_._": {}
  1192. },
  1193. "runtime": {
  1194. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1195. }
  1196. },
  1197. "System.Collections.Specialized/4.3.0": {
  1198. "type": "package",
  1199. "dependencies": {
  1200. "System.Collections.NonGeneric": "4.3.0",
  1201. "System.Globalization": "4.3.0",
  1202. "System.Globalization.Extensions": "4.3.0",
  1203. "System.Resources.ResourceManager": "4.3.0",
  1204. "System.Runtime": "4.3.0",
  1205. "System.Runtime.Extensions": "4.3.0",
  1206. "System.Threading": "4.3.0"
  1207. },
  1208. "compile": {
  1209. "ref/netstandard1.3/_._": {}
  1210. },
  1211. "runtime": {
  1212. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1213. }
  1214. },
  1215. "System.ComponentModel/4.3.0": {
  1216. "type": "package",
  1217. "dependencies": {
  1218. "System.Runtime": "4.3.0"
  1219. },
  1220. "compile": {
  1221. "ref/netstandard1.0/_._": {}
  1222. },
  1223. "runtime": {
  1224. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1225. }
  1226. },
  1227. "System.ComponentModel.Annotations/4.7.0": {
  1228. "type": "package",
  1229. "compile": {
  1230. "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1231. },
  1232. "runtime": {
  1233. "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {}
  1234. }
  1235. },
  1236. "System.ComponentModel.Primitives/4.3.0": {
  1237. "type": "package",
  1238. "dependencies": {
  1239. "System.ComponentModel": "4.3.0",
  1240. "System.Resources.ResourceManager": "4.3.0",
  1241. "System.Runtime": "4.3.0"
  1242. },
  1243. "compile": {
  1244. "ref/netstandard1.0/_._": {}
  1245. },
  1246. "runtime": {
  1247. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1248. }
  1249. },
  1250. "System.ComponentModel.TypeConverter/4.3.0": {
  1251. "type": "package",
  1252. "dependencies": {
  1253. "System.Collections": "4.3.0",
  1254. "System.Collections.NonGeneric": "4.3.0",
  1255. "System.Collections.Specialized": "4.3.0",
  1256. "System.ComponentModel": "4.3.0",
  1257. "System.ComponentModel.Primitives": "4.3.0",
  1258. "System.Globalization": "4.3.0",
  1259. "System.Linq": "4.3.0",
  1260. "System.Reflection": "4.3.0",
  1261. "System.Reflection.Extensions": "4.3.0",
  1262. "System.Reflection.Primitives": "4.3.0",
  1263. "System.Reflection.TypeExtensions": "4.3.0",
  1264. "System.Resources.ResourceManager": "4.3.0",
  1265. "System.Runtime": "4.3.0",
  1266. "System.Runtime.Extensions": "4.3.0",
  1267. "System.Threading": "4.3.0"
  1268. },
  1269. "compile": {
  1270. "ref/netstandard1.5/_._": {}
  1271. },
  1272. "runtime": {
  1273. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1274. }
  1275. },
  1276. "System.Composition/1.0.31": {
  1277. "type": "package",
  1278. "dependencies": {
  1279. "System.Composition.AttributedModel": "1.0.31",
  1280. "System.Composition.Convention": "1.0.31",
  1281. "System.Composition.Hosting": "1.0.31",
  1282. "System.Composition.Runtime": "1.0.31",
  1283. "System.Composition.TypedParts": "1.0.31"
  1284. }
  1285. },
  1286. "System.Composition.AttributedModel/1.0.31": {
  1287. "type": "package",
  1288. "dependencies": {
  1289. "System.Reflection": "4.3.0",
  1290. "System.Runtime": "4.3.0"
  1291. },
  1292. "compile": {
  1293. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  1294. },
  1295. "runtime": {
  1296. "lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
  1297. }
  1298. },
  1299. "System.Composition.Convention/1.0.31": {
  1300. "type": "package",
  1301. "dependencies": {
  1302. "System.Collections": "4.3.0",
  1303. "System.Composition.AttributedModel": "1.0.31",
  1304. "System.Diagnostics.Debug": "4.3.0",
  1305. "System.Diagnostics.Tools": "4.3.0",
  1306. "System.Globalization": "4.3.0",
  1307. "System.Linq": "4.3.0",
  1308. "System.Linq.Expressions": "4.3.0",
  1309. "System.Reflection": "4.3.0",
  1310. "System.Reflection.Extensions": "4.3.0",
  1311. "System.Resources.ResourceManager": "4.3.0",
  1312. "System.Runtime": "4.3.0",
  1313. "System.Threading": "4.3.0"
  1314. },
  1315. "compile": {
  1316. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  1317. },
  1318. "runtime": {
  1319. "lib/netstandard1.0/System.Composition.Convention.dll": {}
  1320. }
  1321. },
  1322. "System.Composition.Hosting/1.0.31": {
  1323. "type": "package",
  1324. "dependencies": {
  1325. "System.Collections": "4.3.0",
  1326. "System.Composition.Runtime": "1.0.31",
  1327. "System.Diagnostics.Debug": "4.3.0",
  1328. "System.Diagnostics.Tools": "4.3.0",
  1329. "System.Globalization": "4.3.0",
  1330. "System.Linq": "4.3.0",
  1331. "System.Linq.Expressions": "4.3.0",
  1332. "System.ObjectModel": "4.3.0",
  1333. "System.Reflection": "4.3.0",
  1334. "System.Reflection.Extensions": "4.3.0",
  1335. "System.Resources.ResourceManager": "4.3.0",
  1336. "System.Runtime": "4.3.0",
  1337. "System.Threading": "4.3.0"
  1338. },
  1339. "compile": {
  1340. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  1341. },
  1342. "runtime": {
  1343. "lib/netstandard1.0/System.Composition.Hosting.dll": {}
  1344. }
  1345. },
  1346. "System.Composition.Runtime/1.0.31": {
  1347. "type": "package",
  1348. "dependencies": {
  1349. "System.Collections": "4.3.0",
  1350. "System.Diagnostics.Debug": "4.3.0",
  1351. "System.Diagnostics.Tools": "4.3.0",
  1352. "System.Globalization": "4.3.0",
  1353. "System.Linq": "4.3.0",
  1354. "System.Reflection": "4.3.0",
  1355. "System.Resources.ResourceManager": "4.3.0",
  1356. "System.Runtime": "4.3.0"
  1357. },
  1358. "compile": {
  1359. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  1360. },
  1361. "runtime": {
  1362. "lib/netstandard1.0/System.Composition.Runtime.dll": {}
  1363. }
  1364. },
  1365. "System.Composition.TypedParts/1.0.31": {
  1366. "type": "package",
  1367. "dependencies": {
  1368. "System.Collections": "4.3.0",
  1369. "System.Composition.AttributedModel": "1.0.31",
  1370. "System.Composition.Hosting": "1.0.31",
  1371. "System.Composition.Runtime": "1.0.31",
  1372. "System.Diagnostics.Debug": "4.3.0",
  1373. "System.Diagnostics.Tools": "4.3.0",
  1374. "System.Globalization": "4.3.0",
  1375. "System.Linq": "4.3.0",
  1376. "System.Linq.Expressions": "4.3.0",
  1377. "System.Reflection": "4.3.0",
  1378. "System.Reflection.Extensions": "4.3.0",
  1379. "System.Resources.ResourceManager": "4.3.0",
  1380. "System.Runtime": "4.3.0",
  1381. "System.Runtime.Extensions": "4.3.0"
  1382. },
  1383. "compile": {
  1384. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  1385. },
  1386. "runtime": {
  1387. "lib/netstandard1.0/System.Composition.TypedParts.dll": {}
  1388. }
  1389. },
  1390. "System.Configuration.ConfigurationManager/4.5.0": {
  1391. "type": "package",
  1392. "dependencies": {
  1393. "System.Security.Cryptography.ProtectedData": "4.5.0",
  1394. "System.Security.Permissions": "4.5.0"
  1395. },
  1396. "compile": {
  1397. "ref/netstandard2.0/_._": {}
  1398. },
  1399. "runtime": {
  1400. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {}
  1401. }
  1402. },
  1403. "System.Console/4.3.0": {
  1404. "type": "package",
  1405. "dependencies": {
  1406. "Microsoft.NETCore.Platforms": "1.1.0",
  1407. "Microsoft.NETCore.Targets": "1.1.0",
  1408. "System.IO": "4.3.0",
  1409. "System.Runtime": "4.3.0",
  1410. "System.Text.Encoding": "4.3.0"
  1411. },
  1412. "compile": {
  1413. "ref/netstandard1.3/System.Console.dll": {}
  1414. }
  1415. },
  1416. "System.Diagnostics.Debug/4.3.0": {
  1417. "type": "package",
  1418. "dependencies": {
  1419. "Microsoft.NETCore.Platforms": "1.1.0",
  1420. "Microsoft.NETCore.Targets": "1.1.0",
  1421. "System.Runtime": "4.3.0"
  1422. },
  1423. "compile": {
  1424. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1425. }
  1426. },
  1427. "System.Diagnostics.DiagnosticSource/4.7.1": {
  1428. "type": "package",
  1429. "compile": {
  1430. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1431. },
  1432. "runtime": {
  1433. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1434. }
  1435. },
  1436. "System.Diagnostics.Tools/4.3.0": {
  1437. "type": "package",
  1438. "dependencies": {
  1439. "Microsoft.NETCore.Platforms": "1.1.0",
  1440. "Microsoft.NETCore.Targets": "1.1.0",
  1441. "System.Runtime": "4.3.0"
  1442. },
  1443. "compile": {
  1444. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  1445. }
  1446. },
  1447. "System.Diagnostics.Tracing/4.3.0": {
  1448. "type": "package",
  1449. "dependencies": {
  1450. "Microsoft.NETCore.Platforms": "1.1.0",
  1451. "Microsoft.NETCore.Targets": "1.1.0",
  1452. "System.Runtime": "4.3.0"
  1453. },
  1454. "compile": {
  1455. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  1456. }
  1457. },
  1458. "System.Globalization/4.3.0": {
  1459. "type": "package",
  1460. "dependencies": {
  1461. "Microsoft.NETCore.Platforms": "1.1.0",
  1462. "Microsoft.NETCore.Targets": "1.1.0",
  1463. "System.Runtime": "4.3.0"
  1464. },
  1465. "compile": {
  1466. "ref/netstandard1.3/System.Globalization.dll": {}
  1467. }
  1468. },
  1469. "System.Globalization.Calendars/4.3.0": {
  1470. "type": "package",
  1471. "dependencies": {
  1472. "Microsoft.NETCore.Platforms": "1.1.0",
  1473. "Microsoft.NETCore.Targets": "1.1.0",
  1474. "System.Globalization": "4.3.0",
  1475. "System.Runtime": "4.3.0"
  1476. },
  1477. "compile": {
  1478. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  1479. }
  1480. },
  1481. "System.Globalization.Extensions/4.3.0": {
  1482. "type": "package",
  1483. "dependencies": {
  1484. "Microsoft.NETCore.Platforms": "1.1.0",
  1485. "System.Globalization": "4.3.0",
  1486. "System.Resources.ResourceManager": "4.3.0",
  1487. "System.Runtime": "4.3.0",
  1488. "System.Runtime.Extensions": "4.3.0",
  1489. "System.Runtime.InteropServices": "4.3.0"
  1490. },
  1491. "compile": {
  1492. "ref/netstandard1.3/_._": {}
  1493. },
  1494. "runtimeTargets": {
  1495. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1496. "assetType": "runtime",
  1497. "rid": "unix"
  1498. },
  1499. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  1500. "assetType": "runtime",
  1501. "rid": "win"
  1502. }
  1503. }
  1504. },
  1505. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  1506. "type": "package",
  1507. "dependencies": {
  1508. "Microsoft.IdentityModel.JsonWebTokens": "5.5.0",
  1509. "Microsoft.IdentityModel.Tokens": "5.5.0",
  1510. "Newtonsoft.Json": "10.0.1"
  1511. },
  1512. "compile": {
  1513. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1514. },
  1515. "runtime": {
  1516. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {}
  1517. }
  1518. },
  1519. "System.IO/4.3.0": {
  1520. "type": "package",
  1521. "dependencies": {
  1522. "Microsoft.NETCore.Platforms": "1.1.0",
  1523. "Microsoft.NETCore.Targets": "1.1.0",
  1524. "System.Runtime": "4.3.0",
  1525. "System.Text.Encoding": "4.3.0",
  1526. "System.Threading.Tasks": "4.3.0"
  1527. },
  1528. "compile": {
  1529. "ref/netstandard1.5/System.IO.dll": {}
  1530. }
  1531. },
  1532. "System.IO.Compression/4.3.0": {
  1533. "type": "package",
  1534. "dependencies": {
  1535. "Microsoft.NETCore.Platforms": "1.1.0",
  1536. "System.Buffers": "4.3.0",
  1537. "System.Collections": "4.3.0",
  1538. "System.Diagnostics.Debug": "4.3.0",
  1539. "System.IO": "4.3.0",
  1540. "System.Resources.ResourceManager": "4.3.0",
  1541. "System.Runtime": "4.3.0",
  1542. "System.Runtime.Extensions": "4.3.0",
  1543. "System.Runtime.Handles": "4.3.0",
  1544. "System.Runtime.InteropServices": "4.3.0",
  1545. "System.Text.Encoding": "4.3.0",
  1546. "System.Threading": "4.3.0",
  1547. "System.Threading.Tasks": "4.3.0",
  1548. "runtime.native.System": "4.3.0",
  1549. "runtime.native.System.IO.Compression": "4.3.0"
  1550. },
  1551. "compile": {
  1552. "ref/netstandard1.3/System.IO.Compression.dll": {}
  1553. },
  1554. "runtimeTargets": {
  1555. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  1556. "assetType": "runtime",
  1557. "rid": "unix"
  1558. },
  1559. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  1560. "assetType": "runtime",
  1561. "rid": "win"
  1562. }
  1563. }
  1564. },
  1565. "System.IO.Compression.ZipFile/4.3.0": {
  1566. "type": "package",
  1567. "dependencies": {
  1568. "System.Buffers": "4.3.0",
  1569. "System.IO": "4.3.0",
  1570. "System.IO.Compression": "4.3.0",
  1571. "System.IO.FileSystem": "4.3.0",
  1572. "System.IO.FileSystem.Primitives": "4.3.0",
  1573. "System.Resources.ResourceManager": "4.3.0",
  1574. "System.Runtime": "4.3.0",
  1575. "System.Runtime.Extensions": "4.3.0",
  1576. "System.Text.Encoding": "4.3.0"
  1577. },
  1578. "compile": {
  1579. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1580. },
  1581. "runtime": {
  1582. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  1583. }
  1584. },
  1585. "System.IO.FileSystem/4.3.0": {
  1586. "type": "package",
  1587. "dependencies": {
  1588. "Microsoft.NETCore.Platforms": "1.1.0",
  1589. "Microsoft.NETCore.Targets": "1.1.0",
  1590. "System.IO": "4.3.0",
  1591. "System.IO.FileSystem.Primitives": "4.3.0",
  1592. "System.Runtime": "4.3.0",
  1593. "System.Runtime.Handles": "4.3.0",
  1594. "System.Text.Encoding": "4.3.0",
  1595. "System.Threading.Tasks": "4.3.0"
  1596. },
  1597. "compile": {
  1598. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  1599. }
  1600. },
  1601. "System.IO.FileSystem.Primitives/4.3.0": {
  1602. "type": "package",
  1603. "dependencies": {
  1604. "System.Runtime": "4.3.0"
  1605. },
  1606. "compile": {
  1607. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1608. },
  1609. "runtime": {
  1610. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  1611. }
  1612. },
  1613. "System.Linq/4.3.0": {
  1614. "type": "package",
  1615. "dependencies": {
  1616. "System.Collections": "4.3.0",
  1617. "System.Diagnostics.Debug": "4.3.0",
  1618. "System.Resources.ResourceManager": "4.3.0",
  1619. "System.Runtime": "4.3.0",
  1620. "System.Runtime.Extensions": "4.3.0"
  1621. },
  1622. "compile": {
  1623. "ref/netstandard1.6/System.Linq.dll": {}
  1624. },
  1625. "runtime": {
  1626. "lib/netstandard1.6/System.Linq.dll": {}
  1627. }
  1628. },
  1629. "System.Linq.Expressions/4.3.0": {
  1630. "type": "package",
  1631. "dependencies": {
  1632. "System.Collections": "4.3.0",
  1633. "System.Diagnostics.Debug": "4.3.0",
  1634. "System.Globalization": "4.3.0",
  1635. "System.IO": "4.3.0",
  1636. "System.Linq": "4.3.0",
  1637. "System.ObjectModel": "4.3.0",
  1638. "System.Reflection": "4.3.0",
  1639. "System.Reflection.Emit": "4.3.0",
  1640. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1641. "System.Reflection.Emit.Lightweight": "4.3.0",
  1642. "System.Reflection.Extensions": "4.3.0",
  1643. "System.Reflection.Primitives": "4.3.0",
  1644. "System.Reflection.TypeExtensions": "4.3.0",
  1645. "System.Resources.ResourceManager": "4.3.0",
  1646. "System.Runtime": "4.3.0",
  1647. "System.Runtime.Extensions": "4.3.0",
  1648. "System.Threading": "4.3.0"
  1649. },
  1650. "compile": {
  1651. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  1652. },
  1653. "runtime": {
  1654. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  1655. }
  1656. },
  1657. "System.Memory/4.5.3": {
  1658. "type": "package",
  1659. "compile": {
  1660. "ref/netcoreapp2.1/_._": {}
  1661. },
  1662. "runtime": {
  1663. "lib/netcoreapp2.1/_._": {}
  1664. }
  1665. },
  1666. "System.Net.Http/4.3.0": {
  1667. "type": "package",
  1668. "dependencies": {
  1669. "Microsoft.NETCore.Platforms": "1.1.0",
  1670. "System.Collections": "4.3.0",
  1671. "System.Diagnostics.Debug": "4.3.0",
  1672. "System.Diagnostics.DiagnosticSource": "4.3.0",
  1673. "System.Diagnostics.Tracing": "4.3.0",
  1674. "System.Globalization": "4.3.0",
  1675. "System.Globalization.Extensions": "4.3.0",
  1676. "System.IO": "4.3.0",
  1677. "System.IO.FileSystem": "4.3.0",
  1678. "System.Net.Primitives": "4.3.0",
  1679. "System.Resources.ResourceManager": "4.3.0",
  1680. "System.Runtime": "4.3.0",
  1681. "System.Runtime.Extensions": "4.3.0",
  1682. "System.Runtime.Handles": "4.3.0",
  1683. "System.Runtime.InteropServices": "4.3.0",
  1684. "System.Security.Cryptography.Algorithms": "4.3.0",
  1685. "System.Security.Cryptography.Encoding": "4.3.0",
  1686. "System.Security.Cryptography.OpenSsl": "4.3.0",
  1687. "System.Security.Cryptography.Primitives": "4.3.0",
  1688. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1689. "System.Text.Encoding": "4.3.0",
  1690. "System.Threading": "4.3.0",
  1691. "System.Threading.Tasks": "4.3.0",
  1692. "runtime.native.System": "4.3.0",
  1693. "runtime.native.System.Net.Http": "4.3.0",
  1694. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1695. },
  1696. "compile": {
  1697. "ref/netstandard1.3/System.Net.Http.dll": {}
  1698. },
  1699. "runtimeTargets": {
  1700. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  1701. "assetType": "runtime",
  1702. "rid": "unix"
  1703. },
  1704. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  1705. "assetType": "runtime",
  1706. "rid": "win"
  1707. }
  1708. }
  1709. },
  1710. "System.Net.NameResolution/4.3.0": {
  1711. "type": "package",
  1712. "dependencies": {
  1713. "Microsoft.NETCore.Platforms": "1.1.0",
  1714. "System.Collections": "4.3.0",
  1715. "System.Diagnostics.Tracing": "4.3.0",
  1716. "System.Globalization": "4.3.0",
  1717. "System.Net.Primitives": "4.3.0",
  1718. "System.Resources.ResourceManager": "4.3.0",
  1719. "System.Runtime": "4.3.0",
  1720. "System.Runtime.Extensions": "4.3.0",
  1721. "System.Runtime.Handles": "4.3.0",
  1722. "System.Runtime.InteropServices": "4.3.0",
  1723. "System.Security.Principal.Windows": "4.3.0",
  1724. "System.Threading": "4.3.0",
  1725. "System.Threading.Tasks": "4.3.0",
  1726. "runtime.native.System": "4.3.0"
  1727. },
  1728. "compile": {
  1729. "ref/netstandard1.3/_._": {}
  1730. },
  1731. "runtimeTargets": {
  1732. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1733. "assetType": "runtime",
  1734. "rid": "unix"
  1735. },
  1736. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  1737. "assetType": "runtime",
  1738. "rid": "win"
  1739. }
  1740. }
  1741. },
  1742. "System.Net.Primitives/4.3.0": {
  1743. "type": "package",
  1744. "dependencies": {
  1745. "Microsoft.NETCore.Platforms": "1.1.0",
  1746. "Microsoft.NETCore.Targets": "1.1.0",
  1747. "System.Runtime": "4.3.0",
  1748. "System.Runtime.Handles": "4.3.0"
  1749. },
  1750. "compile": {
  1751. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  1752. }
  1753. },
  1754. "System.Net.Sockets/4.3.0": {
  1755. "type": "package",
  1756. "dependencies": {
  1757. "Microsoft.NETCore.Platforms": "1.1.0",
  1758. "Microsoft.NETCore.Targets": "1.1.0",
  1759. "System.IO": "4.3.0",
  1760. "System.Net.Primitives": "4.3.0",
  1761. "System.Runtime": "4.3.0",
  1762. "System.Threading.Tasks": "4.3.0"
  1763. },
  1764. "compile": {
  1765. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  1766. }
  1767. },
  1768. "System.ObjectModel/4.3.0": {
  1769. "type": "package",
  1770. "dependencies": {
  1771. "System.Collections": "4.3.0",
  1772. "System.Diagnostics.Debug": "4.3.0",
  1773. "System.Resources.ResourceManager": "4.3.0",
  1774. "System.Runtime": "4.3.0",
  1775. "System.Threading": "4.3.0"
  1776. },
  1777. "compile": {
  1778. "ref/netstandard1.3/System.ObjectModel.dll": {}
  1779. },
  1780. "runtime": {
  1781. "lib/netstandard1.3/System.ObjectModel.dll": {}
  1782. }
  1783. },
  1784. "System.Private.DataContractSerialization/4.3.0": {
  1785. "type": "package",
  1786. "dependencies": {
  1787. "System.Collections": "4.3.0",
  1788. "System.Collections.Concurrent": "4.3.0",
  1789. "System.Diagnostics.Debug": "4.3.0",
  1790. "System.Globalization": "4.3.0",
  1791. "System.IO": "4.3.0",
  1792. "System.Linq": "4.3.0",
  1793. "System.Reflection": "4.3.0",
  1794. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1795. "System.Reflection.Emit.Lightweight": "4.3.0",
  1796. "System.Reflection.Extensions": "4.3.0",
  1797. "System.Reflection.Primitives": "4.3.0",
  1798. "System.Reflection.TypeExtensions": "4.3.0",
  1799. "System.Resources.ResourceManager": "4.3.0",
  1800. "System.Runtime": "4.3.0",
  1801. "System.Runtime.Extensions": "4.3.0",
  1802. "System.Runtime.Serialization.Primitives": "4.3.0",
  1803. "System.Text.Encoding": "4.3.0",
  1804. "System.Text.Encoding.Extensions": "4.3.0",
  1805. "System.Text.RegularExpressions": "4.3.0",
  1806. "System.Threading": "4.3.0",
  1807. "System.Threading.Tasks": "4.3.0",
  1808. "System.Xml.ReaderWriter": "4.3.0",
  1809. "System.Xml.XDocument": "4.3.0",
  1810. "System.Xml.XmlDocument": "4.3.0",
  1811. "System.Xml.XmlSerializer": "4.3.0"
  1812. },
  1813. "compile": {
  1814. "ref/netstandard/_._": {}
  1815. },
  1816. "runtime": {
  1817. "lib/netstandard1.3/System.Private.DataContractSerialization.dll": {}
  1818. }
  1819. },
  1820. "System.Reflection/4.3.0": {
  1821. "type": "package",
  1822. "dependencies": {
  1823. "Microsoft.NETCore.Platforms": "1.1.0",
  1824. "Microsoft.NETCore.Targets": "1.1.0",
  1825. "System.IO": "4.3.0",
  1826. "System.Reflection.Primitives": "4.3.0",
  1827. "System.Runtime": "4.3.0"
  1828. },
  1829. "compile": {
  1830. "ref/netstandard1.5/System.Reflection.dll": {}
  1831. }
  1832. },
  1833. "System.Reflection.Emit/4.3.0": {
  1834. "type": "package",
  1835. "dependencies": {
  1836. "System.IO": "4.3.0",
  1837. "System.Reflection": "4.3.0",
  1838. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1839. "System.Reflection.Primitives": "4.3.0",
  1840. "System.Runtime": "4.3.0"
  1841. },
  1842. "compile": {
  1843. "ref/netstandard1.1/_._": {}
  1844. },
  1845. "runtime": {
  1846. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  1847. }
  1848. },
  1849. "System.Reflection.Emit.ILGeneration/4.3.0": {
  1850. "type": "package",
  1851. "dependencies": {
  1852. "System.Reflection": "4.3.0",
  1853. "System.Reflection.Primitives": "4.3.0",
  1854. "System.Runtime": "4.3.0"
  1855. },
  1856. "compile": {
  1857. "ref/netstandard1.0/_._": {}
  1858. },
  1859. "runtime": {
  1860. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  1861. }
  1862. },
  1863. "System.Reflection.Emit.Lightweight/4.3.0": {
  1864. "type": "package",
  1865. "dependencies": {
  1866. "System.Reflection": "4.3.0",
  1867. "System.Reflection.Emit.ILGeneration": "4.3.0",
  1868. "System.Reflection.Primitives": "4.3.0",
  1869. "System.Runtime": "4.3.0"
  1870. },
  1871. "compile": {
  1872. "ref/netstandard1.0/_._": {}
  1873. },
  1874. "runtime": {
  1875. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  1876. }
  1877. },
  1878. "System.Reflection.Extensions/4.3.0": {
  1879. "type": "package",
  1880. "dependencies": {
  1881. "Microsoft.NETCore.Platforms": "1.1.0",
  1882. "Microsoft.NETCore.Targets": "1.1.0",
  1883. "System.Reflection": "4.3.0",
  1884. "System.Runtime": "4.3.0"
  1885. },
  1886. "compile": {
  1887. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  1888. }
  1889. },
  1890. "System.Reflection.Metadata/1.6.0": {
  1891. "type": "package",
  1892. "compile": {
  1893. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  1894. },
  1895. "runtime": {
  1896. "lib/netstandard2.0/System.Reflection.Metadata.dll": {}
  1897. }
  1898. },
  1899. "System.Reflection.Primitives/4.3.0": {
  1900. "type": "package",
  1901. "dependencies": {
  1902. "Microsoft.NETCore.Platforms": "1.1.0",
  1903. "Microsoft.NETCore.Targets": "1.1.0",
  1904. "System.Runtime": "4.3.0"
  1905. },
  1906. "compile": {
  1907. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  1908. }
  1909. },
  1910. "System.Reflection.TypeExtensions/4.3.0": {
  1911. "type": "package",
  1912. "dependencies": {
  1913. "System.Reflection": "4.3.0",
  1914. "System.Runtime": "4.3.0"
  1915. },
  1916. "compile": {
  1917. "ref/netstandard1.5/_._": {}
  1918. },
  1919. "runtime": {
  1920. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  1921. }
  1922. },
  1923. "System.Resources.ResourceManager/4.3.0": {
  1924. "type": "package",
  1925. "dependencies": {
  1926. "Microsoft.NETCore.Platforms": "1.1.0",
  1927. "Microsoft.NETCore.Targets": "1.1.0",
  1928. "System.Globalization": "4.3.0",
  1929. "System.Reflection": "4.3.0",
  1930. "System.Runtime": "4.3.0"
  1931. },
  1932. "compile": {
  1933. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  1934. }
  1935. },
  1936. "System.Runtime/4.3.0": {
  1937. "type": "package",
  1938. "dependencies": {
  1939. "Microsoft.NETCore.Platforms": "1.1.0",
  1940. "Microsoft.NETCore.Targets": "1.1.0"
  1941. },
  1942. "compile": {
  1943. "ref/netstandard1.5/System.Runtime.dll": {}
  1944. }
  1945. },
  1946. "System.Runtime.Caching/4.5.0": {
  1947. "type": "package",
  1948. "dependencies": {
  1949. "Microsoft.NETCore.Platforms": "2.0.0",
  1950. "System.Configuration.ConfigurationManager": "4.5.0"
  1951. },
  1952. "compile": {
  1953. "ref/netstandard2.0/_._": {}
  1954. },
  1955. "runtime": {
  1956. "lib/netstandard2.0/System.Runtime.Caching.dll": {}
  1957. },
  1958. "runtimeTargets": {
  1959. "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
  1960. "assetType": "runtime",
  1961. "rid": "unix"
  1962. },
  1963. "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll": {
  1964. "assetType": "runtime",
  1965. "rid": "win"
  1966. }
  1967. }
  1968. },
  1969. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  1970. "type": "package",
  1971. "compile": {
  1972. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1973. },
  1974. "runtime": {
  1975. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  1976. }
  1977. },
  1978. "System.Runtime.Extensions/4.3.0": {
  1979. "type": "package",
  1980. "dependencies": {
  1981. "Microsoft.NETCore.Platforms": "1.1.0",
  1982. "Microsoft.NETCore.Targets": "1.1.0",
  1983. "System.Runtime": "4.3.0"
  1984. },
  1985. "compile": {
  1986. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  1987. }
  1988. },
  1989. "System.Runtime.Handles/4.3.0": {
  1990. "type": "package",
  1991. "dependencies": {
  1992. "Microsoft.NETCore.Platforms": "1.1.0",
  1993. "Microsoft.NETCore.Targets": "1.1.0",
  1994. "System.Runtime": "4.3.0"
  1995. },
  1996. "compile": {
  1997. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  1998. }
  1999. },
  2000. "System.Runtime.InteropServices/4.3.0": {
  2001. "type": "package",
  2002. "dependencies": {
  2003. "Microsoft.NETCore.Platforms": "1.1.0",
  2004. "Microsoft.NETCore.Targets": "1.1.0",
  2005. "System.Reflection": "4.3.0",
  2006. "System.Reflection.Primitives": "4.3.0",
  2007. "System.Runtime": "4.3.0",
  2008. "System.Runtime.Handles": "4.3.0"
  2009. },
  2010. "compile": {
  2011. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {}
  2012. }
  2013. },
  2014. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2015. "type": "package",
  2016. "dependencies": {
  2017. "System.Reflection": "4.3.0",
  2018. "System.Reflection.Extensions": "4.3.0",
  2019. "System.Resources.ResourceManager": "4.3.0",
  2020. "System.Runtime": "4.3.0",
  2021. "System.Runtime.InteropServices": "4.3.0",
  2022. "System.Threading": "4.3.0",
  2023. "runtime.native.System": "4.3.0"
  2024. },
  2025. "compile": {
  2026. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2027. },
  2028. "runtime": {
  2029. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  2030. },
  2031. "runtimeTargets": {
  2032. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2033. "assetType": "runtime",
  2034. "rid": "unix"
  2035. },
  2036. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  2037. "assetType": "runtime",
  2038. "rid": "win"
  2039. }
  2040. }
  2041. },
  2042. "System.Runtime.Numerics/4.3.0": {
  2043. "type": "package",
  2044. "dependencies": {
  2045. "System.Globalization": "4.3.0",
  2046. "System.Resources.ResourceManager": "4.3.0",
  2047. "System.Runtime": "4.3.0",
  2048. "System.Runtime.Extensions": "4.3.0"
  2049. },
  2050. "compile": {
  2051. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  2052. },
  2053. "runtime": {
  2054. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  2055. }
  2056. },
  2057. "System.Runtime.Serialization.Formatters/4.3.0": {
  2058. "type": "package",
  2059. "dependencies": {
  2060. "System.Collections": "4.3.0",
  2061. "System.Reflection": "4.3.0",
  2062. "System.Resources.ResourceManager": "4.3.0",
  2063. "System.Runtime": "4.3.0",
  2064. "System.Runtime.Serialization.Primitives": "4.3.0"
  2065. },
  2066. "compile": {
  2067. "ref/netstandard1.3/_._": {}
  2068. },
  2069. "runtime": {
  2070. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll": {}
  2071. }
  2072. },
  2073. "System.Runtime.Serialization.Json/4.3.0": {
  2074. "type": "package",
  2075. "dependencies": {
  2076. "System.IO": "4.3.0",
  2077. "System.Private.DataContractSerialization": "4.3.0",
  2078. "System.Runtime": "4.3.0"
  2079. },
  2080. "compile": {
  2081. "ref/netstandard1.0/_._": {}
  2082. },
  2083. "runtime": {
  2084. "lib/netstandard1.3/System.Runtime.Serialization.Json.dll": {}
  2085. }
  2086. },
  2087. "System.Runtime.Serialization.Primitives/4.3.0": {
  2088. "type": "package",
  2089. "dependencies": {
  2090. "System.Resources.ResourceManager": "4.3.0",
  2091. "System.Runtime": "4.3.0"
  2092. },
  2093. "compile": {
  2094. "ref/netstandard1.3/_._": {}
  2095. },
  2096. "runtime": {
  2097. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  2098. }
  2099. },
  2100. "System.Security.AccessControl/4.5.0": {
  2101. "type": "package",
  2102. "dependencies": {
  2103. "Microsoft.NETCore.Platforms": "2.0.0",
  2104. "System.Security.Principal.Windows": "4.5.0"
  2105. },
  2106. "compile": {
  2107. "ref/netstandard2.0/_._": {}
  2108. },
  2109. "runtime": {
  2110. "lib/netstandard2.0/System.Security.AccessControl.dll": {}
  2111. },
  2112. "runtimeTargets": {
  2113. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
  2114. "assetType": "runtime",
  2115. "rid": "win"
  2116. }
  2117. }
  2118. },
  2119. "System.Security.Cryptography.Algorithms/4.3.0": {
  2120. "type": "package",
  2121. "dependencies": {
  2122. "Microsoft.NETCore.Platforms": "1.1.0",
  2123. "System.Collections": "4.3.0",
  2124. "System.IO": "4.3.0",
  2125. "System.Resources.ResourceManager": "4.3.0",
  2126. "System.Runtime": "4.3.0",
  2127. "System.Runtime.Extensions": "4.3.0",
  2128. "System.Runtime.Handles": "4.3.0",
  2129. "System.Runtime.InteropServices": "4.3.0",
  2130. "System.Runtime.Numerics": "4.3.0",
  2131. "System.Security.Cryptography.Encoding": "4.3.0",
  2132. "System.Security.Cryptography.Primitives": "4.3.0",
  2133. "System.Text.Encoding": "4.3.0",
  2134. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  2135. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2136. },
  2137. "compile": {
  2138. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  2139. },
  2140. "runtimeTargets": {
  2141. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2142. "assetType": "runtime",
  2143. "rid": "osx"
  2144. },
  2145. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2146. "assetType": "runtime",
  2147. "rid": "unix"
  2148. },
  2149. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  2150. "assetType": "runtime",
  2151. "rid": "win"
  2152. }
  2153. }
  2154. },
  2155. "System.Security.Cryptography.Cng/4.5.0": {
  2156. "type": "package",
  2157. "compile": {
  2158. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2159. },
  2160. "runtime": {
  2161. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {}
  2162. },
  2163. "runtimeTargets": {
  2164. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {
  2165. "assetType": "runtime",
  2166. "rid": "win"
  2167. }
  2168. }
  2169. },
  2170. "System.Security.Cryptography.Csp/4.3.0": {
  2171. "type": "package",
  2172. "dependencies": {
  2173. "Microsoft.NETCore.Platforms": "1.1.0",
  2174. "System.IO": "4.3.0",
  2175. "System.Reflection": "4.3.0",
  2176. "System.Resources.ResourceManager": "4.3.0",
  2177. "System.Runtime": "4.3.0",
  2178. "System.Runtime.Extensions": "4.3.0",
  2179. "System.Runtime.Handles": "4.3.0",
  2180. "System.Runtime.InteropServices": "4.3.0",
  2181. "System.Security.Cryptography.Algorithms": "4.3.0",
  2182. "System.Security.Cryptography.Encoding": "4.3.0",
  2183. "System.Security.Cryptography.Primitives": "4.3.0",
  2184. "System.Text.Encoding": "4.3.0",
  2185. "System.Threading": "4.3.0"
  2186. },
  2187. "compile": {
  2188. "ref/netstandard1.3/_._": {}
  2189. },
  2190. "runtimeTargets": {
  2191. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2192. "assetType": "runtime",
  2193. "rid": "unix"
  2194. },
  2195. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  2196. "assetType": "runtime",
  2197. "rid": "win"
  2198. }
  2199. }
  2200. },
  2201. "System.Security.Cryptography.Encoding/4.3.0": {
  2202. "type": "package",
  2203. "dependencies": {
  2204. "Microsoft.NETCore.Platforms": "1.1.0",
  2205. "System.Collections": "4.3.0",
  2206. "System.Collections.Concurrent": "4.3.0",
  2207. "System.Linq": "4.3.0",
  2208. "System.Resources.ResourceManager": "4.3.0",
  2209. "System.Runtime": "4.3.0",
  2210. "System.Runtime.Extensions": "4.3.0",
  2211. "System.Runtime.Handles": "4.3.0",
  2212. "System.Runtime.InteropServices": "4.3.0",
  2213. "System.Security.Cryptography.Primitives": "4.3.0",
  2214. "System.Text.Encoding": "4.3.0",
  2215. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2216. },
  2217. "compile": {
  2218. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  2219. },
  2220. "runtimeTargets": {
  2221. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2222. "assetType": "runtime",
  2223. "rid": "unix"
  2224. },
  2225. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  2226. "assetType": "runtime",
  2227. "rid": "win"
  2228. }
  2229. }
  2230. },
  2231. "System.Security.Cryptography.OpenSsl/4.3.0": {
  2232. "type": "package",
  2233. "dependencies": {
  2234. "System.Collections": "4.3.0",
  2235. "System.IO": "4.3.0",
  2236. "System.Resources.ResourceManager": "4.3.0",
  2237. "System.Runtime": "4.3.0",
  2238. "System.Runtime.Extensions": "4.3.0",
  2239. "System.Runtime.Handles": "4.3.0",
  2240. "System.Runtime.InteropServices": "4.3.0",
  2241. "System.Runtime.Numerics": "4.3.0",
  2242. "System.Security.Cryptography.Algorithms": "4.3.0",
  2243. "System.Security.Cryptography.Encoding": "4.3.0",
  2244. "System.Security.Cryptography.Primitives": "4.3.0",
  2245. "System.Text.Encoding": "4.3.0",
  2246. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2247. },
  2248. "compile": {
  2249. "ref/netstandard1.6/_._": {}
  2250. },
  2251. "runtime": {
  2252. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  2253. },
  2254. "runtimeTargets": {
  2255. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  2256. "assetType": "runtime",
  2257. "rid": "unix"
  2258. }
  2259. }
  2260. },
  2261. "System.Security.Cryptography.Primitives/4.3.0": {
  2262. "type": "package",
  2263. "dependencies": {
  2264. "System.Diagnostics.Debug": "4.3.0",
  2265. "System.Globalization": "4.3.0",
  2266. "System.IO": "4.3.0",
  2267. "System.Resources.ResourceManager": "4.3.0",
  2268. "System.Runtime": "4.3.0",
  2269. "System.Threading": "4.3.0",
  2270. "System.Threading.Tasks": "4.3.0"
  2271. },
  2272. "compile": {
  2273. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2274. },
  2275. "runtime": {
  2276. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  2277. }
  2278. },
  2279. "System.Security.Cryptography.ProtectedData/4.5.0": {
  2280. "type": "package",
  2281. "compile": {
  2282. "ref/netstandard2.0/_._": {}
  2283. },
  2284. "runtime": {
  2285. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {}
  2286. },
  2287. "runtimeTargets": {
  2288. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {
  2289. "assetType": "runtime",
  2290. "rid": "win"
  2291. }
  2292. }
  2293. },
  2294. "System.Security.Cryptography.X509Certificates/4.3.0": {
  2295. "type": "package",
  2296. "dependencies": {
  2297. "Microsoft.NETCore.Platforms": "1.1.0",
  2298. "System.Collections": "4.3.0",
  2299. "System.Diagnostics.Debug": "4.3.0",
  2300. "System.Globalization": "4.3.0",
  2301. "System.Globalization.Calendars": "4.3.0",
  2302. "System.IO": "4.3.0",
  2303. "System.IO.FileSystem": "4.3.0",
  2304. "System.IO.FileSystem.Primitives": "4.3.0",
  2305. "System.Resources.ResourceManager": "4.3.0",
  2306. "System.Runtime": "4.3.0",
  2307. "System.Runtime.Extensions": "4.3.0",
  2308. "System.Runtime.Handles": "4.3.0",
  2309. "System.Runtime.InteropServices": "4.3.0",
  2310. "System.Runtime.Numerics": "4.3.0",
  2311. "System.Security.Cryptography.Algorithms": "4.3.0",
  2312. "System.Security.Cryptography.Cng": "4.3.0",
  2313. "System.Security.Cryptography.Csp": "4.3.0",
  2314. "System.Security.Cryptography.Encoding": "4.3.0",
  2315. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2316. "System.Security.Cryptography.Primitives": "4.3.0",
  2317. "System.Text.Encoding": "4.3.0",
  2318. "System.Threading": "4.3.0",
  2319. "runtime.native.System": "4.3.0",
  2320. "runtime.native.System.Net.Http": "4.3.0",
  2321. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2322. },
  2323. "compile": {
  2324. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  2325. },
  2326. "runtimeTargets": {
  2327. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2328. "assetType": "runtime",
  2329. "rid": "unix"
  2330. },
  2331. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  2332. "assetType": "runtime",
  2333. "rid": "win"
  2334. }
  2335. }
  2336. },
  2337. "System.Security.Permissions/4.5.0": {
  2338. "type": "package",
  2339. "dependencies": {
  2340. "System.Security.AccessControl": "4.5.0"
  2341. },
  2342. "compile": {
  2343. "ref/netstandard2.0/_._": {}
  2344. },
  2345. "runtime": {
  2346. "lib/netstandard2.0/System.Security.Permissions.dll": {}
  2347. }
  2348. },
  2349. "System.Security.Principal.Windows/4.5.0": {
  2350. "type": "package",
  2351. "dependencies": {
  2352. "Microsoft.NETCore.Platforms": "2.0.0"
  2353. },
  2354. "compile": {
  2355. "ref/netstandard2.0/_._": {}
  2356. },
  2357. "runtime": {
  2358. "lib/netstandard2.0/System.Security.Principal.Windows.dll": {}
  2359. },
  2360. "runtimeTargets": {
  2361. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2362. "assetType": "runtime",
  2363. "rid": "unix"
  2364. },
  2365. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
  2366. "assetType": "runtime",
  2367. "rid": "win"
  2368. }
  2369. }
  2370. },
  2371. "System.Security.SecureString/4.3.0": {
  2372. "type": "package",
  2373. "dependencies": {
  2374. "Microsoft.NETCore.Platforms": "1.1.0",
  2375. "System.Resources.ResourceManager": "4.3.0",
  2376. "System.Runtime": "4.3.0",
  2377. "System.Runtime.Handles": "4.3.0",
  2378. "System.Runtime.InteropServices": "4.3.0",
  2379. "System.Security.Cryptography.Primitives": "4.3.0",
  2380. "System.Text.Encoding": "4.3.0",
  2381. "System.Threading": "4.3.0"
  2382. },
  2383. "compile": {
  2384. "ref/netstandard1.3/_._": {}
  2385. },
  2386. "runtimeTargets": {
  2387. "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll": {
  2388. "assetType": "runtime",
  2389. "rid": "unix"
  2390. },
  2391. "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll": {
  2392. "assetType": "runtime",
  2393. "rid": "win"
  2394. }
  2395. }
  2396. },
  2397. "System.Text.Encoding/4.3.0": {
  2398. "type": "package",
  2399. "dependencies": {
  2400. "Microsoft.NETCore.Platforms": "1.1.0",
  2401. "Microsoft.NETCore.Targets": "1.1.0",
  2402. "System.Runtime": "4.3.0"
  2403. },
  2404. "compile": {
  2405. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  2406. }
  2407. },
  2408. "System.Text.Encoding.CodePages/4.5.1": {
  2409. "type": "package",
  2410. "dependencies": {
  2411. "Microsoft.NETCore.Platforms": "2.1.2",
  2412. "System.Runtime.CompilerServices.Unsafe": "4.5.2"
  2413. },
  2414. "compile": {
  2415. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2416. },
  2417. "runtime": {
  2418. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
  2419. },
  2420. "runtimeTargets": {
  2421. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
  2422. "assetType": "runtime",
  2423. "rid": "win"
  2424. }
  2425. }
  2426. },
  2427. "System.Text.Encoding.Extensions/4.3.0": {
  2428. "type": "package",
  2429. "dependencies": {
  2430. "Microsoft.NETCore.Platforms": "1.1.0",
  2431. "Microsoft.NETCore.Targets": "1.1.0",
  2432. "System.Runtime": "4.3.0",
  2433. "System.Text.Encoding": "4.3.0"
  2434. },
  2435. "compile": {
  2436. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  2437. }
  2438. },
  2439. "System.Text.Encodings.Web/4.5.0": {
  2440. "type": "package",
  2441. "compile": {
  2442. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2443. },
  2444. "runtime": {
  2445. "lib/netstandard2.0/System.Text.Encodings.Web.dll": {}
  2446. }
  2447. },
  2448. "System.Text.RegularExpressions/4.3.0": {
  2449. "type": "package",
  2450. "dependencies": {
  2451. "System.Runtime": "4.3.0"
  2452. },
  2453. "compile": {
  2454. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {}
  2455. },
  2456. "runtime": {
  2457. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  2458. }
  2459. },
  2460. "System.Threading/4.3.0": {
  2461. "type": "package",
  2462. "dependencies": {
  2463. "System.Runtime": "4.3.0",
  2464. "System.Threading.Tasks": "4.3.0"
  2465. },
  2466. "compile": {
  2467. "ref/netstandard1.3/System.Threading.dll": {}
  2468. },
  2469. "runtime": {
  2470. "lib/netstandard1.3/System.Threading.dll": {}
  2471. }
  2472. },
  2473. "System.Threading.Tasks/4.3.0": {
  2474. "type": "package",
  2475. "dependencies": {
  2476. "Microsoft.NETCore.Platforms": "1.1.0",
  2477. "Microsoft.NETCore.Targets": "1.1.0",
  2478. "System.Runtime": "4.3.0"
  2479. },
  2480. "compile": {
  2481. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  2482. }
  2483. },
  2484. "System.Threading.Tasks.Extensions/4.5.3": {
  2485. "type": "package",
  2486. "compile": {
  2487. "ref/netcoreapp2.1/_._": {}
  2488. },
  2489. "runtime": {
  2490. "lib/netcoreapp2.1/_._": {}
  2491. }
  2492. },
  2493. "System.Threading.Timer/4.3.0": {
  2494. "type": "package",
  2495. "dependencies": {
  2496. "Microsoft.NETCore.Platforms": "1.1.0",
  2497. "Microsoft.NETCore.Targets": "1.1.0",
  2498. "System.Runtime": "4.3.0"
  2499. },
  2500. "compile": {
  2501. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  2502. }
  2503. },
  2504. "System.Xml.ReaderWriter/4.3.0": {
  2505. "type": "package",
  2506. "dependencies": {
  2507. "System.Collections": "4.3.0",
  2508. "System.Diagnostics.Debug": "4.3.0",
  2509. "System.Globalization": "4.3.0",
  2510. "System.IO": "4.3.0",
  2511. "System.IO.FileSystem": "4.3.0",
  2512. "System.IO.FileSystem.Primitives": "4.3.0",
  2513. "System.Resources.ResourceManager": "4.3.0",
  2514. "System.Runtime": "4.3.0",
  2515. "System.Runtime.Extensions": "4.3.0",
  2516. "System.Runtime.InteropServices": "4.3.0",
  2517. "System.Text.Encoding": "4.3.0",
  2518. "System.Text.Encoding.Extensions": "4.3.0",
  2519. "System.Text.RegularExpressions": "4.3.0",
  2520. "System.Threading.Tasks": "4.3.0",
  2521. "System.Threading.Tasks.Extensions": "4.3.0"
  2522. },
  2523. "compile": {
  2524. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2525. },
  2526. "runtime": {
  2527. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  2528. }
  2529. },
  2530. "System.Xml.XDocument/4.3.0": {
  2531. "type": "package",
  2532. "dependencies": {
  2533. "System.Collections": "4.3.0",
  2534. "System.Diagnostics.Debug": "4.3.0",
  2535. "System.Diagnostics.Tools": "4.3.0",
  2536. "System.Globalization": "4.3.0",
  2537. "System.IO": "4.3.0",
  2538. "System.Reflection": "4.3.0",
  2539. "System.Resources.ResourceManager": "4.3.0",
  2540. "System.Runtime": "4.3.0",
  2541. "System.Runtime.Extensions": "4.3.0",
  2542. "System.Text.Encoding": "4.3.0",
  2543. "System.Threading": "4.3.0",
  2544. "System.Xml.ReaderWriter": "4.3.0"
  2545. },
  2546. "compile": {
  2547. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  2548. },
  2549. "runtime": {
  2550. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  2551. }
  2552. },
  2553. "System.Xml.XmlDocument/4.3.0": {
  2554. "type": "package",
  2555. "dependencies": {
  2556. "System.Collections": "4.3.0",
  2557. "System.Diagnostics.Debug": "4.3.0",
  2558. "System.Globalization": "4.3.0",
  2559. "System.IO": "4.3.0",
  2560. "System.Resources.ResourceManager": "4.3.0",
  2561. "System.Runtime": "4.3.0",
  2562. "System.Runtime.Extensions": "4.3.0",
  2563. "System.Text.Encoding": "4.3.0",
  2564. "System.Threading": "4.3.0",
  2565. "System.Xml.ReaderWriter": "4.3.0"
  2566. },
  2567. "compile": {
  2568. "ref/netstandard1.3/_._": {}
  2569. },
  2570. "runtime": {
  2571. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  2572. }
  2573. },
  2574. "System.Xml.XmlSerializer/4.3.0": {
  2575. "type": "package",
  2576. "dependencies": {
  2577. "System.Collections": "4.3.0",
  2578. "System.Globalization": "4.3.0",
  2579. "System.IO": "4.3.0",
  2580. "System.Linq": "4.3.0",
  2581. "System.Reflection": "4.3.0",
  2582. "System.Reflection.Emit": "4.3.0",
  2583. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2584. "System.Reflection.Extensions": "4.3.0",
  2585. "System.Reflection.Primitives": "4.3.0",
  2586. "System.Reflection.TypeExtensions": "4.3.0",
  2587. "System.Resources.ResourceManager": "4.3.0",
  2588. "System.Runtime": "4.3.0",
  2589. "System.Runtime.Extensions": "4.3.0",
  2590. "System.Text.RegularExpressions": "4.3.0",
  2591. "System.Threading": "4.3.0",
  2592. "System.Xml.ReaderWriter": "4.3.0",
  2593. "System.Xml.XmlDocument": "4.3.0"
  2594. },
  2595. "compile": {
  2596. "ref/netstandard1.3/_._": {}
  2597. },
  2598. "runtime": {
  2599. "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {}
  2600. }
  2601. }
  2602. }
  2603. },
  2604. "libraries": {
  2605. "Microsoft.AspNetCore.Html.Abstractions/2.2.0": {
  2606. "sha512": "Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==",
  2607. "type": "package",
  2608. "path": "microsoft.aspnetcore.html.abstractions/2.2.0",
  2609. "files": [
  2610. ".nupkg.metadata",
  2611. ".signature.p7s",
  2612. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  2613. "lib/netstandard2.0/Microsoft.AspNetCore.Html.Abstractions.xml",
  2614. "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
  2615. "microsoft.aspnetcore.html.abstractions.nuspec"
  2616. ]
  2617. },
  2618. "Microsoft.AspNetCore.Razor/2.2.0": {
  2619. "sha512": "V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==",
  2620. "type": "package",
  2621. "path": "microsoft.aspnetcore.razor/2.2.0",
  2622. "files": [
  2623. ".nupkg.metadata",
  2624. ".signature.p7s",
  2625. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.dll",
  2626. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.xml",
  2627. "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
  2628. "microsoft.aspnetcore.razor.nuspec"
  2629. ]
  2630. },
  2631. "Microsoft.AspNetCore.Razor.Language/3.1.0": {
  2632. "sha512": "e/atqZ5CzmJWuG/yaYOzbWNON+oqNKfk1M/xTYW+hje/RoiUUjVP88wrX1s9rEHzaAU4UljIOSvMxLABc2X2gg==",
  2633. "type": "package",
  2634. "path": "microsoft.aspnetcore.razor.language/3.1.0",
  2635. "files": [
  2636. ".nupkg.metadata",
  2637. ".signature.p7s",
  2638. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll",
  2639. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.xml",
  2640. "microsoft.aspnetcore.razor.language.3.1.0.nupkg.sha512",
  2641. "microsoft.aspnetcore.razor.language.nuspec",
  2642. "packageIcon.png"
  2643. ]
  2644. },
  2645. "Microsoft.AspNetCore.Razor.Runtime/2.2.0": {
  2646. "sha512": "7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==",
  2647. "type": "package",
  2648. "path": "microsoft.aspnetcore.razor.runtime/2.2.0",
  2649. "files": [
  2650. ".nupkg.metadata",
  2651. ".signature.p7s",
  2652. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.dll",
  2653. "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Runtime.xml",
  2654. "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
  2655. "microsoft.aspnetcore.razor.runtime.nuspec"
  2656. ]
  2657. },
  2658. "Microsoft.Bcl.AsyncInterfaces/1.1.1": {
  2659. "sha512": "yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==",
  2660. "type": "package",
  2661. "path": "microsoft.bcl.asyncinterfaces/1.1.1",
  2662. "files": [
  2663. ".nupkg.metadata",
  2664. ".signature.p7s",
  2665. "Icon.png",
  2666. "LICENSE.TXT",
  2667. "THIRD-PARTY-NOTICES.TXT",
  2668. "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2669. "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml",
  2670. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2671. "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml",
  2672. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2673. "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml",
  2674. "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
  2675. "microsoft.bcl.asyncinterfaces.nuspec",
  2676. "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll",
  2677. "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll",
  2678. "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll",
  2679. "useSharedDesignerContext.txt",
  2680. "version.txt"
  2681. ]
  2682. },
  2683. "Microsoft.Bcl.HashCode/1.1.1": {
  2684. "sha512": "MalY0Y/uM/LjXtHfX/26l2VtN4LDNZ2OE3aumNOHDLsT4fNYy2hiHXI4CXCqKpNUNm7iJ2brrc4J89UdaL56FA==",
  2685. "type": "package",
  2686. "path": "microsoft.bcl.hashcode/1.1.1",
  2687. "files": [
  2688. ".nupkg.metadata",
  2689. ".signature.p7s",
  2690. "Icon.png",
  2691. "LICENSE.TXT",
  2692. "THIRD-PARTY-NOTICES.TXT",
  2693. "lib/net461/Microsoft.Bcl.HashCode.dll",
  2694. "lib/net461/Microsoft.Bcl.HashCode.xml",
  2695. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2696. "lib/netcoreapp2.1/Microsoft.Bcl.HashCode.xml",
  2697. "lib/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2698. "lib/netstandard2.0/Microsoft.Bcl.HashCode.xml",
  2699. "lib/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2700. "lib/netstandard2.1/Microsoft.Bcl.HashCode.xml",
  2701. "microsoft.bcl.hashcode.1.1.1.nupkg.sha512",
  2702. "microsoft.bcl.hashcode.nuspec",
  2703. "ref/net461/Microsoft.Bcl.HashCode.dll",
  2704. "ref/netcoreapp2.1/Microsoft.Bcl.HashCode.dll",
  2705. "ref/netstandard2.0/Microsoft.Bcl.HashCode.dll",
  2706. "ref/netstandard2.1/Microsoft.Bcl.HashCode.dll",
  2707. "useSharedDesignerContext.txt",
  2708. "version.txt"
  2709. ]
  2710. },
  2711. "Microsoft.CodeAnalysis.Analyzers/2.9.4": {
  2712. "sha512": "alIJhS0VUg/7x5AsHEoovh/wRZ0RfCSS7k5pDSqpRLTyuMTtRgj6OJJPRApRhJHOGYYsLakf1hKeXFoDwKwNkg==",
  2713. "type": "package",
  2714. "path": "microsoft.codeanalysis.analyzers/2.9.4",
  2715. "hasTools": true,
  2716. "files": [
  2717. ".nupkg.metadata",
  2718. ".signature.p7s",
  2719. "ThirdPartyNotices.rtf",
  2720. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  2721. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  2722. "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2723. "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2724. "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2725. "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2726. "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2727. "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2728. "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2729. "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2730. "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2731. "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2732. "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2733. "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2734. "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2735. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  2736. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  2737. "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2738. "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2739. "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2740. "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2741. "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2742. "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2743. "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2744. "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2745. "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2746. "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2747. "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2748. "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2749. "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
  2750. "build/Microsoft.CodeAnalysis.Analyzers.props",
  2751. "documentation/Microsoft.CodeAnalysis.Analyzers.md",
  2752. "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
  2753. "microsoft.codeanalysis.analyzers.2.9.4.nupkg.sha512",
  2754. "microsoft.codeanalysis.analyzers.nuspec",
  2755. "rulesets/AllRulesDefault.ruleset",
  2756. "rulesets/AllRulesDisabled.ruleset",
  2757. "rulesets/AllRulesEnabled.ruleset",
  2758. "rulesets/CorrectnessRulesDefault.ruleset",
  2759. "rulesets/CorrectnessRulesEnabled.ruleset",
  2760. "rulesets/DataflowRulesDefault.ruleset",
  2761. "rulesets/DataflowRulesEnabled.ruleset",
  2762. "rulesets/LibraryRulesDefault.ruleset",
  2763. "rulesets/LibraryRulesEnabled.ruleset",
  2764. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
  2765. "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
  2766. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
  2767. "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
  2768. "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
  2769. "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
  2770. "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
  2771. "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
  2772. "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
  2773. "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
  2774. "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
  2775. "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
  2776. "rulesets/PortedFromFxCopRulesDefault.ruleset",
  2777. "rulesets/PortedFromFxCopRulesEnabled.ruleset",
  2778. "tools/install.ps1",
  2779. "tools/uninstall.ps1"
  2780. ]
  2781. },
  2782. "Microsoft.CodeAnalysis.Common/3.3.1": {
  2783. "sha512": "N5yQdGy+M4kimVG7hwCeGTCfgYjK2o5b/Shumkb/rCC+/SAkvP1HUAYK+vxPFS7dLJNtXLRsmPHKj3fnyNWnrw==",
  2784. "type": "package",
  2785. "path": "microsoft.codeanalysis.common/3.3.1",
  2786. "files": [
  2787. ".nupkg.metadata",
  2788. ".signature.p7s",
  2789. "ThirdPartyNotices.rtf",
  2790. "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
  2791. "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
  2792. "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
  2793. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
  2794. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
  2795. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
  2796. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
  2797. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
  2798. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
  2799. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
  2800. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
  2801. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
  2802. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
  2803. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
  2804. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
  2805. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
  2806. "microsoft.codeanalysis.common.3.3.1.nupkg.sha512",
  2807. "microsoft.codeanalysis.common.nuspec"
  2808. ]
  2809. },
  2810. "Microsoft.CodeAnalysis.CSharp/3.3.1": {
  2811. "sha512": "WDUIhTHem38H6VJ98x2Ssq0fweakJHnHYl7vbG8ARnsAwLoJKCQCy78EeY1oRrCKG42j0v6JVljKkeqSDA28UA==",
  2812. "type": "package",
  2813. "path": "microsoft.codeanalysis.csharp/3.3.1",
  2814. "files": [
  2815. ".nupkg.metadata",
  2816. ".signature.p7s",
  2817. "ThirdPartyNotices.rtf",
  2818. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
  2819. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
  2820. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
  2821. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2822. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2823. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2824. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2825. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2826. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2827. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2828. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2829. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2830. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2831. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2832. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2833. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
  2834. "microsoft.codeanalysis.csharp.3.3.1.nupkg.sha512",
  2835. "microsoft.codeanalysis.csharp.nuspec"
  2836. ]
  2837. },
  2838. "Microsoft.CodeAnalysis.CSharp.Workspaces/3.3.1": {
  2839. "sha512": "dHs/UyfLgzsVC4FjTi/x+H+yQifgOnpe3rSN8GwkHWjnidePZ3kSqr1JHmFDf5HTQEydYwrwCAfQ0JSzhsEqDA==",
  2840. "type": "package",
  2841. "path": "microsoft.codeanalysis.csharp.workspaces/3.3.1",
  2842. "files": [
  2843. ".nupkg.metadata",
  2844. ".signature.p7s",
  2845. "ThirdPartyNotices.rtf",
  2846. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  2847. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
  2848. "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  2849. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2850. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2851. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2852. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2853. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2854. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2855. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2856. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2857. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2858. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2859. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2860. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2861. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll",
  2862. "microsoft.codeanalysis.csharp.workspaces.3.3.1.nupkg.sha512",
  2863. "microsoft.codeanalysis.csharp.workspaces.nuspec"
  2864. ]
  2865. },
  2866. "Microsoft.CodeAnalysis.Razor/3.1.0": {
  2867. "sha512": "EI/9iVMneil8nZn7mqEujJvV63VRaz01Czc69NTrCQAh5CRfBvoeqBVsDx6oC9CIYla/AJYss+U4B/6Usecx7A==",
  2868. "type": "package",
  2869. "path": "microsoft.codeanalysis.razor/3.1.0",
  2870. "files": [
  2871. ".nupkg.metadata",
  2872. ".signature.p7s",
  2873. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll",
  2874. "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.xml",
  2875. "microsoft.codeanalysis.razor.3.1.0.nupkg.sha512",
  2876. "microsoft.codeanalysis.razor.nuspec",
  2877. "packageIcon.png"
  2878. ]
  2879. },
  2880. "Microsoft.CodeAnalysis.Workspaces.Common/3.3.1": {
  2881. "sha512": "NfBz3b5hFSbO+7xsCNryD+p8axsIJFTG7qM3jvMTC/MqYrU6b8E1b6JoRj5rJSOBB+pSunk+CMqyGQTOWHeDUg==",
  2882. "type": "package",
  2883. "path": "microsoft.codeanalysis.workspaces.common/3.3.1",
  2884. "files": [
  2885. ".nupkg.metadata",
  2886. ".signature.p7s",
  2887. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll",
  2888. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb",
  2889. "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml",
  2890. "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2891. "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2892. "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2893. "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2894. "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2895. "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2896. "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2897. "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2898. "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2899. "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2900. "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2901. "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2902. "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll",
  2903. "microsoft.codeanalysis.workspaces.common.3.3.1.nupkg.sha512",
  2904. "microsoft.codeanalysis.workspaces.common.nuspec"
  2905. ]
  2906. },
  2907. "Microsoft.CSharp/4.7.0": {
  2908. "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==",
  2909. "type": "package",
  2910. "path": "microsoft.csharp/4.7.0",
  2911. "files": [
  2912. ".nupkg.metadata",
  2913. ".signature.p7s",
  2914. "LICENSE.TXT",
  2915. "THIRD-PARTY-NOTICES.TXT",
  2916. "lib/MonoAndroid10/_._",
  2917. "lib/MonoTouch10/_._",
  2918. "lib/net45/_._",
  2919. "lib/netcore50/Microsoft.CSharp.dll",
  2920. "lib/netcoreapp2.0/_._",
  2921. "lib/netstandard1.3/Microsoft.CSharp.dll",
  2922. "lib/netstandard2.0/Microsoft.CSharp.dll",
  2923. "lib/netstandard2.0/Microsoft.CSharp.xml",
  2924. "lib/portable-net45+win8+wp8+wpa81/_._",
  2925. "lib/uap10.0.16299/_._",
  2926. "lib/win8/_._",
  2927. "lib/wp80/_._",
  2928. "lib/wpa81/_._",
  2929. "lib/xamarinios10/_._",
  2930. "lib/xamarinmac20/_._",
  2931. "lib/xamarintvos10/_._",
  2932. "lib/xamarinwatchos10/_._",
  2933. "microsoft.csharp.4.7.0.nupkg.sha512",
  2934. "microsoft.csharp.nuspec",
  2935. "ref/MonoAndroid10/_._",
  2936. "ref/MonoTouch10/_._",
  2937. "ref/net45/_._",
  2938. "ref/netcore50/Microsoft.CSharp.dll",
  2939. "ref/netcore50/Microsoft.CSharp.xml",
  2940. "ref/netcore50/de/Microsoft.CSharp.xml",
  2941. "ref/netcore50/es/Microsoft.CSharp.xml",
  2942. "ref/netcore50/fr/Microsoft.CSharp.xml",
  2943. "ref/netcore50/it/Microsoft.CSharp.xml",
  2944. "ref/netcore50/ja/Microsoft.CSharp.xml",
  2945. "ref/netcore50/ko/Microsoft.CSharp.xml",
  2946. "ref/netcore50/ru/Microsoft.CSharp.xml",
  2947. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  2948. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  2949. "ref/netcoreapp2.0/_._",
  2950. "ref/netstandard1.0/Microsoft.CSharp.dll",
  2951. "ref/netstandard1.0/Microsoft.CSharp.xml",
  2952. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  2953. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  2954. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  2955. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  2956. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  2957. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  2958. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  2959. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  2960. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  2961. "ref/netstandard2.0/Microsoft.CSharp.dll",
  2962. "ref/netstandard2.0/Microsoft.CSharp.xml",
  2963. "ref/portable-net45+win8+wp8+wpa81/_._",
  2964. "ref/uap10.0.16299/_._",
  2965. "ref/win8/_._",
  2966. "ref/wp80/_._",
  2967. "ref/wpa81/_._",
  2968. "ref/xamarinios10/_._",
  2969. "ref/xamarinmac20/_._",
  2970. "ref/xamarintvos10/_._",
  2971. "ref/xamarinwatchos10/_._",
  2972. "useSharedDesignerContext.txt",
  2973. "version.txt"
  2974. ]
  2975. },
  2976. "Microsoft.Data.SqlClient/1.1.3": {
  2977. "sha512": "KOT5AoOXIQCF98y+ynMLMaemS05RebDconYlCtqdFGbcpviW+S2/wXhrDNPtZ3MWeB+6ej3t4CrzykRGQKk9gA==",
  2978. "type": "package",
  2979. "path": "microsoft.data.sqlclient/1.1.3",
  2980. "files": [
  2981. ".nupkg.metadata",
  2982. ".signature.p7s",
  2983. "dotnet.png",
  2984. "lib/net46/Microsoft.Data.SqlClient.dll",
  2985. "lib/net46/Microsoft.Data.SqlClient.pdb",
  2986. "lib/net46/Microsoft.Data.SqlClient.xml",
  2987. "lib/net46/de/Microsoft.Data.SqlClient.resources.dll",
  2988. "lib/net46/es/Microsoft.Data.SqlClient.resources.dll",
  2989. "lib/net46/fr/Microsoft.Data.SqlClient.resources.dll",
  2990. "lib/net46/it/Microsoft.Data.SqlClient.resources.dll",
  2991. "lib/net46/ja/Microsoft.Data.SqlClient.resources.dll",
  2992. "lib/net46/ko/Microsoft.Data.SqlClient.resources.dll",
  2993. "lib/net46/pt-BR/Microsoft.Data.SqlClient.resources.dll",
  2994. "lib/net46/ru/Microsoft.Data.SqlClient.resources.dll",
  2995. "lib/net46/zh-Hans/Microsoft.Data.SqlClient.resources.dll",
  2996. "lib/net46/zh-Hant/Microsoft.Data.SqlClient.resources.dll",
  2997. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  2998. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  2999. "lib/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  3000. "lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3001. "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3002. "lib/netstandard2.0/Microsoft.Data.SqlClient.xml",
  3003. "microsoft.data.sqlclient.1.1.3.nupkg.sha512",
  3004. "microsoft.data.sqlclient.nuspec",
  3005. "ref/net46/Microsoft.Data.SqlClient.dll",
  3006. "ref/net46/Microsoft.Data.SqlClient.pdb",
  3007. "ref/net46/Microsoft.Data.SqlClient.xml",
  3008. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3009. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3010. "ref/netcoreapp2.1/Microsoft.Data.SqlClient.xml",
  3011. "ref/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3012. "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3013. "ref/netstandard2.0/Microsoft.Data.SqlClient.xml",
  3014. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3015. "runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3016. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3017. "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb",
  3018. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.dll",
  3019. "runtimes/win/lib/net46/Microsoft.Data.SqlClient.pdb",
  3020. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll",
  3021. "runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.pdb",
  3022. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll",
  3023. "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb"
  3024. ]
  3025. },
  3026. "Microsoft.EntityFrameworkCore/3.1.32": {
  3027. "sha512": "I6C1GTTg9xS/eLEIaea5m3vIKMZLQAt9RU6QnAoYTJDS03NHXXl8xNgsdcN4a5Zyc8hvnWPbYAW18ONLcG5+AQ==",
  3028. "type": "package",
  3029. "path": "microsoft.entityframeworkcore/3.1.32",
  3030. "files": [
  3031. ".nupkg.metadata",
  3032. ".signature.p7s",
  3033. "Icon.png",
  3034. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll",
  3035. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.xml",
  3036. "microsoft.entityframeworkcore.3.1.32.nupkg.sha512",
  3037. "microsoft.entityframeworkcore.nuspec"
  3038. ]
  3039. },
  3040. "Microsoft.EntityFrameworkCore.Abstractions/3.1.32": {
  3041. "sha512": "4y0VcTXWIQIWduWSFl+mZcESPQBlIPlZMeP221YvWmkQnHt1iHDHaaNBilqGAH6q1P0SvHfHDOqwVXpppiztbw==",
  3042. "type": "package",
  3043. "path": "microsoft.entityframeworkcore.abstractions/3.1.32",
  3044. "files": [
  3045. ".nupkg.metadata",
  3046. ".signature.p7s",
  3047. "Icon.png",
  3048. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
  3049. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
  3050. "microsoft.entityframeworkcore.abstractions.3.1.32.nupkg.sha512",
  3051. "microsoft.entityframeworkcore.abstractions.nuspec"
  3052. ]
  3053. },
  3054. "Microsoft.EntityFrameworkCore.Analyzers/3.1.32": {
  3055. "sha512": "yvQBsos0/oAqN9rjcTRAFflBRcgFd8JINb9m0Zl7y12ac5jswvD8ILNVDSu5UCAd1y84xehjRKcq2ptIceBeGg==",
  3056. "type": "package",
  3057. "path": "microsoft.entityframeworkcore.analyzers/3.1.32",
  3058. "files": [
  3059. ".nupkg.metadata",
  3060. ".signature.p7s",
  3061. "Icon.png",
  3062. "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
  3063. "lib/netstandard2.0/_._",
  3064. "microsoft.entityframeworkcore.analyzers.3.1.32.nupkg.sha512",
  3065. "microsoft.entityframeworkcore.analyzers.nuspec"
  3066. ]
  3067. },
  3068. "Microsoft.EntityFrameworkCore.Design/3.1.32": {
  3069. "sha512": "j3J9cHpTBi1zoOVyOsDT27bTZENhqsOij+EPfRWxojxgo5qn3Ayp+xdtxM1E37av7oy4yB+DJTY1pOKYWJtAOQ==",
  3070. "type": "package",
  3071. "path": "microsoft.entityframeworkcore.design/3.1.32",
  3072. "files": [
  3073. ".nupkg.metadata",
  3074. ".signature.p7s",
  3075. "Icon.png",
  3076. "build/net461/Microsoft.EntityFrameworkCore.Design.props",
  3077. "build/netcoreapp2.0/Microsoft.EntityFrameworkCore.Design.props",
  3078. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll",
  3079. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.xml",
  3080. "microsoft.entityframeworkcore.design.3.1.32.nupkg.sha512",
  3081. "microsoft.entityframeworkcore.design.nuspec"
  3082. ]
  3083. },
  3084. "Microsoft.EntityFrameworkCore.Relational/3.1.32": {
  3085. "sha512": "ex5Dr6GzZdzAiJoGRPxubSDLMSIzmMa4Cxea4eFMb8tSvfv+AUhlKIasU7WMq0v9qlqudbf5tiUAdhoehiv+iw==",
  3086. "type": "package",
  3087. "path": "microsoft.entityframeworkcore.relational/3.1.32",
  3088. "files": [
  3089. ".nupkg.metadata",
  3090. ".signature.p7s",
  3091. "Icon.png",
  3092. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll",
  3093. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.xml",
  3094. "microsoft.entityframeworkcore.relational.3.1.32.nupkg.sha512",
  3095. "microsoft.entityframeworkcore.relational.nuspec"
  3096. ]
  3097. },
  3098. "Microsoft.EntityFrameworkCore.SqlServer/3.1.32": {
  3099. "sha512": "f+FdDq9TirUG/qESHtEps9ZLR0FSwESczGrHr6Q7rzkqdarHZS444cCZcJaUgpdKO0a990U/juNogB67BbzHTA==",
  3100. "type": "package",
  3101. "path": "microsoft.entityframeworkcore.sqlserver/3.1.32",
  3102. "files": [
  3103. ".nupkg.metadata",
  3104. ".signature.p7s",
  3105. "Icon.png",
  3106. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll",
  3107. "lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.xml",
  3108. "microsoft.entityframeworkcore.sqlserver.3.1.32.nupkg.sha512",
  3109. "microsoft.entityframeworkcore.sqlserver.nuspec"
  3110. ]
  3111. },
  3112. "Microsoft.EntityFrameworkCore.Tools/3.1.32": {
  3113. "sha512": "YarqBbDMJjJm/Gn2vRM4xDONXWCHrFhKLuNntI4wQA14HWJSDjExs9yIAXCvRJjUaHESKnYZxMLn0RARe0Km+Q==",
  3114. "type": "package",
  3115. "path": "microsoft.entityframeworkcore.tools/3.1.32",
  3116. "hasTools": true,
  3117. "files": [
  3118. ".nupkg.metadata",
  3119. ".signature.p7s",
  3120. "Icon.png",
  3121. "lib/netstandard2.0/_._",
  3122. "microsoft.entityframeworkcore.tools.3.1.32.nupkg.sha512",
  3123. "microsoft.entityframeworkcore.tools.nuspec",
  3124. "tools/EntityFrameworkCore.PS2.psd1",
  3125. "tools/EntityFrameworkCore.PS2.psm1",
  3126. "tools/EntityFrameworkCore.psd1",
  3127. "tools/EntityFrameworkCore.psm1",
  3128. "tools/about_EntityFrameworkCore.help.txt",
  3129. "tools/init.ps1",
  3130. "tools/net461/any/ef.exe",
  3131. "tools/net461/win-arm64/ef.exe",
  3132. "tools/net461/win-x86/ef.exe",
  3133. "tools/netcoreapp2.0/any/ef.dll",
  3134. "tools/netcoreapp2.0/any/ef.runtimeconfig.json"
  3135. ]
  3136. },
  3137. "Microsoft.Extensions.Caching.Abstractions/3.1.32": {
  3138. "sha512": "cZdm91JlYwshLdYtg01a/FIuAiKQf/K/pg8q3+qLBnSEwy5dbPQYnS+/1W8aQb5JVTpb/+ZH3BvKab6V0M9Y/w==",
  3139. "type": "package",
  3140. "path": "microsoft.extensions.caching.abstractions/3.1.32",
  3141. "files": [
  3142. ".nupkg.metadata",
  3143. ".signature.p7s",
  3144. "Icon.png",
  3145. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll",
  3146. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.xml",
  3147. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
  3148. "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
  3149. "microsoft.extensions.caching.abstractions.3.1.32.nupkg.sha512",
  3150. "microsoft.extensions.caching.abstractions.nuspec"
  3151. ]
  3152. },
  3153. "Microsoft.Extensions.Caching.Memory/3.1.32": {
  3154. "sha512": "ANoYCSOuKSh7jYBhqhqLHb4aOEYhsqdKeyA3ralscLxaq6sftQZDia3wvebMYEoMjwxTBMwyEEKcDEb9+QQzKw==",
  3155. "type": "package",
  3156. "path": "microsoft.extensions.caching.memory/3.1.32",
  3157. "files": [
  3158. ".nupkg.metadata",
  3159. ".signature.p7s",
  3160. "Icon.png",
  3161. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll",
  3162. "lib/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.xml",
  3163. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
  3164. "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
  3165. "microsoft.extensions.caching.memory.3.1.32.nupkg.sha512",
  3166. "microsoft.extensions.caching.memory.nuspec"
  3167. ]
  3168. },
  3169. "Microsoft.Extensions.Configuration/3.1.32": {
  3170. "sha512": "WuOHTU9FB1yHaIU+/Ar1s5swHshH+7YjU7eA9Lmv0kO+rta7xOrR5Xu68srdxNpE9HjqjzxGZhPJFLxpP3J1Og==",
  3171. "type": "package",
  3172. "path": "microsoft.extensions.configuration/3.1.32",
  3173. "files": [
  3174. ".nupkg.metadata",
  3175. ".signature.p7s",
  3176. "Icon.png",
  3177. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll",
  3178. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml",
  3179. "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll",
  3180. "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml",
  3181. "microsoft.extensions.configuration.3.1.32.nupkg.sha512",
  3182. "microsoft.extensions.configuration.nuspec"
  3183. ]
  3184. },
  3185. "Microsoft.Extensions.Configuration.Abstractions/3.1.32": {
  3186. "sha512": "w8WEwVFYbTkoDQ/eJgGUPiL4SqZOiIVBkGxbkmnJAWnFxRigFk4WZla/3MDkN9fGSis6JwJfc57YgnleTw48AA==",
  3187. "type": "package",
  3188. "path": "microsoft.extensions.configuration.abstractions/3.1.32",
  3189. "files": [
  3190. ".nupkg.metadata",
  3191. ".signature.p7s",
  3192. "Icon.png",
  3193. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll",
  3194. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.xml",
  3195. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  3196. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
  3197. "microsoft.extensions.configuration.abstractions.3.1.32.nupkg.sha512",
  3198. "microsoft.extensions.configuration.abstractions.nuspec"
  3199. ]
  3200. },
  3201. "Microsoft.Extensions.Configuration.Binder/3.1.32": {
  3202. "sha512": "e89Od7dtbQpSPL3wNLlZ5LYv6KtMczxr2KSTULt4mhhUnMJtSfDIe1JJJJaL/Ed2+cwyAXtkMpqf4aR/Sd4mTQ==",
  3203. "type": "package",
  3204. "path": "microsoft.extensions.configuration.binder/3.1.32",
  3205. "files": [
  3206. ".nupkg.metadata",
  3207. ".signature.p7s",
  3208. "Icon.png",
  3209. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll",
  3210. "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.xml",
  3211. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll",
  3212. "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml",
  3213. "microsoft.extensions.configuration.binder.3.1.32.nupkg.sha512",
  3214. "microsoft.extensions.configuration.binder.nuspec"
  3215. ]
  3216. },
  3217. "Microsoft.Extensions.DependencyInjection/3.1.32": {
  3218. "sha512": "VUbvtpsoHZf4XtBhsfio0+2cpqC9bJs6ZiApT3G81CwBfcDV5OSeU9SaI6it6wxaGf0K2uADzzIS+4yTADaTRg==",
  3219. "type": "package",
  3220. "path": "microsoft.extensions.dependencyinjection/3.1.32",
  3221. "files": [
  3222. ".nupkg.metadata",
  3223. ".signature.p7s",
  3224. "Icon.png",
  3225. "lib/net461/Microsoft.Extensions.DependencyInjection.dll",
  3226. "lib/net461/Microsoft.Extensions.DependencyInjection.xml",
  3227. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll",
  3228. "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.xml",
  3229. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
  3230. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
  3231. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
  3232. "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
  3233. "microsoft.extensions.dependencyinjection.3.1.32.nupkg.sha512",
  3234. "microsoft.extensions.dependencyinjection.nuspec"
  3235. ]
  3236. },
  3237. "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.32": {
  3238. "sha512": "dARl3iAcHZshMvnXtKpLGES4QZq8ExxIQnF2s8pXfP3MJOOXRSBsk+UmA3TMVN4hPr4O2QFS8AMJp9GDD/4lDw==",
  3239. "type": "package",
  3240. "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.32",
  3241. "files": [
  3242. ".nupkg.metadata",
  3243. ".signature.p7s",
  3244. "Icon.png",
  3245. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  3246. "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
  3247. "microsoft.extensions.dependencyinjection.abstractions.3.1.32.nupkg.sha512",
  3248. "microsoft.extensions.dependencyinjection.abstractions.nuspec"
  3249. ]
  3250. },
  3251. "Microsoft.Extensions.Logging/3.1.32": {
  3252. "sha512": "5nx7SuLJnqINfv9zslFGig1Czt2AWAyKLiSEZj8eHxYJucuHcoenvD8p75FafYANsMMOach6ZiNZ1MdlPFS/MQ==",
  3253. "type": "package",
  3254. "path": "microsoft.extensions.logging/3.1.32",
  3255. "files": [
  3256. ".nupkg.metadata",
  3257. ".signature.p7s",
  3258. "Icon.png",
  3259. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.dll",
  3260. "lib/netcoreapp3.1/Microsoft.Extensions.Logging.xml",
  3261. "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
  3262. "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
  3263. "microsoft.extensions.logging.3.1.32.nupkg.sha512",
  3264. "microsoft.extensions.logging.nuspec"
  3265. ]
  3266. },
  3267. "Microsoft.Extensions.Logging.Abstractions/3.1.32": {
  3268. "sha512": "BShtU4APsEGa72vaj42rHc8CW40xpFp1dousoNeziHwOUFJLNOJP2wxKX2jyfer0nFaLSkIMtgKn+qeJtS3Pcw==",
  3269. "type": "package",
  3270. "path": "microsoft.extensions.logging.abstractions/3.1.32",
  3271. "files": [
  3272. ".nupkg.metadata",
  3273. ".signature.p7s",
  3274. "Icon.png",
  3275. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
  3276. "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
  3277. "microsoft.extensions.logging.abstractions.3.1.32.nupkg.sha512",
  3278. "microsoft.extensions.logging.abstractions.nuspec"
  3279. ]
  3280. },
  3281. "Microsoft.Extensions.Options/3.1.32": {
  3282. "sha512": "JRX2+OxOC/jqWrkyjJZstpe0NdY/HfOJNPOzVkMxqCxTirecIYfaKXAms4HDsEKl3i6CD8jDkwHyv3fyWZO6hQ==",
  3283. "type": "package",
  3284. "path": "microsoft.extensions.options/3.1.32",
  3285. "files": [
  3286. ".nupkg.metadata",
  3287. ".signature.p7s",
  3288. "Icon.png",
  3289. "lib/netcoreapp3.1/Microsoft.Extensions.Options.dll",
  3290. "lib/netcoreapp3.1/Microsoft.Extensions.Options.xml",
  3291. "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
  3292. "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
  3293. "microsoft.extensions.options.3.1.32.nupkg.sha512",
  3294. "microsoft.extensions.options.nuspec"
  3295. ]
  3296. },
  3297. "Microsoft.Extensions.Primitives/3.1.32": {
  3298. "sha512": "N8lTVwdjR+df9Sx3VdHfrecV6zl8KQoAx7kQXJ3rYwQBEw2vuZM0LKVAqjnaA/TBC8ZKnt99ptwH5iaEOxBuYQ==",
  3299. "type": "package",
  3300. "path": "microsoft.extensions.primitives/3.1.32",
  3301. "files": [
  3302. ".nupkg.metadata",
  3303. ".signature.p7s",
  3304. "Icon.png",
  3305. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll",
  3306. "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml",
  3307. "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
  3308. "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
  3309. "microsoft.extensions.primitives.3.1.32.nupkg.sha512",
  3310. "microsoft.extensions.primitives.nuspec"
  3311. ]
  3312. },
  3313. "Microsoft.Identity.Client/3.0.8": {
  3314. "sha512": "9E1gXBRJta8+UXooYpJkp/8g6Cy4kFQl3iURduGhR7/vU8rGKTWEMJ3tUKOO2m1qzJOfaog/n89lyjdi7S56Rg==",
  3315. "type": "package",
  3316. "path": "microsoft.identity.client/3.0.8",
  3317. "files": [
  3318. ".nupkg.metadata",
  3319. ".signature.p7s",
  3320. "lib/monoandroid90/Microsoft.Identity.Client.dll",
  3321. "lib/monoandroid90/Microsoft.Identity.Client.xml",
  3322. "lib/net45/Microsoft.Identity.Client.dll",
  3323. "lib/net45/Microsoft.Identity.Client.xml",
  3324. "lib/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3325. "lib/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3326. "lib/netstandard1.3/Microsoft.Identity.Client.dll",
  3327. "lib/netstandard1.3/Microsoft.Identity.Client.xml",
  3328. "lib/uap10.0/Microsoft.Identity.Client.dll",
  3329. "lib/uap10.0/Microsoft.Identity.Client.pri",
  3330. "lib/uap10.0/Microsoft.Identity.Client.xml",
  3331. "lib/xamarinios10/Microsoft.Identity.Client.dll",
  3332. "lib/xamarinios10/Microsoft.Identity.Client.xml",
  3333. "lib/xamarinmac20/Microsoft.Identity.Client.dll",
  3334. "lib/xamarinmac20/Microsoft.Identity.Client.xml",
  3335. "microsoft.identity.client.3.0.8.nupkg.sha512",
  3336. "microsoft.identity.client.nuspec",
  3337. "ref/MonoAndroid9.0/Microsoft.Identity.Client.dll",
  3338. "ref/MonoAndroid9.0/Microsoft.Identity.Client.xml",
  3339. "ref/Xamarin.iOS10/Microsoft.Identity.Client.dll",
  3340. "ref/Xamarin.iOS10/Microsoft.Identity.Client.xml",
  3341. "ref/net45/Microsoft.Identity.Client.dll",
  3342. "ref/net45/Microsoft.Identity.Client.xml",
  3343. "ref/netcoreapp2.1/Microsoft.Identity.Client.dll",
  3344. "ref/netcoreapp2.1/Microsoft.Identity.Client.xml",
  3345. "ref/netstandard1.3/Microsoft.Identity.Client.dll",
  3346. "ref/netstandard1.3/Microsoft.Identity.Client.xml",
  3347. "ref/uap10.0/Microsoft.Identity.Client.dll",
  3348. "ref/uap10.0/Microsoft.Identity.Client.xml",
  3349. "ref/xamarinmac20/Microsoft.Identity.Client.dll",
  3350. "ref/xamarinmac20/Microsoft.Identity.Client.xml"
  3351. ]
  3352. },
  3353. "Microsoft.IdentityModel.JsonWebTokens/5.5.0": {
  3354. "sha512": "cT9SCW/dN+ulrvAtbh37c36DR6aArENH3S4UtFmvXRx+VGC0ArDgzRaEbEh+ChS4koxdl2oS691250iZhgKvwg==",
  3355. "type": "package",
  3356. "path": "microsoft.identitymodel.jsonwebtokens/5.5.0",
  3357. "files": [
  3358. ".nupkg.metadata",
  3359. ".signature.p7s",
  3360. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll",
  3361. "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml",
  3362. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.dll",
  3363. "lib/net451/Microsoft.IdentityModel.JsonWebTokens.xml",
  3364. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll",
  3365. "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml",
  3366. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.dll",
  3367. "lib/netstandard1.4/Microsoft.IdentityModel.JsonWebTokens.xml",
  3368. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll",
  3369. "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml",
  3370. "microsoft.identitymodel.jsonwebtokens.5.5.0.nupkg.sha512",
  3371. "microsoft.identitymodel.jsonwebtokens.nuspec"
  3372. ]
  3373. },
  3374. "Microsoft.IdentityModel.Logging/5.5.0": {
  3375. "sha512": "1w/Hz/7+al+ugQn+6y0tAPmpN8U0u1aBtl1QXYCVkiJfbCC4tgyroFOuhdztOq48rgeM+3JW9bGqOtkfVurW8w==",
  3376. "type": "package",
  3377. "path": "microsoft.identitymodel.logging/5.5.0",
  3378. "files": [
  3379. ".nupkg.metadata",
  3380. ".signature.p7s",
  3381. "lib/net45/Microsoft.IdentityModel.Logging.dll",
  3382. "lib/net45/Microsoft.IdentityModel.Logging.xml",
  3383. "lib/net451/Microsoft.IdentityModel.Logging.dll",
  3384. "lib/net451/Microsoft.IdentityModel.Logging.xml",
  3385. "lib/net461/Microsoft.IdentityModel.Logging.dll",
  3386. "lib/net461/Microsoft.IdentityModel.Logging.xml",
  3387. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.dll",
  3388. "lib/netstandard1.4/Microsoft.IdentityModel.Logging.xml",
  3389. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
  3390. "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
  3391. "microsoft.identitymodel.logging.5.5.0.nupkg.sha512",
  3392. "microsoft.identitymodel.logging.nuspec"
  3393. ]
  3394. },
  3395. "Microsoft.IdentityModel.Protocols/5.5.0": {
  3396. "sha512": "m1gwAQwZjUxzRBC+4H40vYSo9Cms9yUbMdW492rQoXHU77G/ItiKxpk2+W9bWYcdsKUDKudye7im3T3MlVxEkg==",
  3397. "type": "package",
  3398. "path": "microsoft.identitymodel.protocols/5.5.0",
  3399. "files": [
  3400. ".nupkg.metadata",
  3401. ".signature.p7s",
  3402. "lib/net45/Microsoft.IdentityModel.Protocols.dll",
  3403. "lib/net45/Microsoft.IdentityModel.Protocols.xml",
  3404. "lib/net451/Microsoft.IdentityModel.Protocols.dll",
  3405. "lib/net451/Microsoft.IdentityModel.Protocols.xml",
  3406. "lib/net461/Microsoft.IdentityModel.Protocols.dll",
  3407. "lib/net461/Microsoft.IdentityModel.Protocols.xml",
  3408. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.dll",
  3409. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.xml",
  3410. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll",
  3411. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml",
  3412. "microsoft.identitymodel.protocols.5.5.0.nupkg.sha512",
  3413. "microsoft.identitymodel.protocols.nuspec"
  3414. ]
  3415. },
  3416. "Microsoft.IdentityModel.Protocols.OpenIdConnect/5.5.0": {
  3417. "sha512": "21F4QlbaD5CXNs2urNRCO6vljbbrhv3gmGT8P18SKGKZ9IYBCn29extoJriHiPfhABd5b8S7RcdKU50XhERkYg==",
  3418. "type": "package",
  3419. "path": "microsoft.identitymodel.protocols.openidconnect/5.5.0",
  3420. "files": [
  3421. ".nupkg.metadata",
  3422. ".signature.p7s",
  3423. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3424. "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3425. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3426. "lib/net451/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3427. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3428. "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3429. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3430. "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3431. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll",
  3432. "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml",
  3433. "microsoft.identitymodel.protocols.openidconnect.5.5.0.nupkg.sha512",
  3434. "microsoft.identitymodel.protocols.openidconnect.nuspec"
  3435. ]
  3436. },
  3437. "Microsoft.IdentityModel.Tokens/5.5.0": {
  3438. "sha512": "cu1klZiuCwVYbXHs0QdnseuoRGG1/85VX9d1Sk0vbJlKp+HJUN/4pAS/fe2m9bTOYyIPdeCHeksMiVHgo1EfAA==",
  3439. "type": "package",
  3440. "path": "microsoft.identitymodel.tokens/5.5.0",
  3441. "files": [
  3442. ".nupkg.metadata",
  3443. ".signature.p7s",
  3444. "lib/net45/Microsoft.IdentityModel.Tokens.dll",
  3445. "lib/net45/Microsoft.IdentityModel.Tokens.xml",
  3446. "lib/net451/Microsoft.IdentityModel.Tokens.dll",
  3447. "lib/net451/Microsoft.IdentityModel.Tokens.xml",
  3448. "lib/net461/Microsoft.IdentityModel.Tokens.dll",
  3449. "lib/net461/Microsoft.IdentityModel.Tokens.xml",
  3450. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.dll",
  3451. "lib/netstandard1.4/Microsoft.IdentityModel.Tokens.xml",
  3452. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
  3453. "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
  3454. "microsoft.identitymodel.tokens.5.5.0.nupkg.sha512",
  3455. "microsoft.identitymodel.tokens.nuspec"
  3456. ]
  3457. },
  3458. "Microsoft.NETCore.Platforms/2.1.2": {
  3459. "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
  3460. "type": "package",
  3461. "path": "microsoft.netcore.platforms/2.1.2",
  3462. "files": [
  3463. ".nupkg.metadata",
  3464. ".signature.p7s",
  3465. "LICENSE.TXT",
  3466. "THIRD-PARTY-NOTICES.TXT",
  3467. "lib/netstandard1.0/_._",
  3468. "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
  3469. "microsoft.netcore.platforms.nuspec",
  3470. "runtime.json",
  3471. "useSharedDesignerContext.txt",
  3472. "version.txt"
  3473. ]
  3474. },
  3475. "Microsoft.NETCore.Targets/1.1.0": {
  3476. "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
  3477. "type": "package",
  3478. "path": "microsoft.netcore.targets/1.1.0",
  3479. "files": [
  3480. ".nupkg.metadata",
  3481. ".signature.p7s",
  3482. "ThirdPartyNotices.txt",
  3483. "dotnet_library_license.txt",
  3484. "lib/netstandard1.0/_._",
  3485. "microsoft.netcore.targets.1.1.0.nupkg.sha512",
  3486. "microsoft.netcore.targets.nuspec",
  3487. "runtime.json"
  3488. ]
  3489. },
  3490. "Microsoft.VisualStudio.Web.CodeGeneration/3.1.5": {
  3491. "sha512": "KSXhD6QzyoyNc52blbf5DJ7QNtul1VXcpOcYO5svlbFRRWjcB3+lpYTr5n9I6fcgMDGkhb4mndLZuXSTz0ukaA==",
  3492. "type": "package",
  3493. "path": "microsoft.visualstudio.web.codegeneration/3.1.5",
  3494. "files": [
  3495. ".nupkg.metadata",
  3496. ".signature.p7s",
  3497. "Icon.png",
  3498. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
  3499. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
  3500. "microsoft.visualstudio.web.codegeneration.3.1.5.nupkg.sha512",
  3501. "microsoft.visualstudio.web.codegeneration.nuspec"
  3502. ]
  3503. },
  3504. "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/3.1.5": {
  3505. "sha512": "mwtlStv7cvgmOC7zM9ZGV/9KN5gtYpDW1w0oOx675nPT/CECsftaCBRfxP0D3Ho8bj1+UgiI7hVLwyYud58E9g==",
  3506. "type": "package",
  3507. "path": "microsoft.visualstudio.web.codegeneration.contracts/3.1.5",
  3508. "files": [
  3509. ".nupkg.metadata",
  3510. ".signature.p7s",
  3511. "Icon.png",
  3512. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll",
  3513. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml",
  3514. "microsoft.visualstudio.web.codegeneration.contracts.3.1.5.nupkg.sha512",
  3515. "microsoft.visualstudio.web.codegeneration.contracts.nuspec"
  3516. ]
  3517. },
  3518. "Microsoft.VisualStudio.Web.CodeGeneration.Core/3.1.5": {
  3519. "sha512": "VWSQrOR9ayVTe7tv1IghlyRCdxVHt3cFBH3p1gmDaF1wNHwFfFJvZ3NT6HeqeNqysLftvQdJKVmRckfoaOuqMQ==",
  3520. "type": "package",
  3521. "path": "microsoft.visualstudio.web.codegeneration.core/3.1.5",
  3522. "files": [
  3523. ".nupkg.metadata",
  3524. ".signature.p7s",
  3525. "Icon.png",
  3526. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
  3527. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
  3528. "microsoft.visualstudio.web.codegeneration.core.3.1.5.nupkg.sha512",
  3529. "microsoft.visualstudio.web.codegeneration.core.nuspec"
  3530. ]
  3531. },
  3532. "Microsoft.VisualStudio.Web.CodeGeneration.Design/3.1.5": {
  3533. "sha512": "OtcAfUxX/etRLVIVEk5PpVt1hChZosqNKkhLjLuubdpCIX5P7OCihVScYMzdjXfvD3tNkWcNed2nvpLd61wBYA==",
  3534. "type": "package",
  3535. "path": "microsoft.visualstudio.web.codegeneration.design/3.1.5",
  3536. "files": [
  3537. ".nupkg.metadata",
  3538. ".signature.p7s",
  3539. "lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3540. "lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3541. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll",
  3542. "lib/netcoreapp3.1/dotnet-aspnet-codegenerator-design.xml",
  3543. "microsoft.visualstudio.web.codegeneration.design.3.1.5.nupkg.sha512",
  3544. "microsoft.visualstudio.web.codegeneration.design.nuspec",
  3545. "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3546. "runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3547. "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3548. "runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3549. "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3550. "runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
  3551. "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe",
  3552. "runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml"
  3553. ]
  3554. },
  3555. "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/3.1.5": {
  3556. "sha512": "7ABg+Xc56gxWlmId+vCAdf5sGY9+GZiBi2LB5epaufvoaww4n74zv+FzQUP0jApurmA0RDiJzQ8u8XL+Cl8VcQ==",
  3557. "type": "package",
  3558. "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/3.1.5",
  3559. "files": [
  3560. ".nupkg.metadata",
  3561. ".signature.p7s",
  3562. "Icon.png",
  3563. "Templates/DbContext/NewLocalDbContext.cshtml",
  3564. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
  3565. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
  3566. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.3.1.5.nupkg.sha512",
  3567. "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
  3568. ]
  3569. },
  3570. "Microsoft.VisualStudio.Web.CodeGeneration.Templating/3.1.5": {
  3571. "sha512": "fYdTlypZex1lkrZif924cp4StqzAXehIdgYiRXre7HpjnRVMH6dHWEW4n7vY2IAnXI3dmp+ekD10k6z98YLTwA==",
  3572. "type": "package",
  3573. "path": "microsoft.visualstudio.web.codegeneration.templating/3.1.5",
  3574. "files": [
  3575. ".nupkg.metadata",
  3576. ".signature.p7s",
  3577. "Icon.png",
  3578. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
  3579. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
  3580. "microsoft.visualstudio.web.codegeneration.templating.3.1.5.nupkg.sha512",
  3581. "microsoft.visualstudio.web.codegeneration.templating.nuspec"
  3582. ]
  3583. },
  3584. "Microsoft.VisualStudio.Web.CodeGeneration.Utils/3.1.5": {
  3585. "sha512": "vSEMlRifsRn4VYoaqWcTeJvrKfKfuZZlMZblKWMUP/cwAAZkDweJqfA6E7trvcuRsyauQyEPsKicElqbZHRnzg==",
  3586. "type": "package",
  3587. "path": "microsoft.visualstudio.web.codegeneration.utils/3.1.5",
  3588. "files": [
  3589. ".nupkg.metadata",
  3590. ".signature.p7s",
  3591. "Icon.png",
  3592. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
  3593. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
  3594. "microsoft.visualstudio.web.codegeneration.utils.3.1.5.nupkg.sha512",
  3595. "microsoft.visualstudio.web.codegeneration.utils.nuspec"
  3596. ]
  3597. },
  3598. "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/3.1.5": {
  3599. "sha512": "w1yGWLgGbZJ8Dz8+4CP4tlwIHpQ/ZaOLWHV0gZo2m1+yU6u/zo2z1Ro7/CHkVWVd04vievsN5UQ19lcWLSfqBw==",
  3600. "type": "package",
  3601. "path": "microsoft.visualstudio.web.codegenerators.mvc/3.1.5",
  3602. "files": [
  3603. ".nupkg.metadata",
  3604. ".signature.p7s",
  3605. "Generators/ParameterDefinitions/area.json",
  3606. "Generators/ParameterDefinitions/controller.json",
  3607. "Generators/ParameterDefinitions/identity.json",
  3608. "Generators/ParameterDefinitions/razorpage.json",
  3609. "Generators/ParameterDefinitions/view.json",
  3610. "Icon.png",
  3611. "Templates/ControllerGenerator/ApiControllerWithActions.cshtml",
  3612. "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
  3613. "Templates/ControllerGenerator/ApiEmptyController.cshtml",
  3614. "Templates/ControllerGenerator/ControllerWithActions.cshtml",
  3615. "Templates/ControllerGenerator/EmptyController.cshtml",
  3616. "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
  3617. "Templates/Identity/Data/ApplicationDbContext.cshtml",
  3618. "Templates/Identity/Data/ApplicationUser.cshtml",
  3619. "Templates/Identity/IdentityHostingStartup.cshtml",
  3620. "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
  3621. "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
  3622. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  3623. "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
  3624. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  3625. "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml",
  3626. "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
  3627. "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
  3628. "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
  3629. "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
  3630. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  3631. "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  3632. "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
  3633. "Templates/Identity/Pages/Account/Account.Lockout.cshtml",
  3634. "Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
  3635. "Templates/Identity/Pages/Account/Account.Login.cshtml",
  3636. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  3637. "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
  3638. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  3639. "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  3640. "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
  3641. "Templates/Identity/Pages/Account/Account.Logout.cshtml",
  3642. "Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
  3643. "Templates/Identity/Pages/Account/Account.Register.cshtml",
  3644. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  3645. "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml",
  3646. "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  3647. "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
  3648. "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
  3649. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  3650. "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  3651. "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml",
  3652. "Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
  3653. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  3654. "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  3655. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  3656. "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  3657. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  3658. "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  3659. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  3660. "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  3661. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  3662. "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml",
  3663. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  3664. "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  3665. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  3666. "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  3667. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  3668. "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  3669. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  3670. "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
  3671. "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  3672. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  3673. "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  3674. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  3675. "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  3676. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  3677. "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  3678. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  3679. "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  3680. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  3681. "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  3682. "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  3683. "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  3684. "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  3685. "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  3686. "Templates/Identity/Pages/Error.cs.cshtml",
  3687. "Templates/Identity/Pages/Error.cshtml",
  3688. "Templates/Identity/Pages/_Layout.cshtml",
  3689. "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
  3690. "Templates/Identity/Pages/_ViewImports.cshtml",
  3691. "Templates/Identity/Pages/_ViewStart.cshtml",
  3692. "Templates/Identity/ScaffoldingReadme.cshtml",
  3693. "Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
  3694. "Templates/Identity/SupportPages._ViewImports.cshtml",
  3695. "Templates/Identity/SupportPages._ViewStart.cshtml",
  3696. "Templates/Identity/_LoginPartial.cshtml",
  3697. "Templates/Identity/wwwroot/css/site.css",
  3698. "Templates/Identity/wwwroot/favicon.ico",
  3699. "Templates/Identity/wwwroot/js/site.js",
  3700. "Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
  3701. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
  3702. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
  3703. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
  3704. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
  3705. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
  3706. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
  3707. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
  3708. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
  3709. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  3710. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  3711. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  3712. "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  3713. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
  3714. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
  3715. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
  3716. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
  3717. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  3718. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
  3719. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  3720. "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
  3721. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  3722. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  3723. "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  3724. "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
  3725. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  3726. "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  3727. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  3728. "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  3729. "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
  3730. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
  3731. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
  3732. "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
  3733. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml",
  3734. "Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml",
  3735. "Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml",
  3736. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml",
  3737. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml",
  3738. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml",
  3739. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml",
  3740. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cs.cshtml",
  3741. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmailChange.cshtml",
  3742. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml",
  3743. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml",
  3744. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml",
  3745. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml",
  3746. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
  3747. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
  3748. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml",
  3749. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml",
  3750. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml",
  3751. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml",
  3752. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml",
  3753. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml",
  3754. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
  3755. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
  3756. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml",
  3757. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml",
  3758. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml",
  3759. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml",
  3760. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cs.cshtml",
  3761. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.RegisterConfirmation.cshtml",
  3762. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResendEmailConfirmation.cshtml",
  3763. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml",
  3764. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml",
  3765. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
  3766. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
  3767. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._StatusMessage.cshtml",
  3768. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml",
  3769. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
  3770. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
  3771. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
  3772. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
  3773. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
  3774. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
  3775. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
  3776. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
  3777. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cs.cshtml",
  3778. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Email.cshtml",
  3779. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
  3780. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
  3781. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
  3782. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
  3783. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
  3784. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
  3785. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
  3786. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml",
  3787. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
  3788. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
  3789. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
  3790. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
  3791. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
  3792. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
  3793. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
  3794. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
  3795. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
  3796. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
  3797. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
  3798. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml",
  3799. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
  3800. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
  3801. "Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
  3802. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml",
  3803. "Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml",
  3804. "Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml",
  3805. "Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml",
  3806. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml",
  3807. "Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml",
  3808. "Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml",
  3809. "Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml",
  3810. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml",
  3811. "Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml",
  3812. "Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml",
  3813. "Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css",
  3814. "Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico",
  3815. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg",
  3816. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg",
  3817. "Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg",
  3818. "Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js",
  3819. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE",
  3820. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css",
  3821. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map",
  3822. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css",
  3823. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map",
  3824. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
  3825. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
  3826. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
  3827. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
  3828. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot",
  3829. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg",
  3830. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf",
  3831. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff",
  3832. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2",
  3833. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
  3834. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
  3835. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js",
  3836. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
  3837. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
  3838. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
  3839. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md",
  3840. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js",
  3841. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
  3842. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
  3843. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
  3844. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt",
  3845. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js",
  3846. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js",
  3847. "Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map",
  3848. "Templates/MvcLayout/Error.cshtml",
  3849. "Templates/MvcLayout/_Layout.cshtml",
  3850. "Templates/RazorPageGenerator/Create.cshtml",
  3851. "Templates/RazorPageGenerator/CreatePageModel.cshtml",
  3852. "Templates/RazorPageGenerator/Delete.cshtml",
  3853. "Templates/RazorPageGenerator/DeletePageModel.cshtml",
  3854. "Templates/RazorPageGenerator/Details.cshtml",
  3855. "Templates/RazorPageGenerator/DetailsPageModel.cshtml",
  3856. "Templates/RazorPageGenerator/Edit.cshtml",
  3857. "Templates/RazorPageGenerator/EditPageModel.cshtml",
  3858. "Templates/RazorPageGenerator/Empty.cshtml",
  3859. "Templates/RazorPageGenerator/EmptyPageModel.cshtml",
  3860. "Templates/RazorPageGenerator/List.cshtml",
  3861. "Templates/RazorPageGenerator/ListPageModel.cshtml",
  3862. "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
  3863. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml",
  3864. "Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml",
  3865. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml",
  3866. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml",
  3867. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml",
  3868. "Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml",
  3869. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml",
  3870. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml",
  3871. "Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml",
  3872. "Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml",
  3873. "Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml",
  3874. "Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml",
  3875. "Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  3876. "Templates/Startup/ReadMe.cshtml",
  3877. "Templates/Startup/Startup.cshtml",
  3878. "Templates/ViewGenerator/Create.cshtml",
  3879. "Templates/ViewGenerator/Delete.cshtml",
  3880. "Templates/ViewGenerator/Details.cshtml",
  3881. "Templates/ViewGenerator/Edit.cshtml",
  3882. "Templates/ViewGenerator/Empty.cshtml",
  3883. "Templates/ViewGenerator/List.cshtml",
  3884. "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
  3885. "Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml",
  3886. "Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml",
  3887. "Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml",
  3888. "Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml",
  3889. "Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml",
  3890. "Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml",
  3891. "Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
  3892. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
  3893. "lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
  3894. "lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json",
  3895. "lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json",
  3896. "microsoft.visualstudio.web.codegenerators.mvc.3.1.5.nupkg.sha512",
  3897. "microsoft.visualstudio.web.codegenerators.mvc.nuspec"
  3898. ]
  3899. },
  3900. "Microsoft.Win32.Primitives/4.3.0": {
  3901. "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==",
  3902. "type": "package",
  3903. "path": "microsoft.win32.primitives/4.3.0",
  3904. "files": [
  3905. ".nupkg.metadata",
  3906. ".signature.p7s",
  3907. "ThirdPartyNotices.txt",
  3908. "dotnet_library_license.txt",
  3909. "lib/MonoAndroid10/_._",
  3910. "lib/MonoTouch10/_._",
  3911. "lib/net46/Microsoft.Win32.Primitives.dll",
  3912. "lib/xamarinios10/_._",
  3913. "lib/xamarinmac20/_._",
  3914. "lib/xamarintvos10/_._",
  3915. "lib/xamarinwatchos10/_._",
  3916. "microsoft.win32.primitives.4.3.0.nupkg.sha512",
  3917. "microsoft.win32.primitives.nuspec",
  3918. "ref/MonoAndroid10/_._",
  3919. "ref/MonoTouch10/_._",
  3920. "ref/net46/Microsoft.Win32.Primitives.dll",
  3921. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  3922. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  3923. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  3924. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  3925. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  3926. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  3927. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  3928. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  3929. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  3930. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  3931. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  3932. "ref/xamarinios10/_._",
  3933. "ref/xamarinmac20/_._",
  3934. "ref/xamarintvos10/_._",
  3935. "ref/xamarinwatchos10/_._"
  3936. ]
  3937. },
  3938. "Microsoft.Win32.Registry/4.5.0": {
  3939. "sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
  3940. "type": "package",
  3941. "path": "microsoft.win32.registry/4.5.0",
  3942. "files": [
  3943. ".nupkg.metadata",
  3944. ".signature.p7s",
  3945. "LICENSE.TXT",
  3946. "THIRD-PARTY-NOTICES.TXT",
  3947. "lib/net46/Microsoft.Win32.Registry.dll",
  3948. "lib/net461/Microsoft.Win32.Registry.dll",
  3949. "lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3950. "lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3951. "microsoft.win32.registry.4.5.0.nupkg.sha512",
  3952. "microsoft.win32.registry.nuspec",
  3953. "ref/net46/Microsoft.Win32.Registry.dll",
  3954. "ref/net461/Microsoft.Win32.Registry.dll",
  3955. "ref/net461/Microsoft.Win32.Registry.xml",
  3956. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  3957. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  3958. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  3959. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  3960. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  3961. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  3962. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  3963. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  3964. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  3965. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  3966. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  3967. "ref/netstandard2.0/Microsoft.Win32.Registry.dll",
  3968. "ref/netstandard2.0/Microsoft.Win32.Registry.xml",
  3969. "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3970. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  3971. "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll",
  3972. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  3973. "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll",
  3974. "useSharedDesignerContext.txt",
  3975. "version.txt"
  3976. ]
  3977. },
  3978. "MQTTnet/4.1.2.350": {
  3979. "sha512": "etoNFb3b3wm/Ti1RROXbSDtpx4kuYoWkOjACdZqsmPNb2pWk8QjzwTNW5yqWL91DxCKo6T8pjfrxvADicd8+9w==",
  3980. "type": "package",
  3981. "path": "mqttnet/4.1.2.350",
  3982. "files": [
  3983. ".nupkg.metadata",
  3984. ".signature.p7s",
  3985. "lib/net452/MQTTnet.dll",
  3986. "lib/net452/MQTTnet.xml",
  3987. "lib/net461/MQTTnet.dll",
  3988. "lib/net461/MQTTnet.xml",
  3989. "lib/net5.0/MQTTnet.dll",
  3990. "lib/net5.0/MQTTnet.xml",
  3991. "lib/net6.0/MQTTnet.dll",
  3992. "lib/net6.0/MQTTnet.xml",
  3993. "lib/netcoreapp3.1/MQTTnet.dll",
  3994. "lib/netcoreapp3.1/MQTTnet.xml",
  3995. "lib/netstandard1.3/MQTTnet.dll",
  3996. "lib/netstandard1.3/MQTTnet.xml",
  3997. "lib/netstandard2.0/MQTTnet.dll",
  3998. "lib/netstandard2.0/MQTTnet.xml",
  3999. "lib/netstandard2.1/MQTTnet.dll",
  4000. "lib/netstandard2.1/MQTTnet.xml",
  4001. "lib/uap10.0.10240/MQTTnet.dll",
  4002. "lib/uap10.0.10240/MQTTnet.pri",
  4003. "lib/uap10.0.10240/MQTTnet.xml",
  4004. "mqttnet.4.1.2.350.nupkg.sha512",
  4005. "mqttnet.nuspec",
  4006. "nuget.png"
  4007. ]
  4008. },
  4009. "MQTTnet.AspNetCore/4.1.2.350": {
  4010. "sha512": "BmU5523+cLeUi1nrlXFsICHvLCvd34R4uORF2slL3UfEwPKVgO7w3aQql50ukQZHIzr/4vc6cPwQihP34KUmTw==",
  4011. "type": "package",
  4012. "path": "mqttnet.aspnetcore/4.1.2.350",
  4013. "files": [
  4014. ".nupkg.metadata",
  4015. ".signature.p7s",
  4016. "lib/net5.0/MQTTnet.AspNetCore.dll",
  4017. "lib/net5.0/MQTTnet.AspNetCore.xml",
  4018. "lib/net6.0/MQTTnet.AspNetCore.dll",
  4019. "lib/net6.0/MQTTnet.AspNetCore.xml",
  4020. "lib/netcoreapp2.1/MQTTnet.AspNetCore.dll",
  4021. "lib/netcoreapp2.1/MQTTnet.AspNetCore.xml",
  4022. "lib/netcoreapp3.1/MQTTnet.AspNetCore.dll",
  4023. "lib/netcoreapp3.1/MQTTnet.AspNetCore.xml",
  4024. "lib/netstandard2.0/MQTTnet.AspNetCore.dll",
  4025. "lib/netstandard2.0/MQTTnet.AspNetCore.xml",
  4026. "mqttnet.aspnetcore.4.1.2.350.nupkg.sha512",
  4027. "mqttnet.aspnetcore.nuspec",
  4028. "nuget.png"
  4029. ]
  4030. },
  4031. "NETStandard.Library/1.6.1": {
  4032. "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==",
  4033. "type": "package",
  4034. "path": "netstandard.library/1.6.1",
  4035. "files": [
  4036. ".nupkg.metadata",
  4037. ".signature.p7s",
  4038. "ThirdPartyNotices.txt",
  4039. "dotnet_library_license.txt",
  4040. "netstandard.library.1.6.1.nupkg.sha512",
  4041. "netstandard.library.nuspec"
  4042. ]
  4043. },
  4044. "Newtonsoft.Json/11.0.2": {
  4045. "sha512": "IvJe1pj7JHEsP8B8J8DwlMEx8UInrs/x+9oVY+oCD13jpLu4JbJU2WCIsMRn5C4yW9+DgkaO8uiVE5VHKjpmdQ==",
  4046. "type": "package",
  4047. "path": "newtonsoft.json/11.0.2",
  4048. "files": [
  4049. ".nupkg.metadata",
  4050. ".signature.p7s",
  4051. "LICENSE.md",
  4052. "lib/net20/Newtonsoft.Json.dll",
  4053. "lib/net20/Newtonsoft.Json.xml",
  4054. "lib/net35/Newtonsoft.Json.dll",
  4055. "lib/net35/Newtonsoft.Json.xml",
  4056. "lib/net40/Newtonsoft.Json.dll",
  4057. "lib/net40/Newtonsoft.Json.xml",
  4058. "lib/net45/Newtonsoft.Json.dll",
  4059. "lib/net45/Newtonsoft.Json.xml",
  4060. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4061. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4062. "lib/netstandard1.3/Newtonsoft.Json.dll",
  4063. "lib/netstandard1.3/Newtonsoft.Json.xml",
  4064. "lib/netstandard2.0/Newtonsoft.Json.dll",
  4065. "lib/netstandard2.0/Newtonsoft.Json.xml",
  4066. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4067. "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4068. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll",
  4069. "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml",
  4070. "newtonsoft.json.11.0.2.nupkg.sha512",
  4071. "newtonsoft.json.nuspec"
  4072. ]
  4073. },
  4074. "NuGet.Frameworks/4.7.0": {
  4075. "sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==",
  4076. "type": "package",
  4077. "path": "nuget.frameworks/4.7.0",
  4078. "files": [
  4079. ".nupkg.metadata",
  4080. ".signature.p7s",
  4081. "lib/net40/NuGet.Frameworks.dll",
  4082. "lib/net40/NuGet.Frameworks.xml",
  4083. "lib/net46/NuGet.Frameworks.dll",
  4084. "lib/net46/NuGet.Frameworks.xml",
  4085. "lib/netstandard1.6/NuGet.Frameworks.dll",
  4086. "lib/netstandard1.6/NuGet.Frameworks.xml",
  4087. "nuget.frameworks.4.7.0.nupkg.sha512",
  4088. "nuget.frameworks.nuspec"
  4089. ]
  4090. },
  4091. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4092. "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==",
  4093. "type": "package",
  4094. "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4095. "files": [
  4096. ".nupkg.metadata",
  4097. ".signature.p7s",
  4098. "ThirdPartyNotices.txt",
  4099. "dotnet_library_license.txt",
  4100. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4101. "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4102. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4103. ]
  4104. },
  4105. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4106. "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==",
  4107. "type": "package",
  4108. "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4109. "files": [
  4110. ".nupkg.metadata",
  4111. ".signature.p7s",
  4112. "ThirdPartyNotices.txt",
  4113. "dotnet_library_license.txt",
  4114. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4115. "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4116. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4117. ]
  4118. },
  4119. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4120. "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==",
  4121. "type": "package",
  4122. "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4123. "files": [
  4124. ".nupkg.metadata",
  4125. ".signature.p7s",
  4126. "ThirdPartyNotices.txt",
  4127. "dotnet_library_license.txt",
  4128. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4129. "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4130. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4131. ]
  4132. },
  4133. "runtime.native.System/4.3.0": {
  4134. "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==",
  4135. "type": "package",
  4136. "path": "runtime.native.system/4.3.0",
  4137. "files": [
  4138. ".nupkg.metadata",
  4139. ".signature.p7s",
  4140. "ThirdPartyNotices.txt",
  4141. "dotnet_library_license.txt",
  4142. "lib/netstandard1.0/_._",
  4143. "runtime.native.system.4.3.0.nupkg.sha512",
  4144. "runtime.native.system.nuspec"
  4145. ]
  4146. },
  4147. "runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4148. "sha512": "A8v6PGmk+UGbfWo5Ixup0lPM4swuSwOiayJExZwKIOjTlFFQIsu3QnDXECosBEyrWSPryxBVrdqtJyhK3BaupQ==",
  4149. "type": "package",
  4150. "path": "runtime.native.system.data.sqlclient.sni/4.4.0",
  4151. "files": [
  4152. ".nupkg.metadata",
  4153. ".signature.p7s",
  4154. "LICENSE.TXT",
  4155. "THIRD-PARTY-NOTICES.TXT",
  4156. "runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4157. "runtime.native.system.data.sqlclient.sni.nuspec",
  4158. "useSharedDesignerContext.txt",
  4159. "version.txt"
  4160. ]
  4161. },
  4162. "runtime.native.System.IO.Compression/4.3.0": {
  4163. "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==",
  4164. "type": "package",
  4165. "path": "runtime.native.system.io.compression/4.3.0",
  4166. "files": [
  4167. ".nupkg.metadata",
  4168. ".signature.p7s",
  4169. "ThirdPartyNotices.txt",
  4170. "dotnet_library_license.txt",
  4171. "lib/netstandard1.0/_._",
  4172. "runtime.native.system.io.compression.4.3.0.nupkg.sha512",
  4173. "runtime.native.system.io.compression.nuspec"
  4174. ]
  4175. },
  4176. "runtime.native.System.Net.Http/4.3.0": {
  4177. "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==",
  4178. "type": "package",
  4179. "path": "runtime.native.system.net.http/4.3.0",
  4180. "files": [
  4181. ".nupkg.metadata",
  4182. ".signature.p7s",
  4183. "ThirdPartyNotices.txt",
  4184. "dotnet_library_license.txt",
  4185. "lib/netstandard1.0/_._",
  4186. "runtime.native.system.net.http.4.3.0.nupkg.sha512",
  4187. "runtime.native.system.net.http.nuspec"
  4188. ]
  4189. },
  4190. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4191. "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==",
  4192. "type": "package",
  4193. "path": "runtime.native.system.security.cryptography.apple/4.3.0",
  4194. "files": [
  4195. ".nupkg.metadata",
  4196. ".signature.p7s",
  4197. "ThirdPartyNotices.txt",
  4198. "dotnet_library_license.txt",
  4199. "lib/netstandard1.0/_._",
  4200. "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4201. "runtime.native.system.security.cryptography.apple.nuspec"
  4202. ]
  4203. },
  4204. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4205. "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==",
  4206. "type": "package",
  4207. "path": "runtime.native.system.security.cryptography.openssl/4.3.0",
  4208. "files": [
  4209. ".nupkg.metadata",
  4210. ".signature.p7s",
  4211. "ThirdPartyNotices.txt",
  4212. "dotnet_library_license.txt",
  4213. "lib/netstandard1.0/_._",
  4214. "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4215. "runtime.native.system.security.cryptography.openssl.nuspec"
  4216. ]
  4217. },
  4218. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4219. "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==",
  4220. "type": "package",
  4221. "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4222. "files": [
  4223. ".nupkg.metadata",
  4224. ".signature.p7s",
  4225. "ThirdPartyNotices.txt",
  4226. "dotnet_library_license.txt",
  4227. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4228. "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4229. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4230. ]
  4231. },
  4232. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4233. "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==",
  4234. "type": "package",
  4235. "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4236. "files": [
  4237. ".nupkg.metadata",
  4238. ".signature.p7s",
  4239. "ThirdPartyNotices.txt",
  4240. "dotnet_library_license.txt",
  4241. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4242. "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4243. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4244. ]
  4245. },
  4246. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  4247. "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==",
  4248. "type": "package",
  4249. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0",
  4250. "files": [
  4251. ".nupkg.metadata",
  4252. ".signature.p7s",
  4253. "ThirdPartyNotices.txt",
  4254. "dotnet_library_license.txt",
  4255. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
  4256. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec",
  4257. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  4258. ]
  4259. },
  4260. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4261. "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==",
  4262. "type": "package",
  4263. "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4264. "files": [
  4265. ".nupkg.metadata",
  4266. ".signature.p7s",
  4267. "ThirdPartyNotices.txt",
  4268. "dotnet_library_license.txt",
  4269. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4270. "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4271. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  4272. ]
  4273. },
  4274. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4275. "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==",
  4276. "type": "package",
  4277. "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4278. "files": [
  4279. ".nupkg.metadata",
  4280. ".signature.p7s",
  4281. "ThirdPartyNotices.txt",
  4282. "dotnet_library_license.txt",
  4283. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4284. "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4285. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4286. ]
  4287. },
  4288. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4289. "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==",
  4290. "type": "package",
  4291. "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4292. "files": [
  4293. ".nupkg.metadata",
  4294. ".signature.p7s",
  4295. "ThirdPartyNotices.txt",
  4296. "dotnet_library_license.txt",
  4297. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4298. "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4299. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4300. ]
  4301. },
  4302. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4303. "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==",
  4304. "type": "package",
  4305. "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4306. "files": [
  4307. ".nupkg.metadata",
  4308. ".signature.p7s",
  4309. "ThirdPartyNotices.txt",
  4310. "dotnet_library_license.txt",
  4311. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4312. "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4313. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4314. ]
  4315. },
  4316. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  4317. "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==",
  4318. "type": "package",
  4319. "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0",
  4320. "files": [
  4321. ".nupkg.metadata",
  4322. ".signature.p7s",
  4323. "ThirdPartyNotices.txt",
  4324. "dotnet_library_license.txt",
  4325. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  4326. "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec",
  4327. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  4328. ]
  4329. },
  4330. "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4331. "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
  4332. "type": "package",
  4333. "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4334. "files": [
  4335. ".nupkg.metadata",
  4336. ".signature.p7s",
  4337. "ThirdPartyNotices.txt",
  4338. "dotnet_library_license.txt",
  4339. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4340. "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec",
  4341. "runtimes/win-arm64/native/sni.dll",
  4342. "useSharedDesignerContext.txt",
  4343. "version.txt"
  4344. ]
  4345. },
  4346. "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4347. "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
  4348. "type": "package",
  4349. "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
  4350. "files": [
  4351. ".nupkg.metadata",
  4352. ".signature.p7s",
  4353. "ThirdPartyNotices.txt",
  4354. "dotnet_library_license.txt",
  4355. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4356. "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec",
  4357. "runtimes/win-x64/native/sni.dll",
  4358. "useSharedDesignerContext.txt",
  4359. "version.txt"
  4360. ]
  4361. },
  4362. "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
  4363. "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
  4364. "type": "package",
  4365. "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
  4366. "files": [
  4367. ".nupkg.metadata",
  4368. ".signature.p7s",
  4369. "ThirdPartyNotices.txt",
  4370. "dotnet_library_license.txt",
  4371. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
  4372. "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec",
  4373. "runtimes/win-x86/native/sni.dll",
  4374. "useSharedDesignerContext.txt",
  4375. "version.txt"
  4376. ]
  4377. },
  4378. "System.AppContext/4.3.0": {
  4379. "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==",
  4380. "type": "package",
  4381. "path": "system.appcontext/4.3.0",
  4382. "files": [
  4383. ".nupkg.metadata",
  4384. ".signature.p7s",
  4385. "ThirdPartyNotices.txt",
  4386. "dotnet_library_license.txt",
  4387. "lib/MonoAndroid10/_._",
  4388. "lib/MonoTouch10/_._",
  4389. "lib/net46/System.AppContext.dll",
  4390. "lib/net463/System.AppContext.dll",
  4391. "lib/netcore50/System.AppContext.dll",
  4392. "lib/netstandard1.6/System.AppContext.dll",
  4393. "lib/xamarinios10/_._",
  4394. "lib/xamarinmac20/_._",
  4395. "lib/xamarintvos10/_._",
  4396. "lib/xamarinwatchos10/_._",
  4397. "ref/MonoAndroid10/_._",
  4398. "ref/MonoTouch10/_._",
  4399. "ref/net46/System.AppContext.dll",
  4400. "ref/net463/System.AppContext.dll",
  4401. "ref/netstandard/_._",
  4402. "ref/netstandard1.3/System.AppContext.dll",
  4403. "ref/netstandard1.3/System.AppContext.xml",
  4404. "ref/netstandard1.3/de/System.AppContext.xml",
  4405. "ref/netstandard1.3/es/System.AppContext.xml",
  4406. "ref/netstandard1.3/fr/System.AppContext.xml",
  4407. "ref/netstandard1.3/it/System.AppContext.xml",
  4408. "ref/netstandard1.3/ja/System.AppContext.xml",
  4409. "ref/netstandard1.3/ko/System.AppContext.xml",
  4410. "ref/netstandard1.3/ru/System.AppContext.xml",
  4411. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  4412. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  4413. "ref/netstandard1.6/System.AppContext.dll",
  4414. "ref/netstandard1.6/System.AppContext.xml",
  4415. "ref/netstandard1.6/de/System.AppContext.xml",
  4416. "ref/netstandard1.6/es/System.AppContext.xml",
  4417. "ref/netstandard1.6/fr/System.AppContext.xml",
  4418. "ref/netstandard1.6/it/System.AppContext.xml",
  4419. "ref/netstandard1.6/ja/System.AppContext.xml",
  4420. "ref/netstandard1.6/ko/System.AppContext.xml",
  4421. "ref/netstandard1.6/ru/System.AppContext.xml",
  4422. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  4423. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  4424. "ref/xamarinios10/_._",
  4425. "ref/xamarinmac20/_._",
  4426. "ref/xamarintvos10/_._",
  4427. "ref/xamarinwatchos10/_._",
  4428. "runtimes/aot/lib/netcore50/System.AppContext.dll",
  4429. "system.appcontext.4.3.0.nupkg.sha512",
  4430. "system.appcontext.nuspec"
  4431. ]
  4432. },
  4433. "System.Buffers/4.3.0": {
  4434. "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==",
  4435. "type": "package",
  4436. "path": "system.buffers/4.3.0",
  4437. "files": [
  4438. ".nupkg.metadata",
  4439. ".signature.p7s",
  4440. "ThirdPartyNotices.txt",
  4441. "dotnet_library_license.txt",
  4442. "lib/netstandard1.1/.xml",
  4443. "lib/netstandard1.1/System.Buffers.dll",
  4444. "system.buffers.4.3.0.nupkg.sha512",
  4445. "system.buffers.nuspec"
  4446. ]
  4447. },
  4448. "System.Collections/4.3.0": {
  4449. "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
  4450. "type": "package",
  4451. "path": "system.collections/4.3.0",
  4452. "files": [
  4453. ".nupkg.metadata",
  4454. ".signature.p7s",
  4455. "ThirdPartyNotices.txt",
  4456. "dotnet_library_license.txt",
  4457. "lib/MonoAndroid10/_._",
  4458. "lib/MonoTouch10/_._",
  4459. "lib/net45/_._",
  4460. "lib/portable-net45+win8+wp8+wpa81/_._",
  4461. "lib/win8/_._",
  4462. "lib/wp80/_._",
  4463. "lib/wpa81/_._",
  4464. "lib/xamarinios10/_._",
  4465. "lib/xamarinmac20/_._",
  4466. "lib/xamarintvos10/_._",
  4467. "lib/xamarinwatchos10/_._",
  4468. "ref/MonoAndroid10/_._",
  4469. "ref/MonoTouch10/_._",
  4470. "ref/net45/_._",
  4471. "ref/netcore50/System.Collections.dll",
  4472. "ref/netcore50/System.Collections.xml",
  4473. "ref/netcore50/de/System.Collections.xml",
  4474. "ref/netcore50/es/System.Collections.xml",
  4475. "ref/netcore50/fr/System.Collections.xml",
  4476. "ref/netcore50/it/System.Collections.xml",
  4477. "ref/netcore50/ja/System.Collections.xml",
  4478. "ref/netcore50/ko/System.Collections.xml",
  4479. "ref/netcore50/ru/System.Collections.xml",
  4480. "ref/netcore50/zh-hans/System.Collections.xml",
  4481. "ref/netcore50/zh-hant/System.Collections.xml",
  4482. "ref/netstandard1.0/System.Collections.dll",
  4483. "ref/netstandard1.0/System.Collections.xml",
  4484. "ref/netstandard1.0/de/System.Collections.xml",
  4485. "ref/netstandard1.0/es/System.Collections.xml",
  4486. "ref/netstandard1.0/fr/System.Collections.xml",
  4487. "ref/netstandard1.0/it/System.Collections.xml",
  4488. "ref/netstandard1.0/ja/System.Collections.xml",
  4489. "ref/netstandard1.0/ko/System.Collections.xml",
  4490. "ref/netstandard1.0/ru/System.Collections.xml",
  4491. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  4492. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  4493. "ref/netstandard1.3/System.Collections.dll",
  4494. "ref/netstandard1.3/System.Collections.xml",
  4495. "ref/netstandard1.3/de/System.Collections.xml",
  4496. "ref/netstandard1.3/es/System.Collections.xml",
  4497. "ref/netstandard1.3/fr/System.Collections.xml",
  4498. "ref/netstandard1.3/it/System.Collections.xml",
  4499. "ref/netstandard1.3/ja/System.Collections.xml",
  4500. "ref/netstandard1.3/ko/System.Collections.xml",
  4501. "ref/netstandard1.3/ru/System.Collections.xml",
  4502. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  4503. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  4504. "ref/portable-net45+win8+wp8+wpa81/_._",
  4505. "ref/win8/_._",
  4506. "ref/wp80/_._",
  4507. "ref/wpa81/_._",
  4508. "ref/xamarinios10/_._",
  4509. "ref/xamarinmac20/_._",
  4510. "ref/xamarintvos10/_._",
  4511. "ref/xamarinwatchos10/_._",
  4512. "system.collections.4.3.0.nupkg.sha512",
  4513. "system.collections.nuspec"
  4514. ]
  4515. },
  4516. "System.Collections.Concurrent/4.3.0": {
  4517. "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==",
  4518. "type": "package",
  4519. "path": "system.collections.concurrent/4.3.0",
  4520. "files": [
  4521. ".nupkg.metadata",
  4522. ".signature.p7s",
  4523. "ThirdPartyNotices.txt",
  4524. "dotnet_library_license.txt",
  4525. "lib/MonoAndroid10/_._",
  4526. "lib/MonoTouch10/_._",
  4527. "lib/net45/_._",
  4528. "lib/netcore50/System.Collections.Concurrent.dll",
  4529. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  4530. "lib/portable-net45+win8+wpa81/_._",
  4531. "lib/win8/_._",
  4532. "lib/wpa81/_._",
  4533. "lib/xamarinios10/_._",
  4534. "lib/xamarinmac20/_._",
  4535. "lib/xamarintvos10/_._",
  4536. "lib/xamarinwatchos10/_._",
  4537. "ref/MonoAndroid10/_._",
  4538. "ref/MonoTouch10/_._",
  4539. "ref/net45/_._",
  4540. "ref/netcore50/System.Collections.Concurrent.dll",
  4541. "ref/netcore50/System.Collections.Concurrent.xml",
  4542. "ref/netcore50/de/System.Collections.Concurrent.xml",
  4543. "ref/netcore50/es/System.Collections.Concurrent.xml",
  4544. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  4545. "ref/netcore50/it/System.Collections.Concurrent.xml",
  4546. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  4547. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  4548. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  4549. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  4550. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  4551. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  4552. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  4553. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  4554. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  4555. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  4556. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  4557. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  4558. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  4559. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  4560. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  4561. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  4562. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  4563. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  4564. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  4565. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  4566. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  4567. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  4568. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  4569. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  4570. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  4571. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  4572. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  4573. "ref/portable-net45+win8+wpa81/_._",
  4574. "ref/win8/_._",
  4575. "ref/wpa81/_._",
  4576. "ref/xamarinios10/_._",
  4577. "ref/xamarinmac20/_._",
  4578. "ref/xamarintvos10/_._",
  4579. "ref/xamarinwatchos10/_._",
  4580. "system.collections.concurrent.4.3.0.nupkg.sha512",
  4581. "system.collections.concurrent.nuspec"
  4582. ]
  4583. },
  4584. "System.Collections.Immutable/1.7.1": {
  4585. "sha512": "B43Zsz5EfMwyEbnObwRxW5u85fzJma3lrDeGcSAV1qkhSRTNY5uXAByTn9h9ddNdhM+4/YoLc/CI43umjwIl9Q==",
  4586. "type": "package",
  4587. "path": "system.collections.immutable/1.7.1",
  4588. "files": [
  4589. ".nupkg.metadata",
  4590. ".signature.p7s",
  4591. "Icon.png",
  4592. "LICENSE.TXT",
  4593. "THIRD-PARTY-NOTICES.TXT",
  4594. "lib/net461/System.Collections.Immutable.dll",
  4595. "lib/net461/System.Collections.Immutable.xml",
  4596. "lib/netstandard1.0/System.Collections.Immutable.dll",
  4597. "lib/netstandard1.0/System.Collections.Immutable.xml",
  4598. "lib/netstandard1.3/System.Collections.Immutable.dll",
  4599. "lib/netstandard1.3/System.Collections.Immutable.xml",
  4600. "lib/netstandard2.0/System.Collections.Immutable.dll",
  4601. "lib/netstandard2.0/System.Collections.Immutable.xml",
  4602. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  4603. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
  4604. "system.collections.immutable.1.7.1.nupkg.sha512",
  4605. "system.collections.immutable.nuspec",
  4606. "useSharedDesignerContext.txt",
  4607. "version.txt"
  4608. ]
  4609. },
  4610. "System.Collections.NonGeneric/4.3.0": {
  4611. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  4612. "type": "package",
  4613. "path": "system.collections.nongeneric/4.3.0",
  4614. "files": [
  4615. ".nupkg.metadata",
  4616. ".signature.p7s",
  4617. "ThirdPartyNotices.txt",
  4618. "dotnet_library_license.txt",
  4619. "lib/MonoAndroid10/_._",
  4620. "lib/MonoTouch10/_._",
  4621. "lib/net46/System.Collections.NonGeneric.dll",
  4622. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  4623. "lib/xamarinios10/_._",
  4624. "lib/xamarinmac20/_._",
  4625. "lib/xamarintvos10/_._",
  4626. "lib/xamarinwatchos10/_._",
  4627. "ref/MonoAndroid10/_._",
  4628. "ref/MonoTouch10/_._",
  4629. "ref/net46/System.Collections.NonGeneric.dll",
  4630. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  4631. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  4632. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  4633. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  4634. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  4635. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  4636. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  4637. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  4638. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  4639. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  4640. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  4641. "ref/xamarinios10/_._",
  4642. "ref/xamarinmac20/_._",
  4643. "ref/xamarintvos10/_._",
  4644. "ref/xamarinwatchos10/_._",
  4645. "system.collections.nongeneric.4.3.0.nupkg.sha512",
  4646. "system.collections.nongeneric.nuspec"
  4647. ]
  4648. },
  4649. "System.Collections.Specialized/4.3.0": {
  4650. "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==",
  4651. "type": "package",
  4652. "path": "system.collections.specialized/4.3.0",
  4653. "files": [
  4654. ".nupkg.metadata",
  4655. ".signature.p7s",
  4656. "ThirdPartyNotices.txt",
  4657. "dotnet_library_license.txt",
  4658. "lib/MonoAndroid10/_._",
  4659. "lib/MonoTouch10/_._",
  4660. "lib/net46/System.Collections.Specialized.dll",
  4661. "lib/netstandard1.3/System.Collections.Specialized.dll",
  4662. "lib/xamarinios10/_._",
  4663. "lib/xamarinmac20/_._",
  4664. "lib/xamarintvos10/_._",
  4665. "lib/xamarinwatchos10/_._",
  4666. "ref/MonoAndroid10/_._",
  4667. "ref/MonoTouch10/_._",
  4668. "ref/net46/System.Collections.Specialized.dll",
  4669. "ref/netstandard1.3/System.Collections.Specialized.dll",
  4670. "ref/netstandard1.3/System.Collections.Specialized.xml",
  4671. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  4672. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  4673. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  4674. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  4675. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  4676. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  4677. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  4678. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  4679. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  4680. "ref/xamarinios10/_._",
  4681. "ref/xamarinmac20/_._",
  4682. "ref/xamarintvos10/_._",
  4683. "ref/xamarinwatchos10/_._",
  4684. "system.collections.specialized.4.3.0.nupkg.sha512",
  4685. "system.collections.specialized.nuspec"
  4686. ]
  4687. },
  4688. "System.ComponentModel/4.3.0": {
  4689. "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==",
  4690. "type": "package",
  4691. "path": "system.componentmodel/4.3.0",
  4692. "files": [
  4693. ".nupkg.metadata",
  4694. ".signature.p7s",
  4695. "ThirdPartyNotices.txt",
  4696. "dotnet_library_license.txt",
  4697. "lib/MonoAndroid10/_._",
  4698. "lib/MonoTouch10/_._",
  4699. "lib/net45/_._",
  4700. "lib/netcore50/System.ComponentModel.dll",
  4701. "lib/netstandard1.3/System.ComponentModel.dll",
  4702. "lib/portable-net45+win8+wp8+wpa81/_._",
  4703. "lib/win8/_._",
  4704. "lib/wp80/_._",
  4705. "lib/wpa81/_._",
  4706. "lib/xamarinios10/_._",
  4707. "lib/xamarinmac20/_._",
  4708. "lib/xamarintvos10/_._",
  4709. "lib/xamarinwatchos10/_._",
  4710. "ref/MonoAndroid10/_._",
  4711. "ref/MonoTouch10/_._",
  4712. "ref/net45/_._",
  4713. "ref/netcore50/System.ComponentModel.dll",
  4714. "ref/netcore50/System.ComponentModel.xml",
  4715. "ref/netcore50/de/System.ComponentModel.xml",
  4716. "ref/netcore50/es/System.ComponentModel.xml",
  4717. "ref/netcore50/fr/System.ComponentModel.xml",
  4718. "ref/netcore50/it/System.ComponentModel.xml",
  4719. "ref/netcore50/ja/System.ComponentModel.xml",
  4720. "ref/netcore50/ko/System.ComponentModel.xml",
  4721. "ref/netcore50/ru/System.ComponentModel.xml",
  4722. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  4723. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  4724. "ref/netstandard1.0/System.ComponentModel.dll",
  4725. "ref/netstandard1.0/System.ComponentModel.xml",
  4726. "ref/netstandard1.0/de/System.ComponentModel.xml",
  4727. "ref/netstandard1.0/es/System.ComponentModel.xml",
  4728. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  4729. "ref/netstandard1.0/it/System.ComponentModel.xml",
  4730. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  4731. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  4732. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  4733. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  4734. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  4735. "ref/portable-net45+win8+wp8+wpa81/_._",
  4736. "ref/win8/_._",
  4737. "ref/wp80/_._",
  4738. "ref/wpa81/_._",
  4739. "ref/xamarinios10/_._",
  4740. "ref/xamarinmac20/_._",
  4741. "ref/xamarintvos10/_._",
  4742. "ref/xamarinwatchos10/_._",
  4743. "system.componentmodel.4.3.0.nupkg.sha512",
  4744. "system.componentmodel.nuspec"
  4745. ]
  4746. },
  4747. "System.ComponentModel.Annotations/4.7.0": {
  4748. "sha512": "0YFqjhp/mYkDGpU0Ye1GjE53HMp9UVfGN7seGpAMttAC0C40v5gw598jCgpbBLMmCo0E5YRLBv5Z2doypO49ZQ==",
  4749. "type": "package",
  4750. "path": "system.componentmodel.annotations/4.7.0",
  4751. "files": [
  4752. ".nupkg.metadata",
  4753. ".signature.p7s",
  4754. "LICENSE.TXT",
  4755. "THIRD-PARTY-NOTICES.TXT",
  4756. "lib/MonoAndroid10/_._",
  4757. "lib/MonoTouch10/_._",
  4758. "lib/net45/_._",
  4759. "lib/net461/System.ComponentModel.Annotations.dll",
  4760. "lib/netcore50/System.ComponentModel.Annotations.dll",
  4761. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  4762. "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
  4763. "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
  4764. "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
  4765. "lib/portable-net45+win8/_._",
  4766. "lib/win8/_._",
  4767. "lib/xamarinios10/_._",
  4768. "lib/xamarinmac20/_._",
  4769. "lib/xamarintvos10/_._",
  4770. "lib/xamarinwatchos10/_._",
  4771. "ref/MonoAndroid10/_._",
  4772. "ref/MonoTouch10/_._",
  4773. "ref/net45/_._",
  4774. "ref/net461/System.ComponentModel.Annotations.dll",
  4775. "ref/net461/System.ComponentModel.Annotations.xml",
  4776. "ref/netcore50/System.ComponentModel.Annotations.dll",
  4777. "ref/netcore50/System.ComponentModel.Annotations.xml",
  4778. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  4779. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  4780. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  4781. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  4782. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  4783. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  4784. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  4785. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  4786. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  4787. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  4788. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  4789. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  4790. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  4791. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  4792. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  4793. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  4794. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  4795. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  4796. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  4797. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  4798. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  4799. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  4800. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  4801. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  4802. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  4803. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  4804. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  4805. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  4806. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  4807. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  4808. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  4809. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  4810. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  4811. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  4812. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  4813. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  4814. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  4815. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  4816. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  4817. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  4818. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  4819. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  4820. "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
  4821. "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
  4822. "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
  4823. "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
  4824. "ref/portable-net45+win8/_._",
  4825. "ref/win8/_._",
  4826. "ref/xamarinios10/_._",
  4827. "ref/xamarinmac20/_._",
  4828. "ref/xamarintvos10/_._",
  4829. "ref/xamarinwatchos10/_._",
  4830. "system.componentmodel.annotations.4.7.0.nupkg.sha512",
  4831. "system.componentmodel.annotations.nuspec",
  4832. "useSharedDesignerContext.txt",
  4833. "version.txt"
  4834. ]
  4835. },
  4836. "System.ComponentModel.Primitives/4.3.0": {
  4837. "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==",
  4838. "type": "package",
  4839. "path": "system.componentmodel.primitives/4.3.0",
  4840. "files": [
  4841. ".nupkg.metadata",
  4842. ".signature.p7s",
  4843. "ThirdPartyNotices.txt",
  4844. "dotnet_library_license.txt",
  4845. "lib/MonoAndroid10/_._",
  4846. "lib/MonoTouch10/_._",
  4847. "lib/net45/System.ComponentModel.Primitives.dll",
  4848. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  4849. "lib/xamarinios10/_._",
  4850. "lib/xamarinmac20/_._",
  4851. "lib/xamarintvos10/_._",
  4852. "lib/xamarinwatchos10/_._",
  4853. "ref/MonoAndroid10/_._",
  4854. "ref/MonoTouch10/_._",
  4855. "ref/net45/System.ComponentModel.Primitives.dll",
  4856. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  4857. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  4858. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  4859. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  4860. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  4861. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  4862. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  4863. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  4864. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  4865. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  4866. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  4867. "ref/xamarinios10/_._",
  4868. "ref/xamarinmac20/_._",
  4869. "ref/xamarintvos10/_._",
  4870. "ref/xamarinwatchos10/_._",
  4871. "system.componentmodel.primitives.4.3.0.nupkg.sha512",
  4872. "system.componentmodel.primitives.nuspec"
  4873. ]
  4874. },
  4875. "System.ComponentModel.TypeConverter/4.3.0": {
  4876. "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==",
  4877. "type": "package",
  4878. "path": "system.componentmodel.typeconverter/4.3.0",
  4879. "files": [
  4880. ".nupkg.metadata",
  4881. ".signature.p7s",
  4882. "ThirdPartyNotices.txt",
  4883. "dotnet_library_license.txt",
  4884. "lib/MonoAndroid10/_._",
  4885. "lib/MonoTouch10/_._",
  4886. "lib/net45/System.ComponentModel.TypeConverter.dll",
  4887. "lib/net462/System.ComponentModel.TypeConverter.dll",
  4888. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4889. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4890. "lib/xamarinios10/_._",
  4891. "lib/xamarinmac20/_._",
  4892. "lib/xamarintvos10/_._",
  4893. "lib/xamarinwatchos10/_._",
  4894. "ref/MonoAndroid10/_._",
  4895. "ref/MonoTouch10/_._",
  4896. "ref/net45/System.ComponentModel.TypeConverter.dll",
  4897. "ref/net462/System.ComponentModel.TypeConverter.dll",
  4898. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  4899. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  4900. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  4901. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  4902. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  4903. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  4904. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  4905. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  4906. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  4907. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  4908. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  4909. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  4910. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  4911. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  4912. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  4913. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  4914. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  4915. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  4916. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  4917. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  4918. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  4919. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  4920. "ref/xamarinios10/_._",
  4921. "ref/xamarinmac20/_._",
  4922. "ref/xamarintvos10/_._",
  4923. "ref/xamarinwatchos10/_._",
  4924. "system.componentmodel.typeconverter.4.3.0.nupkg.sha512",
  4925. "system.componentmodel.typeconverter.nuspec"
  4926. ]
  4927. },
  4928. "System.Composition/1.0.31": {
  4929. "sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
  4930. "type": "package",
  4931. "path": "system.composition/1.0.31",
  4932. "files": [
  4933. ".nupkg.metadata",
  4934. ".signature.p7s",
  4935. "ThirdPartyNotices.txt",
  4936. "dotnet_library_license.txt",
  4937. "system.composition.1.0.31.nupkg.sha512",
  4938. "system.composition.nuspec"
  4939. ]
  4940. },
  4941. "System.Composition.AttributedModel/1.0.31": {
  4942. "sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
  4943. "type": "package",
  4944. "path": "system.composition.attributedmodel/1.0.31",
  4945. "files": [
  4946. ".nupkg.metadata",
  4947. ".signature.p7s",
  4948. "ThirdPartyNotices.txt",
  4949. "dotnet_library_license.txt",
  4950. "lib/netstandard1.0/System.Composition.AttributedModel.dll",
  4951. "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll",
  4952. "system.composition.attributedmodel.1.0.31.nupkg.sha512",
  4953. "system.composition.attributedmodel.nuspec"
  4954. ]
  4955. },
  4956. "System.Composition.Convention/1.0.31": {
  4957. "sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
  4958. "type": "package",
  4959. "path": "system.composition.convention/1.0.31",
  4960. "files": [
  4961. ".nupkg.metadata",
  4962. ".signature.p7s",
  4963. "ThirdPartyNotices.txt",
  4964. "dotnet_library_license.txt",
  4965. "lib/netstandard1.0/System.Composition.Convention.dll",
  4966. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll",
  4967. "system.composition.convention.1.0.31.nupkg.sha512",
  4968. "system.composition.convention.nuspec"
  4969. ]
  4970. },
  4971. "System.Composition.Hosting/1.0.31": {
  4972. "sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
  4973. "type": "package",
  4974. "path": "system.composition.hosting/1.0.31",
  4975. "files": [
  4976. ".nupkg.metadata",
  4977. ".signature.p7s",
  4978. "ThirdPartyNotices.txt",
  4979. "dotnet_library_license.txt",
  4980. "lib/netstandard1.0/System.Composition.Hosting.dll",
  4981. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll",
  4982. "system.composition.hosting.1.0.31.nupkg.sha512",
  4983. "system.composition.hosting.nuspec"
  4984. ]
  4985. },
  4986. "System.Composition.Runtime/1.0.31": {
  4987. "sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
  4988. "type": "package",
  4989. "path": "system.composition.runtime/1.0.31",
  4990. "files": [
  4991. ".nupkg.metadata",
  4992. ".signature.p7s",
  4993. "ThirdPartyNotices.txt",
  4994. "dotnet_library_license.txt",
  4995. "lib/netstandard1.0/System.Composition.Runtime.dll",
  4996. "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll",
  4997. "system.composition.runtime.1.0.31.nupkg.sha512",
  4998. "system.composition.runtime.nuspec"
  4999. ]
  5000. },
  5001. "System.Composition.TypedParts/1.0.31": {
  5002. "sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
  5003. "type": "package",
  5004. "path": "system.composition.typedparts/1.0.31",
  5005. "files": [
  5006. ".nupkg.metadata",
  5007. ".signature.p7s",
  5008. "ThirdPartyNotices.txt",
  5009. "dotnet_library_license.txt",
  5010. "lib/netstandard1.0/System.Composition.TypedParts.dll",
  5011. "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll",
  5012. "system.composition.typedparts.1.0.31.nupkg.sha512",
  5013. "system.composition.typedparts.nuspec"
  5014. ]
  5015. },
  5016. "System.Configuration.ConfigurationManager/4.5.0": {
  5017. "sha512": "UIFvaFfuKhLr9u5tWMxmVoDPkFeD+Qv8gUuap4aZgVGYSYMdERck4OhLN/2gulAc0nYTEigWXSJNNWshrmxnng==",
  5018. "type": "package",
  5019. "path": "system.configuration.configurationmanager/4.5.0",
  5020. "files": [
  5021. ".nupkg.metadata",
  5022. ".signature.p7s",
  5023. "LICENSE.TXT",
  5024. "THIRD-PARTY-NOTICES.TXT",
  5025. "lib/net461/System.Configuration.ConfigurationManager.dll",
  5026. "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5027. "ref/net461/System.Configuration.ConfigurationManager.dll",
  5028. "ref/net461/System.Configuration.ConfigurationManager.xml",
  5029. "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll",
  5030. "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml",
  5031. "system.configuration.configurationmanager.4.5.0.nupkg.sha512",
  5032. "system.configuration.configurationmanager.nuspec",
  5033. "useSharedDesignerContext.txt",
  5034. "version.txt"
  5035. ]
  5036. },
  5037. "System.Console/4.3.0": {
  5038. "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
  5039. "type": "package",
  5040. "path": "system.console/4.3.0",
  5041. "files": [
  5042. ".nupkg.metadata",
  5043. ".signature.p7s",
  5044. "ThirdPartyNotices.txt",
  5045. "dotnet_library_license.txt",
  5046. "lib/MonoAndroid10/_._",
  5047. "lib/MonoTouch10/_._",
  5048. "lib/net46/System.Console.dll",
  5049. "lib/xamarinios10/_._",
  5050. "lib/xamarinmac20/_._",
  5051. "lib/xamarintvos10/_._",
  5052. "lib/xamarinwatchos10/_._",
  5053. "ref/MonoAndroid10/_._",
  5054. "ref/MonoTouch10/_._",
  5055. "ref/net46/System.Console.dll",
  5056. "ref/netstandard1.3/System.Console.dll",
  5057. "ref/netstandard1.3/System.Console.xml",
  5058. "ref/netstandard1.3/de/System.Console.xml",
  5059. "ref/netstandard1.3/es/System.Console.xml",
  5060. "ref/netstandard1.3/fr/System.Console.xml",
  5061. "ref/netstandard1.3/it/System.Console.xml",
  5062. "ref/netstandard1.3/ja/System.Console.xml",
  5063. "ref/netstandard1.3/ko/System.Console.xml",
  5064. "ref/netstandard1.3/ru/System.Console.xml",
  5065. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5066. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5067. "ref/xamarinios10/_._",
  5068. "ref/xamarinmac20/_._",
  5069. "ref/xamarintvos10/_._",
  5070. "ref/xamarinwatchos10/_._",
  5071. "system.console.4.3.0.nupkg.sha512",
  5072. "system.console.nuspec"
  5073. ]
  5074. },
  5075. "System.Diagnostics.Debug/4.3.0": {
  5076. "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
  5077. "type": "package",
  5078. "path": "system.diagnostics.debug/4.3.0",
  5079. "files": [
  5080. ".nupkg.metadata",
  5081. ".signature.p7s",
  5082. "ThirdPartyNotices.txt",
  5083. "dotnet_library_license.txt",
  5084. "lib/MonoAndroid10/_._",
  5085. "lib/MonoTouch10/_._",
  5086. "lib/net45/_._",
  5087. "lib/portable-net45+win8+wp8+wpa81/_._",
  5088. "lib/win8/_._",
  5089. "lib/wp80/_._",
  5090. "lib/wpa81/_._",
  5091. "lib/xamarinios10/_._",
  5092. "lib/xamarinmac20/_._",
  5093. "lib/xamarintvos10/_._",
  5094. "lib/xamarinwatchos10/_._",
  5095. "ref/MonoAndroid10/_._",
  5096. "ref/MonoTouch10/_._",
  5097. "ref/net45/_._",
  5098. "ref/netcore50/System.Diagnostics.Debug.dll",
  5099. "ref/netcore50/System.Diagnostics.Debug.xml",
  5100. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5101. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5102. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  5103. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  5104. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  5105. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  5106. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  5107. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  5108. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  5109. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  5110. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  5111. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  5112. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  5113. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  5114. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  5115. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  5116. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  5117. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  5118. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  5119. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  5120. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  5121. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  5122. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  5123. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  5124. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  5125. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  5126. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  5127. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  5128. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  5129. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  5130. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  5131. "ref/portable-net45+win8+wp8+wpa81/_._",
  5132. "ref/win8/_._",
  5133. "ref/wp80/_._",
  5134. "ref/wpa81/_._",
  5135. "ref/xamarinios10/_._",
  5136. "ref/xamarinmac20/_._",
  5137. "ref/xamarintvos10/_._",
  5138. "ref/xamarinwatchos10/_._",
  5139. "system.diagnostics.debug.4.3.0.nupkg.sha512",
  5140. "system.diagnostics.debug.nuspec"
  5141. ]
  5142. },
  5143. "System.Diagnostics.DiagnosticSource/4.7.1": {
  5144. "sha512": "j81Lovt90PDAq8kLpaJfJKV/rWdWuEk6jfV+MBkee33vzYLEUsy4gXK8laa9V2nZlLM9VM9yA/OOQxxPEJKAMw==",
  5145. "type": "package",
  5146. "path": "system.diagnostics.diagnosticsource/4.7.1",
  5147. "files": [
  5148. ".nupkg.metadata",
  5149. ".signature.p7s",
  5150. "Icon.png",
  5151. "LICENSE.TXT",
  5152. "THIRD-PARTY-NOTICES.TXT",
  5153. "lib/net45/System.Diagnostics.DiagnosticSource.dll",
  5154. "lib/net45/System.Diagnostics.DiagnosticSource.xml",
  5155. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  5156. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  5157. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  5158. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  5159. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  5160. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  5161. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  5162. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml",
  5163. "system.diagnostics.diagnosticsource.4.7.1.nupkg.sha512",
  5164. "system.diagnostics.diagnosticsource.nuspec",
  5165. "useSharedDesignerContext.txt",
  5166. "version.txt"
  5167. ]
  5168. },
  5169. "System.Diagnostics.Tools/4.3.0": {
  5170. "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==",
  5171. "type": "package",
  5172. "path": "system.diagnostics.tools/4.3.0",
  5173. "files": [
  5174. ".nupkg.metadata",
  5175. ".signature.p7s",
  5176. "ThirdPartyNotices.txt",
  5177. "dotnet_library_license.txt",
  5178. "lib/MonoAndroid10/_._",
  5179. "lib/MonoTouch10/_._",
  5180. "lib/net45/_._",
  5181. "lib/portable-net45+win8+wp8+wpa81/_._",
  5182. "lib/win8/_._",
  5183. "lib/wp80/_._",
  5184. "lib/wpa81/_._",
  5185. "lib/xamarinios10/_._",
  5186. "lib/xamarinmac20/_._",
  5187. "lib/xamarintvos10/_._",
  5188. "lib/xamarinwatchos10/_._",
  5189. "ref/MonoAndroid10/_._",
  5190. "ref/MonoTouch10/_._",
  5191. "ref/net45/_._",
  5192. "ref/netcore50/System.Diagnostics.Tools.dll",
  5193. "ref/netcore50/System.Diagnostics.Tools.xml",
  5194. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  5195. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  5196. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  5197. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  5198. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  5199. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  5200. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  5201. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  5202. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  5203. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  5204. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  5205. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  5206. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  5207. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  5208. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  5209. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  5210. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  5211. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  5212. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  5213. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  5214. "ref/portable-net45+win8+wp8+wpa81/_._",
  5215. "ref/win8/_._",
  5216. "ref/wp80/_._",
  5217. "ref/wpa81/_._",
  5218. "ref/xamarinios10/_._",
  5219. "ref/xamarinmac20/_._",
  5220. "ref/xamarintvos10/_._",
  5221. "ref/xamarinwatchos10/_._",
  5222. "system.diagnostics.tools.4.3.0.nupkg.sha512",
  5223. "system.diagnostics.tools.nuspec"
  5224. ]
  5225. },
  5226. "System.Diagnostics.Tracing/4.3.0": {
  5227. "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==",
  5228. "type": "package",
  5229. "path": "system.diagnostics.tracing/4.3.0",
  5230. "files": [
  5231. ".nupkg.metadata",
  5232. ".signature.p7s",
  5233. "ThirdPartyNotices.txt",
  5234. "dotnet_library_license.txt",
  5235. "lib/MonoAndroid10/_._",
  5236. "lib/MonoTouch10/_._",
  5237. "lib/net45/_._",
  5238. "lib/net462/System.Diagnostics.Tracing.dll",
  5239. "lib/portable-net45+win8+wpa81/_._",
  5240. "lib/win8/_._",
  5241. "lib/wpa81/_._",
  5242. "lib/xamarinios10/_._",
  5243. "lib/xamarinmac20/_._",
  5244. "lib/xamarintvos10/_._",
  5245. "lib/xamarinwatchos10/_._",
  5246. "ref/MonoAndroid10/_._",
  5247. "ref/MonoTouch10/_._",
  5248. "ref/net45/_._",
  5249. "ref/net462/System.Diagnostics.Tracing.dll",
  5250. "ref/netcore50/System.Diagnostics.Tracing.dll",
  5251. "ref/netcore50/System.Diagnostics.Tracing.xml",
  5252. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  5253. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  5254. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  5255. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  5256. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  5257. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  5258. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  5259. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  5260. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  5261. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  5262. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  5263. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  5264. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  5265. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  5266. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  5267. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  5268. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  5269. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  5270. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  5271. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  5272. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  5273. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  5274. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  5275. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  5276. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  5277. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  5278. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  5279. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  5280. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  5281. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  5282. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  5283. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  5284. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  5285. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  5286. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  5287. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  5288. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  5289. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  5290. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  5291. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  5292. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  5293. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  5294. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  5295. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  5296. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  5297. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  5298. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  5299. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  5300. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  5301. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  5302. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  5303. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  5304. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  5305. "ref/portable-net45+win8+wpa81/_._",
  5306. "ref/win8/_._",
  5307. "ref/wpa81/_._",
  5308. "ref/xamarinios10/_._",
  5309. "ref/xamarinmac20/_._",
  5310. "ref/xamarintvos10/_._",
  5311. "ref/xamarinwatchos10/_._",
  5312. "system.diagnostics.tracing.4.3.0.nupkg.sha512",
  5313. "system.diagnostics.tracing.nuspec"
  5314. ]
  5315. },
  5316. "System.Globalization/4.3.0": {
  5317. "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
  5318. "type": "package",
  5319. "path": "system.globalization/4.3.0",
  5320. "files": [
  5321. ".nupkg.metadata",
  5322. ".signature.p7s",
  5323. "ThirdPartyNotices.txt",
  5324. "dotnet_library_license.txt",
  5325. "lib/MonoAndroid10/_._",
  5326. "lib/MonoTouch10/_._",
  5327. "lib/net45/_._",
  5328. "lib/portable-net45+win8+wp8+wpa81/_._",
  5329. "lib/win8/_._",
  5330. "lib/wp80/_._",
  5331. "lib/wpa81/_._",
  5332. "lib/xamarinios10/_._",
  5333. "lib/xamarinmac20/_._",
  5334. "lib/xamarintvos10/_._",
  5335. "lib/xamarinwatchos10/_._",
  5336. "ref/MonoAndroid10/_._",
  5337. "ref/MonoTouch10/_._",
  5338. "ref/net45/_._",
  5339. "ref/netcore50/System.Globalization.dll",
  5340. "ref/netcore50/System.Globalization.xml",
  5341. "ref/netcore50/de/System.Globalization.xml",
  5342. "ref/netcore50/es/System.Globalization.xml",
  5343. "ref/netcore50/fr/System.Globalization.xml",
  5344. "ref/netcore50/it/System.Globalization.xml",
  5345. "ref/netcore50/ja/System.Globalization.xml",
  5346. "ref/netcore50/ko/System.Globalization.xml",
  5347. "ref/netcore50/ru/System.Globalization.xml",
  5348. "ref/netcore50/zh-hans/System.Globalization.xml",
  5349. "ref/netcore50/zh-hant/System.Globalization.xml",
  5350. "ref/netstandard1.0/System.Globalization.dll",
  5351. "ref/netstandard1.0/System.Globalization.xml",
  5352. "ref/netstandard1.0/de/System.Globalization.xml",
  5353. "ref/netstandard1.0/es/System.Globalization.xml",
  5354. "ref/netstandard1.0/fr/System.Globalization.xml",
  5355. "ref/netstandard1.0/it/System.Globalization.xml",
  5356. "ref/netstandard1.0/ja/System.Globalization.xml",
  5357. "ref/netstandard1.0/ko/System.Globalization.xml",
  5358. "ref/netstandard1.0/ru/System.Globalization.xml",
  5359. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  5360. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  5361. "ref/netstandard1.3/System.Globalization.dll",
  5362. "ref/netstandard1.3/System.Globalization.xml",
  5363. "ref/netstandard1.3/de/System.Globalization.xml",
  5364. "ref/netstandard1.3/es/System.Globalization.xml",
  5365. "ref/netstandard1.3/fr/System.Globalization.xml",
  5366. "ref/netstandard1.3/it/System.Globalization.xml",
  5367. "ref/netstandard1.3/ja/System.Globalization.xml",
  5368. "ref/netstandard1.3/ko/System.Globalization.xml",
  5369. "ref/netstandard1.3/ru/System.Globalization.xml",
  5370. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  5371. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  5372. "ref/portable-net45+win8+wp8+wpa81/_._",
  5373. "ref/win8/_._",
  5374. "ref/wp80/_._",
  5375. "ref/wpa81/_._",
  5376. "ref/xamarinios10/_._",
  5377. "ref/xamarinmac20/_._",
  5378. "ref/xamarintvos10/_._",
  5379. "ref/xamarinwatchos10/_._",
  5380. "system.globalization.4.3.0.nupkg.sha512",
  5381. "system.globalization.nuspec"
  5382. ]
  5383. },
  5384. "System.Globalization.Calendars/4.3.0": {
  5385. "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==",
  5386. "type": "package",
  5387. "path": "system.globalization.calendars/4.3.0",
  5388. "files": [
  5389. ".nupkg.metadata",
  5390. ".signature.p7s",
  5391. "ThirdPartyNotices.txt",
  5392. "dotnet_library_license.txt",
  5393. "lib/MonoAndroid10/_._",
  5394. "lib/MonoTouch10/_._",
  5395. "lib/net46/System.Globalization.Calendars.dll",
  5396. "lib/xamarinios10/_._",
  5397. "lib/xamarinmac20/_._",
  5398. "lib/xamarintvos10/_._",
  5399. "lib/xamarinwatchos10/_._",
  5400. "ref/MonoAndroid10/_._",
  5401. "ref/MonoTouch10/_._",
  5402. "ref/net46/System.Globalization.Calendars.dll",
  5403. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  5404. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  5405. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  5406. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  5407. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  5408. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  5409. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  5410. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  5411. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  5412. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  5413. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  5414. "ref/xamarinios10/_._",
  5415. "ref/xamarinmac20/_._",
  5416. "ref/xamarintvos10/_._",
  5417. "ref/xamarinwatchos10/_._",
  5418. "system.globalization.calendars.4.3.0.nupkg.sha512",
  5419. "system.globalization.calendars.nuspec"
  5420. ]
  5421. },
  5422. "System.Globalization.Extensions/4.3.0": {
  5423. "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==",
  5424. "type": "package",
  5425. "path": "system.globalization.extensions/4.3.0",
  5426. "files": [
  5427. ".nupkg.metadata",
  5428. ".signature.p7s",
  5429. "ThirdPartyNotices.txt",
  5430. "dotnet_library_license.txt",
  5431. "lib/MonoAndroid10/_._",
  5432. "lib/MonoTouch10/_._",
  5433. "lib/net46/System.Globalization.Extensions.dll",
  5434. "lib/xamarinios10/_._",
  5435. "lib/xamarinmac20/_._",
  5436. "lib/xamarintvos10/_._",
  5437. "lib/xamarinwatchos10/_._",
  5438. "ref/MonoAndroid10/_._",
  5439. "ref/MonoTouch10/_._",
  5440. "ref/net46/System.Globalization.Extensions.dll",
  5441. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  5442. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  5443. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  5444. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  5445. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  5446. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  5447. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  5448. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  5449. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  5450. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  5451. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  5452. "ref/xamarinios10/_._",
  5453. "ref/xamarinmac20/_._",
  5454. "ref/xamarintvos10/_._",
  5455. "ref/xamarinwatchos10/_._",
  5456. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5457. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  5458. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll",
  5459. "system.globalization.extensions.4.3.0.nupkg.sha512",
  5460. "system.globalization.extensions.nuspec"
  5461. ]
  5462. },
  5463. "System.IdentityModel.Tokens.Jwt/5.5.0": {
  5464. "sha512": "xa8kptJ+uf9hzj366f3pLcs5HFZ6dQMDKzEGq/yZNF0s3mVfyIhuQwgDcTJlAU4AROne/6Z5+vITwrW3gVNKIA==",
  5465. "type": "package",
  5466. "path": "system.identitymodel.tokens.jwt/5.5.0",
  5467. "files": [
  5468. ".nupkg.metadata",
  5469. ".signature.p7s",
  5470. "lib/net45/System.IdentityModel.Tokens.Jwt.dll",
  5471. "lib/net45/System.IdentityModel.Tokens.Jwt.xml",
  5472. "lib/net451/System.IdentityModel.Tokens.Jwt.dll",
  5473. "lib/net451/System.IdentityModel.Tokens.Jwt.xml",
  5474. "lib/net461/System.IdentityModel.Tokens.Jwt.dll",
  5475. "lib/net461/System.IdentityModel.Tokens.Jwt.xml",
  5476. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.dll",
  5477. "lib/netstandard1.4/System.IdentityModel.Tokens.Jwt.xml",
  5478. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll",
  5479. "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml",
  5480. "system.identitymodel.tokens.jwt.5.5.0.nupkg.sha512",
  5481. "system.identitymodel.tokens.jwt.nuspec"
  5482. ]
  5483. },
  5484. "System.IO/4.3.0": {
  5485. "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
  5486. "type": "package",
  5487. "path": "system.io/4.3.0",
  5488. "files": [
  5489. ".nupkg.metadata",
  5490. ".signature.p7s",
  5491. "ThirdPartyNotices.txt",
  5492. "dotnet_library_license.txt",
  5493. "lib/MonoAndroid10/_._",
  5494. "lib/MonoTouch10/_._",
  5495. "lib/net45/_._",
  5496. "lib/net462/System.IO.dll",
  5497. "lib/portable-net45+win8+wp8+wpa81/_._",
  5498. "lib/win8/_._",
  5499. "lib/wp80/_._",
  5500. "lib/wpa81/_._",
  5501. "lib/xamarinios10/_._",
  5502. "lib/xamarinmac20/_._",
  5503. "lib/xamarintvos10/_._",
  5504. "lib/xamarinwatchos10/_._",
  5505. "ref/MonoAndroid10/_._",
  5506. "ref/MonoTouch10/_._",
  5507. "ref/net45/_._",
  5508. "ref/net462/System.IO.dll",
  5509. "ref/netcore50/System.IO.dll",
  5510. "ref/netcore50/System.IO.xml",
  5511. "ref/netcore50/de/System.IO.xml",
  5512. "ref/netcore50/es/System.IO.xml",
  5513. "ref/netcore50/fr/System.IO.xml",
  5514. "ref/netcore50/it/System.IO.xml",
  5515. "ref/netcore50/ja/System.IO.xml",
  5516. "ref/netcore50/ko/System.IO.xml",
  5517. "ref/netcore50/ru/System.IO.xml",
  5518. "ref/netcore50/zh-hans/System.IO.xml",
  5519. "ref/netcore50/zh-hant/System.IO.xml",
  5520. "ref/netstandard1.0/System.IO.dll",
  5521. "ref/netstandard1.0/System.IO.xml",
  5522. "ref/netstandard1.0/de/System.IO.xml",
  5523. "ref/netstandard1.0/es/System.IO.xml",
  5524. "ref/netstandard1.0/fr/System.IO.xml",
  5525. "ref/netstandard1.0/it/System.IO.xml",
  5526. "ref/netstandard1.0/ja/System.IO.xml",
  5527. "ref/netstandard1.0/ko/System.IO.xml",
  5528. "ref/netstandard1.0/ru/System.IO.xml",
  5529. "ref/netstandard1.0/zh-hans/System.IO.xml",
  5530. "ref/netstandard1.0/zh-hant/System.IO.xml",
  5531. "ref/netstandard1.3/System.IO.dll",
  5532. "ref/netstandard1.3/System.IO.xml",
  5533. "ref/netstandard1.3/de/System.IO.xml",
  5534. "ref/netstandard1.3/es/System.IO.xml",
  5535. "ref/netstandard1.3/fr/System.IO.xml",
  5536. "ref/netstandard1.3/it/System.IO.xml",
  5537. "ref/netstandard1.3/ja/System.IO.xml",
  5538. "ref/netstandard1.3/ko/System.IO.xml",
  5539. "ref/netstandard1.3/ru/System.IO.xml",
  5540. "ref/netstandard1.3/zh-hans/System.IO.xml",
  5541. "ref/netstandard1.3/zh-hant/System.IO.xml",
  5542. "ref/netstandard1.5/System.IO.dll",
  5543. "ref/netstandard1.5/System.IO.xml",
  5544. "ref/netstandard1.5/de/System.IO.xml",
  5545. "ref/netstandard1.5/es/System.IO.xml",
  5546. "ref/netstandard1.5/fr/System.IO.xml",
  5547. "ref/netstandard1.5/it/System.IO.xml",
  5548. "ref/netstandard1.5/ja/System.IO.xml",
  5549. "ref/netstandard1.5/ko/System.IO.xml",
  5550. "ref/netstandard1.5/ru/System.IO.xml",
  5551. "ref/netstandard1.5/zh-hans/System.IO.xml",
  5552. "ref/netstandard1.5/zh-hant/System.IO.xml",
  5553. "ref/portable-net45+win8+wp8+wpa81/_._",
  5554. "ref/win8/_._",
  5555. "ref/wp80/_._",
  5556. "ref/wpa81/_._",
  5557. "ref/xamarinios10/_._",
  5558. "ref/xamarinmac20/_._",
  5559. "ref/xamarintvos10/_._",
  5560. "ref/xamarinwatchos10/_._",
  5561. "system.io.4.3.0.nupkg.sha512",
  5562. "system.io.nuspec"
  5563. ]
  5564. },
  5565. "System.IO.Compression/4.3.0": {
  5566. "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==",
  5567. "type": "package",
  5568. "path": "system.io.compression/4.3.0",
  5569. "files": [
  5570. ".nupkg.metadata",
  5571. ".signature.p7s",
  5572. "ThirdPartyNotices.txt",
  5573. "dotnet_library_license.txt",
  5574. "lib/MonoAndroid10/_._",
  5575. "lib/MonoTouch10/_._",
  5576. "lib/net45/_._",
  5577. "lib/net46/System.IO.Compression.dll",
  5578. "lib/portable-net45+win8+wpa81/_._",
  5579. "lib/win8/_._",
  5580. "lib/wpa81/_._",
  5581. "lib/xamarinios10/_._",
  5582. "lib/xamarinmac20/_._",
  5583. "lib/xamarintvos10/_._",
  5584. "lib/xamarinwatchos10/_._",
  5585. "ref/MonoAndroid10/_._",
  5586. "ref/MonoTouch10/_._",
  5587. "ref/net45/_._",
  5588. "ref/net46/System.IO.Compression.dll",
  5589. "ref/netcore50/System.IO.Compression.dll",
  5590. "ref/netcore50/System.IO.Compression.xml",
  5591. "ref/netcore50/de/System.IO.Compression.xml",
  5592. "ref/netcore50/es/System.IO.Compression.xml",
  5593. "ref/netcore50/fr/System.IO.Compression.xml",
  5594. "ref/netcore50/it/System.IO.Compression.xml",
  5595. "ref/netcore50/ja/System.IO.Compression.xml",
  5596. "ref/netcore50/ko/System.IO.Compression.xml",
  5597. "ref/netcore50/ru/System.IO.Compression.xml",
  5598. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  5599. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  5600. "ref/netstandard1.1/System.IO.Compression.dll",
  5601. "ref/netstandard1.1/System.IO.Compression.xml",
  5602. "ref/netstandard1.1/de/System.IO.Compression.xml",
  5603. "ref/netstandard1.1/es/System.IO.Compression.xml",
  5604. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  5605. "ref/netstandard1.1/it/System.IO.Compression.xml",
  5606. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  5607. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  5608. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  5609. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  5610. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  5611. "ref/netstandard1.3/System.IO.Compression.dll",
  5612. "ref/netstandard1.3/System.IO.Compression.xml",
  5613. "ref/netstandard1.3/de/System.IO.Compression.xml",
  5614. "ref/netstandard1.3/es/System.IO.Compression.xml",
  5615. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  5616. "ref/netstandard1.3/it/System.IO.Compression.xml",
  5617. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  5618. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  5619. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  5620. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  5621. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  5622. "ref/portable-net45+win8+wpa81/_._",
  5623. "ref/win8/_._",
  5624. "ref/wpa81/_._",
  5625. "ref/xamarinios10/_._",
  5626. "ref/xamarinmac20/_._",
  5627. "ref/xamarintvos10/_._",
  5628. "ref/xamarinwatchos10/_._",
  5629. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  5630. "runtimes/win/lib/net46/System.IO.Compression.dll",
  5631. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll",
  5632. "system.io.compression.4.3.0.nupkg.sha512",
  5633. "system.io.compression.nuspec"
  5634. ]
  5635. },
  5636. "System.IO.Compression.ZipFile/4.3.0": {
  5637. "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==",
  5638. "type": "package",
  5639. "path": "system.io.compression.zipfile/4.3.0",
  5640. "files": [
  5641. ".nupkg.metadata",
  5642. ".signature.p7s",
  5643. "ThirdPartyNotices.txt",
  5644. "dotnet_library_license.txt",
  5645. "lib/MonoAndroid10/_._",
  5646. "lib/MonoTouch10/_._",
  5647. "lib/net46/System.IO.Compression.ZipFile.dll",
  5648. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5649. "lib/xamarinios10/_._",
  5650. "lib/xamarinmac20/_._",
  5651. "lib/xamarintvos10/_._",
  5652. "lib/xamarinwatchos10/_._",
  5653. "ref/MonoAndroid10/_._",
  5654. "ref/MonoTouch10/_._",
  5655. "ref/net46/System.IO.Compression.ZipFile.dll",
  5656. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  5657. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  5658. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  5659. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  5660. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  5661. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  5662. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  5663. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  5664. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  5665. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  5666. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  5667. "ref/xamarinios10/_._",
  5668. "ref/xamarinmac20/_._",
  5669. "ref/xamarintvos10/_._",
  5670. "ref/xamarinwatchos10/_._",
  5671. "system.io.compression.zipfile.4.3.0.nupkg.sha512",
  5672. "system.io.compression.zipfile.nuspec"
  5673. ]
  5674. },
  5675. "System.IO.FileSystem/4.3.0": {
  5676. "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==",
  5677. "type": "package",
  5678. "path": "system.io.filesystem/4.3.0",
  5679. "files": [
  5680. ".nupkg.metadata",
  5681. ".signature.p7s",
  5682. "ThirdPartyNotices.txt",
  5683. "dotnet_library_license.txt",
  5684. "lib/MonoAndroid10/_._",
  5685. "lib/MonoTouch10/_._",
  5686. "lib/net46/System.IO.FileSystem.dll",
  5687. "lib/xamarinios10/_._",
  5688. "lib/xamarinmac20/_._",
  5689. "lib/xamarintvos10/_._",
  5690. "lib/xamarinwatchos10/_._",
  5691. "ref/MonoAndroid10/_._",
  5692. "ref/MonoTouch10/_._",
  5693. "ref/net46/System.IO.FileSystem.dll",
  5694. "ref/netstandard1.3/System.IO.FileSystem.dll",
  5695. "ref/netstandard1.3/System.IO.FileSystem.xml",
  5696. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  5697. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  5698. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  5699. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  5700. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  5701. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  5702. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  5703. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  5704. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  5705. "ref/xamarinios10/_._",
  5706. "ref/xamarinmac20/_._",
  5707. "ref/xamarintvos10/_._",
  5708. "ref/xamarinwatchos10/_._",
  5709. "system.io.filesystem.4.3.0.nupkg.sha512",
  5710. "system.io.filesystem.nuspec"
  5711. ]
  5712. },
  5713. "System.IO.FileSystem.Primitives/4.3.0": {
  5714. "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==",
  5715. "type": "package",
  5716. "path": "system.io.filesystem.primitives/4.3.0",
  5717. "files": [
  5718. ".nupkg.metadata",
  5719. ".signature.p7s",
  5720. "ThirdPartyNotices.txt",
  5721. "dotnet_library_license.txt",
  5722. "lib/MonoAndroid10/_._",
  5723. "lib/MonoTouch10/_._",
  5724. "lib/net46/System.IO.FileSystem.Primitives.dll",
  5725. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5726. "lib/xamarinios10/_._",
  5727. "lib/xamarinmac20/_._",
  5728. "lib/xamarintvos10/_._",
  5729. "lib/xamarinwatchos10/_._",
  5730. "ref/MonoAndroid10/_._",
  5731. "ref/MonoTouch10/_._",
  5732. "ref/net46/System.IO.FileSystem.Primitives.dll",
  5733. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  5734. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  5735. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  5736. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  5737. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  5738. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  5739. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  5740. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  5741. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  5742. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  5743. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  5744. "ref/xamarinios10/_._",
  5745. "ref/xamarinmac20/_._",
  5746. "ref/xamarintvos10/_._",
  5747. "ref/xamarinwatchos10/_._",
  5748. "system.io.filesystem.primitives.4.3.0.nupkg.sha512",
  5749. "system.io.filesystem.primitives.nuspec"
  5750. ]
  5751. },
  5752. "System.Linq/4.3.0": {
  5753. "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
  5754. "type": "package",
  5755. "path": "system.linq/4.3.0",
  5756. "files": [
  5757. ".nupkg.metadata",
  5758. ".signature.p7s",
  5759. "ThirdPartyNotices.txt",
  5760. "dotnet_library_license.txt",
  5761. "lib/MonoAndroid10/_._",
  5762. "lib/MonoTouch10/_._",
  5763. "lib/net45/_._",
  5764. "lib/net463/System.Linq.dll",
  5765. "lib/netcore50/System.Linq.dll",
  5766. "lib/netstandard1.6/System.Linq.dll",
  5767. "lib/portable-net45+win8+wp8+wpa81/_._",
  5768. "lib/win8/_._",
  5769. "lib/wp80/_._",
  5770. "lib/wpa81/_._",
  5771. "lib/xamarinios10/_._",
  5772. "lib/xamarinmac20/_._",
  5773. "lib/xamarintvos10/_._",
  5774. "lib/xamarinwatchos10/_._",
  5775. "ref/MonoAndroid10/_._",
  5776. "ref/MonoTouch10/_._",
  5777. "ref/net45/_._",
  5778. "ref/net463/System.Linq.dll",
  5779. "ref/netcore50/System.Linq.dll",
  5780. "ref/netcore50/System.Linq.xml",
  5781. "ref/netcore50/de/System.Linq.xml",
  5782. "ref/netcore50/es/System.Linq.xml",
  5783. "ref/netcore50/fr/System.Linq.xml",
  5784. "ref/netcore50/it/System.Linq.xml",
  5785. "ref/netcore50/ja/System.Linq.xml",
  5786. "ref/netcore50/ko/System.Linq.xml",
  5787. "ref/netcore50/ru/System.Linq.xml",
  5788. "ref/netcore50/zh-hans/System.Linq.xml",
  5789. "ref/netcore50/zh-hant/System.Linq.xml",
  5790. "ref/netstandard1.0/System.Linq.dll",
  5791. "ref/netstandard1.0/System.Linq.xml",
  5792. "ref/netstandard1.0/de/System.Linq.xml",
  5793. "ref/netstandard1.0/es/System.Linq.xml",
  5794. "ref/netstandard1.0/fr/System.Linq.xml",
  5795. "ref/netstandard1.0/it/System.Linq.xml",
  5796. "ref/netstandard1.0/ja/System.Linq.xml",
  5797. "ref/netstandard1.0/ko/System.Linq.xml",
  5798. "ref/netstandard1.0/ru/System.Linq.xml",
  5799. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  5800. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  5801. "ref/netstandard1.6/System.Linq.dll",
  5802. "ref/netstandard1.6/System.Linq.xml",
  5803. "ref/netstandard1.6/de/System.Linq.xml",
  5804. "ref/netstandard1.6/es/System.Linq.xml",
  5805. "ref/netstandard1.6/fr/System.Linq.xml",
  5806. "ref/netstandard1.6/it/System.Linq.xml",
  5807. "ref/netstandard1.6/ja/System.Linq.xml",
  5808. "ref/netstandard1.6/ko/System.Linq.xml",
  5809. "ref/netstandard1.6/ru/System.Linq.xml",
  5810. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  5811. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  5812. "ref/portable-net45+win8+wp8+wpa81/_._",
  5813. "ref/win8/_._",
  5814. "ref/wp80/_._",
  5815. "ref/wpa81/_._",
  5816. "ref/xamarinios10/_._",
  5817. "ref/xamarinmac20/_._",
  5818. "ref/xamarintvos10/_._",
  5819. "ref/xamarinwatchos10/_._",
  5820. "system.linq.4.3.0.nupkg.sha512",
  5821. "system.linq.nuspec"
  5822. ]
  5823. },
  5824. "System.Linq.Expressions/4.3.0": {
  5825. "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
  5826. "type": "package",
  5827. "path": "system.linq.expressions/4.3.0",
  5828. "files": [
  5829. ".nupkg.metadata",
  5830. ".signature.p7s",
  5831. "ThirdPartyNotices.txt",
  5832. "dotnet_library_license.txt",
  5833. "lib/MonoAndroid10/_._",
  5834. "lib/MonoTouch10/_._",
  5835. "lib/net45/_._",
  5836. "lib/net463/System.Linq.Expressions.dll",
  5837. "lib/netcore50/System.Linq.Expressions.dll",
  5838. "lib/netstandard1.6/System.Linq.Expressions.dll",
  5839. "lib/portable-net45+win8+wp8+wpa81/_._",
  5840. "lib/win8/_._",
  5841. "lib/wp80/_._",
  5842. "lib/wpa81/_._",
  5843. "lib/xamarinios10/_._",
  5844. "lib/xamarinmac20/_._",
  5845. "lib/xamarintvos10/_._",
  5846. "lib/xamarinwatchos10/_._",
  5847. "ref/MonoAndroid10/_._",
  5848. "ref/MonoTouch10/_._",
  5849. "ref/net45/_._",
  5850. "ref/net463/System.Linq.Expressions.dll",
  5851. "ref/netcore50/System.Linq.Expressions.dll",
  5852. "ref/netcore50/System.Linq.Expressions.xml",
  5853. "ref/netcore50/de/System.Linq.Expressions.xml",
  5854. "ref/netcore50/es/System.Linq.Expressions.xml",
  5855. "ref/netcore50/fr/System.Linq.Expressions.xml",
  5856. "ref/netcore50/it/System.Linq.Expressions.xml",
  5857. "ref/netcore50/ja/System.Linq.Expressions.xml",
  5858. "ref/netcore50/ko/System.Linq.Expressions.xml",
  5859. "ref/netcore50/ru/System.Linq.Expressions.xml",
  5860. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  5861. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  5862. "ref/netstandard1.0/System.Linq.Expressions.dll",
  5863. "ref/netstandard1.0/System.Linq.Expressions.xml",
  5864. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  5865. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  5866. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  5867. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  5868. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  5869. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  5870. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  5871. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  5872. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  5873. "ref/netstandard1.3/System.Linq.Expressions.dll",
  5874. "ref/netstandard1.3/System.Linq.Expressions.xml",
  5875. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  5876. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  5877. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  5878. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  5879. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  5880. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  5881. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  5882. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  5883. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  5884. "ref/netstandard1.6/System.Linq.Expressions.dll",
  5885. "ref/netstandard1.6/System.Linq.Expressions.xml",
  5886. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  5887. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  5888. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  5889. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  5890. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  5891. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  5892. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  5893. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  5894. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  5895. "ref/portable-net45+win8+wp8+wpa81/_._",
  5896. "ref/win8/_._",
  5897. "ref/wp80/_._",
  5898. "ref/wpa81/_._",
  5899. "ref/xamarinios10/_._",
  5900. "ref/xamarinmac20/_._",
  5901. "ref/xamarintvos10/_._",
  5902. "ref/xamarinwatchos10/_._",
  5903. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
  5904. "system.linq.expressions.4.3.0.nupkg.sha512",
  5905. "system.linq.expressions.nuspec"
  5906. ]
  5907. },
  5908. "System.Memory/4.5.3": {
  5909. "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==",
  5910. "type": "package",
  5911. "path": "system.memory/4.5.3",
  5912. "files": [
  5913. ".nupkg.metadata",
  5914. ".signature.p7s",
  5915. "LICENSE.TXT",
  5916. "THIRD-PARTY-NOTICES.TXT",
  5917. "lib/netcoreapp2.1/_._",
  5918. "lib/netstandard1.1/System.Memory.dll",
  5919. "lib/netstandard1.1/System.Memory.xml",
  5920. "lib/netstandard2.0/System.Memory.dll",
  5921. "lib/netstandard2.0/System.Memory.xml",
  5922. "ref/netcoreapp2.1/_._",
  5923. "system.memory.4.5.3.nupkg.sha512",
  5924. "system.memory.nuspec",
  5925. "useSharedDesignerContext.txt",
  5926. "version.txt"
  5927. ]
  5928. },
  5929. "System.Net.Http/4.3.0": {
  5930. "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==",
  5931. "type": "package",
  5932. "path": "system.net.http/4.3.0",
  5933. "files": [
  5934. ".nupkg.metadata",
  5935. ".signature.p7s",
  5936. "ThirdPartyNotices.txt",
  5937. "dotnet_library_license.txt",
  5938. "lib/Xamarinmac20/_._",
  5939. "lib/monoandroid10/_._",
  5940. "lib/monotouch10/_._",
  5941. "lib/net45/_._",
  5942. "lib/net46/System.Net.Http.dll",
  5943. "lib/portable-net45+win8+wpa81/_._",
  5944. "lib/win8/_._",
  5945. "lib/wpa81/_._",
  5946. "lib/xamarinios10/_._",
  5947. "lib/xamarintvos10/_._",
  5948. "lib/xamarinwatchos10/_._",
  5949. "ref/Xamarinmac20/_._",
  5950. "ref/monoandroid10/_._",
  5951. "ref/monotouch10/_._",
  5952. "ref/net45/_._",
  5953. "ref/net46/System.Net.Http.dll",
  5954. "ref/net46/System.Net.Http.xml",
  5955. "ref/net46/de/System.Net.Http.xml",
  5956. "ref/net46/es/System.Net.Http.xml",
  5957. "ref/net46/fr/System.Net.Http.xml",
  5958. "ref/net46/it/System.Net.Http.xml",
  5959. "ref/net46/ja/System.Net.Http.xml",
  5960. "ref/net46/ko/System.Net.Http.xml",
  5961. "ref/net46/ru/System.Net.Http.xml",
  5962. "ref/net46/zh-hans/System.Net.Http.xml",
  5963. "ref/net46/zh-hant/System.Net.Http.xml",
  5964. "ref/netcore50/System.Net.Http.dll",
  5965. "ref/netcore50/System.Net.Http.xml",
  5966. "ref/netcore50/de/System.Net.Http.xml",
  5967. "ref/netcore50/es/System.Net.Http.xml",
  5968. "ref/netcore50/fr/System.Net.Http.xml",
  5969. "ref/netcore50/it/System.Net.Http.xml",
  5970. "ref/netcore50/ja/System.Net.Http.xml",
  5971. "ref/netcore50/ko/System.Net.Http.xml",
  5972. "ref/netcore50/ru/System.Net.Http.xml",
  5973. "ref/netcore50/zh-hans/System.Net.Http.xml",
  5974. "ref/netcore50/zh-hant/System.Net.Http.xml",
  5975. "ref/netstandard1.1/System.Net.Http.dll",
  5976. "ref/netstandard1.1/System.Net.Http.xml",
  5977. "ref/netstandard1.1/de/System.Net.Http.xml",
  5978. "ref/netstandard1.1/es/System.Net.Http.xml",
  5979. "ref/netstandard1.1/fr/System.Net.Http.xml",
  5980. "ref/netstandard1.1/it/System.Net.Http.xml",
  5981. "ref/netstandard1.1/ja/System.Net.Http.xml",
  5982. "ref/netstandard1.1/ko/System.Net.Http.xml",
  5983. "ref/netstandard1.1/ru/System.Net.Http.xml",
  5984. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  5985. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  5986. "ref/netstandard1.3/System.Net.Http.dll",
  5987. "ref/netstandard1.3/System.Net.Http.xml",
  5988. "ref/netstandard1.3/de/System.Net.Http.xml",
  5989. "ref/netstandard1.3/es/System.Net.Http.xml",
  5990. "ref/netstandard1.3/fr/System.Net.Http.xml",
  5991. "ref/netstandard1.3/it/System.Net.Http.xml",
  5992. "ref/netstandard1.3/ja/System.Net.Http.xml",
  5993. "ref/netstandard1.3/ko/System.Net.Http.xml",
  5994. "ref/netstandard1.3/ru/System.Net.Http.xml",
  5995. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  5996. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  5997. "ref/portable-net45+win8+wpa81/_._",
  5998. "ref/win8/_._",
  5999. "ref/wpa81/_._",
  6000. "ref/xamarinios10/_._",
  6001. "ref/xamarintvos10/_._",
  6002. "ref/xamarinwatchos10/_._",
  6003. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  6004. "runtimes/win/lib/net46/System.Net.Http.dll",
  6005. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  6006. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll",
  6007. "system.net.http.4.3.0.nupkg.sha512",
  6008. "system.net.http.nuspec"
  6009. ]
  6010. },
  6011. "System.Net.NameResolution/4.3.0": {
  6012. "sha512": "AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==",
  6013. "type": "package",
  6014. "path": "system.net.nameresolution/4.3.0",
  6015. "files": [
  6016. ".nupkg.metadata",
  6017. ".signature.p7s",
  6018. "ThirdPartyNotices.txt",
  6019. "dotnet_library_license.txt",
  6020. "lib/MonoAndroid10/_._",
  6021. "lib/MonoTouch10/_._",
  6022. "lib/net46/System.Net.NameResolution.dll",
  6023. "lib/xamarinios10/_._",
  6024. "lib/xamarinmac20/_._",
  6025. "lib/xamarintvos10/_._",
  6026. "lib/xamarinwatchos10/_._",
  6027. "ref/MonoAndroid10/_._",
  6028. "ref/MonoTouch10/_._",
  6029. "ref/net46/System.Net.NameResolution.dll",
  6030. "ref/netstandard1.3/System.Net.NameResolution.dll",
  6031. "ref/netstandard1.3/System.Net.NameResolution.xml",
  6032. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  6033. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  6034. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  6035. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  6036. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  6037. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  6038. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  6039. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  6040. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  6041. "ref/xamarinios10/_._",
  6042. "ref/xamarinmac20/_._",
  6043. "ref/xamarintvos10/_._",
  6044. "ref/xamarinwatchos10/_._",
  6045. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  6046. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  6047. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  6048. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll",
  6049. "system.net.nameresolution.4.3.0.nupkg.sha512",
  6050. "system.net.nameresolution.nuspec"
  6051. ]
  6052. },
  6053. "System.Net.Primitives/4.3.0": {
  6054. "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==",
  6055. "type": "package",
  6056. "path": "system.net.primitives/4.3.0",
  6057. "files": [
  6058. ".nupkg.metadata",
  6059. ".signature.p7s",
  6060. "ThirdPartyNotices.txt",
  6061. "dotnet_library_license.txt",
  6062. "lib/MonoAndroid10/_._",
  6063. "lib/MonoTouch10/_._",
  6064. "lib/net45/_._",
  6065. "lib/portable-net45+win8+wp8+wpa81/_._",
  6066. "lib/win8/_._",
  6067. "lib/wp80/_._",
  6068. "lib/wpa81/_._",
  6069. "lib/xamarinios10/_._",
  6070. "lib/xamarinmac20/_._",
  6071. "lib/xamarintvos10/_._",
  6072. "lib/xamarinwatchos10/_._",
  6073. "ref/MonoAndroid10/_._",
  6074. "ref/MonoTouch10/_._",
  6075. "ref/net45/_._",
  6076. "ref/netcore50/System.Net.Primitives.dll",
  6077. "ref/netcore50/System.Net.Primitives.xml",
  6078. "ref/netcore50/de/System.Net.Primitives.xml",
  6079. "ref/netcore50/es/System.Net.Primitives.xml",
  6080. "ref/netcore50/fr/System.Net.Primitives.xml",
  6081. "ref/netcore50/it/System.Net.Primitives.xml",
  6082. "ref/netcore50/ja/System.Net.Primitives.xml",
  6083. "ref/netcore50/ko/System.Net.Primitives.xml",
  6084. "ref/netcore50/ru/System.Net.Primitives.xml",
  6085. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  6086. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  6087. "ref/netstandard1.0/System.Net.Primitives.dll",
  6088. "ref/netstandard1.0/System.Net.Primitives.xml",
  6089. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  6090. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  6091. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  6092. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  6093. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  6094. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  6095. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  6096. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  6097. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  6098. "ref/netstandard1.1/System.Net.Primitives.dll",
  6099. "ref/netstandard1.1/System.Net.Primitives.xml",
  6100. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  6101. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  6102. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  6103. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  6104. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  6105. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  6106. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  6107. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  6108. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  6109. "ref/netstandard1.3/System.Net.Primitives.dll",
  6110. "ref/netstandard1.3/System.Net.Primitives.xml",
  6111. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  6112. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  6113. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  6114. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  6115. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  6116. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  6117. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  6118. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  6119. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  6120. "ref/portable-net45+win8+wp8+wpa81/_._",
  6121. "ref/win8/_._",
  6122. "ref/wp80/_._",
  6123. "ref/wpa81/_._",
  6124. "ref/xamarinios10/_._",
  6125. "ref/xamarinmac20/_._",
  6126. "ref/xamarintvos10/_._",
  6127. "ref/xamarinwatchos10/_._",
  6128. "system.net.primitives.4.3.0.nupkg.sha512",
  6129. "system.net.primitives.nuspec"
  6130. ]
  6131. },
  6132. "System.Net.Sockets/4.3.0": {
  6133. "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==",
  6134. "type": "package",
  6135. "path": "system.net.sockets/4.3.0",
  6136. "files": [
  6137. ".nupkg.metadata",
  6138. ".signature.p7s",
  6139. "ThirdPartyNotices.txt",
  6140. "dotnet_library_license.txt",
  6141. "lib/MonoAndroid10/_._",
  6142. "lib/MonoTouch10/_._",
  6143. "lib/net46/System.Net.Sockets.dll",
  6144. "lib/xamarinios10/_._",
  6145. "lib/xamarinmac20/_._",
  6146. "lib/xamarintvos10/_._",
  6147. "lib/xamarinwatchos10/_._",
  6148. "ref/MonoAndroid10/_._",
  6149. "ref/MonoTouch10/_._",
  6150. "ref/net46/System.Net.Sockets.dll",
  6151. "ref/netstandard1.3/System.Net.Sockets.dll",
  6152. "ref/netstandard1.3/System.Net.Sockets.xml",
  6153. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  6154. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  6155. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  6156. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  6157. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  6158. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  6159. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  6160. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  6161. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  6162. "ref/xamarinios10/_._",
  6163. "ref/xamarinmac20/_._",
  6164. "ref/xamarintvos10/_._",
  6165. "ref/xamarinwatchos10/_._",
  6166. "system.net.sockets.4.3.0.nupkg.sha512",
  6167. "system.net.sockets.nuspec"
  6168. ]
  6169. },
  6170. "System.ObjectModel/4.3.0": {
  6171. "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
  6172. "type": "package",
  6173. "path": "system.objectmodel/4.3.0",
  6174. "files": [
  6175. ".nupkg.metadata",
  6176. ".signature.p7s",
  6177. "ThirdPartyNotices.txt",
  6178. "dotnet_library_license.txt",
  6179. "lib/MonoAndroid10/_._",
  6180. "lib/MonoTouch10/_._",
  6181. "lib/net45/_._",
  6182. "lib/netcore50/System.ObjectModel.dll",
  6183. "lib/netstandard1.3/System.ObjectModel.dll",
  6184. "lib/portable-net45+win8+wp8+wpa81/_._",
  6185. "lib/win8/_._",
  6186. "lib/wp80/_._",
  6187. "lib/wpa81/_._",
  6188. "lib/xamarinios10/_._",
  6189. "lib/xamarinmac20/_._",
  6190. "lib/xamarintvos10/_._",
  6191. "lib/xamarinwatchos10/_._",
  6192. "ref/MonoAndroid10/_._",
  6193. "ref/MonoTouch10/_._",
  6194. "ref/net45/_._",
  6195. "ref/netcore50/System.ObjectModel.dll",
  6196. "ref/netcore50/System.ObjectModel.xml",
  6197. "ref/netcore50/de/System.ObjectModel.xml",
  6198. "ref/netcore50/es/System.ObjectModel.xml",
  6199. "ref/netcore50/fr/System.ObjectModel.xml",
  6200. "ref/netcore50/it/System.ObjectModel.xml",
  6201. "ref/netcore50/ja/System.ObjectModel.xml",
  6202. "ref/netcore50/ko/System.ObjectModel.xml",
  6203. "ref/netcore50/ru/System.ObjectModel.xml",
  6204. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  6205. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  6206. "ref/netstandard1.0/System.ObjectModel.dll",
  6207. "ref/netstandard1.0/System.ObjectModel.xml",
  6208. "ref/netstandard1.0/de/System.ObjectModel.xml",
  6209. "ref/netstandard1.0/es/System.ObjectModel.xml",
  6210. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  6211. "ref/netstandard1.0/it/System.ObjectModel.xml",
  6212. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  6213. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  6214. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  6215. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  6216. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  6217. "ref/netstandard1.3/System.ObjectModel.dll",
  6218. "ref/netstandard1.3/System.ObjectModel.xml",
  6219. "ref/netstandard1.3/de/System.ObjectModel.xml",
  6220. "ref/netstandard1.3/es/System.ObjectModel.xml",
  6221. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  6222. "ref/netstandard1.3/it/System.ObjectModel.xml",
  6223. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  6224. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  6225. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  6226. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  6227. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  6228. "ref/portable-net45+win8+wp8+wpa81/_._",
  6229. "ref/win8/_._",
  6230. "ref/wp80/_._",
  6231. "ref/wpa81/_._",
  6232. "ref/xamarinios10/_._",
  6233. "ref/xamarinmac20/_._",
  6234. "ref/xamarintvos10/_._",
  6235. "ref/xamarinwatchos10/_._",
  6236. "system.objectmodel.4.3.0.nupkg.sha512",
  6237. "system.objectmodel.nuspec"
  6238. ]
  6239. },
  6240. "System.Private.DataContractSerialization/4.3.0": {
  6241. "sha512": "yDaJ2x3mMmjdZEDB4IbezSnCsnjQ4BxinKhRAaP6kEgL6Bb6jANWphs5SzyD8imqeC/3FxgsuXT6ykkiH1uUmA==",
  6242. "type": "package",
  6243. "path": "system.private.datacontractserialization/4.3.0",
  6244. "files": [
  6245. ".nupkg.metadata",
  6246. ".signature.p7s",
  6247. "ThirdPartyNotices.txt",
  6248. "dotnet_library_license.txt",
  6249. "lib/netstandard1.3/System.Private.DataContractSerialization.dll",
  6250. "ref/netstandard/_._",
  6251. "runtimes/aot/lib/netcore50/System.Private.DataContractSerialization.dll",
  6252. "system.private.datacontractserialization.4.3.0.nupkg.sha512",
  6253. "system.private.datacontractserialization.nuspec"
  6254. ]
  6255. },
  6256. "System.Reflection/4.3.0": {
  6257. "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
  6258. "type": "package",
  6259. "path": "system.reflection/4.3.0",
  6260. "files": [
  6261. ".nupkg.metadata",
  6262. ".signature.p7s",
  6263. "ThirdPartyNotices.txt",
  6264. "dotnet_library_license.txt",
  6265. "lib/MonoAndroid10/_._",
  6266. "lib/MonoTouch10/_._",
  6267. "lib/net45/_._",
  6268. "lib/net462/System.Reflection.dll",
  6269. "lib/portable-net45+win8+wp8+wpa81/_._",
  6270. "lib/win8/_._",
  6271. "lib/wp80/_._",
  6272. "lib/wpa81/_._",
  6273. "lib/xamarinios10/_._",
  6274. "lib/xamarinmac20/_._",
  6275. "lib/xamarintvos10/_._",
  6276. "lib/xamarinwatchos10/_._",
  6277. "ref/MonoAndroid10/_._",
  6278. "ref/MonoTouch10/_._",
  6279. "ref/net45/_._",
  6280. "ref/net462/System.Reflection.dll",
  6281. "ref/netcore50/System.Reflection.dll",
  6282. "ref/netcore50/System.Reflection.xml",
  6283. "ref/netcore50/de/System.Reflection.xml",
  6284. "ref/netcore50/es/System.Reflection.xml",
  6285. "ref/netcore50/fr/System.Reflection.xml",
  6286. "ref/netcore50/it/System.Reflection.xml",
  6287. "ref/netcore50/ja/System.Reflection.xml",
  6288. "ref/netcore50/ko/System.Reflection.xml",
  6289. "ref/netcore50/ru/System.Reflection.xml",
  6290. "ref/netcore50/zh-hans/System.Reflection.xml",
  6291. "ref/netcore50/zh-hant/System.Reflection.xml",
  6292. "ref/netstandard1.0/System.Reflection.dll",
  6293. "ref/netstandard1.0/System.Reflection.xml",
  6294. "ref/netstandard1.0/de/System.Reflection.xml",
  6295. "ref/netstandard1.0/es/System.Reflection.xml",
  6296. "ref/netstandard1.0/fr/System.Reflection.xml",
  6297. "ref/netstandard1.0/it/System.Reflection.xml",
  6298. "ref/netstandard1.0/ja/System.Reflection.xml",
  6299. "ref/netstandard1.0/ko/System.Reflection.xml",
  6300. "ref/netstandard1.0/ru/System.Reflection.xml",
  6301. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  6302. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  6303. "ref/netstandard1.3/System.Reflection.dll",
  6304. "ref/netstandard1.3/System.Reflection.xml",
  6305. "ref/netstandard1.3/de/System.Reflection.xml",
  6306. "ref/netstandard1.3/es/System.Reflection.xml",
  6307. "ref/netstandard1.3/fr/System.Reflection.xml",
  6308. "ref/netstandard1.3/it/System.Reflection.xml",
  6309. "ref/netstandard1.3/ja/System.Reflection.xml",
  6310. "ref/netstandard1.3/ko/System.Reflection.xml",
  6311. "ref/netstandard1.3/ru/System.Reflection.xml",
  6312. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  6313. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  6314. "ref/netstandard1.5/System.Reflection.dll",
  6315. "ref/netstandard1.5/System.Reflection.xml",
  6316. "ref/netstandard1.5/de/System.Reflection.xml",
  6317. "ref/netstandard1.5/es/System.Reflection.xml",
  6318. "ref/netstandard1.5/fr/System.Reflection.xml",
  6319. "ref/netstandard1.5/it/System.Reflection.xml",
  6320. "ref/netstandard1.5/ja/System.Reflection.xml",
  6321. "ref/netstandard1.5/ko/System.Reflection.xml",
  6322. "ref/netstandard1.5/ru/System.Reflection.xml",
  6323. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  6324. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  6325. "ref/portable-net45+win8+wp8+wpa81/_._",
  6326. "ref/win8/_._",
  6327. "ref/wp80/_._",
  6328. "ref/wpa81/_._",
  6329. "ref/xamarinios10/_._",
  6330. "ref/xamarinmac20/_._",
  6331. "ref/xamarintvos10/_._",
  6332. "ref/xamarinwatchos10/_._",
  6333. "system.reflection.4.3.0.nupkg.sha512",
  6334. "system.reflection.nuspec"
  6335. ]
  6336. },
  6337. "System.Reflection.Emit/4.3.0": {
  6338. "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
  6339. "type": "package",
  6340. "path": "system.reflection.emit/4.3.0",
  6341. "files": [
  6342. ".nupkg.metadata",
  6343. ".signature.p7s",
  6344. "ThirdPartyNotices.txt",
  6345. "dotnet_library_license.txt",
  6346. "lib/MonoAndroid10/_._",
  6347. "lib/monotouch10/_._",
  6348. "lib/net45/_._",
  6349. "lib/netcore50/System.Reflection.Emit.dll",
  6350. "lib/netstandard1.3/System.Reflection.Emit.dll",
  6351. "lib/xamarinios10/_._",
  6352. "lib/xamarinmac20/_._",
  6353. "lib/xamarintvos10/_._",
  6354. "lib/xamarinwatchos10/_._",
  6355. "ref/MonoAndroid10/_._",
  6356. "ref/net45/_._",
  6357. "ref/netstandard1.1/System.Reflection.Emit.dll",
  6358. "ref/netstandard1.1/System.Reflection.Emit.xml",
  6359. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  6360. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  6361. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  6362. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  6363. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  6364. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  6365. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  6366. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  6367. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  6368. "ref/xamarinmac20/_._",
  6369. "system.reflection.emit.4.3.0.nupkg.sha512",
  6370. "system.reflection.emit.nuspec"
  6371. ]
  6372. },
  6373. "System.Reflection.Emit.ILGeneration/4.3.0": {
  6374. "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
  6375. "type": "package",
  6376. "path": "system.reflection.emit.ilgeneration/4.3.0",
  6377. "files": [
  6378. ".nupkg.metadata",
  6379. ".signature.p7s",
  6380. "ThirdPartyNotices.txt",
  6381. "dotnet_library_license.txt",
  6382. "lib/MonoAndroid10/_._",
  6383. "lib/MonoTouch10/_._",
  6384. "lib/net45/_._",
  6385. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  6386. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  6387. "lib/portable-net45+wp8/_._",
  6388. "lib/wp80/_._",
  6389. "lib/xamarinios10/_._",
  6390. "lib/xamarinmac20/_._",
  6391. "lib/xamarintvos10/_._",
  6392. "lib/xamarinwatchos10/_._",
  6393. "ref/MonoAndroid10/_._",
  6394. "ref/MonoTouch10/_._",
  6395. "ref/net45/_._",
  6396. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  6397. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  6398. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  6399. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  6400. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  6401. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  6402. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  6403. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  6404. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  6405. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  6406. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  6407. "ref/portable-net45+wp8/_._",
  6408. "ref/wp80/_._",
  6409. "ref/xamarinios10/_._",
  6410. "ref/xamarinmac20/_._",
  6411. "ref/xamarintvos10/_._",
  6412. "ref/xamarinwatchos10/_._",
  6413. "runtimes/aot/lib/netcore50/_._",
  6414. "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
  6415. "system.reflection.emit.ilgeneration.nuspec"
  6416. ]
  6417. },
  6418. "System.Reflection.Emit.Lightweight/4.3.0": {
  6419. "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
  6420. "type": "package",
  6421. "path": "system.reflection.emit.lightweight/4.3.0",
  6422. "files": [
  6423. ".nupkg.metadata",
  6424. ".signature.p7s",
  6425. "ThirdPartyNotices.txt",
  6426. "dotnet_library_license.txt",
  6427. "lib/MonoAndroid10/_._",
  6428. "lib/MonoTouch10/_._",
  6429. "lib/net45/_._",
  6430. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  6431. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  6432. "lib/portable-net45+wp8/_._",
  6433. "lib/wp80/_._",
  6434. "lib/xamarinios10/_._",
  6435. "lib/xamarinmac20/_._",
  6436. "lib/xamarintvos10/_._",
  6437. "lib/xamarinwatchos10/_._",
  6438. "ref/MonoAndroid10/_._",
  6439. "ref/MonoTouch10/_._",
  6440. "ref/net45/_._",
  6441. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  6442. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  6443. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  6444. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  6445. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  6446. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  6447. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  6448. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  6449. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  6450. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  6451. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  6452. "ref/portable-net45+wp8/_._",
  6453. "ref/wp80/_._",
  6454. "ref/xamarinios10/_._",
  6455. "ref/xamarinmac20/_._",
  6456. "ref/xamarintvos10/_._",
  6457. "ref/xamarinwatchos10/_._",
  6458. "runtimes/aot/lib/netcore50/_._",
  6459. "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
  6460. "system.reflection.emit.lightweight.nuspec"
  6461. ]
  6462. },
  6463. "System.Reflection.Extensions/4.3.0": {
  6464. "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
  6465. "type": "package",
  6466. "path": "system.reflection.extensions/4.3.0",
  6467. "files": [
  6468. ".nupkg.metadata",
  6469. ".signature.p7s",
  6470. "ThirdPartyNotices.txt",
  6471. "dotnet_library_license.txt",
  6472. "lib/MonoAndroid10/_._",
  6473. "lib/MonoTouch10/_._",
  6474. "lib/net45/_._",
  6475. "lib/portable-net45+win8+wp8+wpa81/_._",
  6476. "lib/win8/_._",
  6477. "lib/wp80/_._",
  6478. "lib/wpa81/_._",
  6479. "lib/xamarinios10/_._",
  6480. "lib/xamarinmac20/_._",
  6481. "lib/xamarintvos10/_._",
  6482. "lib/xamarinwatchos10/_._",
  6483. "ref/MonoAndroid10/_._",
  6484. "ref/MonoTouch10/_._",
  6485. "ref/net45/_._",
  6486. "ref/netcore50/System.Reflection.Extensions.dll",
  6487. "ref/netcore50/System.Reflection.Extensions.xml",
  6488. "ref/netcore50/de/System.Reflection.Extensions.xml",
  6489. "ref/netcore50/es/System.Reflection.Extensions.xml",
  6490. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  6491. "ref/netcore50/it/System.Reflection.Extensions.xml",
  6492. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  6493. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  6494. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  6495. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  6496. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  6497. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  6498. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  6499. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  6500. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  6501. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  6502. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  6503. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  6504. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  6505. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  6506. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  6507. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  6508. "ref/portable-net45+win8+wp8+wpa81/_._",
  6509. "ref/win8/_._",
  6510. "ref/wp80/_._",
  6511. "ref/wpa81/_._",
  6512. "ref/xamarinios10/_._",
  6513. "ref/xamarinmac20/_._",
  6514. "ref/xamarintvos10/_._",
  6515. "ref/xamarinwatchos10/_._",
  6516. "system.reflection.extensions.4.3.0.nupkg.sha512",
  6517. "system.reflection.extensions.nuspec"
  6518. ]
  6519. },
  6520. "System.Reflection.Metadata/1.6.0": {
  6521. "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==",
  6522. "type": "package",
  6523. "path": "system.reflection.metadata/1.6.0",
  6524. "files": [
  6525. ".nupkg.metadata",
  6526. ".signature.p7s",
  6527. "LICENSE.TXT",
  6528. "THIRD-PARTY-NOTICES.TXT",
  6529. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  6530. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  6531. "lib/netstandard2.0/System.Reflection.Metadata.dll",
  6532. "lib/netstandard2.0/System.Reflection.Metadata.xml",
  6533. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  6534. "lib/portable-net45+win8/System.Reflection.Metadata.xml",
  6535. "system.reflection.metadata.1.6.0.nupkg.sha512",
  6536. "system.reflection.metadata.nuspec",
  6537. "useSharedDesignerContext.txt",
  6538. "version.txt"
  6539. ]
  6540. },
  6541. "System.Reflection.Primitives/4.3.0": {
  6542. "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
  6543. "type": "package",
  6544. "path": "system.reflection.primitives/4.3.0",
  6545. "files": [
  6546. ".nupkg.metadata",
  6547. ".signature.p7s",
  6548. "ThirdPartyNotices.txt",
  6549. "dotnet_library_license.txt",
  6550. "lib/MonoAndroid10/_._",
  6551. "lib/MonoTouch10/_._",
  6552. "lib/net45/_._",
  6553. "lib/portable-net45+win8+wp8+wpa81/_._",
  6554. "lib/win8/_._",
  6555. "lib/wp80/_._",
  6556. "lib/wpa81/_._",
  6557. "lib/xamarinios10/_._",
  6558. "lib/xamarinmac20/_._",
  6559. "lib/xamarintvos10/_._",
  6560. "lib/xamarinwatchos10/_._",
  6561. "ref/MonoAndroid10/_._",
  6562. "ref/MonoTouch10/_._",
  6563. "ref/net45/_._",
  6564. "ref/netcore50/System.Reflection.Primitives.dll",
  6565. "ref/netcore50/System.Reflection.Primitives.xml",
  6566. "ref/netcore50/de/System.Reflection.Primitives.xml",
  6567. "ref/netcore50/es/System.Reflection.Primitives.xml",
  6568. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  6569. "ref/netcore50/it/System.Reflection.Primitives.xml",
  6570. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  6571. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  6572. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  6573. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  6574. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  6575. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  6576. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  6577. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  6578. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  6579. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  6580. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  6581. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  6582. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  6583. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  6584. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  6585. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  6586. "ref/portable-net45+win8+wp8+wpa81/_._",
  6587. "ref/win8/_._",
  6588. "ref/wp80/_._",
  6589. "ref/wpa81/_._",
  6590. "ref/xamarinios10/_._",
  6591. "ref/xamarinmac20/_._",
  6592. "ref/xamarintvos10/_._",
  6593. "ref/xamarinwatchos10/_._",
  6594. "system.reflection.primitives.4.3.0.nupkg.sha512",
  6595. "system.reflection.primitives.nuspec"
  6596. ]
  6597. },
  6598. "System.Reflection.TypeExtensions/4.3.0": {
  6599. "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
  6600. "type": "package",
  6601. "path": "system.reflection.typeextensions/4.3.0",
  6602. "files": [
  6603. ".nupkg.metadata",
  6604. ".signature.p7s",
  6605. "ThirdPartyNotices.txt",
  6606. "dotnet_library_license.txt",
  6607. "lib/MonoAndroid10/_._",
  6608. "lib/MonoTouch10/_._",
  6609. "lib/net46/System.Reflection.TypeExtensions.dll",
  6610. "lib/net462/System.Reflection.TypeExtensions.dll",
  6611. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  6612. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6613. "lib/xamarinios10/_._",
  6614. "lib/xamarinmac20/_._",
  6615. "lib/xamarintvos10/_._",
  6616. "lib/xamarinwatchos10/_._",
  6617. "ref/MonoAndroid10/_._",
  6618. "ref/MonoTouch10/_._",
  6619. "ref/net46/System.Reflection.TypeExtensions.dll",
  6620. "ref/net462/System.Reflection.TypeExtensions.dll",
  6621. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  6622. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  6623. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  6624. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  6625. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  6626. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  6627. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  6628. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  6629. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  6630. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  6631. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  6632. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  6633. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  6634. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  6635. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  6636. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  6637. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  6638. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  6639. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  6640. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  6641. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  6642. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  6643. "ref/xamarinios10/_._",
  6644. "ref/xamarinmac20/_._",
  6645. "ref/xamarintvos10/_._",
  6646. "ref/xamarinwatchos10/_._",
  6647. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
  6648. "system.reflection.typeextensions.4.3.0.nupkg.sha512",
  6649. "system.reflection.typeextensions.nuspec"
  6650. ]
  6651. },
  6652. "System.Resources.ResourceManager/4.3.0": {
  6653. "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
  6654. "type": "package",
  6655. "path": "system.resources.resourcemanager/4.3.0",
  6656. "files": [
  6657. ".nupkg.metadata",
  6658. ".signature.p7s",
  6659. "ThirdPartyNotices.txt",
  6660. "dotnet_library_license.txt",
  6661. "lib/MonoAndroid10/_._",
  6662. "lib/MonoTouch10/_._",
  6663. "lib/net45/_._",
  6664. "lib/portable-net45+win8+wp8+wpa81/_._",
  6665. "lib/win8/_._",
  6666. "lib/wp80/_._",
  6667. "lib/wpa81/_._",
  6668. "lib/xamarinios10/_._",
  6669. "lib/xamarinmac20/_._",
  6670. "lib/xamarintvos10/_._",
  6671. "lib/xamarinwatchos10/_._",
  6672. "ref/MonoAndroid10/_._",
  6673. "ref/MonoTouch10/_._",
  6674. "ref/net45/_._",
  6675. "ref/netcore50/System.Resources.ResourceManager.dll",
  6676. "ref/netcore50/System.Resources.ResourceManager.xml",
  6677. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  6678. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  6679. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  6680. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  6681. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  6682. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  6683. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  6684. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  6685. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  6686. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  6687. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  6688. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  6689. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  6690. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  6691. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  6692. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  6693. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  6694. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  6695. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  6696. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  6697. "ref/portable-net45+win8+wp8+wpa81/_._",
  6698. "ref/win8/_._",
  6699. "ref/wp80/_._",
  6700. "ref/wpa81/_._",
  6701. "ref/xamarinios10/_._",
  6702. "ref/xamarinmac20/_._",
  6703. "ref/xamarintvos10/_._",
  6704. "ref/xamarinwatchos10/_._",
  6705. "system.resources.resourcemanager.4.3.0.nupkg.sha512",
  6706. "system.resources.resourcemanager.nuspec"
  6707. ]
  6708. },
  6709. "System.Runtime/4.3.0": {
  6710. "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
  6711. "type": "package",
  6712. "path": "system.runtime/4.3.0",
  6713. "files": [
  6714. ".nupkg.metadata",
  6715. ".signature.p7s",
  6716. "ThirdPartyNotices.txt",
  6717. "dotnet_library_license.txt",
  6718. "lib/MonoAndroid10/_._",
  6719. "lib/MonoTouch10/_._",
  6720. "lib/net45/_._",
  6721. "lib/net462/System.Runtime.dll",
  6722. "lib/portable-net45+win8+wp80+wpa81/_._",
  6723. "lib/win8/_._",
  6724. "lib/wp80/_._",
  6725. "lib/wpa81/_._",
  6726. "lib/xamarinios10/_._",
  6727. "lib/xamarinmac20/_._",
  6728. "lib/xamarintvos10/_._",
  6729. "lib/xamarinwatchos10/_._",
  6730. "ref/MonoAndroid10/_._",
  6731. "ref/MonoTouch10/_._",
  6732. "ref/net45/_._",
  6733. "ref/net462/System.Runtime.dll",
  6734. "ref/netcore50/System.Runtime.dll",
  6735. "ref/netcore50/System.Runtime.xml",
  6736. "ref/netcore50/de/System.Runtime.xml",
  6737. "ref/netcore50/es/System.Runtime.xml",
  6738. "ref/netcore50/fr/System.Runtime.xml",
  6739. "ref/netcore50/it/System.Runtime.xml",
  6740. "ref/netcore50/ja/System.Runtime.xml",
  6741. "ref/netcore50/ko/System.Runtime.xml",
  6742. "ref/netcore50/ru/System.Runtime.xml",
  6743. "ref/netcore50/zh-hans/System.Runtime.xml",
  6744. "ref/netcore50/zh-hant/System.Runtime.xml",
  6745. "ref/netstandard1.0/System.Runtime.dll",
  6746. "ref/netstandard1.0/System.Runtime.xml",
  6747. "ref/netstandard1.0/de/System.Runtime.xml",
  6748. "ref/netstandard1.0/es/System.Runtime.xml",
  6749. "ref/netstandard1.0/fr/System.Runtime.xml",
  6750. "ref/netstandard1.0/it/System.Runtime.xml",
  6751. "ref/netstandard1.0/ja/System.Runtime.xml",
  6752. "ref/netstandard1.0/ko/System.Runtime.xml",
  6753. "ref/netstandard1.0/ru/System.Runtime.xml",
  6754. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  6755. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  6756. "ref/netstandard1.2/System.Runtime.dll",
  6757. "ref/netstandard1.2/System.Runtime.xml",
  6758. "ref/netstandard1.2/de/System.Runtime.xml",
  6759. "ref/netstandard1.2/es/System.Runtime.xml",
  6760. "ref/netstandard1.2/fr/System.Runtime.xml",
  6761. "ref/netstandard1.2/it/System.Runtime.xml",
  6762. "ref/netstandard1.2/ja/System.Runtime.xml",
  6763. "ref/netstandard1.2/ko/System.Runtime.xml",
  6764. "ref/netstandard1.2/ru/System.Runtime.xml",
  6765. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  6766. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  6767. "ref/netstandard1.3/System.Runtime.dll",
  6768. "ref/netstandard1.3/System.Runtime.xml",
  6769. "ref/netstandard1.3/de/System.Runtime.xml",
  6770. "ref/netstandard1.3/es/System.Runtime.xml",
  6771. "ref/netstandard1.3/fr/System.Runtime.xml",
  6772. "ref/netstandard1.3/it/System.Runtime.xml",
  6773. "ref/netstandard1.3/ja/System.Runtime.xml",
  6774. "ref/netstandard1.3/ko/System.Runtime.xml",
  6775. "ref/netstandard1.3/ru/System.Runtime.xml",
  6776. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  6777. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  6778. "ref/netstandard1.5/System.Runtime.dll",
  6779. "ref/netstandard1.5/System.Runtime.xml",
  6780. "ref/netstandard1.5/de/System.Runtime.xml",
  6781. "ref/netstandard1.5/es/System.Runtime.xml",
  6782. "ref/netstandard1.5/fr/System.Runtime.xml",
  6783. "ref/netstandard1.5/it/System.Runtime.xml",
  6784. "ref/netstandard1.5/ja/System.Runtime.xml",
  6785. "ref/netstandard1.5/ko/System.Runtime.xml",
  6786. "ref/netstandard1.5/ru/System.Runtime.xml",
  6787. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  6788. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  6789. "ref/portable-net45+win8+wp80+wpa81/_._",
  6790. "ref/win8/_._",
  6791. "ref/wp80/_._",
  6792. "ref/wpa81/_._",
  6793. "ref/xamarinios10/_._",
  6794. "ref/xamarinmac20/_._",
  6795. "ref/xamarintvos10/_._",
  6796. "ref/xamarinwatchos10/_._",
  6797. "system.runtime.4.3.0.nupkg.sha512",
  6798. "system.runtime.nuspec"
  6799. ]
  6800. },
  6801. "System.Runtime.Caching/4.5.0": {
  6802. "sha512": "95j9KShuaAENf2gLbQ/9YoJDHIWAnoaFYA71xo4QVQyLkOMginn34cD1+6RcYIrqJamLkMXgvgUnOzwzBk+U0w==",
  6803. "type": "package",
  6804. "path": "system.runtime.caching/4.5.0",
  6805. "files": [
  6806. ".nupkg.metadata",
  6807. ".signature.p7s",
  6808. "LICENSE.TXT",
  6809. "THIRD-PARTY-NOTICES.TXT",
  6810. "lib/MonoAndroid10/_._",
  6811. "lib/MonoTouch10/_._",
  6812. "lib/net45/_._",
  6813. "lib/netstandard2.0/System.Runtime.Caching.dll",
  6814. "lib/xamarinios10/_._",
  6815. "lib/xamarinmac20/_._",
  6816. "lib/xamarintvos10/_._",
  6817. "lib/xamarinwatchos10/_._",
  6818. "ref/MonoAndroid10/_._",
  6819. "ref/MonoTouch10/_._",
  6820. "ref/net45/_._",
  6821. "ref/netstandard2.0/System.Runtime.Caching.dll",
  6822. "ref/xamarinios10/_._",
  6823. "ref/xamarinmac20/_._",
  6824. "ref/xamarintvos10/_._",
  6825. "ref/xamarinwatchos10/_._",
  6826. "runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll",
  6827. "runtimes/win/lib/net45/_._",
  6828. "runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll",
  6829. "system.runtime.caching.4.5.0.nupkg.sha512",
  6830. "system.runtime.caching.nuspec",
  6831. "useSharedDesignerContext.txt",
  6832. "version.txt"
  6833. ]
  6834. },
  6835. "System.Runtime.CompilerServices.Unsafe/4.5.2": {
  6836. "sha512": "wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==",
  6837. "type": "package",
  6838. "path": "system.runtime.compilerservices.unsafe/4.5.2",
  6839. "files": [
  6840. ".nupkg.metadata",
  6841. ".signature.p7s",
  6842. "LICENSE.TXT",
  6843. "THIRD-PARTY-NOTICES.TXT",
  6844. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6845. "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6846. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6847. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6848. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6849. "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6850. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  6851. "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
  6852. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
  6853. "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
  6854. "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512",
  6855. "system.runtime.compilerservices.unsafe.nuspec",
  6856. "useSharedDesignerContext.txt",
  6857. "version.txt"
  6858. ]
  6859. },
  6860. "System.Runtime.Extensions/4.3.0": {
  6861. "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
  6862. "type": "package",
  6863. "path": "system.runtime.extensions/4.3.0",
  6864. "files": [
  6865. ".nupkg.metadata",
  6866. ".signature.p7s",
  6867. "ThirdPartyNotices.txt",
  6868. "dotnet_library_license.txt",
  6869. "lib/MonoAndroid10/_._",
  6870. "lib/MonoTouch10/_._",
  6871. "lib/net45/_._",
  6872. "lib/net462/System.Runtime.Extensions.dll",
  6873. "lib/portable-net45+win8+wp8+wpa81/_._",
  6874. "lib/win8/_._",
  6875. "lib/wp80/_._",
  6876. "lib/wpa81/_._",
  6877. "lib/xamarinios10/_._",
  6878. "lib/xamarinmac20/_._",
  6879. "lib/xamarintvos10/_._",
  6880. "lib/xamarinwatchos10/_._",
  6881. "ref/MonoAndroid10/_._",
  6882. "ref/MonoTouch10/_._",
  6883. "ref/net45/_._",
  6884. "ref/net462/System.Runtime.Extensions.dll",
  6885. "ref/netcore50/System.Runtime.Extensions.dll",
  6886. "ref/netcore50/System.Runtime.Extensions.xml",
  6887. "ref/netcore50/de/System.Runtime.Extensions.xml",
  6888. "ref/netcore50/es/System.Runtime.Extensions.xml",
  6889. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  6890. "ref/netcore50/it/System.Runtime.Extensions.xml",
  6891. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  6892. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  6893. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  6894. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  6895. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  6896. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  6897. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  6898. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  6899. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  6900. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  6901. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  6902. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  6903. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  6904. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  6905. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  6906. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  6907. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  6908. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  6909. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  6910. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  6911. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  6912. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  6913. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  6914. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  6915. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  6916. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  6917. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  6918. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  6919. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  6920. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  6921. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  6922. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  6923. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  6924. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  6925. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  6926. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  6927. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  6928. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  6929. "ref/portable-net45+win8+wp8+wpa81/_._",
  6930. "ref/win8/_._",
  6931. "ref/wp80/_._",
  6932. "ref/wpa81/_._",
  6933. "ref/xamarinios10/_._",
  6934. "ref/xamarinmac20/_._",
  6935. "ref/xamarintvos10/_._",
  6936. "ref/xamarinwatchos10/_._",
  6937. "system.runtime.extensions.4.3.0.nupkg.sha512",
  6938. "system.runtime.extensions.nuspec"
  6939. ]
  6940. },
  6941. "System.Runtime.Handles/4.3.0": {
  6942. "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
  6943. "type": "package",
  6944. "path": "system.runtime.handles/4.3.0",
  6945. "files": [
  6946. ".nupkg.metadata",
  6947. ".signature.p7s",
  6948. "ThirdPartyNotices.txt",
  6949. "dotnet_library_license.txt",
  6950. "lib/MonoAndroid10/_._",
  6951. "lib/MonoTouch10/_._",
  6952. "lib/net46/_._",
  6953. "lib/xamarinios10/_._",
  6954. "lib/xamarinmac20/_._",
  6955. "lib/xamarintvos10/_._",
  6956. "lib/xamarinwatchos10/_._",
  6957. "ref/MonoAndroid10/_._",
  6958. "ref/MonoTouch10/_._",
  6959. "ref/net46/_._",
  6960. "ref/netstandard1.3/System.Runtime.Handles.dll",
  6961. "ref/netstandard1.3/System.Runtime.Handles.xml",
  6962. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  6963. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  6964. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  6965. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  6966. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  6967. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  6968. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  6969. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  6970. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  6971. "ref/xamarinios10/_._",
  6972. "ref/xamarinmac20/_._",
  6973. "ref/xamarintvos10/_._",
  6974. "ref/xamarinwatchos10/_._",
  6975. "system.runtime.handles.4.3.0.nupkg.sha512",
  6976. "system.runtime.handles.nuspec"
  6977. ]
  6978. },
  6979. "System.Runtime.InteropServices/4.3.0": {
  6980. "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
  6981. "type": "package",
  6982. "path": "system.runtime.interopservices/4.3.0",
  6983. "files": [
  6984. ".nupkg.metadata",
  6985. ".signature.p7s",
  6986. "ThirdPartyNotices.txt",
  6987. "dotnet_library_license.txt",
  6988. "lib/MonoAndroid10/_._",
  6989. "lib/MonoTouch10/_._",
  6990. "lib/net45/_._",
  6991. "lib/net462/System.Runtime.InteropServices.dll",
  6992. "lib/net463/System.Runtime.InteropServices.dll",
  6993. "lib/portable-net45+win8+wpa81/_._",
  6994. "lib/win8/_._",
  6995. "lib/wpa81/_._",
  6996. "lib/xamarinios10/_._",
  6997. "lib/xamarinmac20/_._",
  6998. "lib/xamarintvos10/_._",
  6999. "lib/xamarinwatchos10/_._",
  7000. "ref/MonoAndroid10/_._",
  7001. "ref/MonoTouch10/_._",
  7002. "ref/net45/_._",
  7003. "ref/net462/System.Runtime.InteropServices.dll",
  7004. "ref/net463/System.Runtime.InteropServices.dll",
  7005. "ref/netcore50/System.Runtime.InteropServices.dll",
  7006. "ref/netcore50/System.Runtime.InteropServices.xml",
  7007. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  7008. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  7009. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  7010. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  7011. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  7012. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  7013. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  7014. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  7015. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  7016. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  7017. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  7018. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  7019. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  7020. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  7021. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  7022. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  7023. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  7024. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  7025. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  7026. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  7027. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  7028. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  7029. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  7030. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  7031. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  7032. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  7033. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  7034. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  7035. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  7036. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  7037. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  7038. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  7039. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  7040. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  7041. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  7042. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  7043. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  7044. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  7045. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  7046. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  7047. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  7048. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  7049. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  7050. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  7051. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  7052. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  7053. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  7054. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  7055. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  7056. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  7057. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  7058. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  7059. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  7060. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  7061. "ref/portable-net45+win8+wpa81/_._",
  7062. "ref/win8/_._",
  7063. "ref/wpa81/_._",
  7064. "ref/xamarinios10/_._",
  7065. "ref/xamarinmac20/_._",
  7066. "ref/xamarintvos10/_._",
  7067. "ref/xamarinwatchos10/_._",
  7068. "system.runtime.interopservices.4.3.0.nupkg.sha512",
  7069. "system.runtime.interopservices.nuspec"
  7070. ]
  7071. },
  7072. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  7073. "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==",
  7074. "type": "package",
  7075. "path": "system.runtime.interopservices.runtimeinformation/4.3.0",
  7076. "files": [
  7077. ".nupkg.metadata",
  7078. ".signature.p7s",
  7079. "ThirdPartyNotices.txt",
  7080. "dotnet_library_license.txt",
  7081. "lib/MonoAndroid10/_._",
  7082. "lib/MonoTouch10/_._",
  7083. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7084. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7085. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  7086. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  7087. "lib/xamarinios10/_._",
  7088. "lib/xamarinmac20/_._",
  7089. "lib/xamarintvos10/_._",
  7090. "lib/xamarinwatchos10/_._",
  7091. "ref/MonoAndroid10/_._",
  7092. "ref/MonoTouch10/_._",
  7093. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7094. "ref/xamarinios10/_._",
  7095. "ref/xamarinmac20/_._",
  7096. "ref/xamarintvos10/_._",
  7097. "ref/xamarinwatchos10/_._",
  7098. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7099. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7100. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  7101. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  7102. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  7103. "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
  7104. "system.runtime.interopservices.runtimeinformation.nuspec"
  7105. ]
  7106. },
  7107. "System.Runtime.Numerics/4.3.0": {
  7108. "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==",
  7109. "type": "package",
  7110. "path": "system.runtime.numerics/4.3.0",
  7111. "files": [
  7112. ".nupkg.metadata",
  7113. ".signature.p7s",
  7114. "ThirdPartyNotices.txt",
  7115. "dotnet_library_license.txt",
  7116. "lib/MonoAndroid10/_._",
  7117. "lib/MonoTouch10/_._",
  7118. "lib/net45/_._",
  7119. "lib/netcore50/System.Runtime.Numerics.dll",
  7120. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  7121. "lib/portable-net45+win8+wpa81/_._",
  7122. "lib/win8/_._",
  7123. "lib/wpa81/_._",
  7124. "lib/xamarinios10/_._",
  7125. "lib/xamarinmac20/_._",
  7126. "lib/xamarintvos10/_._",
  7127. "lib/xamarinwatchos10/_._",
  7128. "ref/MonoAndroid10/_._",
  7129. "ref/MonoTouch10/_._",
  7130. "ref/net45/_._",
  7131. "ref/netcore50/System.Runtime.Numerics.dll",
  7132. "ref/netcore50/System.Runtime.Numerics.xml",
  7133. "ref/netcore50/de/System.Runtime.Numerics.xml",
  7134. "ref/netcore50/es/System.Runtime.Numerics.xml",
  7135. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  7136. "ref/netcore50/it/System.Runtime.Numerics.xml",
  7137. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  7138. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  7139. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  7140. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  7141. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  7142. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  7143. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  7144. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  7145. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  7146. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  7147. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  7148. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  7149. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  7150. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  7151. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  7152. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  7153. "ref/portable-net45+win8+wpa81/_._",
  7154. "ref/win8/_._",
  7155. "ref/wpa81/_._",
  7156. "ref/xamarinios10/_._",
  7157. "ref/xamarinmac20/_._",
  7158. "ref/xamarintvos10/_._",
  7159. "ref/xamarinwatchos10/_._",
  7160. "system.runtime.numerics.4.3.0.nupkg.sha512",
  7161. "system.runtime.numerics.nuspec"
  7162. ]
  7163. },
  7164. "System.Runtime.Serialization.Formatters/4.3.0": {
  7165. "sha512": "KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==",
  7166. "type": "package",
  7167. "path": "system.runtime.serialization.formatters/4.3.0",
  7168. "files": [
  7169. ".nupkg.metadata",
  7170. ".signature.p7s",
  7171. "ThirdPartyNotices.txt",
  7172. "dotnet_library_license.txt",
  7173. "lib/MonoAndroid10/_._",
  7174. "lib/MonoTouch10/_._",
  7175. "lib/net46/System.Runtime.Serialization.Formatters.dll",
  7176. "lib/netstandard1.4/System.Runtime.Serialization.Formatters.dll",
  7177. "lib/xamarinios10/_._",
  7178. "lib/xamarinmac20/_._",
  7179. "lib/xamarintvos10/_._",
  7180. "lib/xamarinwatchos10/_._",
  7181. "ref/MonoAndroid10/_._",
  7182. "ref/MonoTouch10/_._",
  7183. "ref/net46/System.Runtime.Serialization.Formatters.dll",
  7184. "ref/netstandard1.3/System.Runtime.Serialization.Formatters.dll",
  7185. "ref/xamarinios10/_._",
  7186. "ref/xamarinmac20/_._",
  7187. "ref/xamarintvos10/_._",
  7188. "ref/xamarinwatchos10/_._",
  7189. "system.runtime.serialization.formatters.4.3.0.nupkg.sha512",
  7190. "system.runtime.serialization.formatters.nuspec"
  7191. ]
  7192. },
  7193. "System.Runtime.Serialization.Json/4.3.0": {
  7194. "sha512": "CpVfOH0M/uZ5PH+M9+Gu56K0j9lJw3M+PKRegTkcrY/stOIvRUeonggxNrfBYLA5WOHL2j15KNJuTuld3x4o9w==",
  7195. "type": "package",
  7196. "path": "system.runtime.serialization.json/4.3.0",
  7197. "files": [
  7198. ".nupkg.metadata",
  7199. ".signature.p7s",
  7200. "ThirdPartyNotices.txt",
  7201. "dotnet_library_license.txt",
  7202. "lib/MonoAndroid10/_._",
  7203. "lib/MonoTouch10/_._",
  7204. "lib/net45/_._",
  7205. "lib/netcore50/System.Runtime.Serialization.Json.dll",
  7206. "lib/netstandard1.3/System.Runtime.Serialization.Json.dll",
  7207. "lib/portable-net45+win8+wp8+wpa81/_._",
  7208. "lib/win8/_._",
  7209. "lib/wp80/_._",
  7210. "lib/wpa81/_._",
  7211. "lib/xamarinios10/_._",
  7212. "lib/xamarinmac20/_._",
  7213. "lib/xamarintvos10/_._",
  7214. "lib/xamarinwatchos10/_._",
  7215. "ref/MonoAndroid10/_._",
  7216. "ref/MonoTouch10/_._",
  7217. "ref/net45/_._",
  7218. "ref/netcore50/System.Runtime.Serialization.Json.dll",
  7219. "ref/netcore50/System.Runtime.Serialization.Json.xml",
  7220. "ref/netcore50/de/System.Runtime.Serialization.Json.xml",
  7221. "ref/netcore50/es/System.Runtime.Serialization.Json.xml",
  7222. "ref/netcore50/fr/System.Runtime.Serialization.Json.xml",
  7223. "ref/netcore50/it/System.Runtime.Serialization.Json.xml",
  7224. "ref/netcore50/ja/System.Runtime.Serialization.Json.xml",
  7225. "ref/netcore50/ko/System.Runtime.Serialization.Json.xml",
  7226. "ref/netcore50/ru/System.Runtime.Serialization.Json.xml",
  7227. "ref/netcore50/zh-hans/System.Runtime.Serialization.Json.xml",
  7228. "ref/netcore50/zh-hant/System.Runtime.Serialization.Json.xml",
  7229. "ref/netstandard1.0/System.Runtime.Serialization.Json.dll",
  7230. "ref/netstandard1.0/System.Runtime.Serialization.Json.xml",
  7231. "ref/netstandard1.0/de/System.Runtime.Serialization.Json.xml",
  7232. "ref/netstandard1.0/es/System.Runtime.Serialization.Json.xml",
  7233. "ref/netstandard1.0/fr/System.Runtime.Serialization.Json.xml",
  7234. "ref/netstandard1.0/it/System.Runtime.Serialization.Json.xml",
  7235. "ref/netstandard1.0/ja/System.Runtime.Serialization.Json.xml",
  7236. "ref/netstandard1.0/ko/System.Runtime.Serialization.Json.xml",
  7237. "ref/netstandard1.0/ru/System.Runtime.Serialization.Json.xml",
  7238. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Json.xml",
  7239. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Json.xml",
  7240. "ref/portable-net45+win8+wp8+wpa81/_._",
  7241. "ref/win8/_._",
  7242. "ref/wp80/_._",
  7243. "ref/wpa81/_._",
  7244. "ref/xamarinios10/_._",
  7245. "ref/xamarinmac20/_._",
  7246. "ref/xamarintvos10/_._",
  7247. "ref/xamarinwatchos10/_._",
  7248. "system.runtime.serialization.json.4.3.0.nupkg.sha512",
  7249. "system.runtime.serialization.json.nuspec"
  7250. ]
  7251. },
  7252. "System.Runtime.Serialization.Primitives/4.3.0": {
  7253. "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==",
  7254. "type": "package",
  7255. "path": "system.runtime.serialization.primitives/4.3.0",
  7256. "files": [
  7257. ".nupkg.metadata",
  7258. ".signature.p7s",
  7259. "ThirdPartyNotices.txt",
  7260. "dotnet_library_license.txt",
  7261. "lib/MonoAndroid10/_._",
  7262. "lib/MonoTouch10/_._",
  7263. "lib/net45/_._",
  7264. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  7265. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7266. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7267. "lib/portable-net45+win8+wp8+wpa81/_._",
  7268. "lib/win8/_._",
  7269. "lib/wp80/_._",
  7270. "lib/wpa81/_._",
  7271. "lib/xamarinios10/_._",
  7272. "lib/xamarinmac20/_._",
  7273. "lib/xamarintvos10/_._",
  7274. "lib/xamarinwatchos10/_._",
  7275. "ref/MonoAndroid10/_._",
  7276. "ref/MonoTouch10/_._",
  7277. "ref/net45/_._",
  7278. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  7279. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  7280. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  7281. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  7282. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  7283. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  7284. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  7285. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  7286. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  7287. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  7288. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7289. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7290. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  7291. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  7292. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  7293. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  7294. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  7295. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  7296. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  7297. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  7298. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  7299. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7300. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7301. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  7302. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  7303. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  7304. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  7305. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  7306. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  7307. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  7308. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  7309. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  7310. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  7311. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  7312. "ref/portable-net45+win8+wp8+wpa81/_._",
  7313. "ref/win8/_._",
  7314. "ref/wp80/_._",
  7315. "ref/wpa81/_._",
  7316. "ref/xamarinios10/_._",
  7317. "ref/xamarinmac20/_._",
  7318. "ref/xamarintvos10/_._",
  7319. "ref/xamarinwatchos10/_._",
  7320. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  7321. "system.runtime.serialization.primitives.4.3.0.nupkg.sha512",
  7322. "system.runtime.serialization.primitives.nuspec"
  7323. ]
  7324. },
  7325. "System.Security.AccessControl/4.5.0": {
  7326. "sha512": "vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
  7327. "type": "package",
  7328. "path": "system.security.accesscontrol/4.5.0",
  7329. "files": [
  7330. ".nupkg.metadata",
  7331. ".signature.p7s",
  7332. "LICENSE.TXT",
  7333. "THIRD-PARTY-NOTICES.TXT",
  7334. "lib/net46/System.Security.AccessControl.dll",
  7335. "lib/net461/System.Security.AccessControl.dll",
  7336. "lib/netstandard1.3/System.Security.AccessControl.dll",
  7337. "lib/netstandard2.0/System.Security.AccessControl.dll",
  7338. "lib/uap10.0.16299/_._",
  7339. "ref/net46/System.Security.AccessControl.dll",
  7340. "ref/net461/System.Security.AccessControl.dll",
  7341. "ref/net461/System.Security.AccessControl.xml",
  7342. "ref/netstandard1.3/System.Security.AccessControl.dll",
  7343. "ref/netstandard1.3/System.Security.AccessControl.xml",
  7344. "ref/netstandard1.3/de/System.Security.AccessControl.xml",
  7345. "ref/netstandard1.3/es/System.Security.AccessControl.xml",
  7346. "ref/netstandard1.3/fr/System.Security.AccessControl.xml",
  7347. "ref/netstandard1.3/it/System.Security.AccessControl.xml",
  7348. "ref/netstandard1.3/ja/System.Security.AccessControl.xml",
  7349. "ref/netstandard1.3/ko/System.Security.AccessControl.xml",
  7350. "ref/netstandard1.3/ru/System.Security.AccessControl.xml",
  7351. "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml",
  7352. "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml",
  7353. "ref/netstandard2.0/System.Security.AccessControl.dll",
  7354. "ref/netstandard2.0/System.Security.AccessControl.xml",
  7355. "ref/uap10.0.16299/_._",
  7356. "runtimes/win/lib/net46/System.Security.AccessControl.dll",
  7357. "runtimes/win/lib/net461/System.Security.AccessControl.dll",
  7358. "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll",
  7359. "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll",
  7360. "runtimes/win/lib/uap10.0.16299/_._",
  7361. "system.security.accesscontrol.4.5.0.nupkg.sha512",
  7362. "system.security.accesscontrol.nuspec",
  7363. "useSharedDesignerContext.txt",
  7364. "version.txt"
  7365. ]
  7366. },
  7367. "System.Security.Cryptography.Algorithms/4.3.0": {
  7368. "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==",
  7369. "type": "package",
  7370. "path": "system.security.cryptography.algorithms/4.3.0",
  7371. "files": [
  7372. ".nupkg.metadata",
  7373. ".signature.p7s",
  7374. "ThirdPartyNotices.txt",
  7375. "dotnet_library_license.txt",
  7376. "lib/MonoAndroid10/_._",
  7377. "lib/MonoTouch10/_._",
  7378. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  7379. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  7380. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  7381. "lib/xamarinios10/_._",
  7382. "lib/xamarinmac20/_._",
  7383. "lib/xamarintvos10/_._",
  7384. "lib/xamarinwatchos10/_._",
  7385. "ref/MonoAndroid10/_._",
  7386. "ref/MonoTouch10/_._",
  7387. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  7388. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  7389. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  7390. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  7391. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  7392. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7393. "ref/xamarinios10/_._",
  7394. "ref/xamarinmac20/_._",
  7395. "ref/xamarintvos10/_._",
  7396. "ref/xamarinwatchos10/_._",
  7397. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7398. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7399. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  7400. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  7401. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  7402. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  7403. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  7404. "system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
  7405. "system.security.cryptography.algorithms.nuspec"
  7406. ]
  7407. },
  7408. "System.Security.Cryptography.Cng/4.5.0": {
  7409. "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==",
  7410. "type": "package",
  7411. "path": "system.security.cryptography.cng/4.5.0",
  7412. "files": [
  7413. ".nupkg.metadata",
  7414. ".signature.p7s",
  7415. "LICENSE.TXT",
  7416. "THIRD-PARTY-NOTICES.TXT",
  7417. "lib/MonoAndroid10/_._",
  7418. "lib/MonoTouch10/_._",
  7419. "lib/net46/System.Security.Cryptography.Cng.dll",
  7420. "lib/net461/System.Security.Cryptography.Cng.dll",
  7421. "lib/net462/System.Security.Cryptography.Cng.dll",
  7422. "lib/net47/System.Security.Cryptography.Cng.dll",
  7423. "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7424. "lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7425. "lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7426. "lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7427. "lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7428. "lib/uap10.0.16299/_._",
  7429. "lib/xamarinios10/_._",
  7430. "lib/xamarinmac20/_._",
  7431. "lib/xamarintvos10/_._",
  7432. "lib/xamarinwatchos10/_._",
  7433. "ref/MonoAndroid10/_._",
  7434. "ref/MonoTouch10/_._",
  7435. "ref/net46/System.Security.Cryptography.Cng.dll",
  7436. "ref/net461/System.Security.Cryptography.Cng.dll",
  7437. "ref/net461/System.Security.Cryptography.Cng.xml",
  7438. "ref/net462/System.Security.Cryptography.Cng.dll",
  7439. "ref/net462/System.Security.Cryptography.Cng.xml",
  7440. "ref/net47/System.Security.Cryptography.Cng.dll",
  7441. "ref/net47/System.Security.Cryptography.Cng.xml",
  7442. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7443. "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
  7444. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7445. "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
  7446. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  7447. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7448. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7449. "ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
  7450. "ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
  7451. "ref/uap10.0.16299/_._",
  7452. "ref/xamarinios10/_._",
  7453. "ref/xamarinmac20/_._",
  7454. "ref/xamarintvos10/_._",
  7455. "ref/xamarinwatchos10/_._",
  7456. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  7457. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  7458. "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
  7459. "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
  7460. "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
  7461. "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
  7462. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  7463. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  7464. "runtimes/win/lib/uap10.0.16299/_._",
  7465. "system.security.cryptography.cng.4.5.0.nupkg.sha512",
  7466. "system.security.cryptography.cng.nuspec",
  7467. "useSharedDesignerContext.txt",
  7468. "version.txt"
  7469. ]
  7470. },
  7471. "System.Security.Cryptography.Csp/4.3.0": {
  7472. "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==",
  7473. "type": "package",
  7474. "path": "system.security.cryptography.csp/4.3.0",
  7475. "files": [
  7476. ".nupkg.metadata",
  7477. ".signature.p7s",
  7478. "ThirdPartyNotices.txt",
  7479. "dotnet_library_license.txt",
  7480. "lib/MonoAndroid10/_._",
  7481. "lib/MonoTouch10/_._",
  7482. "lib/net46/System.Security.Cryptography.Csp.dll",
  7483. "lib/xamarinios10/_._",
  7484. "lib/xamarinmac20/_._",
  7485. "lib/xamarintvos10/_._",
  7486. "lib/xamarinwatchos10/_._",
  7487. "ref/MonoAndroid10/_._",
  7488. "ref/MonoTouch10/_._",
  7489. "ref/net46/System.Security.Cryptography.Csp.dll",
  7490. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7491. "ref/xamarinios10/_._",
  7492. "ref/xamarinmac20/_._",
  7493. "ref/xamarintvos10/_._",
  7494. "ref/xamarinwatchos10/_._",
  7495. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7496. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  7497. "runtimes/win/lib/netcore50/_._",
  7498. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  7499. "system.security.cryptography.csp.4.3.0.nupkg.sha512",
  7500. "system.security.cryptography.csp.nuspec"
  7501. ]
  7502. },
  7503. "System.Security.Cryptography.Encoding/4.3.0": {
  7504. "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==",
  7505. "type": "package",
  7506. "path": "system.security.cryptography.encoding/4.3.0",
  7507. "files": [
  7508. ".nupkg.metadata",
  7509. ".signature.p7s",
  7510. "ThirdPartyNotices.txt",
  7511. "dotnet_library_license.txt",
  7512. "lib/MonoAndroid10/_._",
  7513. "lib/MonoTouch10/_._",
  7514. "lib/net46/System.Security.Cryptography.Encoding.dll",
  7515. "lib/xamarinios10/_._",
  7516. "lib/xamarinmac20/_._",
  7517. "lib/xamarintvos10/_._",
  7518. "lib/xamarinwatchos10/_._",
  7519. "ref/MonoAndroid10/_._",
  7520. "ref/MonoTouch10/_._",
  7521. "ref/net46/System.Security.Cryptography.Encoding.dll",
  7522. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7523. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  7524. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  7525. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  7526. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  7527. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  7528. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  7529. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  7530. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  7531. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  7532. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  7533. "ref/xamarinios10/_._",
  7534. "ref/xamarinmac20/_._",
  7535. "ref/xamarintvos10/_._",
  7536. "ref/xamarinwatchos10/_._",
  7537. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7538. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  7539. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  7540. "system.security.cryptography.encoding.4.3.0.nupkg.sha512",
  7541. "system.security.cryptography.encoding.nuspec"
  7542. ]
  7543. },
  7544. "System.Security.Cryptography.OpenSsl/4.3.0": {
  7545. "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==",
  7546. "type": "package",
  7547. "path": "system.security.cryptography.openssl/4.3.0",
  7548. "files": [
  7549. ".nupkg.metadata",
  7550. ".signature.p7s",
  7551. "ThirdPartyNotices.txt",
  7552. "dotnet_library_license.txt",
  7553. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7554. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7555. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  7556. "system.security.cryptography.openssl.4.3.0.nupkg.sha512",
  7557. "system.security.cryptography.openssl.nuspec"
  7558. ]
  7559. },
  7560. "System.Security.Cryptography.Primitives/4.3.0": {
  7561. "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==",
  7562. "type": "package",
  7563. "path": "system.security.cryptography.primitives/4.3.0",
  7564. "files": [
  7565. ".nupkg.metadata",
  7566. ".signature.p7s",
  7567. "ThirdPartyNotices.txt",
  7568. "dotnet_library_license.txt",
  7569. "lib/MonoAndroid10/_._",
  7570. "lib/MonoTouch10/_._",
  7571. "lib/net46/System.Security.Cryptography.Primitives.dll",
  7572. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7573. "lib/xamarinios10/_._",
  7574. "lib/xamarinmac20/_._",
  7575. "lib/xamarintvos10/_._",
  7576. "lib/xamarinwatchos10/_._",
  7577. "ref/MonoAndroid10/_._",
  7578. "ref/MonoTouch10/_._",
  7579. "ref/net46/System.Security.Cryptography.Primitives.dll",
  7580. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  7581. "ref/xamarinios10/_._",
  7582. "ref/xamarinmac20/_._",
  7583. "ref/xamarintvos10/_._",
  7584. "ref/xamarinwatchos10/_._",
  7585. "system.security.cryptography.primitives.4.3.0.nupkg.sha512",
  7586. "system.security.cryptography.primitives.nuspec"
  7587. ]
  7588. },
  7589. "System.Security.Cryptography.ProtectedData/4.5.0": {
  7590. "sha512": "wLBKzFnDCxP12VL9ANydSYhk59fC4cvOr9ypYQLPnAj48NQIhqnjdD2yhP8yEKyBJEjERWS9DisKL7rX5eU25Q==",
  7591. "type": "package",
  7592. "path": "system.security.cryptography.protecteddata/4.5.0",
  7593. "files": [
  7594. ".nupkg.metadata",
  7595. ".signature.p7s",
  7596. "LICENSE.TXT",
  7597. "THIRD-PARTY-NOTICES.TXT",
  7598. "lib/MonoAndroid10/_._",
  7599. "lib/MonoTouch10/_._",
  7600. "lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7601. "lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7602. "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7603. "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7604. "lib/xamarinios10/_._",
  7605. "lib/xamarinmac20/_._",
  7606. "lib/xamarintvos10/_._",
  7607. "lib/xamarinwatchos10/_._",
  7608. "ref/MonoAndroid10/_._",
  7609. "ref/MonoTouch10/_._",
  7610. "ref/net46/System.Security.Cryptography.ProtectedData.dll",
  7611. "ref/net461/System.Security.Cryptography.ProtectedData.dll",
  7612. "ref/net461/System.Security.Cryptography.ProtectedData.xml",
  7613. "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7614. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7615. "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
  7616. "ref/xamarinios10/_._",
  7617. "ref/xamarinmac20/_._",
  7618. "ref/xamarintvos10/_._",
  7619. "ref/xamarinwatchos10/_._",
  7620. "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll",
  7621. "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll",
  7622. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll",
  7623. "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
  7624. "system.security.cryptography.protecteddata.4.5.0.nupkg.sha512",
  7625. "system.security.cryptography.protecteddata.nuspec",
  7626. "useSharedDesignerContext.txt",
  7627. "version.txt"
  7628. ]
  7629. },
  7630. "System.Security.Cryptography.X509Certificates/4.3.0": {
  7631. "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==",
  7632. "type": "package",
  7633. "path": "system.security.cryptography.x509certificates/4.3.0",
  7634. "files": [
  7635. ".nupkg.metadata",
  7636. ".signature.p7s",
  7637. "ThirdPartyNotices.txt",
  7638. "dotnet_library_license.txt",
  7639. "lib/MonoAndroid10/_._",
  7640. "lib/MonoTouch10/_._",
  7641. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7642. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7643. "lib/xamarinios10/_._",
  7644. "lib/xamarinmac20/_._",
  7645. "lib/xamarintvos10/_._",
  7646. "lib/xamarinwatchos10/_._",
  7647. "ref/MonoAndroid10/_._",
  7648. "ref/MonoTouch10/_._",
  7649. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  7650. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  7651. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  7652. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  7653. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  7654. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  7655. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  7656. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  7657. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  7658. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  7659. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  7660. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7661. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7662. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  7663. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  7664. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  7665. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  7666. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  7667. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  7668. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  7669. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  7670. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  7671. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  7672. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  7673. "ref/xamarinios10/_._",
  7674. "ref/xamarinmac20/_._",
  7675. "ref/xamarintvos10/_._",
  7676. "ref/xamarinwatchos10/_._",
  7677. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7678. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  7679. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  7680. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  7681. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  7682. "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
  7683. "system.security.cryptography.x509certificates.nuspec"
  7684. ]
  7685. },
  7686. "System.Security.Permissions/4.5.0": {
  7687. "sha512": "9gdyuARhUR7H+p5CjyUB/zPk7/Xut3wUSP8NJQB6iZr8L3XUXTMdoLeVAg9N4rqF8oIpE7MpdqHdDHQ7XgJe0g==",
  7688. "type": "package",
  7689. "path": "system.security.permissions/4.5.0",
  7690. "files": [
  7691. ".nupkg.metadata",
  7692. ".signature.p7s",
  7693. "LICENSE.TXT",
  7694. "THIRD-PARTY-NOTICES.TXT",
  7695. "lib/net461/System.Security.Permissions.dll",
  7696. "lib/netstandard2.0/System.Security.Permissions.dll",
  7697. "ref/net461/System.Security.Permissions.dll",
  7698. "ref/net461/System.Security.Permissions.xml",
  7699. "ref/netstandard2.0/System.Security.Permissions.dll",
  7700. "ref/netstandard2.0/System.Security.Permissions.xml",
  7701. "system.security.permissions.4.5.0.nupkg.sha512",
  7702. "system.security.permissions.nuspec",
  7703. "useSharedDesignerContext.txt",
  7704. "version.txt"
  7705. ]
  7706. },
  7707. "System.Security.Principal.Windows/4.5.0": {
  7708. "sha512": "U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
  7709. "type": "package",
  7710. "path": "system.security.principal.windows/4.5.0",
  7711. "files": [
  7712. ".nupkg.metadata",
  7713. ".signature.p7s",
  7714. "LICENSE.TXT",
  7715. "THIRD-PARTY-NOTICES.TXT",
  7716. "lib/net46/System.Security.Principal.Windows.dll",
  7717. "lib/net461/System.Security.Principal.Windows.dll",
  7718. "lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7719. "lib/netstandard2.0/System.Security.Principal.Windows.dll",
  7720. "lib/uap10.0.16299/_._",
  7721. "ref/net46/System.Security.Principal.Windows.dll",
  7722. "ref/net461/System.Security.Principal.Windows.dll",
  7723. "ref/net461/System.Security.Principal.Windows.xml",
  7724. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  7725. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  7726. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  7727. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  7728. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  7729. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  7730. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  7731. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  7732. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  7733. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  7734. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  7735. "ref/netstandard2.0/System.Security.Principal.Windows.dll",
  7736. "ref/netstandard2.0/System.Security.Principal.Windows.xml",
  7737. "ref/uap10.0.16299/_._",
  7738. "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7739. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  7740. "runtimes/win/lib/net461/System.Security.Principal.Windows.dll",
  7741. "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll",
  7742. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  7743. "runtimes/win/lib/uap10.0.16299/_._",
  7744. "system.security.principal.windows.4.5.0.nupkg.sha512",
  7745. "system.security.principal.windows.nuspec",
  7746. "useSharedDesignerContext.txt",
  7747. "version.txt"
  7748. ]
  7749. },
  7750. "System.Security.SecureString/4.3.0": {
  7751. "sha512": "PnXp38O9q/2Oe4iZHMH60kinScv6QiiL2XH54Pj2t0Y6c2zKPEiAZsM/M3wBOHLNTBDFP0zfy13WN2M0qFz5jg==",
  7752. "type": "package",
  7753. "path": "system.security.securestring/4.3.0",
  7754. "files": [
  7755. ".nupkg.metadata",
  7756. ".signature.p7s",
  7757. "ThirdPartyNotices.txt",
  7758. "dotnet_library_license.txt",
  7759. "lib/MonoAndroid10/_._",
  7760. "lib/MonoTouch10/_._",
  7761. "lib/net46/System.Security.SecureString.dll",
  7762. "lib/xamarinios10/_._",
  7763. "lib/xamarinmac20/_._",
  7764. "lib/xamarintvos10/_._",
  7765. "lib/xamarinwatchos10/_._",
  7766. "ref/MonoAndroid10/_._",
  7767. "ref/MonoTouch10/_._",
  7768. "ref/net46/System.Security.SecureString.dll",
  7769. "ref/netstandard1.3/System.Security.SecureString.dll",
  7770. "ref/netstandard1.3/System.Security.SecureString.xml",
  7771. "ref/netstandard1.3/de/System.Security.SecureString.xml",
  7772. "ref/netstandard1.3/es/System.Security.SecureString.xml",
  7773. "ref/netstandard1.3/fr/System.Security.SecureString.xml",
  7774. "ref/netstandard1.3/it/System.Security.SecureString.xml",
  7775. "ref/netstandard1.3/ja/System.Security.SecureString.xml",
  7776. "ref/netstandard1.3/ko/System.Security.SecureString.xml",
  7777. "ref/netstandard1.3/ru/System.Security.SecureString.xml",
  7778. "ref/netstandard1.3/zh-hans/System.Security.SecureString.xml",
  7779. "ref/netstandard1.3/zh-hant/System.Security.SecureString.xml",
  7780. "ref/xamarinios10/_._",
  7781. "ref/xamarinmac20/_._",
  7782. "ref/xamarintvos10/_._",
  7783. "ref/xamarinwatchos10/_._",
  7784. "runtimes/unix/lib/netstandard1.3/System.Security.SecureString.dll",
  7785. "runtimes/win/lib/net46/System.Security.SecureString.dll",
  7786. "runtimes/win/lib/netstandard1.3/System.Security.SecureString.dll",
  7787. "system.security.securestring.4.3.0.nupkg.sha512",
  7788. "system.security.securestring.nuspec"
  7789. ]
  7790. },
  7791. "System.Text.Encoding/4.3.0": {
  7792. "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
  7793. "type": "package",
  7794. "path": "system.text.encoding/4.3.0",
  7795. "files": [
  7796. ".nupkg.metadata",
  7797. ".signature.p7s",
  7798. "ThirdPartyNotices.txt",
  7799. "dotnet_library_license.txt",
  7800. "lib/MonoAndroid10/_._",
  7801. "lib/MonoTouch10/_._",
  7802. "lib/net45/_._",
  7803. "lib/portable-net45+win8+wp8+wpa81/_._",
  7804. "lib/win8/_._",
  7805. "lib/wp80/_._",
  7806. "lib/wpa81/_._",
  7807. "lib/xamarinios10/_._",
  7808. "lib/xamarinmac20/_._",
  7809. "lib/xamarintvos10/_._",
  7810. "lib/xamarinwatchos10/_._",
  7811. "ref/MonoAndroid10/_._",
  7812. "ref/MonoTouch10/_._",
  7813. "ref/net45/_._",
  7814. "ref/netcore50/System.Text.Encoding.dll",
  7815. "ref/netcore50/System.Text.Encoding.xml",
  7816. "ref/netcore50/de/System.Text.Encoding.xml",
  7817. "ref/netcore50/es/System.Text.Encoding.xml",
  7818. "ref/netcore50/fr/System.Text.Encoding.xml",
  7819. "ref/netcore50/it/System.Text.Encoding.xml",
  7820. "ref/netcore50/ja/System.Text.Encoding.xml",
  7821. "ref/netcore50/ko/System.Text.Encoding.xml",
  7822. "ref/netcore50/ru/System.Text.Encoding.xml",
  7823. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  7824. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  7825. "ref/netstandard1.0/System.Text.Encoding.dll",
  7826. "ref/netstandard1.0/System.Text.Encoding.xml",
  7827. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  7828. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  7829. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  7830. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  7831. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  7832. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  7833. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  7834. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  7835. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  7836. "ref/netstandard1.3/System.Text.Encoding.dll",
  7837. "ref/netstandard1.3/System.Text.Encoding.xml",
  7838. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  7839. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  7840. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  7841. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  7842. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  7843. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  7844. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  7845. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  7846. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  7847. "ref/portable-net45+win8+wp8+wpa81/_._",
  7848. "ref/win8/_._",
  7849. "ref/wp80/_._",
  7850. "ref/wpa81/_._",
  7851. "ref/xamarinios10/_._",
  7852. "ref/xamarinmac20/_._",
  7853. "ref/xamarintvos10/_._",
  7854. "ref/xamarinwatchos10/_._",
  7855. "system.text.encoding.4.3.0.nupkg.sha512",
  7856. "system.text.encoding.nuspec"
  7857. ]
  7858. },
  7859. "System.Text.Encoding.CodePages/4.5.1": {
  7860. "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
  7861. "type": "package",
  7862. "path": "system.text.encoding.codepages/4.5.1",
  7863. "files": [
  7864. ".nupkg.metadata",
  7865. ".signature.p7s",
  7866. "LICENSE.TXT",
  7867. "THIRD-PARTY-NOTICES.TXT",
  7868. "lib/MonoAndroid10/_._",
  7869. "lib/MonoTouch10/_._",
  7870. "lib/net46/System.Text.Encoding.CodePages.dll",
  7871. "lib/net461/System.Text.Encoding.CodePages.dll",
  7872. "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7873. "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7874. "lib/xamarinios10/_._",
  7875. "lib/xamarinmac20/_._",
  7876. "lib/xamarintvos10/_._",
  7877. "lib/xamarinwatchos10/_._",
  7878. "ref/MonoAndroid10/_._",
  7879. "ref/MonoTouch10/_._",
  7880. "ref/xamarinios10/_._",
  7881. "ref/xamarinmac20/_._",
  7882. "ref/xamarintvos10/_._",
  7883. "ref/xamarinwatchos10/_._",
  7884. "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
  7885. "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
  7886. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  7887. "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
  7888. "system.text.encoding.codepages.4.5.1.nupkg.sha512",
  7889. "system.text.encoding.codepages.nuspec",
  7890. "useSharedDesignerContext.txt",
  7891. "version.txt"
  7892. ]
  7893. },
  7894. "System.Text.Encoding.Extensions/4.3.0": {
  7895. "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==",
  7896. "type": "package",
  7897. "path": "system.text.encoding.extensions/4.3.0",
  7898. "files": [
  7899. ".nupkg.metadata",
  7900. ".signature.p7s",
  7901. "ThirdPartyNotices.txt",
  7902. "dotnet_library_license.txt",
  7903. "lib/MonoAndroid10/_._",
  7904. "lib/MonoTouch10/_._",
  7905. "lib/net45/_._",
  7906. "lib/portable-net45+win8+wp8+wpa81/_._",
  7907. "lib/win8/_._",
  7908. "lib/wp80/_._",
  7909. "lib/wpa81/_._",
  7910. "lib/xamarinios10/_._",
  7911. "lib/xamarinmac20/_._",
  7912. "lib/xamarintvos10/_._",
  7913. "lib/xamarinwatchos10/_._",
  7914. "ref/MonoAndroid10/_._",
  7915. "ref/MonoTouch10/_._",
  7916. "ref/net45/_._",
  7917. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  7918. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  7919. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  7920. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  7921. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  7922. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  7923. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  7924. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  7925. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  7926. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  7927. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  7928. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  7929. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  7930. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  7931. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  7932. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  7933. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  7934. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  7935. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  7936. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  7937. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  7938. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  7939. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  7940. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  7941. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  7942. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  7943. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  7944. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  7945. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  7946. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  7947. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  7948. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  7949. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  7950. "ref/portable-net45+win8+wp8+wpa81/_._",
  7951. "ref/win8/_._",
  7952. "ref/wp80/_._",
  7953. "ref/wpa81/_._",
  7954. "ref/xamarinios10/_._",
  7955. "ref/xamarinmac20/_._",
  7956. "ref/xamarintvos10/_._",
  7957. "ref/xamarinwatchos10/_._",
  7958. "system.text.encoding.extensions.4.3.0.nupkg.sha512",
  7959. "system.text.encoding.extensions.nuspec"
  7960. ]
  7961. },
  7962. "System.Text.Encodings.Web/4.5.0": {
  7963. "sha512": "Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==",
  7964. "type": "package",
  7965. "path": "system.text.encodings.web/4.5.0",
  7966. "files": [
  7967. ".nupkg.metadata",
  7968. ".signature.p7s",
  7969. "LICENSE.TXT",
  7970. "THIRD-PARTY-NOTICES.TXT",
  7971. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  7972. "lib/netstandard1.0/System.Text.Encodings.Web.xml",
  7973. "lib/netstandard2.0/System.Text.Encodings.Web.dll",
  7974. "lib/netstandard2.0/System.Text.Encodings.Web.xml",
  7975. "system.text.encodings.web.4.5.0.nupkg.sha512",
  7976. "system.text.encodings.web.nuspec",
  7977. "useSharedDesignerContext.txt",
  7978. "version.txt"
  7979. ]
  7980. },
  7981. "System.Text.RegularExpressions/4.3.0": {
  7982. "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==",
  7983. "type": "package",
  7984. "path": "system.text.regularexpressions/4.3.0",
  7985. "files": [
  7986. ".nupkg.metadata",
  7987. ".signature.p7s",
  7988. "ThirdPartyNotices.txt",
  7989. "dotnet_library_license.txt",
  7990. "lib/MonoAndroid10/_._",
  7991. "lib/MonoTouch10/_._",
  7992. "lib/net45/_._",
  7993. "lib/net463/System.Text.RegularExpressions.dll",
  7994. "lib/netcore50/System.Text.RegularExpressions.dll",
  7995. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  7996. "lib/portable-net45+win8+wp8+wpa81/_._",
  7997. "lib/win8/_._",
  7998. "lib/wp80/_._",
  7999. "lib/wpa81/_._",
  8000. "lib/xamarinios10/_._",
  8001. "lib/xamarinmac20/_._",
  8002. "lib/xamarintvos10/_._",
  8003. "lib/xamarinwatchos10/_._",
  8004. "ref/MonoAndroid10/_._",
  8005. "ref/MonoTouch10/_._",
  8006. "ref/net45/_._",
  8007. "ref/net463/System.Text.RegularExpressions.dll",
  8008. "ref/netcore50/System.Text.RegularExpressions.dll",
  8009. "ref/netcore50/System.Text.RegularExpressions.xml",
  8010. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  8011. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  8012. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  8013. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  8014. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  8015. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  8016. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  8017. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  8018. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  8019. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  8020. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  8021. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  8022. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  8023. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  8024. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  8025. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  8026. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  8027. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  8028. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  8029. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  8030. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  8031. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  8032. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  8033. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  8034. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  8035. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  8036. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  8037. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  8038. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  8039. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  8040. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  8041. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  8042. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  8043. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  8044. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  8045. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  8046. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  8047. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  8048. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  8049. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  8050. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  8051. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  8052. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  8053. "ref/portable-net45+win8+wp8+wpa81/_._",
  8054. "ref/win8/_._",
  8055. "ref/wp80/_._",
  8056. "ref/wpa81/_._",
  8057. "ref/xamarinios10/_._",
  8058. "ref/xamarinmac20/_._",
  8059. "ref/xamarintvos10/_._",
  8060. "ref/xamarinwatchos10/_._",
  8061. "system.text.regularexpressions.4.3.0.nupkg.sha512",
  8062. "system.text.regularexpressions.nuspec"
  8063. ]
  8064. },
  8065. "System.Threading/4.3.0": {
  8066. "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
  8067. "type": "package",
  8068. "path": "system.threading/4.3.0",
  8069. "files": [
  8070. ".nupkg.metadata",
  8071. ".signature.p7s",
  8072. "ThirdPartyNotices.txt",
  8073. "dotnet_library_license.txt",
  8074. "lib/MonoAndroid10/_._",
  8075. "lib/MonoTouch10/_._",
  8076. "lib/net45/_._",
  8077. "lib/netcore50/System.Threading.dll",
  8078. "lib/netstandard1.3/System.Threading.dll",
  8079. "lib/portable-net45+win8+wp8+wpa81/_._",
  8080. "lib/win8/_._",
  8081. "lib/wp80/_._",
  8082. "lib/wpa81/_._",
  8083. "lib/xamarinios10/_._",
  8084. "lib/xamarinmac20/_._",
  8085. "lib/xamarintvos10/_._",
  8086. "lib/xamarinwatchos10/_._",
  8087. "ref/MonoAndroid10/_._",
  8088. "ref/MonoTouch10/_._",
  8089. "ref/net45/_._",
  8090. "ref/netcore50/System.Threading.dll",
  8091. "ref/netcore50/System.Threading.xml",
  8092. "ref/netcore50/de/System.Threading.xml",
  8093. "ref/netcore50/es/System.Threading.xml",
  8094. "ref/netcore50/fr/System.Threading.xml",
  8095. "ref/netcore50/it/System.Threading.xml",
  8096. "ref/netcore50/ja/System.Threading.xml",
  8097. "ref/netcore50/ko/System.Threading.xml",
  8098. "ref/netcore50/ru/System.Threading.xml",
  8099. "ref/netcore50/zh-hans/System.Threading.xml",
  8100. "ref/netcore50/zh-hant/System.Threading.xml",
  8101. "ref/netstandard1.0/System.Threading.dll",
  8102. "ref/netstandard1.0/System.Threading.xml",
  8103. "ref/netstandard1.0/de/System.Threading.xml",
  8104. "ref/netstandard1.0/es/System.Threading.xml",
  8105. "ref/netstandard1.0/fr/System.Threading.xml",
  8106. "ref/netstandard1.0/it/System.Threading.xml",
  8107. "ref/netstandard1.0/ja/System.Threading.xml",
  8108. "ref/netstandard1.0/ko/System.Threading.xml",
  8109. "ref/netstandard1.0/ru/System.Threading.xml",
  8110. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  8111. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  8112. "ref/netstandard1.3/System.Threading.dll",
  8113. "ref/netstandard1.3/System.Threading.xml",
  8114. "ref/netstandard1.3/de/System.Threading.xml",
  8115. "ref/netstandard1.3/es/System.Threading.xml",
  8116. "ref/netstandard1.3/fr/System.Threading.xml",
  8117. "ref/netstandard1.3/it/System.Threading.xml",
  8118. "ref/netstandard1.3/ja/System.Threading.xml",
  8119. "ref/netstandard1.3/ko/System.Threading.xml",
  8120. "ref/netstandard1.3/ru/System.Threading.xml",
  8121. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  8122. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  8123. "ref/portable-net45+win8+wp8+wpa81/_._",
  8124. "ref/win8/_._",
  8125. "ref/wp80/_._",
  8126. "ref/wpa81/_._",
  8127. "ref/xamarinios10/_._",
  8128. "ref/xamarinmac20/_._",
  8129. "ref/xamarintvos10/_._",
  8130. "ref/xamarinwatchos10/_._",
  8131. "runtimes/aot/lib/netcore50/System.Threading.dll",
  8132. "system.threading.4.3.0.nupkg.sha512",
  8133. "system.threading.nuspec"
  8134. ]
  8135. },
  8136. "System.Threading.Tasks/4.3.0": {
  8137. "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
  8138. "type": "package",
  8139. "path": "system.threading.tasks/4.3.0",
  8140. "files": [
  8141. ".nupkg.metadata",
  8142. ".signature.p7s",
  8143. "ThirdPartyNotices.txt",
  8144. "dotnet_library_license.txt",
  8145. "lib/MonoAndroid10/_._",
  8146. "lib/MonoTouch10/_._",
  8147. "lib/net45/_._",
  8148. "lib/portable-net45+win8+wp8+wpa81/_._",
  8149. "lib/win8/_._",
  8150. "lib/wp80/_._",
  8151. "lib/wpa81/_._",
  8152. "lib/xamarinios10/_._",
  8153. "lib/xamarinmac20/_._",
  8154. "lib/xamarintvos10/_._",
  8155. "lib/xamarinwatchos10/_._",
  8156. "ref/MonoAndroid10/_._",
  8157. "ref/MonoTouch10/_._",
  8158. "ref/net45/_._",
  8159. "ref/netcore50/System.Threading.Tasks.dll",
  8160. "ref/netcore50/System.Threading.Tasks.xml",
  8161. "ref/netcore50/de/System.Threading.Tasks.xml",
  8162. "ref/netcore50/es/System.Threading.Tasks.xml",
  8163. "ref/netcore50/fr/System.Threading.Tasks.xml",
  8164. "ref/netcore50/it/System.Threading.Tasks.xml",
  8165. "ref/netcore50/ja/System.Threading.Tasks.xml",
  8166. "ref/netcore50/ko/System.Threading.Tasks.xml",
  8167. "ref/netcore50/ru/System.Threading.Tasks.xml",
  8168. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  8169. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  8170. "ref/netstandard1.0/System.Threading.Tasks.dll",
  8171. "ref/netstandard1.0/System.Threading.Tasks.xml",
  8172. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  8173. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  8174. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  8175. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  8176. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  8177. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  8178. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  8179. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  8180. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  8181. "ref/netstandard1.3/System.Threading.Tasks.dll",
  8182. "ref/netstandard1.3/System.Threading.Tasks.xml",
  8183. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  8184. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  8185. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  8186. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  8187. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  8188. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  8189. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  8190. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  8191. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  8192. "ref/portable-net45+win8+wp8+wpa81/_._",
  8193. "ref/win8/_._",
  8194. "ref/wp80/_._",
  8195. "ref/wpa81/_._",
  8196. "ref/xamarinios10/_._",
  8197. "ref/xamarinmac20/_._",
  8198. "ref/xamarintvos10/_._",
  8199. "ref/xamarinwatchos10/_._",
  8200. "system.threading.tasks.4.3.0.nupkg.sha512",
  8201. "system.threading.tasks.nuspec"
  8202. ]
  8203. },
  8204. "System.Threading.Tasks.Extensions/4.5.3": {
  8205. "sha512": "+MvhNtcvIbqmhANyKu91jQnvIRVSTiaOiFNfKWwXGHG48YAb4I/TyH8spsySiPYla7gKal5ZnF3teJqZAximyQ==",
  8206. "type": "package",
  8207. "path": "system.threading.tasks.extensions/4.5.3",
  8208. "files": [
  8209. ".nupkg.metadata",
  8210. ".signature.p7s",
  8211. "LICENSE.TXT",
  8212. "THIRD-PARTY-NOTICES.TXT",
  8213. "lib/MonoAndroid10/_._",
  8214. "lib/MonoTouch10/_._",
  8215. "lib/netcoreapp2.1/_._",
  8216. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  8217. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  8218. "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
  8219. "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
  8220. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  8221. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
  8222. "lib/xamarinios10/_._",
  8223. "lib/xamarinmac20/_._",
  8224. "lib/xamarintvos10/_._",
  8225. "lib/xamarinwatchos10/_._",
  8226. "ref/MonoAndroid10/_._",
  8227. "ref/MonoTouch10/_._",
  8228. "ref/netcoreapp2.1/_._",
  8229. "ref/xamarinios10/_._",
  8230. "ref/xamarinmac20/_._",
  8231. "ref/xamarintvos10/_._",
  8232. "ref/xamarinwatchos10/_._",
  8233. "system.threading.tasks.extensions.4.5.3.nupkg.sha512",
  8234. "system.threading.tasks.extensions.nuspec",
  8235. "useSharedDesignerContext.txt",
  8236. "version.txt"
  8237. ]
  8238. },
  8239. "System.Threading.Timer/4.3.0": {
  8240. "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==",
  8241. "type": "package",
  8242. "path": "system.threading.timer/4.3.0",
  8243. "files": [
  8244. ".nupkg.metadata",
  8245. ".signature.p7s",
  8246. "ThirdPartyNotices.txt",
  8247. "dotnet_library_license.txt",
  8248. "lib/MonoAndroid10/_._",
  8249. "lib/MonoTouch10/_._",
  8250. "lib/net451/_._",
  8251. "lib/portable-net451+win81+wpa81/_._",
  8252. "lib/win81/_._",
  8253. "lib/wpa81/_._",
  8254. "lib/xamarinios10/_._",
  8255. "lib/xamarinmac20/_._",
  8256. "lib/xamarintvos10/_._",
  8257. "lib/xamarinwatchos10/_._",
  8258. "ref/MonoAndroid10/_._",
  8259. "ref/MonoTouch10/_._",
  8260. "ref/net451/_._",
  8261. "ref/netcore50/System.Threading.Timer.dll",
  8262. "ref/netcore50/System.Threading.Timer.xml",
  8263. "ref/netcore50/de/System.Threading.Timer.xml",
  8264. "ref/netcore50/es/System.Threading.Timer.xml",
  8265. "ref/netcore50/fr/System.Threading.Timer.xml",
  8266. "ref/netcore50/it/System.Threading.Timer.xml",
  8267. "ref/netcore50/ja/System.Threading.Timer.xml",
  8268. "ref/netcore50/ko/System.Threading.Timer.xml",
  8269. "ref/netcore50/ru/System.Threading.Timer.xml",
  8270. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  8271. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  8272. "ref/netstandard1.2/System.Threading.Timer.dll",
  8273. "ref/netstandard1.2/System.Threading.Timer.xml",
  8274. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  8275. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  8276. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  8277. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  8278. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  8279. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  8280. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  8281. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  8282. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  8283. "ref/portable-net451+win81+wpa81/_._",
  8284. "ref/win81/_._",
  8285. "ref/wpa81/_._",
  8286. "ref/xamarinios10/_._",
  8287. "ref/xamarinmac20/_._",
  8288. "ref/xamarintvos10/_._",
  8289. "ref/xamarinwatchos10/_._",
  8290. "system.threading.timer.4.3.0.nupkg.sha512",
  8291. "system.threading.timer.nuspec"
  8292. ]
  8293. },
  8294. "System.Xml.ReaderWriter/4.3.0": {
  8295. "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==",
  8296. "type": "package",
  8297. "path": "system.xml.readerwriter/4.3.0",
  8298. "files": [
  8299. ".nupkg.metadata",
  8300. ".signature.p7s",
  8301. "ThirdPartyNotices.txt",
  8302. "dotnet_library_license.txt",
  8303. "lib/MonoAndroid10/_._",
  8304. "lib/MonoTouch10/_._",
  8305. "lib/net45/_._",
  8306. "lib/net46/System.Xml.ReaderWriter.dll",
  8307. "lib/netcore50/System.Xml.ReaderWriter.dll",
  8308. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  8309. "lib/portable-net45+win8+wp8+wpa81/_._",
  8310. "lib/win8/_._",
  8311. "lib/wp80/_._",
  8312. "lib/wpa81/_._",
  8313. "lib/xamarinios10/_._",
  8314. "lib/xamarinmac20/_._",
  8315. "lib/xamarintvos10/_._",
  8316. "lib/xamarinwatchos10/_._",
  8317. "ref/MonoAndroid10/_._",
  8318. "ref/MonoTouch10/_._",
  8319. "ref/net45/_._",
  8320. "ref/net46/System.Xml.ReaderWriter.dll",
  8321. "ref/netcore50/System.Xml.ReaderWriter.dll",
  8322. "ref/netcore50/System.Xml.ReaderWriter.xml",
  8323. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  8324. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  8325. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  8326. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  8327. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  8328. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  8329. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  8330. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  8331. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  8332. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  8333. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  8334. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  8335. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  8336. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  8337. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  8338. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  8339. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  8340. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  8341. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  8342. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  8343. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  8344. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  8345. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  8346. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  8347. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  8348. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  8349. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  8350. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  8351. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  8352. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  8353. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  8354. "ref/portable-net45+win8+wp8+wpa81/_._",
  8355. "ref/win8/_._",
  8356. "ref/wp80/_._",
  8357. "ref/wpa81/_._",
  8358. "ref/xamarinios10/_._",
  8359. "ref/xamarinmac20/_._",
  8360. "ref/xamarintvos10/_._",
  8361. "ref/xamarinwatchos10/_._",
  8362. "system.xml.readerwriter.4.3.0.nupkg.sha512",
  8363. "system.xml.readerwriter.nuspec"
  8364. ]
  8365. },
  8366. "System.Xml.XDocument/4.3.0": {
  8367. "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==",
  8368. "type": "package",
  8369. "path": "system.xml.xdocument/4.3.0",
  8370. "files": [
  8371. ".nupkg.metadata",
  8372. ".signature.p7s",
  8373. "ThirdPartyNotices.txt",
  8374. "dotnet_library_license.txt",
  8375. "lib/MonoAndroid10/_._",
  8376. "lib/MonoTouch10/_._",
  8377. "lib/net45/_._",
  8378. "lib/netcore50/System.Xml.XDocument.dll",
  8379. "lib/netstandard1.3/System.Xml.XDocument.dll",
  8380. "lib/portable-net45+win8+wp8+wpa81/_._",
  8381. "lib/win8/_._",
  8382. "lib/wp80/_._",
  8383. "lib/wpa81/_._",
  8384. "lib/xamarinios10/_._",
  8385. "lib/xamarinmac20/_._",
  8386. "lib/xamarintvos10/_._",
  8387. "lib/xamarinwatchos10/_._",
  8388. "ref/MonoAndroid10/_._",
  8389. "ref/MonoTouch10/_._",
  8390. "ref/net45/_._",
  8391. "ref/netcore50/System.Xml.XDocument.dll",
  8392. "ref/netcore50/System.Xml.XDocument.xml",
  8393. "ref/netcore50/de/System.Xml.XDocument.xml",
  8394. "ref/netcore50/es/System.Xml.XDocument.xml",
  8395. "ref/netcore50/fr/System.Xml.XDocument.xml",
  8396. "ref/netcore50/it/System.Xml.XDocument.xml",
  8397. "ref/netcore50/ja/System.Xml.XDocument.xml",
  8398. "ref/netcore50/ko/System.Xml.XDocument.xml",
  8399. "ref/netcore50/ru/System.Xml.XDocument.xml",
  8400. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  8401. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  8402. "ref/netstandard1.0/System.Xml.XDocument.dll",
  8403. "ref/netstandard1.0/System.Xml.XDocument.xml",
  8404. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  8405. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  8406. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  8407. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  8408. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  8409. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  8410. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  8411. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  8412. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  8413. "ref/netstandard1.3/System.Xml.XDocument.dll",
  8414. "ref/netstandard1.3/System.Xml.XDocument.xml",
  8415. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  8416. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  8417. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  8418. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  8419. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  8420. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  8421. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  8422. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  8423. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  8424. "ref/portable-net45+win8+wp8+wpa81/_._",
  8425. "ref/win8/_._",
  8426. "ref/wp80/_._",
  8427. "ref/wpa81/_._",
  8428. "ref/xamarinios10/_._",
  8429. "ref/xamarinmac20/_._",
  8430. "ref/xamarintvos10/_._",
  8431. "ref/xamarinwatchos10/_._",
  8432. "system.xml.xdocument.4.3.0.nupkg.sha512",
  8433. "system.xml.xdocument.nuspec"
  8434. ]
  8435. },
  8436. "System.Xml.XmlDocument/4.3.0": {
  8437. "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==",
  8438. "type": "package",
  8439. "path": "system.xml.xmldocument/4.3.0",
  8440. "files": [
  8441. ".nupkg.metadata",
  8442. ".signature.p7s",
  8443. "ThirdPartyNotices.txt",
  8444. "dotnet_library_license.txt",
  8445. "lib/MonoAndroid10/_._",
  8446. "lib/MonoTouch10/_._",
  8447. "lib/net46/System.Xml.XmlDocument.dll",
  8448. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  8449. "lib/xamarinios10/_._",
  8450. "lib/xamarinmac20/_._",
  8451. "lib/xamarintvos10/_._",
  8452. "lib/xamarinwatchos10/_._",
  8453. "ref/MonoAndroid10/_._",
  8454. "ref/MonoTouch10/_._",
  8455. "ref/net46/System.Xml.XmlDocument.dll",
  8456. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  8457. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  8458. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  8459. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  8460. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  8461. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  8462. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  8463. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  8464. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  8465. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  8466. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  8467. "ref/xamarinios10/_._",
  8468. "ref/xamarinmac20/_._",
  8469. "ref/xamarintvos10/_._",
  8470. "ref/xamarinwatchos10/_._",
  8471. "system.xml.xmldocument.4.3.0.nupkg.sha512",
  8472. "system.xml.xmldocument.nuspec"
  8473. ]
  8474. },
  8475. "System.Xml.XmlSerializer/4.3.0": {
  8476. "sha512": "MYoTCP7EZ98RrANESW05J5ZwskKDoN0AuZ06ZflnowE50LTpbR5yRg3tHckTVm5j/m47stuGgCrCHWePyHS70Q==",
  8477. "type": "package",
  8478. "path": "system.xml.xmlserializer/4.3.0",
  8479. "files": [
  8480. ".nupkg.metadata",
  8481. ".signature.p7s",
  8482. "ThirdPartyNotices.txt",
  8483. "dotnet_library_license.txt",
  8484. "lib/MonoAndroid10/_._",
  8485. "lib/MonoTouch10/_._",
  8486. "lib/net45/_._",
  8487. "lib/netcore50/System.Xml.XmlSerializer.dll",
  8488. "lib/netstandard1.3/System.Xml.XmlSerializer.dll",
  8489. "lib/portable-net45+win8+wp8+wpa81/_._",
  8490. "lib/win8/_._",
  8491. "lib/wp80/_._",
  8492. "lib/wpa81/_._",
  8493. "lib/xamarinios10/_._",
  8494. "lib/xamarinmac20/_._",
  8495. "lib/xamarintvos10/_._",
  8496. "lib/xamarinwatchos10/_._",
  8497. "ref/MonoAndroid10/_._",
  8498. "ref/MonoTouch10/_._",
  8499. "ref/net45/_._",
  8500. "ref/netcore50/System.Xml.XmlSerializer.dll",
  8501. "ref/netcore50/System.Xml.XmlSerializer.xml",
  8502. "ref/netcore50/de/System.Xml.XmlSerializer.xml",
  8503. "ref/netcore50/es/System.Xml.XmlSerializer.xml",
  8504. "ref/netcore50/fr/System.Xml.XmlSerializer.xml",
  8505. "ref/netcore50/it/System.Xml.XmlSerializer.xml",
  8506. "ref/netcore50/ja/System.Xml.XmlSerializer.xml",
  8507. "ref/netcore50/ko/System.Xml.XmlSerializer.xml",
  8508. "ref/netcore50/ru/System.Xml.XmlSerializer.xml",
  8509. "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
  8510. "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
  8511. "ref/netstandard1.0/System.Xml.XmlSerializer.dll",
  8512. "ref/netstandard1.0/System.Xml.XmlSerializer.xml",
  8513. "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
  8514. "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
  8515. "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
  8516. "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
  8517. "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
  8518. "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
  8519. "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
  8520. "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
  8521. "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
  8522. "ref/netstandard1.3/System.Xml.XmlSerializer.dll",
  8523. "ref/netstandard1.3/System.Xml.XmlSerializer.xml",
  8524. "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
  8525. "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
  8526. "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
  8527. "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
  8528. "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
  8529. "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
  8530. "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
  8531. "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
  8532. "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
  8533. "ref/portable-net45+win8+wp8+wpa81/_._",
  8534. "ref/win8/_._",
  8535. "ref/wp80/_._",
  8536. "ref/wpa81/_._",
  8537. "ref/xamarinios10/_._",
  8538. "ref/xamarinmac20/_._",
  8539. "ref/xamarintvos10/_._",
  8540. "ref/xamarinwatchos10/_._",
  8541. "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll",
  8542. "system.xml.xmlserializer.4.3.0.nupkg.sha512",
  8543. "system.xml.xmlserializer.nuspec"
  8544. ]
  8545. }
  8546. },
  8547. "projectFileDependencyGroups": {
  8548. ".NETCoreApp,Version=v3.1": [
  8549. "MQTTnet >= 4.1.2.350",
  8550. "MQTTnet.AspNetCore >= 4.1.2.350",
  8551. "Microsoft.EntityFrameworkCore.SqlServer >= 3.1.32",
  8552. "Microsoft.EntityFrameworkCore.Tools >= 3.1.32",
  8553. "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 3.1.5"
  8554. ]
  8555. },
  8556. "packageFolders": {
  8557. "D:\\ProgramData\\NugetPackage": {},
  8558. "d:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
  8559. },
  8560. "project": {
  8561. "version": "1.0.0",
  8562. "restore": {
  8563. "projectUniqueName": "E:\\yszn\\Fine.OPCDaClient1027_vs2019\\Fine.OPCDaClient1027_vs2019\\YS.Smart.Ctl\\YS.Smart.Ctl.csproj",
  8564. "projectName": "YS.Smart.Ctl",
  8565. "projectPath": "E:\\yszn\\Fine.OPCDaClient1027_vs2019\\Fine.OPCDaClient1027_vs2019\\YS.Smart.Ctl\\YS.Smart.Ctl.csproj",
  8566. "packagesPath": "D:\\ProgramData\\NugetPackage",
  8567. "outputPath": "E:\\yszn\\Fine.OPCDaClient1027_vs2019\\Fine.OPCDaClient1027_vs2019\\YS.Smart.Ctl\\obj\\",
  8568. "projectStyle": "PackageReference",
  8569. "fallbackFolders": [
  8570. "d:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
  8571. ],
  8572. "configFilePaths": [
  8573. "C:\\Users\\朱雄\\AppData\\Roaming\\NuGet\\NuGet.Config",
  8574. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
  8575. "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
  8576. ],
  8577. "originalTargetFrameworks": [
  8578. "netcoreapp3.1"
  8579. ],
  8580. "sources": {
  8581. "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
  8582. "http://nuget.finedot.cn/nuget": {},
  8583. "https://api.nuget.org/v3/index.json": {}
  8584. },
  8585. "frameworks": {
  8586. "netcoreapp3.1": {
  8587. "targetAlias": "netcoreapp3.1",
  8588. "projectReferences": {}
  8589. }
  8590. },
  8591. "warningProperties": {
  8592. "warnAsError": [
  8593. "NU1605"
  8594. ]
  8595. }
  8596. },
  8597. "frameworks": {
  8598. "netcoreapp3.1": {
  8599. "targetAlias": "netcoreapp3.1",
  8600. "dependencies": {
  8601. "MQTTnet": {
  8602. "target": "Package",
  8603. "version": "[4.1.2.350, )"
  8604. },
  8605. "MQTTnet.AspNetCore": {
  8606. "target": "Package",
  8607. "version": "[4.1.2.350, )"
  8608. },
  8609. "Microsoft.EntityFrameworkCore.SqlServer": {
  8610. "target": "Package",
  8611. "version": "[3.1.32, )"
  8612. },
  8613. "Microsoft.EntityFrameworkCore.Tools": {
  8614. "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
  8615. "suppressParent": "All",
  8616. "target": "Package",
  8617. "version": "[3.1.32, )"
  8618. },
  8619. "Microsoft.VisualStudio.Web.CodeGeneration.Design": {
  8620. "target": "Package",
  8621. "version": "[3.1.5, )"
  8622. }
  8623. },
  8624. "imports": [
  8625. "net461",
  8626. "net462",
  8627. "net47",
  8628. "net471",
  8629. "net472",
  8630. "net48"
  8631. ],
  8632. "assetTargetFallback": true,
  8633. "warn": true,
  8634. "frameworkReferences": {
  8635. "Microsoft.AspNetCore.App": {
  8636. "privateAssets": "none"
  8637. },
  8638. "Microsoft.NETCore.App": {
  8639. "privateAssets": "all"
  8640. }
  8641. },
  8642. "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.301\\RuntimeIdentifierGraph.json"
  8643. }
  8644. }
  8645. }
  8646. }