Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

project.lock.json 440KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443
  1. {
  2. "locked": false,
  3. "version": 2,
  4. "targets": {
  5. ".NETCoreApp,Version=v1.0": {
  6. "Castle.Core/4.0.0-beta001": {
  7. "type": "package",
  8. "dependencies": {
  9. "System.AppContext": "4.1.0",
  10. "System.Collections.Specialized": "4.0.1",
  11. "System.ComponentModel.TypeConverter": "4.0.1",
  12. "System.Console": "4.0.0",
  13. "System.Diagnostics.Debug": "4.0.11",
  14. "System.Diagnostics.Tools": "4.0.1",
  15. "System.Diagnostics.TraceSource": "4.0.0",
  16. "System.Dynamic.Runtime": "4.0.11",
  17. "System.Globalization": "4.0.11",
  18. "System.IO.FileSystem": "4.0.1",
  19. "System.Linq": "4.1.0",
  20. "System.ObjectModel": "4.0.12",
  21. "System.Reflection": "4.1.0",
  22. "System.Reflection.Emit": "4.0.1",
  23. "System.Reflection.Emit.Lightweight": "4.0.1",
  24. "System.Reflection.Extensions": "4.0.1",
  25. "System.Reflection.TypeExtensions": "4.1.0",
  26. "System.Resources.ResourceManager": "4.0.1",
  27. "System.Runtime.Extensions": "4.1.0",
  28. "System.Runtime.InteropServices": "4.1.0",
  29. "System.Threading": "4.0.11",
  30. "System.Xml.XmlDocument": "4.0.1",
  31. "System.Xml.XmlSerializer": "4.0.11"
  32. },
  33. "compile": {
  34. "lib/netstandard1.3/Castle.Core.dll": {}
  35. },
  36. "runtime": {
  37. "lib/netstandard1.3/Castle.Core.dll": {}
  38. }
  39. },
  40. "dotnet-test-xunit/1.0.0-rc2-build10025": {
  41. "type": "package",
  42. "dependencies": {
  43. "Microsoft.Extensions.Testing.Abstractions": "1.0.0-preview1-002702",
  44. "Microsoft.NETCore.App": "1.0.0-rc2-3002702",
  45. "xunit.runner.reporters": "2.1.0"
  46. },
  47. "compile": {
  48. "lib/netcoreapp1.0/dotnet-test-xunit.dll": {}
  49. },
  50. "runtime": {
  51. "lib/netcoreapp1.0/dotnet-test-xunit.dll": {}
  52. }
  53. },
  54. "Libuv/1.9.0": {
  55. "type": "package",
  56. "dependencies": {
  57. "Microsoft.NETCore.Platforms": "1.0.1"
  58. },
  59. "runtimeTargets": {
  60. "runtimes/debian-x64/native/libuv.so": {
  61. "assetType": "native",
  62. "rid": "debian-x64"
  63. },
  64. "runtimes/fedora-x64/native/libuv.so": {
  65. "assetType": "native",
  66. "rid": "fedora-x64"
  67. },
  68. "runtimes/opensuse-x64/native/libuv.so": {
  69. "assetType": "native",
  70. "rid": "opensuse-x64"
  71. },
  72. "runtimes/osx/native/libuv.dylib": {
  73. "assetType": "native",
  74. "rid": "osx"
  75. },
  76. "runtimes/rhel-x64/native/libuv.so": {
  77. "assetType": "native",
  78. "rid": "rhel-x64"
  79. },
  80. "runtimes/win7-arm/native/libuv.dll": {
  81. "assetType": "native",
  82. "rid": "win7-arm"
  83. },
  84. "runtimes/win7-x64/native/libuv.dll": {
  85. "assetType": "native",
  86. "rid": "win7-x64"
  87. },
  88. "runtimes/win7-x86/native/libuv.dll": {
  89. "assetType": "native",
  90. "rid": "win7-x86"
  91. }
  92. }
  93. },
  94. "Microsoft.ApplicationInsights/2.1.0": {
  95. "type": "package",
  96. "dependencies": {
  97. "System.Collections": "4.0.10",
  98. "System.Diagnostics.Debug": "4.0.10",
  99. "System.Diagnostics.Tools": "4.0.0",
  100. "System.Diagnostics.Tracing": "4.0.20",
  101. "System.Globalization": "4.0.10",
  102. "System.IO": "4.0.10",
  103. "System.IO.Compression": "4.0.0",
  104. "System.Linq": "4.0.0",
  105. "System.Net.Http": "4.0.0",
  106. "System.Reflection": "4.0.10",
  107. "System.Reflection.Extensions": "4.0.0",
  108. "System.Runtime": "4.0.20",
  109. "System.Runtime.Extensions": "4.0.10",
  110. "System.Text.Encoding": "4.0.10",
  111. "System.Text.Encoding.Extensions": "4.0.10",
  112. "System.Text.RegularExpressions": "4.0.10",
  113. "System.Threading": "4.0.10",
  114. "System.Threading.Tasks": "4.0.10",
  115. "System.Xml.XDocument": "4.0.10"
  116. },
  117. "compile": {
  118. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll": {}
  119. },
  120. "runtime": {
  121. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll": {}
  122. }
  123. },
  124. "Microsoft.ApplicationInsights.AspNetCore/1.0.2": {
  125. "type": "package",
  126. "dependencies": {
  127. "Microsoft.ApplicationInsights": "2.1.0",
  128. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  129. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  130. "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
  131. "Microsoft.Extensions.Configuration": "1.0.0",
  132. "Microsoft.Extensions.DiagnosticAdapter": "1.0.0",
  133. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  134. "System.Net.NameResolution": "4.0.0"
  135. },
  136. "compile": {
  137. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {}
  138. },
  139. "runtime": {
  140. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {}
  141. }
  142. },
  143. "Microsoft.AspNetCore.Antiforgery/1.0.1": {
  144. "type": "package",
  145. "dependencies": {
  146. "Microsoft.AspNetCore.DataProtection": "1.0.0",
  147. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  148. "Microsoft.AspNetCore.WebUtilities": "1.0.0",
  149. "Microsoft.Extensions.ObjectPool": "1.0.0"
  150. },
  151. "compile": {
  152. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
  153. },
  154. "runtime": {
  155. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
  156. }
  157. },
  158. "Microsoft.AspNetCore.Authorization/1.0.0": {
  159. "type": "package",
  160. "dependencies": {
  161. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  162. "Microsoft.Extensions.Options": "1.0.0",
  163. "System.Security.Claims": "4.0.1"
  164. },
  165. "compile": {
  166. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
  167. },
  168. "runtime": {
  169. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
  170. }
  171. },
  172. "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
  173. "type": "package",
  174. "dependencies": {
  175. "NETStandard.Library": "1.6.1"
  176. },
  177. "compile": {
  178. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  179. },
  180. "runtime": {
  181. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  182. }
  183. },
  184. "Microsoft.AspNetCore.DataProtection/1.1.0": {
  185. "type": "package",
  186. "dependencies": {
  187. "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0",
  188. "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0",
  189. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  190. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  191. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  192. "Microsoft.Extensions.Options": "1.1.0",
  193. "Microsoft.Win32.Registry": "4.3.0",
  194. "NETStandard.Library": "1.6.1",
  195. "System.Security.Claims": "4.3.0",
  196. "System.Security.Principal.Windows": "4.3.0"
  197. },
  198. "compile": {
  199. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
  200. },
  201. "runtime": {
  202. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
  203. }
  204. },
  205. "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
  206. "type": "package",
  207. "dependencies": {
  208. "NETStandard.Library": "1.6.1",
  209. "System.ComponentModel": "4.3.0"
  210. },
  211. "compile": {
  212. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  213. },
  214. "runtime": {
  215. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  216. }
  217. },
  218. "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
  219. "type": "package",
  220. "dependencies": {
  221. "System.Resources.ResourceManager": "4.0.1"
  222. },
  223. "compile": {
  224. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  225. },
  226. "runtime": {
  227. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  228. }
  229. },
  230. "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
  231. "type": "package",
  232. "dependencies": {
  233. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
  234. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  235. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  236. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  237. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  238. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  239. "NETStandard.Library": "1.6.1"
  240. },
  241. "compile": {
  242. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  243. },
  244. "runtime": {
  245. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  246. }
  247. },
  248. "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
  249. "type": "package",
  250. "dependencies": {
  251. "Microsoft.AspNetCore.Http.Features": "1.1.0",
  252. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  253. "NETStandard.Library": "1.6.1"
  254. },
  255. "compile": {
  256. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  257. },
  258. "runtime": {
  259. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  260. }
  261. },
  262. "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
  263. "type": "package",
  264. "dependencies": {
  265. "System.Collections": "4.0.11",
  266. "System.Resources.ResourceManager": "4.0.1",
  267. "System.Text.Encodings.Web": "4.0.0"
  268. },
  269. "compile": {
  270. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  271. },
  272. "runtime": {
  273. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  274. }
  275. },
  276. "Microsoft.AspNetCore.Http/1.0.0": {
  277. "type": "package",
  278. "dependencies": {
  279. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  280. "Microsoft.AspNetCore.WebUtilities": "1.0.0",
  281. "Microsoft.Extensions.ObjectPool": "1.0.0",
  282. "Microsoft.Extensions.Options": "1.0.0",
  283. "Microsoft.Net.Http.Headers": "1.0.0",
  284. "System.Buffers": "4.0.0",
  285. "System.Threading": "4.0.11"
  286. },
  287. "compile": {
  288. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
  289. },
  290. "runtime": {
  291. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
  292. }
  293. },
  294. "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
  295. "type": "package",
  296. "dependencies": {
  297. "Microsoft.AspNetCore.Http.Features": "1.1.0",
  298. "Microsoft.Extensions.Primitives": "1.1.0",
  299. "NETStandard.Library": "1.6.1",
  300. "System.Globalization.Extensions": "4.3.0",
  301. "System.Reflection.TypeExtensions": "4.3.0",
  302. "System.Text.Encodings.Web": "4.3.0"
  303. },
  304. "compile": {
  305. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  306. },
  307. "runtime": {
  308. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  309. }
  310. },
  311. "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
  312. "type": "package",
  313. "dependencies": {
  314. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  315. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  316. "Microsoft.Net.Http.Headers": "1.1.0",
  317. "NETStandard.Library": "1.6.1",
  318. "System.Buffers": "4.3.0"
  319. },
  320. "compile": {
  321. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
  322. },
  323. "runtime": {
  324. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
  325. }
  326. },
  327. "Microsoft.AspNetCore.Http.Features/1.1.0": {
  328. "type": "package",
  329. "dependencies": {
  330. "Microsoft.Extensions.Primitives": "1.1.0",
  331. "NETStandard.Library": "1.6.1",
  332. "System.ComponentModel": "4.3.0",
  333. "System.Net.WebSockets": "4.3.0",
  334. "System.Security.Claims": "4.3.0",
  335. "System.Security.Principal": "4.3.0"
  336. },
  337. "compile": {
  338. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
  339. },
  340. "runtime": {
  341. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
  342. }
  343. },
  344. "Microsoft.AspNetCore.JsonPatch/1.0.0": {
  345. "type": "package",
  346. "dependencies": {
  347. "Microsoft.CSharp": "4.0.1",
  348. "Newtonsoft.Json": "9.0.1",
  349. "System.Collections.Concurrent": "4.0.12",
  350. "System.ComponentModel.TypeConverter": "4.1.0",
  351. "System.Diagnostics.Debug": "4.0.11",
  352. "System.Globalization": "4.0.11",
  353. "System.Linq": "4.1.0",
  354. "System.Reflection.Extensions": "4.0.1",
  355. "System.Resources.ResourceManager": "4.0.1",
  356. "System.Runtime.Extensions": "4.1.0",
  357. "System.Runtime.Serialization.Primitives": "4.1.1",
  358. "System.Text.Encoding.Extensions": "4.0.11"
  359. },
  360. "compile": {
  361. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
  362. },
  363. "runtime": {
  364. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
  365. }
  366. },
  367. "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
  368. "type": "package",
  369. "dependencies": {
  370. "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
  371. "Microsoft.CSharp": "4.0.1",
  372. "Microsoft.Net.Http.Headers": "1.0.0",
  373. "System.ComponentModel.TypeConverter": "4.1.0",
  374. "System.Reflection.Extensions": "4.0.1",
  375. "System.Text.Encoding.Extensions": "4.0.11"
  376. },
  377. "compile": {
  378. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  379. },
  380. "runtime": {
  381. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  382. }
  383. },
  384. "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
  385. "type": "package",
  386. "dependencies": {
  387. "Microsoft.AspNetCore.Authorization": "1.0.0",
  388. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  389. "Microsoft.AspNetCore.Http": "1.0.0",
  390. "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
  391. "Microsoft.AspNetCore.Routing": "1.0.0",
  392. "Microsoft.Extensions.DependencyModel": "1.0.0",
  393. "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
  394. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  395. "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
  396. "System.Buffers": "4.0.0",
  397. "System.Diagnostics.DiagnosticSource": "4.0.0",
  398. "System.Text.Encoding": "4.0.11"
  399. },
  400. "compile": {
  401. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
  402. },
  403. "runtime": {
  404. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
  405. }
  406. },
  407. "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
  408. "type": "package",
  409. "dependencies": {
  410. "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
  411. "Microsoft.Extensions.Localization": "1.0.0",
  412. "System.ComponentModel.Annotations": "4.1.0"
  413. },
  414. "compile": {
  415. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  416. },
  417. "runtime": {
  418. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  419. }
  420. },
  421. "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
  422. "type": "package",
  423. "dependencies": {
  424. "Microsoft.AspNetCore.JsonPatch": "1.0.0",
  425. "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
  426. },
  427. "compile": {
  428. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  429. },
  430. "runtime": {
  431. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  432. }
  433. },
  434. "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
  435. "type": "package",
  436. "dependencies": {
  437. "Microsoft.AspNetCore.Antiforgery": "1.0.1",
  438. "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
  439. "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
  440. "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
  441. "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
  442. "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
  443. "Microsoft.Extensions.WebEncoders": "1.0.0",
  444. "Newtonsoft.Json": "9.0.1",
  445. "System.Buffers": "4.0.0",
  446. "System.Runtime.Serialization.Primitives": "4.1.1"
  447. },
  448. "compile": {
  449. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  450. },
  451. "runtime": {
  452. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  453. }
  454. },
  455. "Microsoft.AspNetCore.Routing/1.0.0": {
  456. "type": "package",
  457. "dependencies": {
  458. "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
  459. "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
  460. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  461. "Microsoft.Extensions.ObjectPool": "1.0.0",
  462. "Microsoft.Extensions.Options": "1.0.0",
  463. "System.Collections": "4.0.11",
  464. "System.Text.RegularExpressions": "4.1.0"
  465. },
  466. "compile": {
  467. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
  468. },
  469. "runtime": {
  470. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
  471. }
  472. },
  473. "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
  474. "type": "package",
  475. "dependencies": {
  476. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  477. "System.Collections.Concurrent": "4.0.12",
  478. "System.Reflection.Extensions": "4.0.1",
  479. "System.Threading.Tasks": "4.0.11"
  480. },
  481. "compile": {
  482. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  483. },
  484. "runtime": {
  485. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  486. }
  487. },
  488. "Microsoft.AspNetCore.SignalR.Messaging/0.2.0-preview2-22683": {
  489. "type": "package",
  490. "dependencies": {
  491. "Microsoft.CSharp": "4.3.0",
  492. "Microsoft.Extensions.Logging": "1.1.0-preview2-22683",
  493. "Microsoft.Extensions.Options": "1.1.0-preview2-22683",
  494. "NETStandard.Library": "1.6.1",
  495. "System.Dynamic.Runtime": "4.3.0",
  496. "System.Reflection.Emit": "4.3.0",
  497. "System.Reflection.Emit.ILGeneration": "4.3.0",
  498. "System.Threading.Thread": "4.3.0",
  499. "System.Threading.ThreadPool": "4.3.0"
  500. },
  501. "compile": {
  502. "lib/netstandard1.3/Microsoft.AspNetCore.SignalR.Messaging.dll": {}
  503. },
  504. "runtime": {
  505. "lib/netstandard1.3/Microsoft.AspNetCore.SignalR.Messaging.dll": {}
  506. }
  507. },
  508. "Microsoft.AspNetCore.SignalR.Server/0.2.0-preview2-22683": {
  509. "type": "package",
  510. "dependencies": {
  511. "Microsoft.AspNetCore.DataProtection": "1.1.0-preview2-22683",
  512. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-preview2-22683",
  513. "Microsoft.AspNetCore.Http.Extensions": "1.1.0-preview2-22683",
  514. "Microsoft.AspNetCore.SignalR.Messaging": "0.2.0-preview2-22683",
  515. "Microsoft.Extensions.DependencyModel": "1.1.0",
  516. "NETStandard.Library": "1.6.1",
  517. "Newtonsoft.Json": "9.0.1",
  518. "System.Runtime.Serialization.Primitives": "4.3.0"
  519. },
  520. "compile": {
  521. "lib/netstandard1.6/Microsoft.AspNetCore.SignalR.Server.dll": {}
  522. },
  523. "runtime": {
  524. "lib/netstandard1.6/Microsoft.AspNetCore.SignalR.Server.dll": {}
  525. }
  526. },
  527. "Microsoft.AspNetCore.WebSockets/0.2.0-preview1-final": {
  528. "type": "package",
  529. "dependencies": {
  530. "Microsoft.AspNetCore.Http.Extensions": "1.1.0-preview1-final",
  531. "Microsoft.Extensions.Options": "1.1.0-preview1-final",
  532. "NETStandard.Library": "1.6.1-preview1-24530-04"
  533. },
  534. "compile": {
  535. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll": {}
  536. },
  537. "runtime": {
  538. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll": {}
  539. }
  540. },
  541. "Microsoft.AspNetCore.WebUtilities/1.0.0": {
  542. "type": "package",
  543. "dependencies": {
  544. "Microsoft.Extensions.Primitives": "1.0.0",
  545. "System.Buffers": "4.0.0",
  546. "System.Collections": "4.0.11",
  547. "System.IO": "4.1.0",
  548. "System.IO.FileSystem": "4.0.1",
  549. "System.Text.Encodings.Web": "4.0.0"
  550. },
  551. "compile": {
  552. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
  553. },
  554. "runtime": {
  555. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
  556. }
  557. },
  558. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  559. "type": "package"
  560. },
  561. "Microsoft.CodeAnalysis.Common/1.3.0": {
  562. "type": "package",
  563. "dependencies": {
  564. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  565. "System.AppContext": "4.1.0",
  566. "System.Collections": "4.0.11",
  567. "System.Collections.Concurrent": "4.0.12",
  568. "System.Collections.Immutable": "1.2.0",
  569. "System.Console": "4.0.0",
  570. "System.Diagnostics.Debug": "4.0.11",
  571. "System.Diagnostics.FileVersionInfo": "4.0.0",
  572. "System.Diagnostics.StackTrace": "4.0.1",
  573. "System.Diagnostics.Tools": "4.0.1",
  574. "System.Dynamic.Runtime": "4.0.11",
  575. "System.Globalization": "4.0.11",
  576. "System.IO.FileSystem": "4.0.1",
  577. "System.IO.FileSystem.Primitives": "4.0.1",
  578. "System.Linq": "4.1.0",
  579. "System.Linq.Expressions": "4.1.0",
  580. "System.Reflection": "4.1.0",
  581. "System.Reflection.Metadata": "1.3.0",
  582. "System.Reflection.Primitives": "4.0.1",
  583. "System.Resources.ResourceManager": "4.0.1",
  584. "System.Runtime": "4.1.0",
  585. "System.Runtime.Extensions": "4.1.0",
  586. "System.Runtime.Handles": "4.0.1",
  587. "System.Runtime.InteropServices": "4.1.0",
  588. "System.Runtime.Numerics": "4.0.1",
  589. "System.Security.Cryptography.Algorithms": "4.2.0",
  590. "System.Security.Cryptography.Encoding": "4.0.0",
  591. "System.Security.Cryptography.X509Certificates": "4.1.0",
  592. "System.Text.Encoding": "4.0.11",
  593. "System.Text.Encoding.CodePages": "4.0.1",
  594. "System.Text.Encoding.Extensions": "4.0.11",
  595. "System.Threading": "4.0.11",
  596. "System.Threading.Tasks": "4.0.11",
  597. "System.Threading.Tasks.Parallel": "4.0.1",
  598. "System.Threading.Thread": "4.0.0",
  599. "System.Xml.ReaderWriter": "4.0.11",
  600. "System.Xml.XDocument": "4.0.11",
  601. "System.Xml.XPath.XDocument": "4.0.1",
  602. "System.Xml.XmlDocument": "4.0.1"
  603. },
  604. "compile": {
  605. "lib/netstandard1.3/_._": {}
  606. },
  607. "runtime": {
  608. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {}
  609. }
  610. },
  611. "Microsoft.CodeAnalysis.CSharp/1.3.0": {
  612. "type": "package",
  613. "dependencies": {
  614. "Microsoft.CodeAnalysis.Common": "[1.3.0]"
  615. },
  616. "compile": {
  617. "lib/netstandard1.3/_._": {}
  618. },
  619. "runtime": {
  620. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
  621. }
  622. },
  623. "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
  624. "type": "package",
  625. "dependencies": {
  626. "Microsoft.CodeAnalysis.Common": "1.3.0"
  627. },
  628. "compile": {
  629. "lib/netstandard1.3/_._": {}
  630. },
  631. "runtime": {
  632. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {}
  633. }
  634. },
  635. "Microsoft.CSharp/4.3.0": {
  636. "type": "package",
  637. "dependencies": {
  638. "System.Collections": "4.3.0",
  639. "System.Diagnostics.Debug": "4.3.0",
  640. "System.Dynamic.Runtime": "4.3.0",
  641. "System.Globalization": "4.3.0",
  642. "System.Linq": "4.3.0",
  643. "System.Linq.Expressions": "4.3.0",
  644. "System.ObjectModel": "4.3.0",
  645. "System.Reflection": "4.3.0",
  646. "System.Reflection.Extensions": "4.3.0",
  647. "System.Reflection.Primitives": "4.3.0",
  648. "System.Reflection.TypeExtensions": "4.3.0",
  649. "System.Resources.ResourceManager": "4.3.0",
  650. "System.Runtime": "4.3.0",
  651. "System.Runtime.Extensions": "4.3.0",
  652. "System.Runtime.InteropServices": "4.3.0",
  653. "System.Threading": "4.3.0"
  654. },
  655. "compile": {
  656. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  657. },
  658. "runtime": {
  659. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  660. }
  661. },
  662. "Microsoft.DiaSymReader/1.0.6": {
  663. "type": "package",
  664. "compile": {
  665. "lib/portable-net45+win8/Microsoft.DiaSymReader.dll": {}
  666. },
  667. "runtime": {
  668. "lib/portable-net45+win8/Microsoft.DiaSymReader.dll": {}
  669. }
  670. },
  671. "Microsoft.DiaSymReader.Native/1.3.3": {
  672. "type": "package",
  673. "runtimeTargets": {
  674. "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll": {
  675. "assetType": "native",
  676. "rid": "win-x64"
  677. },
  678. "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll": {
  679. "assetType": "native",
  680. "rid": "win-x86"
  681. },
  682. "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll": {
  683. "assetType": "native",
  684. "rid": "win"
  685. },
  686. "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll": {
  687. "assetType": "native",
  688. "rid": "win"
  689. },
  690. "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll": {
  691. "assetType": "native",
  692. "rid": "win"
  693. },
  694. "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll": {
  695. "assetType": "native",
  696. "rid": "win8-arm"
  697. }
  698. }
  699. },
  700. "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
  701. "type": "package",
  702. "dependencies": {
  703. "System.AppContext": "4.1.0",
  704. "System.Collections": "4.0.11",
  705. "System.IO": "4.1.0",
  706. "System.IO.FileSystem": "4.0.1",
  707. "System.Reflection.TypeExtensions": "4.1.0",
  708. "System.Runtime.Extensions": "4.1.0",
  709. "System.Runtime.InteropServices": "4.1.0",
  710. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0"
  711. },
  712. "compile": {
  713. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  714. },
  715. "runtime": {
  716. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll": {}
  717. }
  718. },
  719. "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702": {
  720. "type": "package",
  721. "dependencies": {
  722. "Microsoft.CSharp": "4.0.1-rc2-24027",
  723. "Microsoft.Extensions.DependencyModel": "1.0.0-rc2-002702",
  724. "Newtonsoft.Json": "7.0.1",
  725. "NuGet.Packaging": "3.5.0-beta-final",
  726. "NuGet.RuntimeModel": "3.5.0-beta-final",
  727. "System.Dynamic.Runtime": "4.0.11-rc2-24027",
  728. "System.Reflection.Metadata": "1.3.0-rc2-24027",
  729. "System.Runtime.Loader": "4.0.0-rc2-24027",
  730. "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027",
  731. "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027",
  732. "System.Threading.Thread": "4.0.0-rc2-24027",
  733. "System.Xml.XDocument": "4.0.11-rc2-24027"
  734. },
  735. "compile": {
  736. "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll": {}
  737. },
  738. "runtime": {
  739. "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll": {}
  740. }
  741. },
  742. "Microsoft.EntityFrameworkCore/1.1.0": {
  743. "type": "package",
  744. "dependencies": {
  745. "Microsoft.Extensions.Caching.Memory": "1.1.0",
  746. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  747. "Microsoft.Extensions.Logging": "1.1.0",
  748. "NETStandard.Library": "1.6.1",
  749. "Remotion.Linq": "2.1.1",
  750. "System.Collections.Immutable": "1.3.0",
  751. "System.ComponentModel.Annotations": "4.3.0",
  752. "System.Interactive.Async": "3.0.0",
  753. "System.Linq.Queryable": "4.3.0"
  754. },
  755. "compile": {
  756. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
  757. },
  758. "runtime": {
  759. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
  760. }
  761. },
  762. "Microsoft.EntityFrameworkCore.Design/1.1.0": {
  763. "type": "package",
  764. "dependencies": {
  765. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  766. "Microsoft.EntityFrameworkCore.Relational.Design": "1.1.0",
  767. "NETStandard.Library": "1.6.1",
  768. "System.Collections.NonGeneric": "4.3.0"
  769. },
  770. "compile": {
  771. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
  772. },
  773. "runtime": {
  774. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
  775. }
  776. },
  777. "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
  778. "type": "package",
  779. "dependencies": {
  780. "Microsoft.CSharp": "4.3.0",
  781. "Microsoft.EntityFrameworkCore": "1.1.0",
  782. "NETStandard.Library": "1.6.1",
  783. "System.Data.Common": "4.3.0",
  784. "System.Diagnostics.DiagnosticSource": "4.3.0"
  785. },
  786. "compile": {
  787. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
  788. },
  789. "runtime": {
  790. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
  791. }
  792. },
  793. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
  794. "type": "package",
  795. "dependencies": {
  796. "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
  797. "NETStandard.Library": "1.6.1"
  798. },
  799. "compile": {
  800. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
  801. },
  802. "runtime": {
  803. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
  804. }
  805. },
  806. "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
  807. "type": "package",
  808. "dependencies": {
  809. "Microsoft.EntityFrameworkCore.Design": "1.1.0"
  810. },
  811. "compile": {
  812. "lib/netstandard1.3/_._": {}
  813. },
  814. "runtime": {
  815. "lib/netstandard1.3/_._": {}
  816. }
  817. },
  818. "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
  819. "type": "package",
  820. "dependencies": {
  821. "Microsoft.Extensions.Primitives": "1.1.0",
  822. "NETStandard.Library": "1.6.1"
  823. },
  824. "compile": {
  825. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  826. },
  827. "runtime": {
  828. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  829. }
  830. },
  831. "Microsoft.Extensions.Caching.Memory/1.1.0": {
  832. "type": "package",
  833. "dependencies": {
  834. "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
  835. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  836. "Microsoft.Extensions.Options": "1.1.0",
  837. "NETStandard.Library": "1.6.1"
  838. },
  839. "compile": {
  840. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
  841. },
  842. "runtime": {
  843. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
  844. }
  845. },
  846. "Microsoft.Extensions.Configuration/1.0.0": {
  847. "type": "package",
  848. "dependencies": {
  849. "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
  850. "System.Collections": "4.0.11",
  851. "System.Diagnostics.Debug": "4.0.11",
  852. "System.IO": "4.1.0",
  853. "System.Resources.ResourceManager": "4.0.1",
  854. "System.Runtime.Extensions": "4.1.0",
  855. "System.Runtime.InteropServices": "4.1.0",
  856. "System.Threading": "4.0.11"
  857. },
  858. "compile": {
  859. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
  860. },
  861. "runtime": {
  862. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
  863. }
  864. },
  865. "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
  866. "type": "package",
  867. "dependencies": {
  868. "Microsoft.Extensions.Primitives": "1.1.0",
  869. "NETStandard.Library": "1.6.1"
  870. },
  871. "compile": {
  872. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  873. },
  874. "runtime": {
  875. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  876. }
  877. },
  878. "Microsoft.Extensions.DependencyInjection/1.1.0": {
  879. "type": "package",
  880. "dependencies": {
  881. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  882. "NETStandard.Library": "1.6.1"
  883. },
  884. "compile": {
  885. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
  886. },
  887. "runtime": {
  888. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
  889. }
  890. },
  891. "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
  892. "type": "package",
  893. "dependencies": {
  894. "NETStandard.Library": "1.6.1",
  895. "System.ComponentModel": "4.3.0"
  896. },
  897. "compile": {
  898. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  899. },
  900. "runtime": {
  901. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  902. }
  903. },
  904. "Microsoft.Extensions.DependencyModel/1.1.0": {
  905. "type": "package",
  906. "dependencies": {
  907. "Microsoft.DotNet.PlatformAbstractions": "1.1.0",
  908. "Newtonsoft.Json": "9.0.1",
  909. "System.Diagnostics.Debug": "4.0.11",
  910. "System.Dynamic.Runtime": "4.0.11",
  911. "System.Linq": "4.1.0"
  912. },
  913. "compile": {
  914. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  915. },
  916. "runtime": {
  917. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  918. }
  919. },
  920. "Microsoft.Extensions.DiagnosticAdapter/1.0.0": {
  921. "type": "package",
  922. "dependencies": {
  923. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  924. "System.Collections.Concurrent": "4.0.12",
  925. "System.ComponentModel": "4.0.1",
  926. "System.Diagnostics.DiagnosticSource": "4.0.0",
  927. "System.Reflection.Emit": "4.0.1",
  928. "System.Reflection.Emit.Lightweight": "4.0.1",
  929. "System.Reflection.Extensions": "4.0.1",
  930. "System.Runtime.Extensions": "4.1.0"
  931. },
  932. "compile": {
  933. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  934. },
  935. "runtime": {
  936. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  937. }
  938. },
  939. "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
  940. "type": "package",
  941. "dependencies": {
  942. "Microsoft.Extensions.Primitives": "1.1.0",
  943. "NETStandard.Library": "1.6.1"
  944. },
  945. "compile": {
  946. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  947. },
  948. "runtime": {
  949. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  950. }
  951. },
  952. "Microsoft.Extensions.Localization/1.0.0": {
  953. "type": "package",
  954. "dependencies": {
  955. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  956. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  957. "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
  958. "Microsoft.Extensions.Options": "1.0.0",
  959. "System.Collections.Concurrent": "4.0.12",
  960. "System.Resources.Reader": "4.0.0"
  961. },
  962. "compile": {
  963. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
  964. },
  965. "runtime": {
  966. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
  967. }
  968. },
  969. "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
  970. "type": "package",
  971. "dependencies": {
  972. "Microsoft.CSharp": "4.0.1",
  973. "System.Globalization": "4.0.11",
  974. "System.Resources.ResourceManager": "4.0.1"
  975. },
  976. "compile": {
  977. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  978. },
  979. "runtime": {
  980. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  981. }
  982. },
  983. "Microsoft.Extensions.Logging/1.1.0": {
  984. "type": "package",
  985. "dependencies": {
  986. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  987. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  988. "NETStandard.Library": "1.6.1"
  989. },
  990. "compile": {
  991. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
  992. },
  993. "runtime": {
  994. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
  995. }
  996. },
  997. "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
  998. "type": "package",
  999. "dependencies": {
  1000. "NETStandard.Library": "1.6.1"
  1001. },
  1002. "compile": {
  1003. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
  1004. },
  1005. "runtime": {
  1006. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
  1007. }
  1008. },
  1009. "Microsoft.Extensions.ObjectPool/1.0.0": {
  1010. "type": "package",
  1011. "dependencies": {
  1012. "System.Diagnostics.Debug": "4.0.11",
  1013. "System.Resources.ResourceManager": "4.0.1",
  1014. "System.Runtime.Extensions": "4.1.0",
  1015. "System.Threading": "4.0.11"
  1016. },
  1017. "compile": {
  1018. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
  1019. },
  1020. "runtime": {
  1021. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
  1022. }
  1023. },
  1024. "Microsoft.Extensions.Options/1.1.0": {
  1025. "type": "package",
  1026. "dependencies": {
  1027. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1028. "Microsoft.Extensions.Primitives": "1.1.0",
  1029. "NETStandard.Library": "1.6.1",
  1030. "System.ComponentModel": "4.3.0"
  1031. },
  1032. "compile": {
  1033. "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
  1034. },
  1035. "runtime": {
  1036. "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
  1037. }
  1038. },
  1039. "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
  1040. "type": "package",
  1041. "dependencies": {
  1042. "System.AppContext": "4.1.0",
  1043. "System.Reflection": "4.1.0",
  1044. "System.Reflection.Extensions": "4.0.1",
  1045. "System.Reflection.TypeExtensions": "4.1.0",
  1046. "System.Resources.ResourceManager": "4.0.1",
  1047. "System.Runtime.Extensions": "4.1.0"
  1048. },
  1049. "compile": {
  1050. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
  1051. },
  1052. "runtime": {
  1053. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
  1054. }
  1055. },
  1056. "Microsoft.Extensions.Primitives/1.1.0": {
  1057. "type": "package",
  1058. "dependencies": {
  1059. "NETStandard.Library": "1.6.1",
  1060. "System.Runtime.CompilerServices.Unsafe": "4.3.0"
  1061. },
  1062. "compile": {
  1063. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
  1064. },
  1065. "runtime": {
  1066. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
  1067. }
  1068. },
  1069. "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview1-002702": {
  1070. "type": "package",
  1071. "dependencies": {
  1072. "Microsoft.DiaSymReader": "1.0.6",
  1073. "Microsoft.DiaSymReader.Native": "1.3.3",
  1074. "Microsoft.DotNet.ProjectModel": "1.0.0-rc2-002702",
  1075. "Newtonsoft.Json": "7.0.1",
  1076. "System.Reflection.TypeExtensions": "4.1.0-rc2-24027",
  1077. "System.Resources.ResourceManager": "4.0.1-rc2-24027"
  1078. },
  1079. "compile": {
  1080. "lib/netstandard1.5/Microsoft.Extensions.Testing.Abstractions.dll": {}
  1081. },
  1082. "runtime": {
  1083. "lib/netstandard1.5/Microsoft.Extensions.Testing.Abstractions.dll": {}
  1084. }
  1085. },
  1086. "Microsoft.Extensions.WebEncoders/1.0.0": {
  1087. "type": "package",
  1088. "dependencies": {
  1089. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  1090. "Microsoft.Extensions.Options": "1.0.0",
  1091. "System.Text.Encodings.Web": "4.0.0"
  1092. },
  1093. "compile": {
  1094. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
  1095. },
  1096. "runtime": {
  1097. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
  1098. }
  1099. },
  1100. "Microsoft.Net.Http.Headers/1.1.0": {
  1101. "type": "package",
  1102. "dependencies": {
  1103. "Microsoft.Extensions.Primitives": "1.1.0",
  1104. "NETStandard.Library": "1.6.1",
  1105. "System.Buffers": "4.3.0",
  1106. "System.Diagnostics.Contracts": "4.3.0"
  1107. },
  1108. "compile": {
  1109. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
  1110. },
  1111. "runtime": {
  1112. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
  1113. }
  1114. },
  1115. "Microsoft.NETCore.App/1.0.1": {
  1116. "type": "package",
  1117. "dependencies": {
  1118. "Libuv": "1.9.0",
  1119. "Microsoft.CSharp": "4.0.1",
  1120. "Microsoft.CodeAnalysis.CSharp": "1.3.0",
  1121. "Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
  1122. "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
  1123. "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
  1124. "Microsoft.VisualBasic": "10.0.1",
  1125. "NETStandard.Library": "1.6.0",
  1126. "System.Buffers": "4.0.0",
  1127. "System.Collections.Immutable": "1.2.0",
  1128. "System.ComponentModel": "4.0.1",
  1129. "System.ComponentModel.Annotations": "4.1.0",
  1130. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1131. "System.Diagnostics.Process": "4.1.0",
  1132. "System.Dynamic.Runtime": "4.0.11",
  1133. "System.Globalization.Extensions": "4.0.1",
  1134. "System.IO.FileSystem.Watcher": "4.0.0",
  1135. "System.IO.MemoryMappedFiles": "4.0.0",
  1136. "System.IO.UnmanagedMemoryStream": "4.0.1",
  1137. "System.Linq.Expressions": "4.1.0",
  1138. "System.Linq.Parallel": "4.0.1",
  1139. "System.Linq.Queryable": "4.0.1",
  1140. "System.Net.NameResolution": "4.0.0",
  1141. "System.Net.Requests": "4.0.11",
  1142. "System.Net.Security": "4.0.0",
  1143. "System.Net.WebHeaderCollection": "4.0.1",
  1144. "System.Numerics.Vectors": "4.1.1",
  1145. "System.Reflection.DispatchProxy": "4.0.1",
  1146. "System.Reflection.Metadata": "1.3.0",
  1147. "System.Reflection.TypeExtensions": "4.1.0",
  1148. "System.Resources.Reader": "4.0.0",
  1149. "System.Runtime.Loader": "4.0.0",
  1150. "System.Security.Cryptography.Algorithms": "4.2.0",
  1151. "System.Security.Cryptography.Encoding": "4.0.0",
  1152. "System.Security.Cryptography.Primitives": "4.0.0",
  1153. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1154. "System.Threading.Tasks.Dataflow": "4.6.0",
  1155. "System.Threading.Tasks.Extensions": "4.0.0",
  1156. "System.Threading.Tasks.Parallel": "4.0.1",
  1157. "System.Threading.Thread": "4.0.0",
  1158. "System.Threading.ThreadPool": "4.0.10"
  1159. },
  1160. "compile": {
  1161. "lib/netcoreapp1.0/_._": {}
  1162. },
  1163. "runtime": {
  1164. "lib/netcoreapp1.0/_._": {}
  1165. }
  1166. },
  1167. "Microsoft.NETCore.DotNetHost/1.0.1": {
  1168. "type": "package"
  1169. },
  1170. "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
  1171. "type": "package",
  1172. "dependencies": {
  1173. "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
  1174. }
  1175. },
  1176. "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
  1177. "type": "package",
  1178. "dependencies": {
  1179. "Microsoft.NETCore.DotNetHost": "1.0.1"
  1180. }
  1181. },
  1182. "Microsoft.NETCore.Jit/1.0.4": {
  1183. "type": "package"
  1184. },
  1185. "Microsoft.NETCore.Platforms/1.1.0": {
  1186. "type": "package",
  1187. "compile": {
  1188. "lib/netstandard1.0/_._": {}
  1189. },
  1190. "runtime": {
  1191. "lib/netstandard1.0/_._": {}
  1192. }
  1193. },
  1194. "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
  1195. "type": "package",
  1196. "dependencies": {
  1197. "Microsoft.NETCore.Jit": "1.0.4",
  1198. "Microsoft.NETCore.Windows.ApiSets": "1.0.1"
  1199. }
  1200. },
  1201. "Microsoft.NETCore.Targets/1.1.0": {
  1202. "type": "package",
  1203. "compile": {
  1204. "lib/netstandard1.0/_._": {}
  1205. },
  1206. "runtime": {
  1207. "lib/netstandard1.0/_._": {}
  1208. }
  1209. },
  1210. "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
  1211. "type": "package"
  1212. },
  1213. "Microsoft.VisualBasic/10.0.1": {
  1214. "type": "package",
  1215. "dependencies": {
  1216. "System.Collections": "4.0.11",
  1217. "System.Diagnostics.Debug": "4.0.11",
  1218. "System.Dynamic.Runtime": "4.0.11",
  1219. "System.Globalization": "4.0.11",
  1220. "System.Linq": "4.1.0",
  1221. "System.Linq.Expressions": "4.1.0",
  1222. "System.ObjectModel": "4.0.12",
  1223. "System.Reflection": "4.1.0",
  1224. "System.Reflection.Extensions": "4.0.1",
  1225. "System.Reflection.Primitives": "4.0.1",
  1226. "System.Reflection.TypeExtensions": "4.1.0",
  1227. "System.Resources.ResourceManager": "4.0.1",
  1228. "System.Runtime": "4.1.0",
  1229. "System.Runtime.Extensions": "4.1.0",
  1230. "System.Runtime.InteropServices": "4.1.0",
  1231. "System.Threading": "4.0.11"
  1232. },
  1233. "compile": {
  1234. "ref/netstandard1.1/Microsoft.VisualBasic.dll": {}
  1235. },
  1236. "runtime": {
  1237. "lib/netstandard1.3/Microsoft.VisualBasic.dll": {}
  1238. }
  1239. },
  1240. "Microsoft.Win32.Primitives/4.3.0": {
  1241. "type": "package",
  1242. "dependencies": {
  1243. "Microsoft.NETCore.Platforms": "1.1.0",
  1244. "Microsoft.NETCore.Targets": "1.1.0",
  1245. "System.Runtime": "4.3.0"
  1246. },
  1247. "compile": {
  1248. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  1249. }
  1250. },
  1251. "Microsoft.Win32.Registry/4.3.0": {
  1252. "type": "package",
  1253. "dependencies": {
  1254. "Microsoft.NETCore.Platforms": "1.1.0",
  1255. "System.Collections": "4.3.0",
  1256. "System.Globalization": "4.3.0",
  1257. "System.Resources.ResourceManager": "4.3.0",
  1258. "System.Runtime": "4.3.0",
  1259. "System.Runtime.Extensions": "4.3.0",
  1260. "System.Runtime.Handles": "4.3.0",
  1261. "System.Runtime.InteropServices": "4.3.0"
  1262. },
  1263. "compile": {
  1264. "ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
  1265. },
  1266. "runtimeTargets": {
  1267. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  1268. "assetType": "runtime",
  1269. "rid": "unix"
  1270. },
  1271. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  1272. "assetType": "runtime",
  1273. "rid": "win"
  1274. }
  1275. }
  1276. },
  1277. "Moq/4.6.38-alpha": {
  1278. "type": "package",
  1279. "dependencies": {
  1280. "Castle.Core": "4.0.0-beta001",
  1281. "System.Collections": "4.0.11",
  1282. "System.Collections.Concurrent": "4.0.12",
  1283. "System.Diagnostics.Debug": "4.0.11",
  1284. "System.Diagnostics.Tools": "4.0.1",
  1285. "System.Globalization": "4.0.11",
  1286. "System.Linq": "4.1.0",
  1287. "System.Linq.Expressions": "4.1.0",
  1288. "System.Linq.Queryable": "4.0.1",
  1289. "System.Reflection": "4.1.0",
  1290. "System.Reflection.Emit": "4.0.1",
  1291. "System.Reflection.Emit.ILGeneration": "4.0.1",
  1292. "System.Reflection.Extensions": "4.0.1",
  1293. "System.Reflection.Primitives": "4.0.1",
  1294. "System.Reflection.TypeExtensions": "4.1.0",
  1295. "System.Resources.ResourceManager": "4.0.1",
  1296. "System.Runtime": "4.1.0",
  1297. "System.Runtime.Extensions": "4.1.0",
  1298. "System.Text.RegularExpressions": "4.1.0",
  1299. "System.Threading": "4.0.11",
  1300. "System.Threading.Tasks": "4.0.11"
  1301. },
  1302. "compile": {
  1303. "lib/netstandard1.3/Moq.dll": {}
  1304. },
  1305. "runtime": {
  1306. "lib/netstandard1.3/Moq.dll": {}
  1307. }
  1308. },
  1309. "NETStandard.Library/1.6.1": {
  1310. "type": "package",
  1311. "dependencies": {
  1312. "Microsoft.NETCore.Platforms": "1.1.0",
  1313. "Microsoft.Win32.Primitives": "4.3.0",
  1314. "System.AppContext": "4.3.0",
  1315. "System.Collections": "4.3.0",
  1316. "System.Collections.Concurrent": "4.3.0",
  1317. "System.Console": "4.3.0",
  1318. "System.Diagnostics.Debug": "4.3.0",
  1319. "System.Diagnostics.Tools": "4.3.0",
  1320. "System.Diagnostics.Tracing": "4.3.0",
  1321. "System.Globalization": "4.3.0",
  1322. "System.Globalization.Calendars": "4.3.0",
  1323. "System.IO": "4.3.0",
  1324. "System.IO.Compression": "4.3.0",
  1325. "System.IO.Compression.ZipFile": "4.3.0",
  1326. "System.IO.FileSystem": "4.3.0",
  1327. "System.IO.FileSystem.Primitives": "4.3.0",
  1328. "System.Linq": "4.3.0",
  1329. "System.Linq.Expressions": "4.3.0",
  1330. "System.Net.Http": "4.3.0",
  1331. "System.Net.Primitives": "4.3.0",
  1332. "System.Net.Sockets": "4.3.0",
  1333. "System.ObjectModel": "4.3.0",
  1334. "System.Reflection": "4.3.0",
  1335. "System.Reflection.Extensions": "4.3.0",
  1336. "System.Reflection.Primitives": "4.3.0",
  1337. "System.Resources.ResourceManager": "4.3.0",
  1338. "System.Runtime": "4.3.0",
  1339. "System.Runtime.Extensions": "4.3.0",
  1340. "System.Runtime.Handles": "4.3.0",
  1341. "System.Runtime.InteropServices": "4.3.0",
  1342. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1343. "System.Runtime.Numerics": "4.3.0",
  1344. "System.Security.Cryptography.Algorithms": "4.3.0",
  1345. "System.Security.Cryptography.Encoding": "4.3.0",
  1346. "System.Security.Cryptography.Primitives": "4.3.0",
  1347. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1348. "System.Text.Encoding": "4.3.0",
  1349. "System.Text.Encoding.Extensions": "4.3.0",
  1350. "System.Text.RegularExpressions": "4.3.0",
  1351. "System.Threading": "4.3.0",
  1352. "System.Threading.Tasks": "4.3.0",
  1353. "System.Threading.Timer": "4.3.0",
  1354. "System.Xml.ReaderWriter": "4.3.0",
  1355. "System.Xml.XDocument": "4.3.0"
  1356. }
  1357. },
  1358. "Newtonsoft.Json/9.0.1": {
  1359. "type": "package",
  1360. "dependencies": {
  1361. "Microsoft.CSharp": "4.0.1",
  1362. "System.Collections": "4.0.11",
  1363. "System.Diagnostics.Debug": "4.0.11",
  1364. "System.Dynamic.Runtime": "4.0.11",
  1365. "System.Globalization": "4.0.11",
  1366. "System.IO": "4.1.0",
  1367. "System.Linq": "4.1.0",
  1368. "System.Linq.Expressions": "4.1.0",
  1369. "System.ObjectModel": "4.0.12",
  1370. "System.Reflection": "4.1.0",
  1371. "System.Reflection.Extensions": "4.0.1",
  1372. "System.Resources.ResourceManager": "4.0.1",
  1373. "System.Runtime": "4.1.0",
  1374. "System.Runtime.Extensions": "4.1.0",
  1375. "System.Runtime.Serialization.Primitives": "4.1.1",
  1376. "System.Text.Encoding": "4.0.11",
  1377. "System.Text.Encoding.Extensions": "4.0.11",
  1378. "System.Text.RegularExpressions": "4.1.0",
  1379. "System.Threading": "4.0.11",
  1380. "System.Threading.Tasks": "4.0.11",
  1381. "System.Xml.ReaderWriter": "4.0.11",
  1382. "System.Xml.XDocument": "4.0.11"
  1383. },
  1384. "compile": {
  1385. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  1386. },
  1387. "runtime": {
  1388. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  1389. }
  1390. },
  1391. "Npgsql/3.1.9": {
  1392. "type": "package",
  1393. "dependencies": {
  1394. "Microsoft.Win32.Primitives": "4.0.1",
  1395. "System.Collections.Concurrent": "4.0.12",
  1396. "System.ComponentModel.TypeConverter": "4.1.0",
  1397. "System.Console": "4.0.0",
  1398. "System.Data.Common": "4.1.0",
  1399. "System.Diagnostics.Contracts": "4.0.1",
  1400. "System.Globalization.Extensions": "4.0.1",
  1401. "System.Linq": "4.1.0",
  1402. "System.Net.NameResolution": "4.0.0",
  1403. "System.Net.NetworkInformation": "4.1.0",
  1404. "System.Net.Primitives": "4.0.11",
  1405. "System.Net.Security": "4.0.0",
  1406. "System.Net.Sockets": "4.1.0",
  1407. "System.Reflection": "4.1.0",
  1408. "System.Reflection.Extensions": "4.0.1",
  1409. "System.Reflection.TypeExtensions": "4.1.0",
  1410. "System.Runtime": "4.1.0",
  1411. "System.Runtime.InteropServices": "4.1.0",
  1412. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  1413. "System.Runtime.Numerics": "4.0.1",
  1414. "System.Text.Encoding.Extensions": "4.0.11",
  1415. "System.Text.RegularExpressions": "4.1.0",
  1416. "System.Threading": "4.0.11",
  1417. "System.Threading.Thread": "4.0.0",
  1418. "System.Threading.Timer": "4.0.1"
  1419. },
  1420. "compile": {
  1421. "lib/netstandard1.3/Npgsql.dll": {}
  1422. },
  1423. "runtime": {
  1424. "lib/netstandard1.3/Npgsql.dll": {}
  1425. }
  1426. },
  1427. "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0": {
  1428. "type": "package",
  1429. "dependencies": {
  1430. "Microsoft.EntityFrameworkCore": "1.1.0",
  1431. "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
  1432. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  1433. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1434. "Npgsql": "3.1.9"
  1435. },
  1436. "compile": {
  1437. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
  1438. },
  1439. "runtime": {
  1440. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
  1441. }
  1442. },
  1443. "NuGet.Common/3.5.0-beta-final": {
  1444. "type": "package",
  1445. "dependencies": {
  1446. "NETStandard.Library": "1.5.0-rc2-24027",
  1447. "System.Diagnostics.Process": "4.1.0-rc2-24027",
  1448. "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027",
  1449. "System.Threading.Thread": "4.0.0-rc2-24027"
  1450. },
  1451. "compile": {
  1452. "lib/netstandard1.3/NuGet.Common.dll": {}
  1453. },
  1454. "runtime": {
  1455. "lib/netstandard1.3/NuGet.Common.dll": {}
  1456. }
  1457. },
  1458. "NuGet.Frameworks/3.5.0-beta-final": {
  1459. "type": "package",
  1460. "dependencies": {
  1461. "NETStandard.Library": "1.5.0-rc2-24027",
  1462. "NuGet.Versioning": "3.5.0-beta-final"
  1463. },
  1464. "compile": {
  1465. "lib/netstandard1.3/NuGet.Frameworks.dll": {}
  1466. },
  1467. "runtime": {
  1468. "lib/netstandard1.3/NuGet.Frameworks.dll": {}
  1469. }
  1470. },
  1471. "NuGet.Packaging/3.5.0-beta-final": {
  1472. "type": "package",
  1473. "dependencies": {
  1474. "NETStandard.Library": "1.5.0-rc2-24027",
  1475. "NuGet.Common": "3.5.0-beta-final",
  1476. "NuGet.Packaging.Core": "3.5.0-beta-final",
  1477. "System.IO.Compression": "4.1.0-rc2-24027"
  1478. },
  1479. "compile": {
  1480. "lib/netstandard1.3/NuGet.Packaging.dll": {}
  1481. },
  1482. "runtime": {
  1483. "lib/netstandard1.3/NuGet.Packaging.dll": {}
  1484. }
  1485. },
  1486. "NuGet.Packaging.Core/3.5.0-beta-final": {
  1487. "type": "package",
  1488. "dependencies": {
  1489. "NETStandard.Library": "1.5.0-rc2-24027",
  1490. "NuGet.Packaging.Core.Types": "3.5.0-beta-final",
  1491. "System.Xml.XDocument": "4.0.11-rc2-24027"
  1492. },
  1493. "compile": {
  1494. "lib/netstandard1.3/NuGet.Packaging.Core.dll": {}
  1495. },
  1496. "runtime": {
  1497. "lib/netstandard1.3/NuGet.Packaging.Core.dll": {}
  1498. }
  1499. },
  1500. "NuGet.Packaging.Core.Types/3.5.0-beta-final": {
  1501. "type": "package",
  1502. "dependencies": {
  1503. "NETStandard.Library": "1.5.0-rc2-24027",
  1504. "NuGet.Frameworks": "3.5.0-beta-final"
  1505. },
  1506. "compile": {
  1507. "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {}
  1508. },
  1509. "runtime": {
  1510. "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {}
  1511. }
  1512. },
  1513. "NuGet.RuntimeModel/3.5.0-beta-final": {
  1514. "type": "package",
  1515. "dependencies": {
  1516. "NETStandard.Library": "1.5.0-rc2-24027",
  1517. "Newtonsoft.Json": "6.0.4",
  1518. "NuGet.Frameworks": "3.5.0-beta-final",
  1519. "NuGet.Versioning": "3.5.0-beta-final",
  1520. "System.Dynamic.Runtime": "4.0.11-rc2-24027",
  1521. "System.ObjectModel": "4.0.12-rc2-24027"
  1522. },
  1523. "compile": {
  1524. "lib/netstandard1.3/NuGet.RuntimeModel.dll": {}
  1525. },
  1526. "runtime": {
  1527. "lib/netstandard1.3/NuGet.RuntimeModel.dll": {}
  1528. }
  1529. },
  1530. "NuGet.Versioning/3.5.0-beta-final": {
  1531. "type": "package",
  1532. "dependencies": {
  1533. "NETStandard.Library": "1.5.0-rc2-24027"
  1534. },
  1535. "compile": {
  1536. "lib/netstandard1.0/NuGet.Versioning.dll": {}
  1537. },
  1538. "runtime": {
  1539. "lib/netstandard1.0/NuGet.Versioning.dll": {}
  1540. }
  1541. },
  1542. "Remotion.Linq/2.1.1": {
  1543. "type": "package",
  1544. "dependencies": {
  1545. "System.Collections": "4.0.11",
  1546. "System.Diagnostics.Debug": "4.0.11",
  1547. "System.Linq": "4.1.0",
  1548. "System.Linq.Expressions": "4.1.0",
  1549. "System.Linq.Queryable": "4.0.1",
  1550. "System.ObjectModel": "4.0.12",
  1551. "System.Reflection": "4.1.0",
  1552. "System.Reflection.Extensions": "4.0.1",
  1553. "System.Runtime": "4.1.0",
  1554. "System.Runtime.Extensions": "4.1.0",
  1555. "System.Threading": "4.0.11"
  1556. },
  1557. "compile": {
  1558. "lib/netstandard1.0/Remotion.Linq.dll": {}
  1559. },
  1560. "runtime": {
  1561. "lib/netstandard1.0/Remotion.Linq.dll": {}
  1562. }
  1563. },
  1564. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1565. "type": "package",
  1566. "runtimeTargets": {
  1567. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1568. "assetType": "native",
  1569. "rid": "debian.8-x64"
  1570. }
  1571. }
  1572. },
  1573. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1574. "type": "package",
  1575. "runtimeTargets": {
  1576. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1577. "assetType": "native",
  1578. "rid": "fedora.23-x64"
  1579. }
  1580. }
  1581. },
  1582. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1583. "type": "package",
  1584. "runtimeTargets": {
  1585. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1586. "assetType": "native",
  1587. "rid": "fedora.24-x64"
  1588. }
  1589. }
  1590. },
  1591. "runtime.native.System/4.3.0": {
  1592. "type": "package",
  1593. "dependencies": {
  1594. "Microsoft.NETCore.Platforms": "1.1.0",
  1595. "Microsoft.NETCore.Targets": "1.1.0"
  1596. },
  1597. "compile": {
  1598. "lib/netstandard1.0/_._": {}
  1599. },
  1600. "runtime": {
  1601. "lib/netstandard1.0/_._": {}
  1602. }
  1603. },
  1604. "runtime.native.System.IO.Compression/4.3.0": {
  1605. "type": "package",
  1606. "dependencies": {
  1607. "Microsoft.NETCore.Platforms": "1.1.0",
  1608. "Microsoft.NETCore.Targets": "1.1.0"
  1609. },
  1610. "compile": {
  1611. "lib/netstandard1.0/_._": {}
  1612. },
  1613. "runtime": {
  1614. "lib/netstandard1.0/_._": {}
  1615. }
  1616. },
  1617. "runtime.native.System.Net.Http/4.3.0": {
  1618. "type": "package",
  1619. "dependencies": {
  1620. "Microsoft.NETCore.Platforms": "1.1.0",
  1621. "Microsoft.NETCore.Targets": "1.1.0"
  1622. },
  1623. "compile": {
  1624. "lib/netstandard1.0/_._": {}
  1625. },
  1626. "runtime": {
  1627. "lib/netstandard1.0/_._": {}
  1628. }
  1629. },
  1630. "runtime.native.System.Net.Security/4.0.1": {
  1631. "type": "package",
  1632. "dependencies": {
  1633. "Microsoft.NETCore.Platforms": "1.0.1",
  1634. "Microsoft.NETCore.Targets": "1.0.1"
  1635. },
  1636. "compile": {
  1637. "lib/netstandard1.0/_._": {}
  1638. },
  1639. "runtime": {
  1640. "lib/netstandard1.0/_._": {}
  1641. }
  1642. },
  1643. "runtime.native.System.Security.Cryptography/4.0.0": {
  1644. "type": "package",
  1645. "dependencies": {
  1646. "Microsoft.NETCore.Platforms": "1.0.1",
  1647. "Microsoft.NETCore.Targets": "1.0.1"
  1648. },
  1649. "compile": {
  1650. "lib/netstandard1.0/_._": {}
  1651. },
  1652. "runtime": {
  1653. "lib/netstandard1.0/_._": {}
  1654. }
  1655. },
  1656. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1657. "type": "package",
  1658. "dependencies": {
  1659. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1660. },
  1661. "compile": {
  1662. "lib/netstandard1.0/_._": {}
  1663. },
  1664. "runtime": {
  1665. "lib/netstandard1.0/_._": {}
  1666. }
  1667. },
  1668. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1669. "type": "package",
  1670. "dependencies": {
  1671. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1672. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1673. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1674. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1675. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1676. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1677. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1678. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1679. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1680. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1681. },
  1682. "compile": {
  1683. "lib/netstandard1.0/_._": {}
  1684. },
  1685. "runtime": {
  1686. "lib/netstandard1.0/_._": {}
  1687. }
  1688. },
  1689. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1690. "type": "package",
  1691. "runtimeTargets": {
  1692. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1693. "assetType": "native",
  1694. "rid": "opensuse.13.2-x64"
  1695. }
  1696. }
  1697. },
  1698. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1699. "type": "package",
  1700. "runtimeTargets": {
  1701. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1702. "assetType": "native",
  1703. "rid": "opensuse.42.1-x64"
  1704. }
  1705. }
  1706. },
  1707. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1708. "type": "package",
  1709. "runtimeTargets": {
  1710. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1711. "assetType": "native",
  1712. "rid": "osx.10.10-x64"
  1713. }
  1714. }
  1715. },
  1716. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1717. "type": "package",
  1718. "runtimeTargets": {
  1719. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1720. "assetType": "native",
  1721. "rid": "osx.10.10-x64"
  1722. }
  1723. }
  1724. },
  1725. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1726. "type": "package",
  1727. "runtimeTargets": {
  1728. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1729. "assetType": "native",
  1730. "rid": "rhel.7-x64"
  1731. }
  1732. }
  1733. },
  1734. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1735. "type": "package",
  1736. "runtimeTargets": {
  1737. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1738. "assetType": "native",
  1739. "rid": "ubuntu.14.04-x64"
  1740. }
  1741. }
  1742. },
  1743. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1744. "type": "package",
  1745. "runtimeTargets": {
  1746. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1747. "assetType": "native",
  1748. "rid": "ubuntu.16.04-x64"
  1749. }
  1750. }
  1751. },
  1752. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1753. "type": "package",
  1754. "runtimeTargets": {
  1755. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1756. "assetType": "native",
  1757. "rid": "ubuntu.16.10-x64"
  1758. }
  1759. }
  1760. },
  1761. "System.AppContext/4.3.0": {
  1762. "type": "package",
  1763. "dependencies": {
  1764. "System.Runtime": "4.3.0"
  1765. },
  1766. "compile": {
  1767. "ref/netstandard1.6/System.AppContext.dll": {}
  1768. },
  1769. "runtime": {
  1770. "lib/netstandard1.6/System.AppContext.dll": {}
  1771. }
  1772. },
  1773. "System.Buffers/4.3.0": {
  1774. "type": "package",
  1775. "dependencies": {
  1776. "System.Diagnostics.Debug": "4.3.0",
  1777. "System.Diagnostics.Tracing": "4.3.0",
  1778. "System.Resources.ResourceManager": "4.3.0",
  1779. "System.Runtime": "4.3.0",
  1780. "System.Threading": "4.3.0"
  1781. },
  1782. "compile": {
  1783. "lib/netstandard1.1/System.Buffers.dll": {}
  1784. },
  1785. "runtime": {
  1786. "lib/netstandard1.1/System.Buffers.dll": {}
  1787. }
  1788. },
  1789. "System.Collections/4.3.0": {
  1790. "type": "package",
  1791. "dependencies": {
  1792. "Microsoft.NETCore.Platforms": "1.1.0",
  1793. "Microsoft.NETCore.Targets": "1.1.0",
  1794. "System.Runtime": "4.3.0"
  1795. },
  1796. "compile": {
  1797. "ref/netstandard1.3/System.Collections.dll": {}
  1798. },
  1799. "runtime": {
  1800. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  1801. }
  1802. },
  1803. "System.Collections.Concurrent/4.3.0": {
  1804. "type": "package",
  1805. "dependencies": {
  1806. "System.Collections": "4.3.0",
  1807. "System.Diagnostics.Debug": "4.3.0",
  1808. "System.Diagnostics.Tracing": "4.3.0",
  1809. "System.Globalization": "4.3.0",
  1810. "System.Reflection": "4.3.0",
  1811. "System.Resources.ResourceManager": "4.3.0",
  1812. "System.Runtime": "4.3.0",
  1813. "System.Runtime.Extensions": "4.3.0",
  1814. "System.Threading": "4.3.0",
  1815. "System.Threading.Tasks": "4.3.0"
  1816. },
  1817. "compile": {
  1818. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1819. },
  1820. "runtime": {
  1821. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1822. }
  1823. },
  1824. "System.Collections.Immutable/1.3.0": {
  1825. "type": "package",
  1826. "dependencies": {
  1827. "System.Collections": "4.3.0",
  1828. "System.Diagnostics.Debug": "4.3.0",
  1829. "System.Globalization": "4.3.0",
  1830. "System.Linq": "4.3.0",
  1831. "System.Resources.ResourceManager": "4.3.0",
  1832. "System.Runtime": "4.3.0",
  1833. "System.Runtime.Extensions": "4.3.0",
  1834. "System.Threading": "4.3.0"
  1835. },
  1836. "compile": {
  1837. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  1838. },
  1839. "runtime": {
  1840. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  1841. }
  1842. },
  1843. "System.Collections.NonGeneric/4.3.0": {
  1844. "type": "package",
  1845. "dependencies": {
  1846. "System.Diagnostics.Debug": "4.3.0",
  1847. "System.Globalization": "4.3.0",
  1848. "System.Resources.ResourceManager": "4.3.0",
  1849. "System.Runtime": "4.3.0",
  1850. "System.Runtime.Extensions": "4.3.0",
  1851. "System.Threading": "4.3.0"
  1852. },
  1853. "compile": {
  1854. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1855. },
  1856. "runtime": {
  1857. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1858. }
  1859. },
  1860. "System.Collections.Specialized/4.0.1": {
  1861. "type": "package",
  1862. "dependencies": {
  1863. "System.Collections.NonGeneric": "4.0.1",
  1864. "System.Globalization": "4.0.11",
  1865. "System.Globalization.Extensions": "4.0.1",
  1866. "System.Resources.ResourceManager": "4.0.1",
  1867. "System.Runtime": "4.1.0",
  1868. "System.Runtime.Extensions": "4.1.0",
  1869. "System.Threading": "4.0.11"
  1870. },
  1871. "compile": {
  1872. "ref/netstandard1.3/System.Collections.Specialized.dll": {}
  1873. },
  1874. "runtime": {
  1875. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1876. }
  1877. },
  1878. "System.ComponentModel/4.3.0": {
  1879. "type": "package",
  1880. "dependencies": {
  1881. "System.Runtime": "4.3.0"
  1882. },
  1883. "compile": {
  1884. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1885. },
  1886. "runtime": {
  1887. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1888. }
  1889. },
  1890. "System.ComponentModel.Annotations/4.3.0": {
  1891. "type": "package",
  1892. "dependencies": {
  1893. "System.Collections": "4.3.0",
  1894. "System.ComponentModel": "4.3.0",
  1895. "System.Globalization": "4.3.0",
  1896. "System.Linq": "4.3.0",
  1897. "System.Reflection": "4.3.0",
  1898. "System.Reflection.Extensions": "4.3.0",
  1899. "System.Resources.ResourceManager": "4.3.0",
  1900. "System.Runtime": "4.3.0",
  1901. "System.Runtime.Extensions": "4.3.0",
  1902. "System.Text.RegularExpressions": "4.3.0",
  1903. "System.Threading": "4.3.0"
  1904. },
  1905. "compile": {
  1906. "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
  1907. },
  1908. "runtime": {
  1909. "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
  1910. }
  1911. },
  1912. "System.ComponentModel.Primitives/4.1.0": {
  1913. "type": "package",
  1914. "dependencies": {
  1915. "System.ComponentModel": "4.0.1",
  1916. "System.Resources.ResourceManager": "4.0.1",
  1917. "System.Runtime": "4.1.0"
  1918. },
  1919. "compile": {
  1920. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1921. },
  1922. "runtime": {
  1923. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1924. }
  1925. },
  1926. "System.ComponentModel.TypeConverter/4.1.0": {
  1927. "type": "package",
  1928. "dependencies": {
  1929. "System.Collections": "4.0.11",
  1930. "System.Collections.NonGeneric": "4.0.1",
  1931. "System.Collections.Specialized": "4.0.1",
  1932. "System.ComponentModel": "4.0.1",
  1933. "System.ComponentModel.Primitives": "4.1.0",
  1934. "System.Globalization": "4.0.11",
  1935. "System.Linq": "4.1.0",
  1936. "System.Reflection": "4.1.0",
  1937. "System.Reflection.Extensions": "4.0.1",
  1938. "System.Reflection.Primitives": "4.0.1",
  1939. "System.Reflection.TypeExtensions": "4.1.0",
  1940. "System.Resources.ResourceManager": "4.0.1",
  1941. "System.Runtime": "4.1.0",
  1942. "System.Runtime.Extensions": "4.1.0",
  1943. "System.Threading": "4.0.11"
  1944. },
  1945. "compile": {
  1946. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1947. },
  1948. "runtime": {
  1949. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1950. }
  1951. },
  1952. "System.Console/4.3.0": {
  1953. "type": "package",
  1954. "dependencies": {
  1955. "Microsoft.NETCore.Platforms": "1.1.0",
  1956. "Microsoft.NETCore.Targets": "1.1.0",
  1957. "System.IO": "4.3.0",
  1958. "System.Runtime": "4.3.0",
  1959. "System.Text.Encoding": "4.3.0"
  1960. },
  1961. "compile": {
  1962. "ref/netstandard1.3/System.Console.dll": {}
  1963. }
  1964. },
  1965. "System.Data.Common/4.3.0": {
  1966. "type": "package",
  1967. "dependencies": {
  1968. "System.Collections": "4.3.0",
  1969. "System.Globalization": "4.3.0",
  1970. "System.IO": "4.3.0",
  1971. "System.Resources.ResourceManager": "4.3.0",
  1972. "System.Runtime": "4.3.0",
  1973. "System.Runtime.Extensions": "4.3.0",
  1974. "System.Text.RegularExpressions": "4.3.0",
  1975. "System.Threading.Tasks": "4.3.0"
  1976. },
  1977. "compile": {
  1978. "ref/netstandard1.2/System.Data.Common.dll": {}
  1979. },
  1980. "runtime": {
  1981. "lib/netstandard1.2/System.Data.Common.dll": {}
  1982. }
  1983. },
  1984. "System.Diagnostics.Contracts/4.3.0": {
  1985. "type": "package",
  1986. "dependencies": {
  1987. "System.Runtime": "4.3.0"
  1988. },
  1989. "compile": {
  1990. "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  1991. },
  1992. "runtime": {
  1993. "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  1994. }
  1995. },
  1996. "System.Diagnostics.Debug/4.3.0": {
  1997. "type": "package",
  1998. "dependencies": {
  1999. "Microsoft.NETCore.Platforms": "1.1.0",
  2000. "Microsoft.NETCore.Targets": "1.1.0",
  2001. "System.Runtime": "4.3.0"
  2002. },
  2003. "compile": {
  2004. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  2005. },
  2006. "runtime": {
  2007. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2008. }
  2009. },
  2010. "System.Diagnostics.DiagnosticSource/4.3.0": {
  2011. "type": "package",
  2012. "dependencies": {
  2013. "System.Collections": "4.3.0",
  2014. "System.Diagnostics.Tracing": "4.3.0",
  2015. "System.Reflection": "4.3.0",
  2016. "System.Runtime": "4.3.0",
  2017. "System.Threading": "4.3.0"
  2018. },
  2019. "compile": {
  2020. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  2021. },
  2022. "runtime": {
  2023. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  2024. }
  2025. },
  2026. "System.Diagnostics.FileVersionInfo/4.0.0": {
  2027. "type": "package",
  2028. "dependencies": {
  2029. "Microsoft.NETCore.Platforms": "1.0.1",
  2030. "System.Globalization": "4.0.11",
  2031. "System.IO": "4.1.0",
  2032. "System.IO.FileSystem": "4.0.1",
  2033. "System.IO.FileSystem.Primitives": "4.0.1",
  2034. "System.Reflection.Metadata": "1.3.0",
  2035. "System.Runtime": "4.1.0",
  2036. "System.Runtime.Extensions": "4.1.0",
  2037. "System.Runtime.InteropServices": "4.1.0"
  2038. },
  2039. "compile": {
  2040. "ref/netstandard1.3/_._": {}
  2041. },
  2042. "runtimeTargets": {
  2043. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  2044. "assetType": "runtime",
  2045. "rid": "unix"
  2046. },
  2047. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  2048. "assetType": "runtime",
  2049. "rid": "win"
  2050. }
  2051. }
  2052. },
  2053. "System.Diagnostics.Process/4.1.0": {
  2054. "type": "package",
  2055. "dependencies": {
  2056. "Microsoft.NETCore.Platforms": "1.0.1",
  2057. "Microsoft.Win32.Primitives": "4.0.1",
  2058. "Microsoft.Win32.Registry": "4.0.0",
  2059. "System.Collections": "4.0.11",
  2060. "System.Diagnostics.Debug": "4.0.11",
  2061. "System.Globalization": "4.0.11",
  2062. "System.IO": "4.1.0",
  2063. "System.IO.FileSystem": "4.0.1",
  2064. "System.IO.FileSystem.Primitives": "4.0.1",
  2065. "System.Resources.ResourceManager": "4.0.1",
  2066. "System.Runtime": "4.1.0",
  2067. "System.Runtime.Extensions": "4.1.0",
  2068. "System.Runtime.Handles": "4.0.1",
  2069. "System.Runtime.InteropServices": "4.1.0",
  2070. "System.Text.Encoding": "4.0.11",
  2071. "System.Text.Encoding.Extensions": "4.0.11",
  2072. "System.Threading": "4.0.11",
  2073. "System.Threading.Tasks": "4.0.11",
  2074. "System.Threading.Thread": "4.0.0",
  2075. "System.Threading.ThreadPool": "4.0.10",
  2076. "runtime.native.System": "4.0.0"
  2077. },
  2078. "compile": {
  2079. "ref/netstandard1.4/System.Diagnostics.Process.dll": {}
  2080. },
  2081. "runtimeTargets": {
  2082. "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {
  2083. "assetType": "runtime",
  2084. "rid": "linux"
  2085. },
  2086. "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": {
  2087. "assetType": "runtime",
  2088. "rid": "osx"
  2089. },
  2090. "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": {
  2091. "assetType": "runtime",
  2092. "rid": "win"
  2093. }
  2094. }
  2095. },
  2096. "System.Diagnostics.StackTrace/4.0.1": {
  2097. "type": "package",
  2098. "dependencies": {
  2099. "System.Collections.Immutable": "1.2.0",
  2100. "System.IO.FileSystem": "4.0.1",
  2101. "System.Reflection": "4.1.0",
  2102. "System.Reflection.Metadata": "1.3.0",
  2103. "System.Runtime": "4.1.0",
  2104. "System.Runtime.Extensions": "4.1.0"
  2105. },
  2106. "compile": {
  2107. "ref/netstandard1.3/_._": {}
  2108. },
  2109. "runtime": {
  2110. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
  2111. }
  2112. },
  2113. "System.Diagnostics.Tools/4.3.0": {
  2114. "type": "package",
  2115. "dependencies": {
  2116. "Microsoft.NETCore.Platforms": "1.1.0",
  2117. "Microsoft.NETCore.Targets": "1.1.0",
  2118. "System.Runtime": "4.3.0"
  2119. },
  2120. "compile": {
  2121. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  2122. },
  2123. "runtime": {
  2124. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2125. }
  2126. },
  2127. "System.Diagnostics.TraceSource/4.0.0": {
  2128. "type": "package",
  2129. "dependencies": {
  2130. "Microsoft.NETCore.Platforms": "1.0.1",
  2131. "System.Collections": "4.0.11",
  2132. "System.Diagnostics.Debug": "4.0.11",
  2133. "System.Globalization": "4.0.11",
  2134. "System.Resources.ResourceManager": "4.0.1",
  2135. "System.Runtime": "4.1.0",
  2136. "System.Runtime.Extensions": "4.1.0",
  2137. "System.Threading": "4.0.11",
  2138. "runtime.native.System": "4.0.0"
  2139. },
  2140. "compile": {
  2141. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {}
  2142. },
  2143. "runtimeTargets": {
  2144. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2145. "assetType": "runtime",
  2146. "rid": "unix"
  2147. },
  2148. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": {
  2149. "assetType": "runtime",
  2150. "rid": "win"
  2151. }
  2152. }
  2153. },
  2154. "System.Diagnostics.Tracing/4.3.0": {
  2155. "type": "package",
  2156. "dependencies": {
  2157. "Microsoft.NETCore.Platforms": "1.1.0",
  2158. "Microsoft.NETCore.Targets": "1.1.0",
  2159. "System.Runtime": "4.3.0"
  2160. },
  2161. "compile": {
  2162. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  2163. },
  2164. "runtime": {
  2165. "lib/portable-net45+win8+wpa81/_._": {}
  2166. }
  2167. },
  2168. "System.Dynamic.Runtime/4.3.0": {
  2169. "type": "package",
  2170. "dependencies": {
  2171. "System.Collections": "4.3.0",
  2172. "System.Diagnostics.Debug": "4.3.0",
  2173. "System.Linq": "4.3.0",
  2174. "System.Linq.Expressions": "4.3.0",
  2175. "System.ObjectModel": "4.3.0",
  2176. "System.Reflection": "4.3.0",
  2177. "System.Reflection.Emit": "4.3.0",
  2178. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2179. "System.Reflection.Primitives": "4.3.0",
  2180. "System.Reflection.TypeExtensions": "4.3.0",
  2181. "System.Resources.ResourceManager": "4.3.0",
  2182. "System.Runtime": "4.3.0",
  2183. "System.Runtime.Extensions": "4.3.0",
  2184. "System.Threading": "4.3.0"
  2185. },
  2186. "compile": {
  2187. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2188. },
  2189. "runtime": {
  2190. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2191. }
  2192. },
  2193. "System.Globalization/4.3.0": {
  2194. "type": "package",
  2195. "dependencies": {
  2196. "Microsoft.NETCore.Platforms": "1.1.0",
  2197. "Microsoft.NETCore.Targets": "1.1.0",
  2198. "System.Runtime": "4.3.0"
  2199. },
  2200. "compile": {
  2201. "ref/netstandard1.3/System.Globalization.dll": {}
  2202. },
  2203. "runtime": {
  2204. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2205. }
  2206. },
  2207. "System.Globalization.Calendars/4.3.0": {
  2208. "type": "package",
  2209. "dependencies": {
  2210. "Microsoft.NETCore.Platforms": "1.1.0",
  2211. "Microsoft.NETCore.Targets": "1.1.0",
  2212. "System.Globalization": "4.3.0",
  2213. "System.Runtime": "4.3.0"
  2214. },
  2215. "compile": {
  2216. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  2217. }
  2218. },
  2219. "System.Globalization.Extensions/4.3.0": {
  2220. "type": "package",
  2221. "dependencies": {
  2222. "Microsoft.NETCore.Platforms": "1.1.0",
  2223. "System.Globalization": "4.3.0",
  2224. "System.Resources.ResourceManager": "4.3.0",
  2225. "System.Runtime": "4.3.0",
  2226. "System.Runtime.Extensions": "4.3.0",
  2227. "System.Runtime.InteropServices": "4.3.0"
  2228. },
  2229. "compile": {
  2230. "ref/netstandard1.3/System.Globalization.Extensions.dll": {}
  2231. },
  2232. "runtimeTargets": {
  2233. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2234. "assetType": "runtime",
  2235. "rid": "unix"
  2236. },
  2237. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2238. "assetType": "runtime",
  2239. "rid": "win"
  2240. }
  2241. }
  2242. },
  2243. "System.Interactive.Async/3.0.0": {
  2244. "type": "package",
  2245. "dependencies": {
  2246. "System.Collections": "4.0.11",
  2247. "System.Diagnostics.Debug": "4.0.11",
  2248. "System.Linq": "4.1.0",
  2249. "System.Resources.ResourceManager": "4.0.1",
  2250. "System.Runtime": "4.1.0",
  2251. "System.Runtime.Extensions": "4.1.0",
  2252. "System.Threading": "4.0.11",
  2253. "System.Threading.Tasks": "4.0.11"
  2254. },
  2255. "compile": {
  2256. "lib/netstandard1.0/System.Interactive.Async.dll": {}
  2257. },
  2258. "runtime": {
  2259. "lib/netstandard1.0/System.Interactive.Async.dll": {}
  2260. }
  2261. },
  2262. "System.IO/4.3.0": {
  2263. "type": "package",
  2264. "dependencies": {
  2265. "Microsoft.NETCore.Platforms": "1.1.0",
  2266. "Microsoft.NETCore.Targets": "1.1.0",
  2267. "System.Runtime": "4.3.0",
  2268. "System.Text.Encoding": "4.3.0",
  2269. "System.Threading.Tasks": "4.3.0"
  2270. },
  2271. "compile": {
  2272. "ref/netstandard1.5/System.IO.dll": {}
  2273. },
  2274. "runtime": {
  2275. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2276. }
  2277. },
  2278. "System.IO.Compression/4.3.0": {
  2279. "type": "package",
  2280. "dependencies": {
  2281. "Microsoft.NETCore.Platforms": "1.1.0",
  2282. "System.Buffers": "4.3.0",
  2283. "System.Collections": "4.3.0",
  2284. "System.Diagnostics.Debug": "4.3.0",
  2285. "System.IO": "4.3.0",
  2286. "System.Resources.ResourceManager": "4.3.0",
  2287. "System.Runtime": "4.3.0",
  2288. "System.Runtime.Extensions": "4.3.0",
  2289. "System.Runtime.Handles": "4.3.0",
  2290. "System.Runtime.InteropServices": "4.3.0",
  2291. "System.Text.Encoding": "4.3.0",
  2292. "System.Threading": "4.3.0",
  2293. "System.Threading.Tasks": "4.3.0",
  2294. "runtime.native.System": "4.3.0",
  2295. "runtime.native.System.IO.Compression": "4.3.0"
  2296. },
  2297. "compile": {
  2298. "ref/netstandard1.3/System.IO.Compression.dll": {}
  2299. },
  2300. "runtime": {
  2301. "lib/portable-net45+win8+wpa81/_._": {}
  2302. },
  2303. "runtimeTargets": {
  2304. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2305. "assetType": "runtime",
  2306. "rid": "unix"
  2307. },
  2308. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2309. "assetType": "runtime",
  2310. "rid": "win"
  2311. }
  2312. }
  2313. },
  2314. "System.IO.Compression.ZipFile/4.3.0": {
  2315. "type": "package",
  2316. "dependencies": {
  2317. "System.Buffers": "4.3.0",
  2318. "System.IO": "4.3.0",
  2319. "System.IO.Compression": "4.3.0",
  2320. "System.IO.FileSystem": "4.3.0",
  2321. "System.IO.FileSystem.Primitives": "4.3.0",
  2322. "System.Resources.ResourceManager": "4.3.0",
  2323. "System.Runtime": "4.3.0",
  2324. "System.Runtime.Extensions": "4.3.0",
  2325. "System.Text.Encoding": "4.3.0"
  2326. },
  2327. "compile": {
  2328. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2329. },
  2330. "runtime": {
  2331. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2332. }
  2333. },
  2334. "System.IO.FileSystem/4.3.0": {
  2335. "type": "package",
  2336. "dependencies": {
  2337. "Microsoft.NETCore.Platforms": "1.1.0",
  2338. "Microsoft.NETCore.Targets": "1.1.0",
  2339. "System.IO": "4.3.0",
  2340. "System.IO.FileSystem.Primitives": "4.3.0",
  2341. "System.Runtime": "4.3.0",
  2342. "System.Runtime.Handles": "4.3.0",
  2343. "System.Text.Encoding": "4.3.0",
  2344. "System.Threading.Tasks": "4.3.0"
  2345. },
  2346. "compile": {
  2347. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  2348. }
  2349. },
  2350. "System.IO.FileSystem.Primitives/4.3.0": {
  2351. "type": "package",
  2352. "dependencies": {
  2353. "System.Runtime": "4.3.0"
  2354. },
  2355. "compile": {
  2356. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2357. },
  2358. "runtime": {
  2359. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2360. }
  2361. },
  2362. "System.IO.FileSystem.Watcher/4.0.0": {
  2363. "type": "package",
  2364. "dependencies": {
  2365. "Microsoft.NETCore.Platforms": "1.0.1",
  2366. "Microsoft.Win32.Primitives": "4.0.1",
  2367. "System.Collections": "4.0.11",
  2368. "System.IO.FileSystem": "4.0.1",
  2369. "System.IO.FileSystem.Primitives": "4.0.1",
  2370. "System.Resources.ResourceManager": "4.0.1",
  2371. "System.Runtime": "4.1.0",
  2372. "System.Runtime.Extensions": "4.1.0",
  2373. "System.Runtime.Handles": "4.0.1",
  2374. "System.Runtime.InteropServices": "4.1.0",
  2375. "System.Text.Encoding": "4.0.11",
  2376. "System.Threading": "4.0.11",
  2377. "System.Threading.Overlapped": "4.0.1",
  2378. "System.Threading.Tasks": "4.0.11",
  2379. "System.Threading.Thread": "4.0.0",
  2380. "runtime.native.System": "4.0.0"
  2381. },
  2382. "compile": {
  2383. "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
  2384. },
  2385. "runtimeTargets": {
  2386. "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
  2387. "assetType": "runtime",
  2388. "rid": "linux"
  2389. },
  2390. "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
  2391. "assetType": "runtime",
  2392. "rid": "osx"
  2393. },
  2394. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
  2395. "assetType": "runtime",
  2396. "rid": "win"
  2397. }
  2398. }
  2399. },
  2400. "System.IO.MemoryMappedFiles/4.0.0": {
  2401. "type": "package",
  2402. "dependencies": {
  2403. "Microsoft.NETCore.Platforms": "1.0.1",
  2404. "System.IO": "4.1.0",
  2405. "System.IO.FileSystem": "4.0.1",
  2406. "System.IO.FileSystem.Primitives": "4.0.1",
  2407. "System.IO.UnmanagedMemoryStream": "4.0.1",
  2408. "System.Resources.ResourceManager": "4.0.1",
  2409. "System.Runtime": "4.1.0",
  2410. "System.Runtime.Extensions": "4.1.0",
  2411. "System.Runtime.Handles": "4.0.1",
  2412. "System.Runtime.InteropServices": "4.1.0",
  2413. "System.Threading": "4.0.11",
  2414. "System.Threading.Tasks": "4.0.11",
  2415. "runtime.native.System": "4.0.0"
  2416. },
  2417. "compile": {
  2418. "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
  2419. },
  2420. "runtimeTargets": {
  2421. "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": {
  2422. "assetType": "runtime",
  2423. "rid": "unix"
  2424. },
  2425. "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": {
  2426. "assetType": "runtime",
  2427. "rid": "win"
  2428. }
  2429. }
  2430. },
  2431. "System.IO.UnmanagedMemoryStream/4.0.1": {
  2432. "type": "package",
  2433. "dependencies": {
  2434. "System.IO": "4.1.0",
  2435. "System.IO.FileSystem.Primitives": "4.0.1",
  2436. "System.Resources.ResourceManager": "4.0.1",
  2437. "System.Runtime": "4.1.0",
  2438. "System.Runtime.InteropServices": "4.1.0",
  2439. "System.Threading": "4.0.11",
  2440. "System.Threading.Tasks": "4.0.11"
  2441. },
  2442. "compile": {
  2443. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
  2444. },
  2445. "runtime": {
  2446. "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
  2447. }
  2448. },
  2449. "System.Linq/4.3.0": {
  2450. "type": "package",
  2451. "dependencies": {
  2452. "System.Collections": "4.3.0",
  2453. "System.Diagnostics.Debug": "4.3.0",
  2454. "System.Resources.ResourceManager": "4.3.0",
  2455. "System.Runtime": "4.3.0",
  2456. "System.Runtime.Extensions": "4.3.0"
  2457. },
  2458. "compile": {
  2459. "ref/netstandard1.6/System.Linq.dll": {}
  2460. },
  2461. "runtime": {
  2462. "lib/netstandard1.6/System.Linq.dll": {}
  2463. }
  2464. },
  2465. "System.Linq.Expressions/4.3.0": {
  2466. "type": "package",
  2467. "dependencies": {
  2468. "System.Collections": "4.3.0",
  2469. "System.Diagnostics.Debug": "4.3.0",
  2470. "System.Globalization": "4.3.0",
  2471. "System.IO": "4.3.0",
  2472. "System.Linq": "4.3.0",
  2473. "System.ObjectModel": "4.3.0",
  2474. "System.Reflection": "4.3.0",
  2475. "System.Reflection.Emit": "4.3.0",
  2476. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2477. "System.Reflection.Emit.Lightweight": "4.3.0",
  2478. "System.Reflection.Extensions": "4.3.0",
  2479. "System.Reflection.Primitives": "4.3.0",
  2480. "System.Reflection.TypeExtensions": "4.3.0",
  2481. "System.Resources.ResourceManager": "4.3.0",
  2482. "System.Runtime": "4.3.0",
  2483. "System.Runtime.Extensions": "4.3.0",
  2484. "System.Threading": "4.3.0"
  2485. },
  2486. "compile": {
  2487. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  2488. },
  2489. "runtime": {
  2490. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2491. }
  2492. },
  2493. "System.Linq.Parallel/4.0.1": {
  2494. "type": "package",
  2495. "dependencies": {
  2496. "System.Collections": "4.0.11",
  2497. "System.Collections.Concurrent": "4.0.12",
  2498. "System.Diagnostics.Debug": "4.0.11",
  2499. "System.Diagnostics.Tracing": "4.1.0",
  2500. "System.Linq": "4.1.0",
  2501. "System.Resources.ResourceManager": "4.0.1",
  2502. "System.Runtime": "4.1.0",
  2503. "System.Runtime.Extensions": "4.1.0",
  2504. "System.Threading": "4.0.11",
  2505. "System.Threading.Tasks": "4.0.11"
  2506. },
  2507. "compile": {
  2508. "ref/netstandard1.1/System.Linq.Parallel.dll": {}
  2509. },
  2510. "runtime": {
  2511. "lib/netstandard1.3/System.Linq.Parallel.dll": {}
  2512. }
  2513. },
  2514. "System.Linq.Queryable/4.3.0": {
  2515. "type": "package",
  2516. "dependencies": {
  2517. "System.Collections": "4.3.0",
  2518. "System.Diagnostics.Debug": "4.3.0",
  2519. "System.Linq": "4.3.0",
  2520. "System.Linq.Expressions": "4.3.0",
  2521. "System.Reflection": "4.3.0",
  2522. "System.Reflection.Extensions": "4.3.0",
  2523. "System.Resources.ResourceManager": "4.3.0",
  2524. "System.Runtime": "4.3.0"
  2525. },
  2526. "compile": {
  2527. "ref/netstandard1.0/System.Linq.Queryable.dll": {}
  2528. },
  2529. "runtime": {
  2530. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  2531. }
  2532. },
  2533. "System.Net.Http/4.3.0": {
  2534. "type": "package",
  2535. "dependencies": {
  2536. "Microsoft.NETCore.Platforms": "1.1.0",
  2537. "System.Collections": "4.3.0",
  2538. "System.Diagnostics.Debug": "4.3.0",
  2539. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2540. "System.Diagnostics.Tracing": "4.3.0",
  2541. "System.Globalization": "4.3.0",
  2542. "System.Globalization.Extensions": "4.3.0",
  2543. "System.IO": "4.3.0",
  2544. "System.IO.FileSystem": "4.3.0",
  2545. "System.Net.Primitives": "4.3.0",
  2546. "System.Resources.ResourceManager": "4.3.0",
  2547. "System.Runtime": "4.3.0",
  2548. "System.Runtime.Extensions": "4.3.0",
  2549. "System.Runtime.Handles": "4.3.0",
  2550. "System.Runtime.InteropServices": "4.3.0",
  2551. "System.Security.Cryptography.Algorithms": "4.3.0",
  2552. "System.Security.Cryptography.Encoding": "4.3.0",
  2553. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2554. "System.Security.Cryptography.Primitives": "4.3.0",
  2555. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2556. "System.Text.Encoding": "4.3.0",
  2557. "System.Threading": "4.3.0",
  2558. "System.Threading.Tasks": "4.3.0",
  2559. "runtime.native.System": "4.3.0",
  2560. "runtime.native.System.Net.Http": "4.3.0",
  2561. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2562. },
  2563. "compile": {
  2564. "ref/netstandard1.3/System.Net.Http.dll": {}
  2565. },
  2566. "runtime": {
  2567. "lib/portable-net45+win8+wpa81/_._": {}
  2568. },
  2569. "runtimeTargets": {
  2570. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2571. "assetType": "runtime",
  2572. "rid": "unix"
  2573. },
  2574. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2575. "assetType": "runtime",
  2576. "rid": "win"
  2577. }
  2578. }
  2579. },
  2580. "System.Net.NameResolution/4.0.0": {
  2581. "type": "package",
  2582. "dependencies": {
  2583. "Microsoft.NETCore.Platforms": "1.0.1",
  2584. "System.Collections": "4.0.11",
  2585. "System.Diagnostics.Tracing": "4.1.0",
  2586. "System.Globalization": "4.0.11",
  2587. "System.Net.Primitives": "4.0.11",
  2588. "System.Resources.ResourceManager": "4.0.1",
  2589. "System.Runtime": "4.1.0",
  2590. "System.Runtime.Extensions": "4.1.0",
  2591. "System.Runtime.Handles": "4.0.1",
  2592. "System.Runtime.InteropServices": "4.1.0",
  2593. "System.Security.Principal.Windows": "4.0.0",
  2594. "System.Threading": "4.0.11",
  2595. "System.Threading.Tasks": "4.0.11",
  2596. "runtime.native.System": "4.0.0"
  2597. },
  2598. "compile": {
  2599. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  2600. },
  2601. "runtimeTargets": {
  2602. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2603. "assetType": "runtime",
  2604. "rid": "unix"
  2605. },
  2606. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2607. "assetType": "runtime",
  2608. "rid": "win"
  2609. }
  2610. }
  2611. },
  2612. "System.Net.NetworkInformation/4.1.0": {
  2613. "type": "package",
  2614. "dependencies": {
  2615. "Microsoft.NETCore.Platforms": "1.0.1",
  2616. "Microsoft.Win32.Primitives": "4.0.1",
  2617. "System.Collections": "4.0.11",
  2618. "System.Diagnostics.Tracing": "4.1.0",
  2619. "System.Globalization": "4.0.11",
  2620. "System.IO": "4.1.0",
  2621. "System.IO.FileSystem": "4.0.1",
  2622. "System.IO.FileSystem.Primitives": "4.0.1",
  2623. "System.Linq": "4.1.0",
  2624. "System.Net.Primitives": "4.0.11",
  2625. "System.Net.Sockets": "4.1.0",
  2626. "System.Resources.ResourceManager": "4.0.1",
  2627. "System.Runtime": "4.1.0",
  2628. "System.Runtime.Extensions": "4.1.0",
  2629. "System.Runtime.Handles": "4.0.1",
  2630. "System.Runtime.InteropServices": "4.1.0",
  2631. "System.Security.Principal.Windows": "4.0.0",
  2632. "System.Threading": "4.0.11",
  2633. "System.Threading.Overlapped": "4.0.1",
  2634. "System.Threading.Tasks": "4.0.11",
  2635. "System.Threading.Thread": "4.0.0",
  2636. "System.Threading.ThreadPool": "4.0.10",
  2637. "runtime.native.System": "4.0.0"
  2638. },
  2639. "compile": {
  2640. "ref/netstandard1.3/System.Net.NetworkInformation.dll": {}
  2641. },
  2642. "runtime": {
  2643. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2644. },
  2645. "runtimeTargets": {
  2646. "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2647. "assetType": "runtime",
  2648. "rid": "linux"
  2649. },
  2650. "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2651. "assetType": "runtime",
  2652. "rid": "osx"
  2653. },
  2654. "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2655. "assetType": "runtime",
  2656. "rid": "win"
  2657. }
  2658. }
  2659. },
  2660. "System.Net.Primitives/4.3.0": {
  2661. "type": "package",
  2662. "dependencies": {
  2663. "Microsoft.NETCore.Platforms": "1.1.0",
  2664. "Microsoft.NETCore.Targets": "1.1.0",
  2665. "System.Runtime": "4.3.0",
  2666. "System.Runtime.Handles": "4.3.0"
  2667. },
  2668. "compile": {
  2669. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2670. },
  2671. "runtime": {
  2672. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2673. }
  2674. },
  2675. "System.Net.Requests/4.0.11": {
  2676. "type": "package",
  2677. "dependencies": {
  2678. "Microsoft.NETCore.Platforms": "1.0.1",
  2679. "System.Collections": "4.0.11",
  2680. "System.Diagnostics.Debug": "4.0.11",
  2681. "System.Diagnostics.Tracing": "4.1.0",
  2682. "System.Globalization": "4.0.11",
  2683. "System.IO": "4.1.0",
  2684. "System.Net.Http": "4.1.0",
  2685. "System.Net.Primitives": "4.0.11",
  2686. "System.Net.WebHeaderCollection": "4.0.1",
  2687. "System.Resources.ResourceManager": "4.0.1",
  2688. "System.Runtime": "4.1.0",
  2689. "System.Threading": "4.0.11",
  2690. "System.Threading.Tasks": "4.0.11"
  2691. },
  2692. "compile": {
  2693. "ref/netstandard1.3/System.Net.Requests.dll": {}
  2694. },
  2695. "runtime": {
  2696. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2697. },
  2698. "runtimeTargets": {
  2699. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {
  2700. "assetType": "runtime",
  2701. "rid": "unix"
  2702. },
  2703. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {
  2704. "assetType": "runtime",
  2705. "rid": "win"
  2706. }
  2707. }
  2708. },
  2709. "System.Net.Security/4.0.0": {
  2710. "type": "package",
  2711. "dependencies": {
  2712. "Microsoft.NETCore.Platforms": "1.0.1",
  2713. "Microsoft.Win32.Primitives": "4.0.1",
  2714. "System.Collections": "4.0.11",
  2715. "System.Collections.Concurrent": "4.0.12",
  2716. "System.Diagnostics.Tracing": "4.1.0",
  2717. "System.Globalization": "4.0.11",
  2718. "System.Globalization.Extensions": "4.0.1",
  2719. "System.IO": "4.1.0",
  2720. "System.Net.Primitives": "4.0.11",
  2721. "System.Resources.ResourceManager": "4.0.1",
  2722. "System.Runtime": "4.1.0",
  2723. "System.Runtime.Extensions": "4.1.0",
  2724. "System.Runtime.Handles": "4.0.1",
  2725. "System.Runtime.InteropServices": "4.1.0",
  2726. "System.Security.Claims": "4.0.1",
  2727. "System.Security.Cryptography.Algorithms": "4.2.0",
  2728. "System.Security.Cryptography.Encoding": "4.0.0",
  2729. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2730. "System.Security.Cryptography.Primitives": "4.0.0",
  2731. "System.Security.Cryptography.X509Certificates": "4.1.0",
  2732. "System.Security.Principal": "4.0.1",
  2733. "System.Text.Encoding": "4.0.11",
  2734. "System.Threading": "4.0.11",
  2735. "System.Threading.Tasks": "4.0.11",
  2736. "System.Threading.ThreadPool": "4.0.10",
  2737. "runtime.native.System": "4.0.0",
  2738. "runtime.native.System.Net.Security": "4.0.1",
  2739. "runtime.native.System.Security.Cryptography": "4.0.0"
  2740. },
  2741. "compile": {
  2742. "ref/netstandard1.3/System.Net.Security.dll": {}
  2743. },
  2744. "runtimeTargets": {
  2745. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2746. "assetType": "runtime",
  2747. "rid": "unix"
  2748. },
  2749. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2750. "assetType": "runtime",
  2751. "rid": "win"
  2752. }
  2753. }
  2754. },
  2755. "System.Net.Sockets/4.3.0": {
  2756. "type": "package",
  2757. "dependencies": {
  2758. "Microsoft.NETCore.Platforms": "1.1.0",
  2759. "Microsoft.NETCore.Targets": "1.1.0",
  2760. "System.IO": "4.3.0",
  2761. "System.Net.Primitives": "4.3.0",
  2762. "System.Runtime": "4.3.0",
  2763. "System.Threading.Tasks": "4.3.0"
  2764. },
  2765. "compile": {
  2766. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2767. }
  2768. },
  2769. "System.Net.WebHeaderCollection/4.0.1": {
  2770. "type": "package",
  2771. "dependencies": {
  2772. "System.Collections": "4.0.11",
  2773. "System.Resources.ResourceManager": "4.0.1",
  2774. "System.Runtime": "4.1.0",
  2775. "System.Runtime.Extensions": "4.1.0"
  2776. },
  2777. "compile": {
  2778. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2779. },
  2780. "runtime": {
  2781. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2782. }
  2783. },
  2784. "System.Net.WebSockets/4.3.0": {
  2785. "type": "package",
  2786. "dependencies": {
  2787. "Microsoft.Win32.Primitives": "4.3.0",
  2788. "System.Resources.ResourceManager": "4.3.0",
  2789. "System.Runtime": "4.3.0",
  2790. "System.Threading.Tasks": "4.3.0"
  2791. },
  2792. "compile": {
  2793. "ref/netstandard1.3/System.Net.WebSockets.dll": {}
  2794. },
  2795. "runtime": {
  2796. "lib/netstandard1.3/System.Net.WebSockets.dll": {}
  2797. }
  2798. },
  2799. "System.Numerics.Vectors/4.1.1": {
  2800. "type": "package",
  2801. "dependencies": {
  2802. "System.Globalization": "4.0.11",
  2803. "System.Resources.ResourceManager": "4.0.1",
  2804. "System.Runtime": "4.1.0",
  2805. "System.Runtime.Extensions": "4.1.0"
  2806. },
  2807. "compile": {
  2808. "ref/netstandard1.0/System.Numerics.Vectors.dll": {}
  2809. },
  2810. "runtime": {
  2811. "lib/netstandard1.0/System.Numerics.Vectors.dll": {}
  2812. }
  2813. },
  2814. "System.ObjectModel/4.3.0": {
  2815. "type": "package",
  2816. "dependencies": {
  2817. "System.Collections": "4.3.0",
  2818. "System.Diagnostics.Debug": "4.3.0",
  2819. "System.Resources.ResourceManager": "4.3.0",
  2820. "System.Runtime": "4.3.0",
  2821. "System.Threading": "4.3.0"
  2822. },
  2823. "compile": {
  2824. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2825. },
  2826. "runtime": {
  2827. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2828. }
  2829. },
  2830. "System.Reflection/4.3.0": {
  2831. "type": "package",
  2832. "dependencies": {
  2833. "Microsoft.NETCore.Platforms": "1.1.0",
  2834. "Microsoft.NETCore.Targets": "1.1.0",
  2835. "System.IO": "4.3.0",
  2836. "System.Reflection.Primitives": "4.3.0",
  2837. "System.Runtime": "4.3.0"
  2838. },
  2839. "compile": {
  2840. "ref/netstandard1.5/System.Reflection.dll": {}
  2841. },
  2842. "runtime": {
  2843. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2844. }
  2845. },
  2846. "System.Reflection.DispatchProxy/4.0.1": {
  2847. "type": "package",
  2848. "dependencies": {
  2849. "System.Collections": "4.0.11",
  2850. "System.Linq": "4.1.0",
  2851. "System.Reflection": "4.1.0",
  2852. "System.Reflection.Emit": "4.0.1",
  2853. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2854. "System.Reflection.Extensions": "4.0.1",
  2855. "System.Reflection.Primitives": "4.0.1",
  2856. "System.Resources.ResourceManager": "4.0.1",
  2857. "System.Runtime": "4.1.0",
  2858. "System.Threading": "4.0.11"
  2859. },
  2860. "compile": {
  2861. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
  2862. },
  2863. "runtime": {
  2864. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
  2865. }
  2866. },
  2867. "System.Reflection.Emit/4.3.0": {
  2868. "type": "package",
  2869. "dependencies": {
  2870. "System.IO": "4.3.0",
  2871. "System.Reflection": "4.3.0",
  2872. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2873. "System.Reflection.Primitives": "4.3.0",
  2874. "System.Runtime": "4.3.0"
  2875. },
  2876. "compile": {
  2877. "ref/netstandard1.1/System.Reflection.Emit.dll": {}
  2878. },
  2879. "runtime": {
  2880. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2881. }
  2882. },
  2883. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2884. "type": "package",
  2885. "dependencies": {
  2886. "System.Reflection": "4.3.0",
  2887. "System.Reflection.Primitives": "4.3.0",
  2888. "System.Runtime": "4.3.0"
  2889. },
  2890. "compile": {
  2891. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  2892. },
  2893. "runtime": {
  2894. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2895. }
  2896. },
  2897. "System.Reflection.Emit.Lightweight/4.3.0": {
  2898. "type": "package",
  2899. "dependencies": {
  2900. "System.Reflection": "4.3.0",
  2901. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2902. "System.Reflection.Primitives": "4.3.0",
  2903. "System.Runtime": "4.3.0"
  2904. },
  2905. "compile": {
  2906. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
  2907. },
  2908. "runtime": {
  2909. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2910. }
  2911. },
  2912. "System.Reflection.Extensions/4.3.0": {
  2913. "type": "package",
  2914. "dependencies": {
  2915. "Microsoft.NETCore.Platforms": "1.1.0",
  2916. "Microsoft.NETCore.Targets": "1.1.0",
  2917. "System.Reflection": "4.3.0",
  2918. "System.Runtime": "4.3.0"
  2919. },
  2920. "compile": {
  2921. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  2922. },
  2923. "runtime": {
  2924. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2925. }
  2926. },
  2927. "System.Reflection.Metadata/1.3.0": {
  2928. "type": "package",
  2929. "dependencies": {
  2930. "System.Collections": "4.0.11",
  2931. "System.Collections.Immutable": "1.2.0",
  2932. "System.Diagnostics.Debug": "4.0.11",
  2933. "System.IO": "4.1.0",
  2934. "System.Linq": "4.1.0",
  2935. "System.Reflection": "4.1.0",
  2936. "System.Reflection.Extensions": "4.0.1",
  2937. "System.Reflection.Primitives": "4.0.1",
  2938. "System.Resources.ResourceManager": "4.0.1",
  2939. "System.Runtime": "4.1.0",
  2940. "System.Runtime.Extensions": "4.1.0",
  2941. "System.Runtime.InteropServices": "4.1.0",
  2942. "System.Text.Encoding": "4.0.11",
  2943. "System.Text.Encoding.Extensions": "4.0.11",
  2944. "System.Threading": "4.0.11"
  2945. },
  2946. "compile": {
  2947. "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
  2948. },
  2949. "runtime": {
  2950. "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
  2951. }
  2952. },
  2953. "System.Reflection.Primitives/4.3.0": {
  2954. "type": "package",
  2955. "dependencies": {
  2956. "Microsoft.NETCore.Platforms": "1.1.0",
  2957. "Microsoft.NETCore.Targets": "1.1.0",
  2958. "System.Runtime": "4.3.0"
  2959. },
  2960. "compile": {
  2961. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  2962. },
  2963. "runtime": {
  2964. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2965. }
  2966. },
  2967. "System.Reflection.TypeExtensions/4.3.0": {
  2968. "type": "package",
  2969. "dependencies": {
  2970. "System.Reflection": "4.3.0",
  2971. "System.Runtime": "4.3.0"
  2972. },
  2973. "compile": {
  2974. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2975. },
  2976. "runtime": {
  2977. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2978. }
  2979. },
  2980. "System.Resources.Reader/4.0.0": {
  2981. "type": "package",
  2982. "dependencies": {
  2983. "System.IO": "4.1.0",
  2984. "System.Resources.ResourceManager": "4.0.1",
  2985. "System.Runtime": "4.1.0",
  2986. "System.Text.Encoding": "4.0.11",
  2987. "System.Threading": "4.0.11"
  2988. },
  2989. "compile": {
  2990. "lib/netstandard1.0/System.Resources.Reader.dll": {}
  2991. },
  2992. "runtime": {
  2993. "lib/netstandard1.0/System.Resources.Reader.dll": {}
  2994. }
  2995. },
  2996. "System.Resources.ResourceManager/4.3.0": {
  2997. "type": "package",
  2998. "dependencies": {
  2999. "Microsoft.NETCore.Platforms": "1.1.0",
  3000. "Microsoft.NETCore.Targets": "1.1.0",
  3001. "System.Globalization": "4.3.0",
  3002. "System.Reflection": "4.3.0",
  3003. "System.Runtime": "4.3.0"
  3004. },
  3005. "compile": {
  3006. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  3007. },
  3008. "runtime": {
  3009. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3010. }
  3011. },
  3012. "System.Runtime/4.3.0": {
  3013. "type": "package",
  3014. "dependencies": {
  3015. "Microsoft.NETCore.Platforms": "1.1.0",
  3016. "Microsoft.NETCore.Targets": "1.1.0"
  3017. },
  3018. "compile": {
  3019. "ref/netstandard1.5/System.Runtime.dll": {}
  3020. },
  3021. "runtime": {
  3022. "lib/portable-net45+win8+wp80+wpa81/_._": {}
  3023. }
  3024. },
  3025. "System.Runtime.CompilerServices.Unsafe/4.3.0": {
  3026. "type": "package",
  3027. "dependencies": {
  3028. "System.Runtime": "4.3.0"
  3029. },
  3030. "compile": {
  3031. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  3032. },
  3033. "runtime": {
  3034. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  3035. }
  3036. },
  3037. "System.Runtime.Extensions/4.3.0": {
  3038. "type": "package",
  3039. "dependencies": {
  3040. "Microsoft.NETCore.Platforms": "1.1.0",
  3041. "Microsoft.NETCore.Targets": "1.1.0",
  3042. "System.Runtime": "4.3.0"
  3043. },
  3044. "compile": {
  3045. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  3046. },
  3047. "runtime": {
  3048. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3049. }
  3050. },
  3051. "System.Runtime.Handles/4.3.0": {
  3052. "type": "package",
  3053. "dependencies": {
  3054. "Microsoft.NETCore.Platforms": "1.1.0",
  3055. "Microsoft.NETCore.Targets": "1.1.0",
  3056. "System.Runtime": "4.3.0"
  3057. },
  3058. "compile": {
  3059. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  3060. }
  3061. },
  3062. "System.Runtime.InteropServices/4.3.0": {
  3063. "type": "package",
  3064. "dependencies": {
  3065. "Microsoft.NETCore.Platforms": "1.1.0",
  3066. "Microsoft.NETCore.Targets": "1.1.0",
  3067. "System.Reflection": "4.3.0",
  3068. "System.Reflection.Primitives": "4.3.0",
  3069. "System.Runtime": "4.3.0",
  3070. "System.Runtime.Handles": "4.3.0"
  3071. },
  3072. "compile": {
  3073. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  3074. },
  3075. "runtime": {
  3076. "lib/portable-net45+win8+wpa81/_._": {}
  3077. }
  3078. },
  3079. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  3080. "type": "package",
  3081. "dependencies": {
  3082. "System.Reflection": "4.3.0",
  3083. "System.Reflection.Extensions": "4.3.0",
  3084. "System.Resources.ResourceManager": "4.3.0",
  3085. "System.Runtime": "4.3.0",
  3086. "System.Runtime.InteropServices": "4.3.0",
  3087. "System.Threading": "4.3.0",
  3088. "runtime.native.System": "4.3.0"
  3089. },
  3090. "compile": {
  3091. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3092. },
  3093. "runtime": {
  3094. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3095. },
  3096. "runtimeTargets": {
  3097. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3098. "assetType": "runtime",
  3099. "rid": "unix"
  3100. },
  3101. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3102. "assetType": "runtime",
  3103. "rid": "win"
  3104. }
  3105. }
  3106. },
  3107. "System.Runtime.Loader/4.0.0": {
  3108. "type": "package",
  3109. "dependencies": {
  3110. "System.IO": "4.1.0",
  3111. "System.Reflection": "4.1.0",
  3112. "System.Runtime": "4.1.0"
  3113. },
  3114. "compile": {
  3115. "ref/netstandard1.5/System.Runtime.Loader.dll": {}
  3116. },
  3117. "runtime": {
  3118. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  3119. }
  3120. },
  3121. "System.Runtime.Numerics/4.3.0": {
  3122. "type": "package",
  3123. "dependencies": {
  3124. "System.Globalization": "4.3.0",
  3125. "System.Resources.ResourceManager": "4.3.0",
  3126. "System.Runtime": "4.3.0",
  3127. "System.Runtime.Extensions": "4.3.0"
  3128. },
  3129. "compile": {
  3130. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  3131. },
  3132. "runtime": {
  3133. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  3134. }
  3135. },
  3136. "System.Runtime.Serialization.Primitives/4.1.1": {
  3137. "type": "package",
  3138. "dependencies": {
  3139. "System.Resources.ResourceManager": "4.0.1",
  3140. "System.Runtime": "4.1.0"
  3141. },
  3142. "compile": {
  3143. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3144. },
  3145. "runtime": {
  3146. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3147. }
  3148. },
  3149. "System.Security.Claims/4.3.0": {
  3150. "type": "package",
  3151. "dependencies": {
  3152. "System.Collections": "4.3.0",
  3153. "System.Globalization": "4.3.0",
  3154. "System.IO": "4.3.0",
  3155. "System.Resources.ResourceManager": "4.3.0",
  3156. "System.Runtime": "4.3.0",
  3157. "System.Runtime.Extensions": "4.3.0",
  3158. "System.Security.Principal": "4.3.0"
  3159. },
  3160. "compile": {
  3161. "ref/netstandard1.3/System.Security.Claims.dll": {}
  3162. },
  3163. "runtime": {
  3164. "lib/netstandard1.3/System.Security.Claims.dll": {}
  3165. }
  3166. },
  3167. "System.Security.Cryptography.Algorithms/4.3.0": {
  3168. "type": "package",
  3169. "dependencies": {
  3170. "Microsoft.NETCore.Platforms": "1.1.0",
  3171. "System.Collections": "4.3.0",
  3172. "System.IO": "4.3.0",
  3173. "System.Resources.ResourceManager": "4.3.0",
  3174. "System.Runtime": "4.3.0",
  3175. "System.Runtime.Extensions": "4.3.0",
  3176. "System.Runtime.Handles": "4.3.0",
  3177. "System.Runtime.InteropServices": "4.3.0",
  3178. "System.Runtime.Numerics": "4.3.0",
  3179. "System.Security.Cryptography.Encoding": "4.3.0",
  3180. "System.Security.Cryptography.Primitives": "4.3.0",
  3181. "System.Text.Encoding": "4.3.0",
  3182. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  3183. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3184. },
  3185. "compile": {
  3186. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3187. },
  3188. "runtimeTargets": {
  3189. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3190. "assetType": "runtime",
  3191. "rid": "osx"
  3192. },
  3193. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3194. "assetType": "runtime",
  3195. "rid": "unix"
  3196. },
  3197. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3198. "assetType": "runtime",
  3199. "rid": "win"
  3200. }
  3201. }
  3202. },
  3203. "System.Security.Cryptography.Cng/4.3.0": {
  3204. "type": "package",
  3205. "dependencies": {
  3206. "Microsoft.NETCore.Platforms": "1.1.0",
  3207. "System.IO": "4.3.0",
  3208. "System.Resources.ResourceManager": "4.3.0",
  3209. "System.Runtime": "4.3.0",
  3210. "System.Runtime.Extensions": "4.3.0",
  3211. "System.Runtime.Handles": "4.3.0",
  3212. "System.Runtime.InteropServices": "4.3.0",
  3213. "System.Security.Cryptography.Algorithms": "4.3.0",
  3214. "System.Security.Cryptography.Encoding": "4.3.0",
  3215. "System.Security.Cryptography.Primitives": "4.3.0",
  3216. "System.Text.Encoding": "4.3.0"
  3217. },
  3218. "compile": {
  3219. "ref/netstandard1.6/_._": {}
  3220. },
  3221. "runtimeTargets": {
  3222. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3223. "assetType": "runtime",
  3224. "rid": "unix"
  3225. },
  3226. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3227. "assetType": "runtime",
  3228. "rid": "win"
  3229. }
  3230. }
  3231. },
  3232. "System.Security.Cryptography.Csp/4.3.0": {
  3233. "type": "package",
  3234. "dependencies": {
  3235. "Microsoft.NETCore.Platforms": "1.1.0",
  3236. "System.IO": "4.3.0",
  3237. "System.Reflection": "4.3.0",
  3238. "System.Resources.ResourceManager": "4.3.0",
  3239. "System.Runtime": "4.3.0",
  3240. "System.Runtime.Extensions": "4.3.0",
  3241. "System.Runtime.Handles": "4.3.0",
  3242. "System.Runtime.InteropServices": "4.3.0",
  3243. "System.Security.Cryptography.Algorithms": "4.3.0",
  3244. "System.Security.Cryptography.Encoding": "4.3.0",
  3245. "System.Security.Cryptography.Primitives": "4.3.0",
  3246. "System.Text.Encoding": "4.3.0",
  3247. "System.Threading": "4.3.0"
  3248. },
  3249. "compile": {
  3250. "ref/netstandard1.3/_._": {}
  3251. },
  3252. "runtimeTargets": {
  3253. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3254. "assetType": "runtime",
  3255. "rid": "unix"
  3256. },
  3257. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3258. "assetType": "runtime",
  3259. "rid": "win"
  3260. }
  3261. }
  3262. },
  3263. "System.Security.Cryptography.Encoding/4.3.0": {
  3264. "type": "package",
  3265. "dependencies": {
  3266. "Microsoft.NETCore.Platforms": "1.1.0",
  3267. "System.Collections": "4.3.0",
  3268. "System.Collections.Concurrent": "4.3.0",
  3269. "System.Linq": "4.3.0",
  3270. "System.Resources.ResourceManager": "4.3.0",
  3271. "System.Runtime": "4.3.0",
  3272. "System.Runtime.Extensions": "4.3.0",
  3273. "System.Runtime.Handles": "4.3.0",
  3274. "System.Runtime.InteropServices": "4.3.0",
  3275. "System.Security.Cryptography.Primitives": "4.3.0",
  3276. "System.Text.Encoding": "4.3.0",
  3277. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3278. },
  3279. "compile": {
  3280. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  3281. },
  3282. "runtimeTargets": {
  3283. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3284. "assetType": "runtime",
  3285. "rid": "unix"
  3286. },
  3287. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3288. "assetType": "runtime",
  3289. "rid": "win"
  3290. }
  3291. }
  3292. },
  3293. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3294. "type": "package",
  3295. "dependencies": {
  3296. "System.Collections": "4.3.0",
  3297. "System.IO": "4.3.0",
  3298. "System.Resources.ResourceManager": "4.3.0",
  3299. "System.Runtime": "4.3.0",
  3300. "System.Runtime.Extensions": "4.3.0",
  3301. "System.Runtime.Handles": "4.3.0",
  3302. "System.Runtime.InteropServices": "4.3.0",
  3303. "System.Runtime.Numerics": "4.3.0",
  3304. "System.Security.Cryptography.Algorithms": "4.3.0",
  3305. "System.Security.Cryptography.Encoding": "4.3.0",
  3306. "System.Security.Cryptography.Primitives": "4.3.0",
  3307. "System.Text.Encoding": "4.3.0",
  3308. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3309. },
  3310. "compile": {
  3311. "ref/netstandard1.6/_._": {}
  3312. },
  3313. "runtime": {
  3314. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3315. },
  3316. "runtimeTargets": {
  3317. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3318. "assetType": "runtime",
  3319. "rid": "unix"
  3320. }
  3321. }
  3322. },
  3323. "System.Security.Cryptography.Primitives/4.3.0": {
  3324. "type": "package",
  3325. "dependencies": {
  3326. "System.Diagnostics.Debug": "4.3.0",
  3327. "System.Globalization": "4.3.0",
  3328. "System.IO": "4.3.0",
  3329. "System.Resources.ResourceManager": "4.3.0",
  3330. "System.Runtime": "4.3.0",
  3331. "System.Threading": "4.3.0",
  3332. "System.Threading.Tasks": "4.3.0"
  3333. },
  3334. "compile": {
  3335. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3336. },
  3337. "runtime": {
  3338. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3339. }
  3340. },
  3341. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3342. "type": "package",
  3343. "dependencies": {
  3344. "Microsoft.NETCore.Platforms": "1.1.0",
  3345. "System.Collections": "4.3.0",
  3346. "System.Diagnostics.Debug": "4.3.0",
  3347. "System.Globalization": "4.3.0",
  3348. "System.Globalization.Calendars": "4.3.0",
  3349. "System.IO": "4.3.0",
  3350. "System.IO.FileSystem": "4.3.0",
  3351. "System.IO.FileSystem.Primitives": "4.3.0",
  3352. "System.Resources.ResourceManager": "4.3.0",
  3353. "System.Runtime": "4.3.0",
  3354. "System.Runtime.Extensions": "4.3.0",
  3355. "System.Runtime.Handles": "4.3.0",
  3356. "System.Runtime.InteropServices": "4.3.0",
  3357. "System.Runtime.Numerics": "4.3.0",
  3358. "System.Security.Cryptography.Algorithms": "4.3.0",
  3359. "System.Security.Cryptography.Cng": "4.3.0",
  3360. "System.Security.Cryptography.Csp": "4.3.0",
  3361. "System.Security.Cryptography.Encoding": "4.3.0",
  3362. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3363. "System.Security.Cryptography.Primitives": "4.3.0",
  3364. "System.Text.Encoding": "4.3.0",
  3365. "System.Threading": "4.3.0",
  3366. "runtime.native.System": "4.3.0",
  3367. "runtime.native.System.Net.Http": "4.3.0",
  3368. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3369. },
  3370. "compile": {
  3371. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  3372. },
  3373. "runtimeTargets": {
  3374. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3375. "assetType": "runtime",
  3376. "rid": "unix"
  3377. },
  3378. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3379. "assetType": "runtime",
  3380. "rid": "win"
  3381. }
  3382. }
  3383. },
  3384. "System.Security.Principal/4.3.0": {
  3385. "type": "package",
  3386. "dependencies": {
  3387. "System.Runtime": "4.3.0"
  3388. },
  3389. "compile": {
  3390. "ref/netstandard1.0/System.Security.Principal.dll": {}
  3391. },
  3392. "runtime": {
  3393. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3394. }
  3395. },
  3396. "System.Security.Principal.Windows/4.3.0": {
  3397. "type": "package",
  3398. "dependencies": {
  3399. "Microsoft.NETCore.Platforms": "1.1.0",
  3400. "Microsoft.Win32.Primitives": "4.3.0",
  3401. "System.Collections": "4.3.0",
  3402. "System.Diagnostics.Debug": "4.3.0",
  3403. "System.Reflection": "4.3.0",
  3404. "System.Resources.ResourceManager": "4.3.0",
  3405. "System.Runtime": "4.3.0",
  3406. "System.Runtime.Extensions": "4.3.0",
  3407. "System.Runtime.Handles": "4.3.0",
  3408. "System.Runtime.InteropServices": "4.3.0",
  3409. "System.Security.Claims": "4.3.0",
  3410. "System.Security.Principal": "4.3.0",
  3411. "System.Text.Encoding": "4.3.0",
  3412. "System.Threading": "4.3.0"
  3413. },
  3414. "compile": {
  3415. "ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
  3416. },
  3417. "runtimeTargets": {
  3418. "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  3419. "assetType": "runtime",
  3420. "rid": "unix"
  3421. },
  3422. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  3423. "assetType": "runtime",
  3424. "rid": "win"
  3425. }
  3426. }
  3427. },
  3428. "System.Text.Encoding/4.3.0": {
  3429. "type": "package",
  3430. "dependencies": {
  3431. "Microsoft.NETCore.Platforms": "1.1.0",
  3432. "Microsoft.NETCore.Targets": "1.1.0",
  3433. "System.Runtime": "4.3.0"
  3434. },
  3435. "compile": {
  3436. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  3437. },
  3438. "runtime": {
  3439. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3440. }
  3441. },
  3442. "System.Text.Encoding.CodePages/4.0.1": {
  3443. "type": "package",
  3444. "dependencies": {
  3445. "Microsoft.NETCore.Platforms": "1.0.1",
  3446. "System.Collections": "4.0.11",
  3447. "System.Globalization": "4.0.11",
  3448. "System.IO": "4.1.0",
  3449. "System.Reflection": "4.1.0",
  3450. "System.Resources.ResourceManager": "4.0.1",
  3451. "System.Runtime": "4.1.0",
  3452. "System.Runtime.Extensions": "4.1.0",
  3453. "System.Runtime.Handles": "4.0.1",
  3454. "System.Runtime.InteropServices": "4.1.0",
  3455. "System.Text.Encoding": "4.0.11",
  3456. "System.Threading": "4.0.11"
  3457. },
  3458. "compile": {
  3459. "ref/netstandard1.3/_._": {}
  3460. },
  3461. "runtimeTargets": {
  3462. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  3463. "assetType": "runtime",
  3464. "rid": "unix"
  3465. },
  3466. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  3467. "assetType": "runtime",
  3468. "rid": "win"
  3469. }
  3470. }
  3471. },
  3472. "System.Text.Encoding.Extensions/4.3.0": {
  3473. "type": "package",
  3474. "dependencies": {
  3475. "Microsoft.NETCore.Platforms": "1.1.0",
  3476. "Microsoft.NETCore.Targets": "1.1.0",
  3477. "System.Runtime": "4.3.0",
  3478. "System.Text.Encoding": "4.3.0"
  3479. },
  3480. "compile": {
  3481. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  3482. },
  3483. "runtime": {
  3484. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3485. }
  3486. },
  3487. "System.Text.Encodings.Web/4.3.0": {
  3488. "type": "package",
  3489. "dependencies": {
  3490. "System.Diagnostics.Debug": "4.3.0",
  3491. "System.IO": "4.3.0",
  3492. "System.Reflection": "4.3.0",
  3493. "System.Resources.ResourceManager": "4.3.0",
  3494. "System.Runtime": "4.3.0",
  3495. "System.Runtime.Extensions": "4.3.0",
  3496. "System.Threading": "4.3.0"
  3497. },
  3498. "compile": {
  3499. "lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
  3500. },
  3501. "runtime": {
  3502. "lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
  3503. }
  3504. },
  3505. "System.Text.RegularExpressions/4.3.0": {
  3506. "type": "package",
  3507. "dependencies": {
  3508. "System.Collections": "4.3.0",
  3509. "System.Globalization": "4.3.0",
  3510. "System.Resources.ResourceManager": "4.3.0",
  3511. "System.Runtime": "4.3.0",
  3512. "System.Runtime.Extensions": "4.3.0",
  3513. "System.Threading": "4.3.0"
  3514. },
  3515. "compile": {
  3516. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3517. },
  3518. "runtime": {
  3519. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3520. }
  3521. },
  3522. "System.Threading/4.3.0": {
  3523. "type": "package",
  3524. "dependencies": {
  3525. "System.Runtime": "4.3.0",
  3526. "System.Threading.Tasks": "4.3.0"
  3527. },
  3528. "compile": {
  3529. "ref/netstandard1.3/System.Threading.dll": {}
  3530. },
  3531. "runtime": {
  3532. "lib/netstandard1.3/System.Threading.dll": {}
  3533. }
  3534. },
  3535. "System.Threading.Overlapped/4.0.1": {
  3536. "type": "package",
  3537. "dependencies": {
  3538. "Microsoft.NETCore.Platforms": "1.0.1",
  3539. "System.Resources.ResourceManager": "4.0.1",
  3540. "System.Runtime": "4.1.0",
  3541. "System.Runtime.Handles": "4.0.1"
  3542. },
  3543. "compile": {
  3544. "ref/netstandard1.3/_._": {}
  3545. },
  3546. "runtimeTargets": {
  3547. "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
  3548. "assetType": "runtime",
  3549. "rid": "unix"
  3550. },
  3551. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {
  3552. "assetType": "runtime",
  3553. "rid": "win"
  3554. }
  3555. }
  3556. },
  3557. "System.Threading.Tasks/4.3.0": {
  3558. "type": "package",
  3559. "dependencies": {
  3560. "Microsoft.NETCore.Platforms": "1.1.0",
  3561. "Microsoft.NETCore.Targets": "1.1.0",
  3562. "System.Runtime": "4.3.0"
  3563. },
  3564. "compile": {
  3565. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  3566. },
  3567. "runtime": {
  3568. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3569. }
  3570. },
  3571. "System.Threading.Tasks.Dataflow/4.6.0": {
  3572. "type": "package",
  3573. "dependencies": {
  3574. "System.Collections": "4.0.11",
  3575. "System.Collections.Concurrent": "4.0.12",
  3576. "System.Diagnostics.Debug": "4.0.11",
  3577. "System.Diagnostics.Tracing": "4.1.0",
  3578. "System.Dynamic.Runtime": "4.0.11",
  3579. "System.Linq": "4.1.0",
  3580. "System.Resources.ResourceManager": "4.0.1",
  3581. "System.Runtime": "4.1.0",
  3582. "System.Runtime.Extensions": "4.1.0",
  3583. "System.Threading": "4.0.11",
  3584. "System.Threading.Tasks": "4.0.11"
  3585. },
  3586. "compile": {
  3587. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
  3588. },
  3589. "runtime": {
  3590. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
  3591. }
  3592. },
  3593. "System.Threading.Tasks.Extensions/4.3.0": {
  3594. "type": "package",
  3595. "dependencies": {
  3596. "System.Collections": "4.3.0",
  3597. "System.Runtime": "4.3.0",
  3598. "System.Threading.Tasks": "4.3.0"
  3599. },
  3600. "compile": {
  3601. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  3602. },
  3603. "runtime": {
  3604. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  3605. }
  3606. },
  3607. "System.Threading.Tasks.Parallel/4.0.1": {
  3608. "type": "package",
  3609. "dependencies": {
  3610. "System.Collections.Concurrent": "4.0.12",
  3611. "System.Diagnostics.Debug": "4.0.11",
  3612. "System.Diagnostics.Tracing": "4.1.0",
  3613. "System.Resources.ResourceManager": "4.0.1",
  3614. "System.Runtime": "4.1.0",
  3615. "System.Runtime.Extensions": "4.1.0",
  3616. "System.Threading": "4.0.11",
  3617. "System.Threading.Tasks": "4.0.11"
  3618. },
  3619. "compile": {
  3620. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
  3621. },
  3622. "runtime": {
  3623. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
  3624. }
  3625. },
  3626. "System.Threading.Thread/4.3.0": {
  3627. "type": "package",
  3628. "dependencies": {
  3629. "System.Runtime": "4.3.0"
  3630. },
  3631. "compile": {
  3632. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  3633. },
  3634. "runtime": {
  3635. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3636. }
  3637. },
  3638. "System.Threading.ThreadPool/4.3.0": {
  3639. "type": "package",
  3640. "dependencies": {
  3641. "System.Runtime": "4.3.0",
  3642. "System.Runtime.Handles": "4.3.0"
  3643. },
  3644. "compile": {
  3645. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3646. },
  3647. "runtime": {
  3648. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3649. }
  3650. },
  3651. "System.Threading.Timer/4.3.0": {
  3652. "type": "package",
  3653. "dependencies": {
  3654. "Microsoft.NETCore.Platforms": "1.1.0",
  3655. "Microsoft.NETCore.Targets": "1.1.0",
  3656. "System.Runtime": "4.3.0"
  3657. },
  3658. "compile": {
  3659. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  3660. }
  3661. },
  3662. "System.Xml.ReaderWriter/4.3.0": {
  3663. "type": "package",
  3664. "dependencies": {
  3665. "System.Collections": "4.3.0",
  3666. "System.Diagnostics.Debug": "4.3.0",
  3667. "System.Globalization": "4.3.0",
  3668. "System.IO": "4.3.0",
  3669. "System.IO.FileSystem": "4.3.0",
  3670. "System.IO.FileSystem.Primitives": "4.3.0",
  3671. "System.Resources.ResourceManager": "4.3.0",
  3672. "System.Runtime": "4.3.0",
  3673. "System.Runtime.Extensions": "4.3.0",
  3674. "System.Runtime.InteropServices": "4.3.0",
  3675. "System.Text.Encoding": "4.3.0",
  3676. "System.Text.Encoding.Extensions": "4.3.0",
  3677. "System.Text.RegularExpressions": "4.3.0",
  3678. "System.Threading.Tasks": "4.3.0",
  3679. "System.Threading.Tasks.Extensions": "4.3.0"
  3680. },
  3681. "compile": {
  3682. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3683. },
  3684. "runtime": {
  3685. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3686. }
  3687. },
  3688. "System.Xml.XDocument/4.3.0": {
  3689. "type": "package",
  3690. "dependencies": {
  3691. "System.Collections": "4.3.0",
  3692. "System.Diagnostics.Debug": "4.3.0",
  3693. "System.Diagnostics.Tools": "4.3.0",
  3694. "System.Globalization": "4.3.0",
  3695. "System.IO": "4.3.0",
  3696. "System.Reflection": "4.3.0",
  3697. "System.Resources.ResourceManager": "4.3.0",
  3698. "System.Runtime": "4.3.0",
  3699. "System.Runtime.Extensions": "4.3.0",
  3700. "System.Text.Encoding": "4.3.0",
  3701. "System.Threading": "4.3.0",
  3702. "System.Xml.ReaderWriter": "4.3.0"
  3703. },
  3704. "compile": {
  3705. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  3706. },
  3707. "runtime": {
  3708. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3709. }
  3710. },
  3711. "System.Xml.XmlDocument/4.0.1": {
  3712. "type": "package",
  3713. "dependencies": {
  3714. "System.Collections": "4.0.11",
  3715. "System.Diagnostics.Debug": "4.0.11",
  3716. "System.Globalization": "4.0.11",
  3717. "System.IO": "4.1.0",
  3718. "System.Resources.ResourceManager": "4.0.1",
  3719. "System.Runtime": "4.1.0",
  3720. "System.Runtime.Extensions": "4.1.0",
  3721. "System.Text.Encoding": "4.0.11",
  3722. "System.Threading": "4.0.11",
  3723. "System.Xml.ReaderWriter": "4.0.11"
  3724. },
  3725. "compile": {
  3726. "ref/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3727. },
  3728. "runtime": {
  3729. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3730. }
  3731. },
  3732. "System.Xml.XmlSerializer/4.0.11": {
  3733. "type": "package",
  3734. "dependencies": {
  3735. "System.Collections": "4.0.11",
  3736. "System.Globalization": "4.0.11",
  3737. "System.IO": "4.1.0",
  3738. "System.Linq": "4.1.0",
  3739. "System.Reflection": "4.1.0",
  3740. "System.Reflection.Emit": "4.0.1",
  3741. "System.Reflection.Emit.ILGeneration": "4.0.1",
  3742. "System.Reflection.Extensions": "4.0.1",
  3743. "System.Reflection.Primitives": "4.0.1",
  3744. "System.Reflection.TypeExtensions": "4.1.0",
  3745. "System.Resources.ResourceManager": "4.0.1",
  3746. "System.Runtime": "4.1.0",
  3747. "System.Runtime.Extensions": "4.1.0",
  3748. "System.Text.RegularExpressions": "4.1.0",
  3749. "System.Threading": "4.0.11",
  3750. "System.Xml.ReaderWriter": "4.0.11",
  3751. "System.Xml.XmlDocument": "4.0.1"
  3752. },
  3753. "compile": {
  3754. "ref/netstandard1.3/System.Xml.XmlSerializer.dll": {}
  3755. },
  3756. "runtime": {
  3757. "lib/netstandard1.3/System.Xml.XmlSerializer.dll": {}
  3758. }
  3759. },
  3760. "System.Xml.XPath/4.0.1": {
  3761. "type": "package",
  3762. "dependencies": {
  3763. "System.Collections": "4.0.11",
  3764. "System.Diagnostics.Debug": "4.0.11",
  3765. "System.Globalization": "4.0.11",
  3766. "System.IO": "4.1.0",
  3767. "System.Resources.ResourceManager": "4.0.1",
  3768. "System.Runtime": "4.1.0",
  3769. "System.Runtime.Extensions": "4.1.0",
  3770. "System.Threading": "4.0.11",
  3771. "System.Xml.ReaderWriter": "4.0.11"
  3772. },
  3773. "compile": {
  3774. "ref/netstandard1.3/_._": {}
  3775. },
  3776. "runtime": {
  3777. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  3778. }
  3779. },
  3780. "System.Xml.XPath.XDocument/4.0.1": {
  3781. "type": "package",
  3782. "dependencies": {
  3783. "System.Diagnostics.Debug": "4.0.11",
  3784. "System.Linq": "4.1.0",
  3785. "System.Resources.ResourceManager": "4.0.1",
  3786. "System.Runtime": "4.1.0",
  3787. "System.Runtime.Extensions": "4.1.0",
  3788. "System.Threading": "4.0.11",
  3789. "System.Xml.ReaderWriter": "4.0.11",
  3790. "System.Xml.XDocument": "4.0.11",
  3791. "System.Xml.XPath": "4.0.1"
  3792. },
  3793. "compile": {
  3794. "ref/netstandard1.3/_._": {}
  3795. },
  3796. "runtime": {
  3797. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
  3798. }
  3799. },
  3800. "xunit/2.1.0": {
  3801. "type": "package",
  3802. "dependencies": {
  3803. "xunit.assert": "[2.1.0]",
  3804. "xunit.core": "[2.1.0]"
  3805. }
  3806. },
  3807. "xunit.abstractions/2.0.0": {
  3808. "type": "package",
  3809. "compile": {
  3810. "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
  3811. },
  3812. "runtime": {
  3813. "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
  3814. }
  3815. },
  3816. "xunit.assert/2.1.0": {
  3817. "type": "package",
  3818. "dependencies": {
  3819. "System.Collections": "4.0.0",
  3820. "System.Diagnostics.Debug": "4.0.0",
  3821. "System.Globalization": "4.0.0",
  3822. "System.Linq": "4.0.0",
  3823. "System.ObjectModel": "4.0.0",
  3824. "System.Reflection": "4.0.0",
  3825. "System.Reflection.Extensions": "4.0.0",
  3826. "System.Runtime": "4.0.0",
  3827. "System.Runtime.Extensions": "4.0.0",
  3828. "System.Text.RegularExpressions": "4.0.0",
  3829. "System.Threading.Tasks": "4.0.0"
  3830. },
  3831. "compile": {
  3832. "lib/dotnet/xunit.assert.dll": {}
  3833. },
  3834. "runtime": {
  3835. "lib/dotnet/xunit.assert.dll": {}
  3836. }
  3837. },
  3838. "xunit.core/2.1.0": {
  3839. "type": "package",
  3840. "dependencies": {
  3841. "System.Collections": "4.0.0",
  3842. "System.Diagnostics.Debug": "4.0.0",
  3843. "System.Globalization": "4.0.0",
  3844. "System.Linq": "4.0.0",
  3845. "System.Reflection": "4.0.0",
  3846. "System.Reflection.Extensions": "4.0.0",
  3847. "System.Runtime": "4.0.0",
  3848. "System.Runtime.Extensions": "4.0.0",
  3849. "System.Threading.Tasks": "4.0.0",
  3850. "xunit.abstractions": "2.0.0",
  3851. "xunit.extensibility.core": "[2.1.0]",
  3852. "xunit.extensibility.execution": "[2.1.0]"
  3853. }
  3854. },
  3855. "xunit.extensibility.core/2.1.0": {
  3856. "type": "package",
  3857. "dependencies": {
  3858. "xunit.abstractions": "[2.0.0]"
  3859. },
  3860. "compile": {
  3861. "lib/dotnet/xunit.core.dll": {}
  3862. },
  3863. "runtime": {
  3864. "lib/dotnet/xunit.core.dll": {}
  3865. }
  3866. },
  3867. "xunit.extensibility.execution/2.1.0": {
  3868. "type": "package",
  3869. "dependencies": {
  3870. "System.Collections": "4.0.0",
  3871. "System.Diagnostics.Debug": "4.0.0",
  3872. "System.Globalization": "4.0.0",
  3873. "System.IO": "4.0.0",
  3874. "System.Linq": "4.0.0",
  3875. "System.Linq.Expressions": "4.0.0",
  3876. "System.Reflection": "4.0.0",
  3877. "System.Reflection.Extensions": "4.0.0",
  3878. "System.Runtime": "4.0.0",
  3879. "System.Runtime.Extensions": "4.0.0",
  3880. "System.Text.Encoding": "4.0.0",
  3881. "System.Threading": "4.0.0",
  3882. "System.Threading.Tasks": "4.0.0",
  3883. "xunit.abstractions": "2.0.0",
  3884. "xunit.extensibility.core": "[2.1.0]"
  3885. },
  3886. "compile": {
  3887. "lib/dotnet/xunit.execution.dotnet.dll": {}
  3888. },
  3889. "runtime": {
  3890. "lib/dotnet/xunit.execution.dotnet.dll": {}
  3891. }
  3892. },
  3893. "xunit.runner.reporters/2.1.0": {
  3894. "type": "package",
  3895. "dependencies": {
  3896. "Newtonsoft.Json": "7.0.1",
  3897. "System.Collections": "4.0.0",
  3898. "System.Diagnostics.Debug": "4.0.0",
  3899. "System.Net.Http": "4.0.0",
  3900. "System.Net.Primitives": "4.0.0",
  3901. "System.Reflection": "4.0.0",
  3902. "System.Reflection.Extensions": "4.0.0",
  3903. "System.Runtime": "4.0.0",
  3904. "System.Runtime.Extensions": "4.0.0",
  3905. "System.Text.Encoding": "4.0.0",
  3906. "System.Threading": "4.0.0",
  3907. "System.Threading.Tasks": "4.0.0",
  3908. "xunit.abstractions": "2.0.0",
  3909. "xunit.runner.utility": "[2.1.0]"
  3910. },
  3911. "compile": {
  3912. "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
  3913. },
  3914. "runtime": {
  3915. "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
  3916. }
  3917. },
  3918. "xunit.runner.utility/2.1.0": {
  3919. "type": "package",
  3920. "dependencies": {
  3921. "System.Collections": "4.0.0",
  3922. "System.Diagnostics.Debug": "4.0.0",
  3923. "System.Globalization": "4.0.0",
  3924. "System.IO": "4.0.0",
  3925. "System.Linq": "4.0.0",
  3926. "System.Reflection": "4.0.0",
  3927. "System.Reflection.Extensions": "4.0.0",
  3928. "System.Runtime": "4.0.0",
  3929. "System.Runtime.Extensions": "4.0.0",
  3930. "System.Text.RegularExpressions": "4.0.0",
  3931. "System.Threading": "4.0.0",
  3932. "System.Threading.Tasks": "4.0.0",
  3933. "xunit.abstractions": "2.0.0"
  3934. },
  3935. "compile": {
  3936. "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
  3937. },
  3938. "runtime": {
  3939. "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
  3940. }
  3941. },
  3942. "Luticate2.Auth/1.0.0": {
  3943. "type": "project",
  3944. "framework": ".NETCoreApp,Version=v1.0",
  3945. "dependencies": {
  3946. "Luticate2.Utils": "1.0.0"
  3947. },
  3948. "compile": {
  3949. "netcoreapp1.0/Luticate2.Auth.dll": {}
  3950. },
  3951. "runtime": {
  3952. "netcoreapp1.0/Luticate2.Auth.dll": {}
  3953. }
  3954. },
  3955. "Luticate2.Utils/1.0.0": {
  3956. "type": "project",
  3957. "framework": ".NETCoreApp,Version=v1.0",
  3958. "dependencies": {
  3959. "Microsoft.ApplicationInsights.AspNetCore": "1.0.2",
  3960. "Microsoft.AspNetCore.SignalR.Server": "0.2.0-preview2-22683",
  3961. "Microsoft.AspNetCore.WebSockets": "0.2.0",
  3962. "Microsoft.EntityFrameworkCore.Tools": "1.1.0-preview4-final",
  3963. "Npgsql.EntityFrameworkCore.PostgreSQL": "1.1.0"
  3964. },
  3965. "compile": {
  3966. "netcoreapp1.0/Luticate2.Utils.dll": {}
  3967. },
  3968. "runtime": {
  3969. "netcoreapp1.0/Luticate2.Utils.dll": {}
  3970. }
  3971. }
  3972. }
  3973. },
  3974. "libraries": {
  3975. "Castle.Core/4.0.0-beta001": {
  3976. "sha512": "AhlzkJEGZddWgUj2Vub2h2p171eETkQzymd4ZSgcxQBZaxgsFSJjQ7I6fLs86nS39+xxsZR3eXaH86DWVrfurA==",
  3977. "type": "package",
  3978. "path": "castle.core/4.0.0-beta001",
  3979. "files": [
  3980. "ASL - Apache Software Foundation License.txt",
  3981. "BreakingChanges.txt",
  3982. "Changes.txt",
  3983. "License.txt",
  3984. "castle.core.4.0.0-beta001.nupkg.sha512",
  3985. "castle.core.nuspec",
  3986. "lib/net35/Castle.Core.dll",
  3987. "lib/net35/Castle.Core.xml",
  3988. "lib/net40-client/Castle.Core.dll",
  3989. "lib/net40-client/Castle.Core.xml",
  3990. "lib/net45/Castle.Core.dll",
  3991. "lib/net45/Castle.Core.xml",
  3992. "lib/netstandard1.3/Castle.Core.dll",
  3993. "lib/netstandard1.3/Castle.Core.xml",
  3994. "readme.txt"
  3995. ]
  3996. },
  3997. "dotnet-test-xunit/1.0.0-rc2-build10025": {
  3998. "sha512": "MhxfSjj6z/dpct/9zsssDAXKxWXhAx9s39080Qm+59k2vLJafUjUTzl4cs2rKHK7BYty2EyNxir68v7cJcaBEA==",
  3999. "type": "package",
  4000. "path": "dotnet-test-xunit/1.0.0-rc2-build10025",
  4001. "files": [
  4002. "dotnet-test-xunit.1.0.0-rc2-build10025.nupkg.sha512",
  4003. "dotnet-test-xunit.nuspec",
  4004. "lib/net451/dotnet-test-xunit.exe",
  4005. "lib/netcoreapp1.0/dotnet-test-xunit.dll",
  4006. "lib/netcoreapp1.0/dotnet-test-xunit.runtimeconfig.json",
  4007. "runtimes/unix-x64/lib/net451/dotnet-test-xunit.exe",
  4008. "runtimes/win7-x64/lib/net451/dotnet-test-xunit.exe",
  4009. "runtimes/win7-x86/lib/net451/dotnet-test-xunit.exe"
  4010. ]
  4011. },
  4012. "Libuv/1.9.0": {
  4013. "sha512": "yGthZwFHS5Fmup6VPeY8eGJwtaBXXwrvBbTnPzYBJhtb4IeCwAELCKRDdrEUoF0dl346A1fHMHRgqxB+nfKV4A==",
  4014. "type": "package",
  4015. "path": "Libuv/1.9.0",
  4016. "files": [
  4017. "Libuv.1.9.0.nupkg.sha512",
  4018. "Libuv.nuspec",
  4019. "License.txt",
  4020. "runtimes/debian-x64/native/libuv.so",
  4021. "runtimes/fedora-x64/native/libuv.so",
  4022. "runtimes/opensuse-x64/native/libuv.so",
  4023. "runtimes/osx/native/libuv.dylib",
  4024. "runtimes/rhel-x64/native/libuv.so",
  4025. "runtimes/win7-arm/native/libuv.dll",
  4026. "runtimes/win7-x64/native/libuv.dll",
  4027. "runtimes/win7-x86/native/libuv.dll"
  4028. ]
  4029. },
  4030. "Microsoft.ApplicationInsights/2.1.0": {
  4031. "sha512": "mviO8PLQd3r22Pmv8JfjYzTCQ9ByhkU9wdC4fwd6WmAARwAMgMw9HEbHeYS3r+8pB3w+fZMi7p4LKijzgNybRQ==",
  4032. "type": "package",
  4033. "path": "Microsoft.ApplicationInsights/2.1.0",
  4034. "files": [
  4035. "Microsoft.ApplicationInsights.2.1.0.nupkg.sha512",
  4036. "Microsoft.ApplicationInsights.nuspec",
  4037. "lib/dotnet5.4/Microsoft.ApplicationInsights.XML",
  4038. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll",
  4039. "lib/net40/Microsoft.ApplicationInsights.XML",
  4040. "lib/net40/Microsoft.ApplicationInsights.dll",
  4041. "lib/net45/Microsoft.ApplicationInsights.XML",
  4042. "lib/net45/Microsoft.ApplicationInsights.dll",
  4043. "lib/net46/Microsoft.ApplicationInsights.XML",
  4044. "lib/net46/Microsoft.ApplicationInsights.dll",
  4045. "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll",
  4046. "lib/uap10.0/Microsoft.ApplicationInsights.dll",
  4047. "lib/wp8/Microsoft.ApplicationInsights.dll"
  4048. ]
  4049. },
  4050. "Microsoft.ApplicationInsights.AspNetCore/1.0.2": {
  4051. "sha512": "2pe22FuypQRT5YNd4cIehYqDduxiQzt1o/585LgG6vJmOfuX7aF2h4uSI5epRrvu1EikuoZEzBchAR6U8cBybQ==",
  4052. "type": "package",
  4053. "path": "Microsoft.ApplicationInsights.AspNetCore/1.0.2",
  4054. "files": [
  4055. "Microsoft.ApplicationInsights.AspNetCore.1.0.2.nupkg.sha512",
  4056. "Microsoft.ApplicationInsights.AspNetCore.nuspec",
  4057. "lib/net451/Microsoft.ApplicationInsights.AspNetCore.dll",
  4058. "lib/net451/Microsoft.ApplicationInsights.AspNetCore.xml",
  4059. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll",
  4060. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.xml"
  4061. ]
  4062. },
  4063. "Microsoft.AspNetCore.Antiforgery/1.0.1": {
  4064. "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
  4065. "type": "package",
  4066. "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
  4067. "files": [
  4068. "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
  4069. "Microsoft.AspNetCore.Antiforgery.nuspec",
  4070. "lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
  4071. "lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
  4072. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll",
  4073. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
  4074. ]
  4075. },
  4076. "Microsoft.AspNetCore.Authorization/1.0.0": {
  4077. "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
  4078. "type": "package",
  4079. "path": "Microsoft.AspNetCore.Authorization/1.0.0",
  4080. "files": [
  4081. "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
  4082. "Microsoft.AspNetCore.Authorization.nuspec",
  4083. "lib/net451/Microsoft.AspNetCore.Authorization.dll",
  4084. "lib/net451/Microsoft.AspNetCore.Authorization.xml",
  4085. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll",
  4086. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
  4087. ]
  4088. },
  4089. "Microsoft.AspNetCore.Cryptography.Internal/1.1.0": {
  4090. "sha512": "Oy0pgxQkusvQwIrwbHvGVZhwk59qRVKxcer6HsWw0jCEq2LoQ7mj7x7DovE5ub8UvffLYWx77NMF5uwPtkl8KA==",
  4091. "type": "package",
  4092. "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0",
  4093. "files": [
  4094. "Microsoft.AspNetCore.Cryptography.Internal.1.1.0.nupkg.sha512",
  4095. "Microsoft.AspNetCore.Cryptography.Internal.nuspec",
  4096. "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4097. "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
  4098. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll",
  4099. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
  4100. ]
  4101. },
  4102. "Microsoft.AspNetCore.DataProtection/1.1.0": {
  4103. "sha512": "wu8pk94CExaLvwwDSnXkTtsdL8mRxbLH8uCKbbPqbtIstSM6bOw/454OvOYKf61BB+It//ItJJYdZTy2j8Kelw==",
  4104. "type": "package",
  4105. "path": "Microsoft.AspNetCore.DataProtection/1.1.0",
  4106. "files": [
  4107. "Microsoft.AspNetCore.DataProtection.1.1.0.nupkg.sha512",
  4108. "Microsoft.AspNetCore.DataProtection.nuspec",
  4109. "lib/net451/Microsoft.AspNetCore.DataProtection.dll",
  4110. "lib/net451/Microsoft.AspNetCore.DataProtection.xml",
  4111. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll",
  4112. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
  4113. ]
  4114. },
  4115. "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0": {
  4116. "sha512": "WW6qKPh9A5lNh/bFlXIMttlbLmm2K0O3kyZuFIlL4ShOMyhrJeCHoWPWQ+S5eUBdcuOnd9sPwhlmI5Nvb3NjMA==",
  4117. "type": "package",
  4118. "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0",
  4119. "files": [
  4120. "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0.nupkg.sha512",
  4121. "Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
  4122. "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4123. "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4124. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4125. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
  4126. ]
  4127. },
  4128. "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
  4129. "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
  4130. "type": "package",
  4131. "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
  4132. "files": [
  4133. "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
  4134. "Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
  4135. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
  4136. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
  4137. ]
  4138. },
  4139. "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
  4140. "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
  4141. "type": "package",
  4142. "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
  4143. "files": [
  4144. "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
  4145. "Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
  4146. "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4147. "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  4148. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4149. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
  4150. ]
  4151. },
  4152. "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
  4153. "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
  4154. "type": "package",
  4155. "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
  4156. "files": [
  4157. "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
  4158. "Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
  4159. "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4160. "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  4161. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4162. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
  4163. ]
  4164. },
  4165. "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
  4166. "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
  4167. "type": "package",
  4168. "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
  4169. "files": [
  4170. "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
  4171. "Microsoft.AspNetCore.Html.Abstractions.nuspec",
  4172. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  4173. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
  4174. ]
  4175. },
  4176. "Microsoft.AspNetCore.Http/1.0.0": {
  4177. "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
  4178. "type": "package",
  4179. "path": "Microsoft.AspNetCore.Http/1.0.0",
  4180. "files": [
  4181. "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
  4182. "Microsoft.AspNetCore.Http.nuspec",
  4183. "lib/net451/Microsoft.AspNetCore.Http.dll",
  4184. "lib/net451/Microsoft.AspNetCore.Http.xml",
  4185. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll",
  4186. "lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
  4187. ]
  4188. },
  4189. "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
  4190. "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
  4191. "type": "package",
  4192. "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
  4193. "files": [
  4194. "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
  4195. "Microsoft.AspNetCore.Http.Abstractions.nuspec",
  4196. "lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
  4197. "lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
  4198. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll",
  4199. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
  4200. ]
  4201. },
  4202. "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
  4203. "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
  4204. "type": "package",
  4205. "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
  4206. "files": [
  4207. "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
  4208. "Microsoft.AspNetCore.Http.Extensions.nuspec",
  4209. "lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
  4210. "lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
  4211. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll",
  4212. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
  4213. ]
  4214. },
  4215. "Microsoft.AspNetCore.Http.Features/1.1.0": {
  4216. "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
  4217. "type": "package",
  4218. "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
  4219. "files": [
  4220. "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
  4221. "Microsoft.AspNetCore.Http.Features.nuspec",
  4222. "lib/net451/Microsoft.AspNetCore.Http.Features.dll",
  4223. "lib/net451/Microsoft.AspNetCore.Http.Features.xml",
  4224. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll",
  4225. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
  4226. ]
  4227. },
  4228. "Microsoft.AspNetCore.JsonPatch/1.0.0": {
  4229. "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
  4230. "type": "package",
  4231. "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
  4232. "files": [
  4233. "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
  4234. "Microsoft.AspNetCore.JsonPatch.nuspec",
  4235. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
  4236. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
  4237. ]
  4238. },
  4239. "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
  4240. "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
  4241. "type": "package",
  4242. "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
  4243. "files": [
  4244. "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
  4245. "Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
  4246. "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  4247. "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
  4248. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  4249. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
  4250. ]
  4251. },
  4252. "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
  4253. "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
  4254. "type": "package",
  4255. "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
  4256. "files": [
  4257. "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
  4258. "Microsoft.AspNetCore.Mvc.Core.nuspec",
  4259. "lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
  4260. "lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
  4261. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll",
  4262. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
  4263. ]
  4264. },
  4265. "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
  4266. "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
  4267. "type": "package",
  4268. "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
  4269. "files": [
  4270. "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
  4271. "Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
  4272. "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  4273. "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
  4274. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  4275. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
  4276. ]
  4277. },
  4278. "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
  4279. "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
  4280. "type": "package",
  4281. "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
  4282. "files": [
  4283. "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
  4284. "Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
  4285. "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  4286. "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
  4287. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  4288. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
  4289. ]
  4290. },
  4291. "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
  4292. "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
  4293. "type": "package",
  4294. "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
  4295. "files": [
  4296. "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
  4297. "Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
  4298. "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  4299. "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
  4300. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  4301. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
  4302. ]
  4303. },
  4304. "Microsoft.AspNetCore.Routing/1.0.0": {
  4305. "sha512": "NvFvRtYHXWjBbXz5/7F7JDNcdhrE+tG1/Q9R6LmMxFgu8tkl1bqtFZQbMy17FYFkmm8Fn/T81blRGE2nxCbDRA==",
  4306. "type": "package",
  4307. "path": "Microsoft.AspNetCore.Routing/1.0.0",
  4308. "files": [
  4309. "Microsoft.AspNetCore.Routing.1.0.0.nupkg.sha512",
  4310. "Microsoft.AspNetCore.Routing.nuspec",
  4311. "lib/net451/Microsoft.AspNetCore.Routing.dll",
  4312. "lib/net451/Microsoft.AspNetCore.Routing.xml",
  4313. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll",
  4314. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
  4315. ]
  4316. },
  4317. "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
  4318. "sha512": "Ne5CFiD1xCGSHrGICw7PsVnj7gijfkMfsw52AO6ingcUhE01dc87cJPpfGLnY22MIvqn11ECLbNZYmzFp/Rs+A==",
  4319. "type": "package",
  4320. "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.0",
  4321. "files": [
  4322. "Microsoft.AspNetCore.Routing.Abstractions.1.0.0.nupkg.sha512",
  4323. "Microsoft.AspNetCore.Routing.Abstractions.nuspec",
  4324. "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4325. "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
  4326. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4327. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
  4328. ]
  4329. },
  4330. "Microsoft.AspNetCore.SignalR.Messaging/0.2.0-preview2-22683": {
  4331. "sha512": "eaeK3BxMBGIASlRK4tH1WBjk6zDhrnO+OOf5L6dAnmi1YmxKuEqQVLRX5cbTsnxhN2iZYiYGXtPruNN2ExQAQw==",
  4332. "type": "package",
  4333. "path": "Microsoft.AspNetCore.SignalR.Messaging/0.2.0-preview2-22683",
  4334. "files": [
  4335. "Microsoft.AspNetCore.SignalR.Messaging.0.2.0-preview2-22683.nupkg.sha512",
  4336. "Microsoft.AspNetCore.SignalR.Messaging.nuspec",
  4337. "lib/net451/Microsoft.AspNetCore.SignalR.Messaging.dll",
  4338. "lib/netstandard1.3/Microsoft.AspNetCore.SignalR.Messaging.dll"
  4339. ]
  4340. },
  4341. "Microsoft.AspNetCore.SignalR.Server/0.2.0-preview2-22683": {
  4342. "sha512": "82zBRqVj2V+sqQ9TInuYUTOOveOCTIs3yX4Z9WMqcUjTHqgBiE4hsn6j3jzrhuBR16QYbmGmuRo7izLDpJEn+g==",
  4343. "type": "package",
  4344. "path": "Microsoft.AspNetCore.SignalR.Server/0.2.0-preview2-22683",
  4345. "files": [
  4346. "Microsoft.AspNetCore.SignalR.Server.0.2.0-preview2-22683.nupkg.sha512",
  4347. "Microsoft.AspNetCore.SignalR.Server.nuspec",
  4348. "lib/net451/Microsoft.AspNetCore.SignalR.Server.dll",
  4349. "lib/netstandard1.6/Microsoft.AspNetCore.SignalR.Server.dll"
  4350. ]
  4351. },
  4352. "Microsoft.AspNetCore.WebSockets/0.2.0-preview1-final": {
  4353. "sha512": "uUW1c0myGwEGouwtTxq9Yb8QPRCnK/WpfyG8WFgnvvy+OkRGMJoNyeSsimLKqgoec7O53a8a4W37zNQeVDOf8w==",
  4354. "type": "package",
  4355. "path": "Microsoft.AspNetCore.WebSockets/0.2.0-preview1-final",
  4356. "files": [
  4357. "Microsoft.AspNetCore.WebSockets.0.2.0-preview1-final.nupkg.sha512",
  4358. "Microsoft.AspNetCore.WebSockets.nuspec",
  4359. "lib/net451/Microsoft.AspNetCore.WebSockets.dll",
  4360. "lib/net451/Microsoft.AspNetCore.WebSockets.xml",
  4361. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll",
  4362. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.xml"
  4363. ]
  4364. },
  4365. "Microsoft.AspNetCore.WebUtilities/1.0.0": {
  4366. "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
  4367. "type": "package",
  4368. "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
  4369. "files": [
  4370. "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
  4371. "Microsoft.AspNetCore.WebUtilities.nuspec",
  4372. "lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
  4373. "lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
  4374. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll",
  4375. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.xml"
  4376. ]
  4377. },
  4378. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  4379. "sha512": "65YL5Wa8x4Ip6nUVLwVmoFWmfUfO7T5TwwqYZ5eFuu3ekpKZwub1gCKlfEDCJlzYT8h+IWdr2wvGQqWk6Kc70w==",
  4380. "type": "package",
  4381. "path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
  4382. "files": [
  4383. "Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg.sha512",
  4384. "Microsoft.CodeAnalysis.Analyzers.nuspec",
  4385. "ThirdPartyNotices.rtf",
  4386. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4387. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4388. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4389. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4390. "tools/install.ps1",
  4391. "tools/uninstall.ps1"
  4392. ]
  4393. },
  4394. "Microsoft.CodeAnalysis.Common/1.3.0": {
  4395. "sha512": "8alKL52PjN/eelP22WMnbPblT7EadukkeTKMCKozStKUOHYbjAenjQIFRa9y8WveR2ypej2NetvUnW81vDRzQg==",
  4396. "type": "package",
  4397. "path": "Microsoft.CodeAnalysis.Common/1.3.0",
  4398. "files": [
  4399. "Microsoft.CodeAnalysis.Common.1.3.0.nupkg.sha512",
  4400. "Microsoft.CodeAnalysis.Common.nuspec",
  4401. "ThirdPartyNotices.rtf",
  4402. "lib/net45/Microsoft.CodeAnalysis.dll",
  4403. "lib/net45/Microsoft.CodeAnalysis.xml",
  4404. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll",
  4405. "lib/netstandard1.3/Microsoft.CodeAnalysis.xml",
  4406. "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll",
  4407. "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml"
  4408. ]
  4409. },
  4410. "Microsoft.CodeAnalysis.CSharp/1.3.0": {
  4411. "sha512": "1Qf+GO6rDrndaJ1KKnAf8UgSIWgM+f3tiO3HGqTo1iAmFsVYOw95E0kQLaD7rRKJ9jG8aoiWdfKFPpvgdmnk3A==",
  4412. "type": "package",
  4413. "path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
  4414. "files": [
  4415. "Microsoft.CodeAnalysis.CSharp.1.3.0.nupkg.sha512",
  4416. "Microsoft.CodeAnalysis.CSharp.nuspec",
  4417. "ThirdPartyNotices.rtf",
  4418. "lib/net45/Microsoft.CodeAnalysis.CSharp.dll",
  4419. "lib/net45/Microsoft.CodeAnalysis.CSharp.xml",
  4420. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll",
  4421. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml",
  4422. "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll",
  4423. "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml"
  4424. ]
  4425. },
  4426. "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
  4427. "sha512": "EcgpeGq0OKq+AT4l2wYOxHweSbSajzpqU0RqQrsY6rv8bL1x+gP6cI26/PbtCdQljfhnTvFQSr98tqLQL8XmNQ==",
  4428. "type": "package",
  4429. "path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
  4430. "files": [
  4431. "Microsoft.CodeAnalysis.VisualBasic.1.3.0.nupkg.sha512",
  4432. "Microsoft.CodeAnalysis.VisualBasic.nuspec",
  4433. "ThirdPartyNotices.rtf",
  4434. "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll",
  4435. "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml",
  4436. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll",
  4437. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.xml",
  4438. "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll",
  4439. "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
  4440. ]
  4441. },
  4442. "Microsoft.CSharp/4.3.0": {
  4443. "sha512": "jJcEOG+9VTkBqsWo4yERaaEea3aw9zL2H02Y6k6gKLqiJXbj9BYEyzKGdxrsD1OGCIcaAbPEGhaxTbp124Vb9g==",
  4444. "type": "package",
  4445. "path": "Microsoft.CSharp/4.3.0",
  4446. "files": [
  4447. "Microsoft.CSharp.4.3.0.nupkg.sha512",
  4448. "Microsoft.CSharp.nuspec",
  4449. "ThirdPartyNotices.txt",
  4450. "dotnet_library_license.txt",
  4451. "lib/MonoAndroid10/_._",
  4452. "lib/MonoTouch10/_._",
  4453. "lib/net45/_._",
  4454. "lib/netcore50/Microsoft.CSharp.dll",
  4455. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4456. "lib/portable-net45+win8+wp8+wpa81/_._",
  4457. "lib/win8/_._",
  4458. "lib/wp80/_._",
  4459. "lib/wpa81/_._",
  4460. "lib/xamarinios10/_._",
  4461. "lib/xamarinmac20/_._",
  4462. "lib/xamarintvos10/_._",
  4463. "lib/xamarinwatchos10/_._",
  4464. "ref/MonoAndroid10/_._",
  4465. "ref/MonoTouch10/_._",
  4466. "ref/net45/_._",
  4467. "ref/netcore50/Microsoft.CSharp.dll",
  4468. "ref/netcore50/Microsoft.CSharp.xml",
  4469. "ref/netcore50/de/Microsoft.CSharp.xml",
  4470. "ref/netcore50/es/Microsoft.CSharp.xml",
  4471. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4472. "ref/netcore50/it/Microsoft.CSharp.xml",
  4473. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4474. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4475. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4476. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4477. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4478. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4479. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4480. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4481. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4482. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4483. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4484. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4485. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4486. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4487. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4488. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4489. "ref/portable-net45+win8+wp8+wpa81/_._",
  4490. "ref/win8/_._",
  4491. "ref/wp80/_._",
  4492. "ref/wpa81/_._",
  4493. "ref/xamarinios10/_._",
  4494. "ref/xamarinmac20/_._",
  4495. "ref/xamarintvos10/_._",
  4496. "ref/xamarinwatchos10/_._"
  4497. ]
  4498. },
  4499. "Microsoft.DiaSymReader/1.0.6": {
  4500. "sha512": "ai2eBJrXlHa0hecUKnEyacH0iXxGNOMpc9X0s7VAeqqh5TSTW70QMhTRZ0FNCtf3R/W67K4a+uf3R7MASmAjrg==",
  4501. "type": "package",
  4502. "path": "Microsoft.DiaSymReader/1.0.6",
  4503. "files": [
  4504. "Microsoft.DiaSymReader.1.0.6.nupkg.sha512",
  4505. "Microsoft.DiaSymReader.nuspec",
  4506. "lib/net20/Microsoft.DiaSymReader.dll",
  4507. "lib/net20/Microsoft.DiaSymReader.xml",
  4508. "lib/portable-net45+win8/Microsoft.DiaSymReader.dll",
  4509. "lib/portable-net45+win8/Microsoft.DiaSymReader.xml"
  4510. ]
  4511. },
  4512. "Microsoft.DiaSymReader.Native/1.3.3": {
  4513. "sha512": "mjATkm+L2UlP35gO/ExNutLDfgX4iiwz1l/8sYVoeGHp5WnkEDu0NfIEsC4Oy/pCYeRw0/6SGB+kArJVNNvENQ==",
  4514. "type": "package",
  4515. "path": "Microsoft.DiaSymReader.Native/1.3.3",
  4516. "files": [
  4517. "Microsoft.DiaSymReader.Native.1.3.3.nupkg.sha512",
  4518. "Microsoft.DiaSymReader.Native.nuspec",
  4519. "build/Microsoft.DiaSymReader.Native.props",
  4520. "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll",
  4521. "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll",
  4522. "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll",
  4523. "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll",
  4524. "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll",
  4525. "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
  4526. ]
  4527. },
  4528. "Microsoft.DotNet.PlatformAbstractions/1.1.0": {
  4529. "sha512": "stlfv92tY1itlriy67K7WUYujNbkw9CBDQar9fid3VcGzRXpr3Bsv57ssxuTKFL+xRsF6i3gqRIDmWZBmhRZ/g==",
  4530. "type": "package",
  4531. "path": "Microsoft.DotNet.PlatformAbstractions/1.1.0",
  4532. "files": [
  4533. "Microsoft.DotNet.PlatformAbstractions.1.1.0.nupkg.sha512",
  4534. "Microsoft.DotNet.PlatformAbstractions.nuspec",
  4535. "lib/net451/Microsoft.DotNet.PlatformAbstractions.dll",
  4536. "lib/netstandard1.3/Microsoft.DotNet.PlatformAbstractions.dll"
  4537. ]
  4538. },
  4539. "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702": {
  4540. "sha512": "ryslqqMpPRcJma9kJn3V1/GydzUny6i6xfpQ0cqfWmlPdSQ9Hnh6x2l8yVqU+ueCiVffKWn/Or80moLwroXP/A==",
  4541. "type": "package",
  4542. "path": "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702",
  4543. "files": [
  4544. "Microsoft.DotNet.ProjectModel.1.0.0-rc2-002702.nupkg.sha512",
  4545. "Microsoft.DotNet.ProjectModel.nuspec",
  4546. "lib/net451/Microsoft.DotNet.ProjectModel.dll",
  4547. "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll"
  4548. ]
  4549. },
  4550. "Microsoft.EntityFrameworkCore/1.1.0": {
  4551. "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==",
  4552. "type": "package",
  4553. "path": "Microsoft.EntityFrameworkCore/1.1.0",
  4554. "files": [
  4555. "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512",
  4556. "Microsoft.EntityFrameworkCore.nuspec",
  4557. "lib/net451/Microsoft.EntityFrameworkCore.dll",
  4558. "lib/net451/Microsoft.EntityFrameworkCore.xml",
  4559. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll",
  4560. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml"
  4561. ]
  4562. },
  4563. "Microsoft.EntityFrameworkCore.Design/1.1.0": {
  4564. "sha512": "7hWqxlNYUocjRqljw6yi3bQpEjMyzNSBX+LqsUuo9cFqTu3uv2YVRyRobBmfvnXVNfRxB6EysMmTmhxApPhiNw==",
  4565. "type": "package",
  4566. "path": "Microsoft.EntityFrameworkCore.Design/1.1.0",
  4567. "files": [
  4568. "Microsoft.EntityFrameworkCore.Design.1.1.0.nupkg.sha512",
  4569. "Microsoft.EntityFrameworkCore.Design.nuspec",
  4570. "lib/net451/Microsoft.EntityFrameworkCore.Design.dll",
  4571. "lib/net451/Microsoft.EntityFrameworkCore.Design.xml",
  4572. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll",
  4573. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.xml"
  4574. ]
  4575. },
  4576. "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
  4577. "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==",
  4578. "type": "package",
  4579. "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0",
  4580. "files": [
  4581. "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512",
  4582. "Microsoft.EntityFrameworkCore.Relational.nuspec",
  4583. "lib/net451/Microsoft.EntityFrameworkCore.Relational.dll",
  4584. "lib/net451/Microsoft.EntityFrameworkCore.Relational.xml",
  4585. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll",
  4586. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml"
  4587. ]
  4588. },
  4589. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
  4590. "sha512": "fF0sVEUkoGeJutGIzwnYsJJ9o2hxEGJRpSaCxPq63rhSwn0hBmCwf9ET4QqYqO9Pc6+ODXenAQa095CWzuM4Kg==",
  4591. "type": "package",
  4592. "path": "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0",
  4593. "files": [
  4594. "Microsoft.EntityFrameworkCore.Relational.Design.1.1.0.nupkg.sha512",
  4595. "Microsoft.EntityFrameworkCore.Relational.Design.nuspec",
  4596. "lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.dll",
  4597. "lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.xml",
  4598. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll",
  4599. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.xml"
  4600. ]
  4601. },
  4602. "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
  4603. "sha512": "n7g5JB4YxLYCl32XCmjXEHDF/9J/DSeNYGjxGAzG1xUi/IXOCWd6T3XyEnDXsub7iFDvpB2VgUlh6wHDqmTZgA==",
  4604. "type": "package",
  4605. "path": "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final",
  4606. "files": [
  4607. "Microsoft.EntityFrameworkCore.Tools.1.1.0-preview4-final.nupkg.sha512",
  4608. "Microsoft.EntityFrameworkCore.Tools.nuspec",
  4609. "lib/net451/_._",
  4610. "lib/netstandard1.3/_._",
  4611. "tools/EntityFrameworkCore.PowerShell2.psd1",
  4612. "tools/EntityFrameworkCore.PowerShell2.psm1",
  4613. "tools/EntityFrameworkCore.psd1",
  4614. "tools/EntityFrameworkCore.psm1",
  4615. "tools/Microsoft.EntityFrameworkCore.Tools.dll",
  4616. "tools/about_EntityFrameworkCore.help.txt",
  4617. "tools/init.ps1",
  4618. "tools/install.ps1",
  4619. "tools/net451/ef.exe",
  4620. "tools/net451/ef.x86.exe",
  4621. "tools/netcoreapp1.0/ef.dll",
  4622. "tools/netcoreapp1.0/ef.runtimeconfig.json"
  4623. ]
  4624. },
  4625. "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
  4626. "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
  4627. "type": "package",
  4628. "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
  4629. "files": [
  4630. "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
  4631. "Microsoft.Extensions.Caching.Abstractions.nuspec",
  4632. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4633. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
  4634. ]
  4635. },
  4636. "Microsoft.Extensions.Caching.Memory/1.1.0": {
  4637. "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
  4638. "type": "package",
  4639. "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
  4640. "files": [
  4641. "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
  4642. "Microsoft.Extensions.Caching.Memory.nuspec",
  4643. "lib/net451/Microsoft.Extensions.Caching.Memory.dll",
  4644. "lib/net451/Microsoft.Extensions.Caching.Memory.xml",
  4645. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll",
  4646. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
  4647. ]
  4648. },
  4649. "Microsoft.Extensions.Configuration/1.0.0": {
  4650. "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==",
  4651. "type": "package",
  4652. "path": "Microsoft.Extensions.Configuration/1.0.0",
  4653. "files": [
  4654. "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512",
  4655. "Microsoft.Extensions.Configuration.nuspec",
  4656. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
  4657. "lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
  4658. ]
  4659. },
  4660. "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
  4661. "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
  4662. "type": "package",
  4663. "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
  4664. "files": [
  4665. "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
  4666. "Microsoft.Extensions.Configuration.Abstractions.nuspec",
  4667. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4668. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
  4669. ]
  4670. },
  4671. "Microsoft.Extensions.DependencyInjection/1.1.0": {
  4672. "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
  4673. "type": "package",
  4674. "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
  4675. "files": [
  4676. "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
  4677. "Microsoft.Extensions.DependencyInjection.nuspec",
  4678. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
  4679. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
  4680. ]
  4681. },
  4682. "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
  4683. "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
  4684. "type": "package",
  4685. "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
  4686. "files": [
  4687. "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
  4688. "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
  4689. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4690. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
  4691. ]
  4692. },
  4693. "Microsoft.Extensions.DependencyModel/1.1.0": {
  4694. "sha512": "GKyeEnHk/NMnGzU0U9lWx8ulxs6BzoTRbTHIq0ZgJ+TvVvd5xs3AXDRi5cpeEW1Wd9xsG2lXoSKSzYW6eUwSoA==",
  4695. "type": "package",
  4696. "path": "Microsoft.Extensions.DependencyModel/1.1.0",
  4697. "files": [
  4698. "Microsoft.Extensions.DependencyModel.1.1.0.nupkg.sha512",
  4699. "Microsoft.Extensions.DependencyModel.nuspec",
  4700. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  4701. "lib/netstandard1.3/Microsoft.Extensions.DependencyModel.dll",
  4702. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
  4703. ]
  4704. },
  4705. "Microsoft.Extensions.DiagnosticAdapter/1.0.0": {
  4706. "sha512": "GGI4Pp9DpRBFlAXDcZRz5e+R+TqLFBWzToTDXqxPjQiRq6DwPvDYuKD10rlJD4QxxeX8fcjakTlKO1RfC+DmFg==",
  4707. "type": "package",
  4708. "path": "Microsoft.Extensions.DiagnosticAdapter/1.0.0",
  4709. "files": [
  4710. "Microsoft.Extensions.DiagnosticAdapter.1.0.0.nupkg.sha512",
  4711. "Microsoft.Extensions.DiagnosticAdapter.nuspec",
  4712. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll",
  4713. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.xml"
  4714. ]
  4715. },
  4716. "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
  4717. "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
  4718. "type": "package",
  4719. "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
  4720. "files": [
  4721. "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
  4722. "Microsoft.Extensions.FileProviders.Abstractions.nuspec",
  4723. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4724. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
  4725. ]
  4726. },
  4727. "Microsoft.Extensions.Localization/1.0.0": {
  4728. "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
  4729. "type": "package",
  4730. "path": "Microsoft.Extensions.Localization/1.0.0",
  4731. "files": [
  4732. "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
  4733. "Microsoft.Extensions.Localization.nuspec",
  4734. "lib/net451/Microsoft.Extensions.Localization.dll",
  4735. "lib/net451/Microsoft.Extensions.Localization.xml",
  4736. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll",
  4737. "lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
  4738. ]
  4739. },
  4740. "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
  4741. "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
  4742. "type": "package",
  4743. "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
  4744. "files": [
  4745. "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
  4746. "Microsoft.Extensions.Localization.Abstractions.nuspec",
  4747. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
  4748. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
  4749. ]
  4750. },
  4751. "Microsoft.Extensions.Logging/1.1.0": {
  4752. "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
  4753. "type": "package",
  4754. "path": "Microsoft.Extensions.Logging/1.1.0",
  4755. "files": [
  4756. "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
  4757. "Microsoft.Extensions.Logging.nuspec",
  4758. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
  4759. "lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
  4760. ]
  4761. },
  4762. "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
  4763. "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
  4764. "type": "package",
  4765. "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
  4766. "files": [
  4767. "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
  4768. "Microsoft.Extensions.Logging.Abstractions.nuspec",
  4769. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
  4770. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
  4771. ]
  4772. },
  4773. "Microsoft.Extensions.ObjectPool/1.0.0": {
  4774. "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
  4775. "type": "package",
  4776. "path": "Microsoft.Extensions.ObjectPool/1.0.0",
  4777. "files": [
  4778. "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
  4779. "Microsoft.Extensions.ObjectPool.nuspec",
  4780. "lib/net451/Microsoft.Extensions.ObjectPool.dll",
  4781. "lib/net451/Microsoft.Extensions.ObjectPool.xml",
  4782. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll",
  4783. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
  4784. ]
  4785. },
  4786. "Microsoft.Extensions.Options/1.1.0": {
  4787. "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
  4788. "type": "package",
  4789. "path": "Microsoft.Extensions.Options/1.1.0",
  4790. "files": [
  4791. "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
  4792. "Microsoft.Extensions.Options.nuspec",
  4793. "lib/netstandard1.0/Microsoft.Extensions.Options.dll",
  4794. "lib/netstandard1.0/Microsoft.Extensions.Options.xml"
  4795. ]
  4796. },
  4797. "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
  4798. "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
  4799. "type": "package",
  4800. "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
  4801. "files": [
  4802. "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
  4803. "Microsoft.Extensions.PlatformAbstractions.nuspec",
  4804. "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
  4805. "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
  4806. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll",
  4807. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
  4808. ]
  4809. },
  4810. "Microsoft.Extensions.Primitives/1.1.0": {
  4811. "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
  4812. "type": "package",
  4813. "path": "Microsoft.Extensions.Primitives/1.1.0",
  4814. "files": [
  4815. "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
  4816. "Microsoft.Extensions.Primitives.nuspec",
  4817. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
  4818. "lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
  4819. ]
  4820. },
  4821. "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview1-002702": {
  4822. "sha512": "NE4Efz4kvkztJ80CSifUlP0UaBP4iOOaeTVk6nrj+ZIJzhsRGLbecIe4oX8G82pkCkqFF9i8KTl7YYUwpQY5Wg==",
  4823. "type": "package",
  4824. "path": "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview1-002702",
  4825. "files": [
  4826. "Microsoft.Extensions.Testing.Abstractions.1.0.0-preview1-002702.nupkg.sha512",
  4827. "Microsoft.Extensions.Testing.Abstractions.nuspec",
  4828. "lib/net451/Microsoft.Extensions.Testing.Abstractions.dll",
  4829. "lib/netstandard1.5/Microsoft.Extensions.Testing.Abstractions.dll"
  4830. ]
  4831. },
  4832. "Microsoft.Extensions.WebEncoders/1.0.0": {
  4833. "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
  4834. "type": "package",
  4835. "path": "Microsoft.Extensions.WebEncoders/1.0.0",
  4836. "files": [
  4837. "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
  4838. "Microsoft.Extensions.WebEncoders.nuspec",
  4839. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
  4840. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
  4841. ]
  4842. },
  4843. "Microsoft.Net.Http.Headers/1.1.0": {
  4844. "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
  4845. "type": "package",
  4846. "path": "Microsoft.Net.Http.Headers/1.1.0",
  4847. "files": [
  4848. "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
  4849. "Microsoft.Net.Http.Headers.nuspec",
  4850. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
  4851. "lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
  4852. ]
  4853. },
  4854. "Microsoft.NETCore.App/1.0.1": {
  4855. "sha512": "1ZiTaAAc3Msi4siXtdVmallNCrFA5ZUzoGkIh4litHjBJBZcRgWvwRXT60woB5FpWPC9qDiTFc6L1Gr8EbOPog==",
  4856. "type": "package",
  4857. "path": "Microsoft.NETCore.App/1.0.1",
  4858. "files": [
  4859. "Microsoft.NETCore.App.1.0.1.nupkg.sha512",
  4860. "Microsoft.NETCore.App.nuspec",
  4861. "ThirdPartyNotices.txt",
  4862. "dotnet_library_license.txt",
  4863. "lib/netcoreapp1.0/_._"
  4864. ]
  4865. },
  4866. "Microsoft.NETCore.DotNetHost/1.0.1": {
  4867. "sha512": "sMqlTLwQ7PPeFs6w4eLPN07z+xtecj4k+mFoCLPsppsid91fmjRJBTRwOAx2k1cFCZb4TXswDhjmN05eqJ+0Lg==",
  4868. "type": "package",
  4869. "path": "Microsoft.NETCore.DotNetHost/1.0.1",
  4870. "files": [
  4871. "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512",
  4872. "Microsoft.NETCore.DotNetHost.nuspec",
  4873. "ThirdPartyNotices.txt",
  4874. "dotnet_library_license.txt",
  4875. "runtime.json"
  4876. ]
  4877. },
  4878. "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
  4879. "sha512": "GRziAkBjDCXhlsVra4tHyK+Q5sK+pwUrpuOMEgk1G501zCaU2b7JMneLZyvU6vJ463n07/jboqjT897CDzyioQ==",
  4880. "type": "package",
  4881. "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
  4882. "files": [
  4883. "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512",
  4884. "Microsoft.NETCore.DotNetHostPolicy.nuspec",
  4885. "ThirdPartyNotices.txt",
  4886. "dotnet_library_license.txt",
  4887. "runtime.json"
  4888. ]
  4889. },
  4890. "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
  4891. "sha512": "irdpBgW2A7C/kJf38hWUWp2ouF2mDQqGKbiqtF7UhDysTPW5j7oOhvikgPjojvnGXL9TpCjqEGE3ZYkYdKZLeA==",
  4892. "type": "package",
  4893. "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
  4894. "files": [
  4895. "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512",
  4896. "Microsoft.NETCore.DotNetHostResolver.nuspec",
  4897. "ThirdPartyNotices.txt",
  4898. "dotnet_library_license.txt",
  4899. "runtime.json"
  4900. ]
  4901. },
  4902. "Microsoft.NETCore.Jit/1.0.4": {
  4903. "sha512": "s336ryZlopR+pQ4VfKlILX1LxiQzpCPnmiGot0p5aFPeCjwmKtHC88MI8jXdvdGPySON9i1bPUKJP8jiiPIAjA==",
  4904. "type": "package",
  4905. "path": "Microsoft.NETCore.Jit/1.0.4",
  4906. "files": [
  4907. "Microsoft.NETCore.Jit.1.0.4.nupkg.sha512",
  4908. "Microsoft.NETCore.Jit.nuspec",
  4909. "ThirdPartyNotices.txt",
  4910. "dotnet_library_license.txt",
  4911. "runtime.json"
  4912. ]
  4913. },
  4914. "Microsoft.NETCore.Platforms/1.1.0": {
  4915. "sha512": "RTmkgwugaI7tV0PjAwBX4ZKHbv/lMuIKUBeyIB0aosbGALFKIxiGvseJDF5ui5RBGbEJ5AvxZsGI0Rr6ZEfwaw==",
  4916. "type": "package",
  4917. "path": "Microsoft.NETCore.Platforms/1.1.0",
  4918. "files": [
  4919. "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
  4920. "Microsoft.NETCore.Platforms.nuspec",
  4921. "ThirdPartyNotices.txt",
  4922. "dotnet_library_license.txt",
  4923. "lib/netstandard1.0/_._",
  4924. "runtime.json"
  4925. ]
  4926. },
  4927. "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
  4928. "sha512": "NTd+F7MQJi5wFh6Hq3uVH0L3om+pVcfF+bpw0hSd+Ka92QSZ4IfDJw/IWqTQ9jUtLyWYR4XR+52HD5HW+a+zoQ==",
  4929. "type": "package",
  4930. "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
  4931. "files": [
  4932. "Microsoft.NETCore.Runtime.CoreCLR.1.0.4.nupkg.sha512",
  4933. "Microsoft.NETCore.Runtime.CoreCLR.nuspec",
  4934. "ThirdPartyNotices.txt",
  4935. "dotnet_library_license.txt",
  4936. "runtime.json"
  4937. ]
  4938. },
  4939. "Microsoft.NETCore.Targets/1.1.0": {
  4940. "sha512": "TjtMctxB3IKIyNMBQYoxx7jFQmJM9iaTLMp/6g4nMLC33nc6PgL8kXmnvQouPBVR+WvHVDY1By0D2Elpf2KB4w==",
  4941. "type": "package",
  4942. "path": "Microsoft.NETCore.Targets/1.1.0",
  4943. "files": [
  4944. "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
  4945. "Microsoft.NETCore.Targets.nuspec",
  4946. "ThirdPartyNotices.txt",
  4947. "dotnet_library_license.txt",
  4948. "lib/netstandard1.0/_._",
  4949. "runtime.json"
  4950. ]
  4951. },
  4952. "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
  4953. "sha512": "2BQeO8o+R9rDiMzsBqFrtr3S8fC8wrC1v20gcYAkVrzk/4ydLbzHfpk6SP3QbXIM2G9pPf1idJ/G1mgwSVgkuA==",
  4954. "type": "package",
  4955. "path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
  4956. "files": [
  4957. "Microsoft.NETCore.Windows.ApiSets.1.0.1.nupkg.sha512",
  4958. "Microsoft.NETCore.Windows.ApiSets.nuspec",
  4959. "ThirdPartyNotices.txt",
  4960. "dotnet_library_license.txt",
  4961. "runtime.json"
  4962. ]
  4963. },
  4964. "Microsoft.VisualBasic/10.0.1": {
  4965. "sha512": "nEk7ZPzxzfOvFbIjdBB7cgg/4toz2TLu4qLKcbL7NiLWvxXQMsU4PbWnRBByiCFFSKVcALEvq2d2yfmxQCYstQ==",
  4966. "type": "package",
  4967. "path": "Microsoft.VisualBasic/10.0.1",
  4968. "files": [
  4969. "Microsoft.VisualBasic.10.0.1.nupkg.sha512",
  4970. "Microsoft.VisualBasic.nuspec",
  4971. "ThirdPartyNotices.txt",
  4972. "dotnet_library_license.txt",
  4973. "lib/net45/_._",
  4974. "lib/netcore50/Microsoft.VisualBasic.dll",
  4975. "lib/netstandard1.3/Microsoft.VisualBasic.dll",
  4976. "lib/portable-net45+win8+wpa81/_._",
  4977. "lib/win8/_._",
  4978. "lib/wpa81/_._",
  4979. "ref/net45/_._",
  4980. "ref/netcore50/Microsoft.VisualBasic.dll",
  4981. "ref/netcore50/Microsoft.VisualBasic.xml",
  4982. "ref/netcore50/de/Microsoft.VisualBasic.xml",
  4983. "ref/netcore50/es/Microsoft.VisualBasic.xml",
  4984. "ref/netcore50/fr/Microsoft.VisualBasic.xml",
  4985. "ref/netcore50/it/Microsoft.VisualBasic.xml",
  4986. "ref/netcore50/ja/Microsoft.VisualBasic.xml",
  4987. "ref/netcore50/ko/Microsoft.VisualBasic.xml",
  4988. "ref/netcore50/ru/Microsoft.VisualBasic.xml",
  4989. "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml",
  4990. "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml",
  4991. "ref/netstandard1.1/Microsoft.VisualBasic.dll",
  4992. "ref/netstandard1.1/Microsoft.VisualBasic.xml",
  4993. "ref/netstandard1.1/de/Microsoft.VisualBasic.xml",
  4994. "ref/netstandard1.1/es/Microsoft.VisualBasic.xml",
  4995. "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml",
  4996. "ref/netstandard1.1/it/Microsoft.VisualBasic.xml",
  4997. "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml",
  4998. "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml",
  4999. "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml",
  5000. "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml",
  5001. "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
  5002. "ref/portable-net45+win8+wpa81/_._",
  5003. "ref/win8/_._",
  5004. "ref/wpa81/_._"
  5005. ]
  5006. },
  5007. "Microsoft.Win32.Primitives/4.3.0": {
  5008. "sha512": "vl5HOGiTB5AcQfZ9OPmgiLTwBlM5MhYtbv+nh+plxq2epP8lNZwHcaB9IGcVi3cOVV9MQbt+MQ/q4pAcmBOgjA==",
  5009. "type": "package",
  5010. "path": "Microsoft.Win32.Primitives/4.3.0",
  5011. "files": [
  5012. "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
  5013. "Microsoft.Win32.Primitives.nuspec",
  5014. "ThirdPartyNotices.txt",
  5015. "dotnet_library_license.txt",
  5016. "lib/MonoAndroid10/_._",
  5017. "lib/MonoTouch10/_._",
  5018. "lib/net46/Microsoft.Win32.Primitives.dll",
  5019. "lib/xamarinios10/_._",
  5020. "lib/xamarinmac20/_._",
  5021. "lib/xamarintvos10/_._",
  5022. "lib/xamarinwatchos10/_._",
  5023. "ref/MonoAndroid10/_._",
  5024. "ref/MonoTouch10/_._",
  5025. "ref/net46/Microsoft.Win32.Primitives.dll",
  5026. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  5027. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  5028. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  5029. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  5030. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  5031. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  5032. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  5033. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  5034. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  5035. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  5036. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  5037. "ref/xamarinios10/_._",
  5038. "ref/xamarinmac20/_._",
  5039. "ref/xamarintvos10/_._",
  5040. "ref/xamarinwatchos10/_._"
  5041. ]
  5042. },
  5043. "Microsoft.Win32.Registry/4.3.0": {
  5044. "sha512": "YGkqKGEvkF0m1gWSKdcVSyXthX9L5QNuMxuMuSd9GTxDqR18mmdspaXUTpKS5NZBhnxdFF59pJbZ4VyP3OdPOw==",
  5045. "type": "package",
  5046. "path": "Microsoft.Win32.Registry/4.3.0",
  5047. "files": [
  5048. "Microsoft.Win32.Registry.4.3.0.nupkg.sha512",
  5049. "Microsoft.Win32.Registry.nuspec",
  5050. "ThirdPartyNotices.txt",
  5051. "dotnet_library_license.txt",
  5052. "lib/net46/Microsoft.Win32.Registry.dll",
  5053. "ref/net46/Microsoft.Win32.Registry.dll",
  5054. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  5055. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  5056. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  5057. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  5058. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  5059. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  5060. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  5061. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  5062. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  5063. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  5064. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  5065. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  5066. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  5067. "runtimes/win/lib/netcore50/_._",
  5068. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
  5069. ]
  5070. },
  5071. "Moq/4.6.38-alpha": {
  5072. "sha512": "avMAfImICo7K8kkSqZDnwS7qvwyyNzNDQQFtnsI4CxAgi+ESOLFr1j5ucAE2hGoG1k5A0B1+3zfNYhHkozW1EA==",
  5073. "type": "package",
  5074. "path": "moq/4.6.38-alpha",
  5075. "files": [
  5076. "lib/net45/Moq.dll",
  5077. "lib/net45/Moq.xml",
  5078. "lib/netstandard1.3/Moq.dll",
  5079. "lib/netstandard1.3/Moq.xml",
  5080. "moq.4.6.38-alpha.nupkg.sha512",
  5081. "moq.nuspec"
  5082. ]
  5083. },
  5084. "NETStandard.Library/1.6.1": {
  5085. "sha512": "xKGn5Y57yyimfRm6sKI2Yg/ZJ7oGcvR9+lpfZZI6StFCJqhS8JdRkT+qTZOTl37Trh7rLN5X5qFgbOfAlbPQrQ==",
  5086. "type": "package",
  5087. "path": "NETStandard.Library/1.6.1",
  5088. "files": [
  5089. "NETStandard.Library.1.6.1.nupkg.sha512",
  5090. "NETStandard.Library.nuspec",
  5091. "ThirdPartyNotices.txt",
  5092. "dotnet_library_license.txt"
  5093. ]
  5094. },
  5095. "Newtonsoft.Json/9.0.1": {
  5096. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  5097. "type": "package",
  5098. "path": "Newtonsoft.Json/9.0.1",
  5099. "files": [
  5100. "Newtonsoft.Json.9.0.1.nupkg.sha512",
  5101. "Newtonsoft.Json.nuspec",
  5102. "lib/net20/Newtonsoft.Json.dll",
  5103. "lib/net20/Newtonsoft.Json.xml",
  5104. "lib/net35/Newtonsoft.Json.dll",
  5105. "lib/net35/Newtonsoft.Json.xml",
  5106. "lib/net40/Newtonsoft.Json.dll",
  5107. "lib/net40/Newtonsoft.Json.xml",
  5108. "lib/net45/Newtonsoft.Json.dll",
  5109. "lib/net45/Newtonsoft.Json.xml",
  5110. "lib/netstandard1.0/Newtonsoft.Json.dll",
  5111. "lib/netstandard1.0/Newtonsoft.Json.xml",
  5112. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  5113. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  5114. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  5115. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  5116. "tools/install.ps1"
  5117. ]
  5118. },
  5119. "Npgsql/3.1.9": {
  5120. "sha512": "maoOs4rudcIG1SlPHsLRTgwUQA8+06k037z2f9KSKe8KrVHu3tBUUePgt3U3saGFrACf80/j9CzsleCisnPo5A==",
  5121. "type": "package",
  5122. "path": "Npgsql/3.1.9",
  5123. "files": [
  5124. "Npgsql.3.1.9.nupkg.sha512",
  5125. "Npgsql.nuspec",
  5126. "lib/net45/Npgsql.dll",
  5127. "lib/net45/Npgsql.xml",
  5128. "lib/net451/Npgsql.dll",
  5129. "lib/net451/Npgsql.xml",
  5130. "lib/netstandard1.3/Npgsql.dll",
  5131. "lib/netstandard1.3/Npgsql.xml"
  5132. ]
  5133. },
  5134. "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0": {
  5135. "sha512": "7J4oVuALr8voMhbCkQUODu6VG9DR4u3Io4oIwZK1VocNlXN8RHPFhS1nOQOb/TAe+Eav/GqnmEiSZ0uhe2wphQ==",
  5136. "type": "package",
  5137. "path": "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0",
  5138. "files": [
  5139. "Npgsql.EntityFrameworkCore.PostgreSQL.1.1.0.nupkg.sha512",
  5140. "Npgsql.EntityFrameworkCore.PostgreSQL.nuspec",
  5141. "lib/net451/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
  5142. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll"
  5143. ]
  5144. },
  5145. "NuGet.Common/3.5.0-beta-final": {
  5146. "sha512": "7eCg4ky9NtTnxY1+2VtDKIYX137QejH8Dsuw6fENU53N6OeoROsrv1MUm0pu4e3TF8VH1eL5G3Vx/G30VdXEDg==",
  5147. "type": "package",
  5148. "path": "NuGet.Common/3.5.0-beta-final",
  5149. "files": [
  5150. "NuGet.Common.3.5.0-beta-final.nupkg.sha512",
  5151. "NuGet.Common.nuspec",
  5152. "lib/net45/NuGet.Common.dll",
  5153. "lib/net45/NuGet.Common.xml",
  5154. "lib/netstandard1.3/NuGet.Common.dll",
  5155. "lib/netstandard1.3/NuGet.Common.xml"
  5156. ]
  5157. },
  5158. "NuGet.Frameworks/3.5.0-beta-final": {
  5159. "sha512": "Si7O1OFxUryBq3xuq2AIwADM8WUMIBQOmUdTJBSaxV+KesShLJfgrr7Dl+Tg/nVETSEArJS8ktscv7gjKqtosg==",
  5160. "type": "package",
  5161. "path": "NuGet.Frameworks/3.5.0-beta-final",
  5162. "files": [
  5163. "NuGet.Frameworks.3.5.0-beta-final.nupkg.sha512",
  5164. "NuGet.Frameworks.nuspec",
  5165. "lib/net45/NuGet.Frameworks.dll",
  5166. "lib/net45/NuGet.Frameworks.xml",
  5167. "lib/netstandard1.3/NuGet.Frameworks.dll",
  5168. "lib/netstandard1.3/NuGet.Frameworks.xml"
  5169. ]
  5170. },
  5171. "NuGet.Packaging/3.5.0-beta-final": {
  5172. "sha512": "wJSrtokTPmpIkNhJLiG5GPxdRFCVl6XB3MmgLCyRhD2O2wZVQqvvL6SELOz/61EU0C8m9ni/UiiNRqTEtH5QZw==",
  5173. "type": "package",
  5174. "path": "NuGet.Packaging/3.5.0-beta-final",
  5175. "files": [
  5176. "NuGet.Packaging.3.5.0-beta-final.nupkg.sha512",
  5177. "NuGet.Packaging.nuspec",
  5178. "lib/net45/NuGet.Packaging.dll",
  5179. "lib/net45/NuGet.Packaging.xml",
  5180. "lib/netstandard1.3/NuGet.Packaging.dll",
  5181. "lib/netstandard1.3/NuGet.Packaging.xml"
  5182. ]
  5183. },
  5184. "NuGet.Packaging.Core/3.5.0-beta-final": {
  5185. "sha512": "sdc8dUnbjEpNzIK5h5frJgn7ARQjQLdXMC5YrMHoEh0sCJnd2p1Lu4JvHK7mqn/MurVCAvoAjNDyazzFaVCD0w==",
  5186. "type": "package",
  5187. "path": "NuGet.Packaging.Core/3.5.0-beta-final",
  5188. "files": [
  5189. "NuGet.Packaging.Core.3.5.0-beta-final.nupkg.sha512",
  5190. "NuGet.Packaging.Core.nuspec",
  5191. "lib/net45/NuGet.Packaging.Core.dll",
  5192. "lib/net45/NuGet.Packaging.Core.xml",
  5193. "lib/netstandard1.3/NuGet.Packaging.Core.dll",
  5194. "lib/netstandard1.3/NuGet.Packaging.Core.xml"
  5195. ]
  5196. },
  5197. "NuGet.Packaging.Core.Types/3.5.0-beta-final": {
  5198. "sha512": "35AVdtLFJFp66CI9EDS61iviOe4UsCwfGh7RILK3j2ihZtlbTIIS5ygjmS8GnTkhNpmdwQRIk/rUempv4ABBxQ==",
  5199. "type": "package",
  5200. "path": "NuGet.Packaging.Core.Types/3.5.0-beta-final",
  5201. "files": [
  5202. "NuGet.Packaging.Core.Types.3.5.0-beta-final.nupkg.sha512",
  5203. "NuGet.Packaging.Core.Types.nuspec",
  5204. "lib/net45/NuGet.Packaging.Core.Types.dll",
  5205. "lib/net45/NuGet.Packaging.Core.Types.xml",
  5206. "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll",
  5207. "lib/netstandard1.3/NuGet.Packaging.Core.Types.xml"
  5208. ]
  5209. },
  5210. "NuGet.RuntimeModel/3.5.0-beta-final": {
  5211. "sha512": "5opNw7zHG5wC0Qx9AzlopdPg48Tf/QVcVVKmPRuwUa3VBA1b9DBjY+1jCkaof8JRzyHZqLnxd6T9BuT98Jk0YQ==",
  5212. "type": "package",
  5213. "path": "NuGet.RuntimeModel/3.5.0-beta-final",
  5214. "files": [
  5215. "NuGet.RuntimeModel.3.5.0-beta-final.nupkg.sha512",
  5216. "NuGet.RuntimeModel.nuspec",
  5217. "lib/net45/NuGet.RuntimeModel.dll",
  5218. "lib/net45/NuGet.RuntimeModel.xml",
  5219. "lib/netstandard1.3/NuGet.RuntimeModel.dll",
  5220. "lib/netstandard1.3/NuGet.RuntimeModel.xml"
  5221. ]
  5222. },
  5223. "NuGet.Versioning/3.5.0-beta-final": {
  5224. "sha512": "fwFF9Mck1hgZVDvvJLU81gcaidMksfRoCwyjBALEXxnp1fJr4xLyGbTRdbf2OKI5OODGuUpxaMkcz7P4T8HsXw==",
  5225. "type": "package",
  5226. "path": "NuGet.Versioning/3.5.0-beta-final",
  5227. "files": [
  5228. "NuGet.Versioning.3.5.0-beta-final.nupkg.sha512",
  5229. "NuGet.Versioning.nuspec",
  5230. "lib/net45/NuGet.Versioning.dll",
  5231. "lib/net45/NuGet.Versioning.xml",
  5232. "lib/netstandard1.0/NuGet.Versioning.dll",
  5233. "lib/netstandard1.0/NuGet.Versioning.xml"
  5234. ]
  5235. },
  5236. "Remotion.Linq/2.1.1": {
  5237. "sha512": "IJn0BqkvwEDpP+2qjvci7n4/a9f7DhKESLWb2/uG4xQh3rTkGTBUz69bI4IivCoKkTFAqjXxYDZw2K/npohjsw==",
  5238. "type": "package",
  5239. "path": "Remotion.Linq/2.1.1",
  5240. "files": [
  5241. "Remotion.Linq.2.1.1.nupkg.sha512",
  5242. "Remotion.Linq.nuspec",
  5243. "lib/net35/Remotion.Linq.XML",
  5244. "lib/net35/Remotion.Linq.dll",
  5245. "lib/net40/Remotion.Linq.XML",
  5246. "lib/net40/Remotion.Linq.dll",
  5247. "lib/net45/Remotion.Linq.XML",
  5248. "lib/net45/Remotion.Linq.dll",
  5249. "lib/netstandard1.0/Remotion.Linq.dll",
  5250. "lib/netstandard1.0/Remotion.Linq.xml",
  5251. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll",
  5252. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml"
  5253. ]
  5254. },
  5255. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5256. "sha512": "ZJbyxj5gWzOfnJTXGn9LH8ZK9t/PGFUVlsgv/dZUFy/ruE+eScVrAkaBTwf58FJ3F84cBMBOIm4QscRTtfxgqg==",
  5257. "type": "package",
  5258. "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5259. "files": [
  5260. "ThirdPartyNotices.txt",
  5261. "dotnet_library_license.txt",
  5262. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5263. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5264. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5265. ]
  5266. },
  5267. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5268. "sha512": "NCGzArSeAPBQJrBY2TUzb/19o3E3TgDFYyl+r+8zWuExcqJDBz5aGkEW8SwwqdscRc37IdtwTr2D2duW47CmHg==",
  5269. "type": "package",
  5270. "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5271. "files": [
  5272. "ThirdPartyNotices.txt",
  5273. "dotnet_library_license.txt",
  5274. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5275. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5276. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5277. ]
  5278. },
  5279. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5280. "sha512": "LdIvj7Bi2jiaNTqY/ezZGVXHe1KI5fjLSI026O1TjVzsmdgTP/zTF+f3nwHCjwttyhsPBEiswv0PekimPWZwWg==",
  5281. "type": "package",
  5282. "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5283. "files": [
  5284. "ThirdPartyNotices.txt",
  5285. "dotnet_library_license.txt",
  5286. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5287. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5288. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5289. ]
  5290. },
  5291. "runtime.native.System/4.3.0": {
  5292. "sha512": "nTWOfeX69uwxSiJSyNyzsEglUyfMJQykNusa31AsilJ3vWjhW8RqCIdjR+qxfx/40LGlLUKECl+j6A+/sI1ejw==",
  5293. "type": "package",
  5294. "path": "runtime.native.System/4.3.0",
  5295. "files": [
  5296. "ThirdPartyNotices.txt",
  5297. "dotnet_library_license.txt",
  5298. "lib/netstandard1.0/_._",
  5299. "runtime.native.System.4.3.0.nupkg.sha512",
  5300. "runtime.native.System.nuspec"
  5301. ]
  5302. },
  5303. "runtime.native.System.IO.Compression/4.3.0": {
  5304. "sha512": "b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==",
  5305. "type": "package",
  5306. "path": "runtime.native.System.IO.Compression/4.3.0",
  5307. "files": [
  5308. "ThirdPartyNotices.txt",
  5309. "dotnet_library_license.txt",
  5310. "lib/netstandard1.0/_._",
  5311. "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
  5312. "runtime.native.System.IO.Compression.nuspec"
  5313. ]
  5314. },
  5315. "runtime.native.System.Net.Http/4.3.0": {
  5316. "sha512": "guqHgQOK2eUgtJae2VKjNawBn1xjC0hfOt5wASHa60XHbIdCsQlqtvMsFG+3hy7yp88V+gi9fZCjubuDkeakcQ==",
  5317. "type": "package",
  5318. "path": "runtime.native.System.Net.Http/4.3.0",
  5319. "files": [
  5320. "ThirdPartyNotices.txt",
  5321. "dotnet_library_license.txt",
  5322. "lib/netstandard1.0/_._",
  5323. "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
  5324. "runtime.native.System.Net.Http.nuspec"
  5325. ]
  5326. },
  5327. "runtime.native.System.Net.Security/4.0.1": {
  5328. "sha512": "U3JOSWmwFNUpbxw+Iq+NDXruyFQhl1qej0VcDmVFwU4n2Y7IHN6nd2dQQsRpJiqtYAHjiHhfQH9US60BjUvxHg==",
  5329. "type": "package",
  5330. "path": "runtime.native.System.Net.Security/4.0.1",
  5331. "files": [
  5332. "ThirdPartyNotices.txt",
  5333. "dotnet_library_license.txt",
  5334. "lib/netstandard1.0/_._",
  5335. "runtime.native.System.Net.Security.4.0.1.nupkg.sha512",
  5336. "runtime.native.System.Net.Security.nuspec"
  5337. ]
  5338. },
  5339. "runtime.native.System.Security.Cryptography/4.0.0": {
  5340. "sha512": "vM+JcNCiIj/XxXu4IWqxrOROrDxZGStukyg31j177KruTYbvsEu8biJoo8YEZUrHG+WcBtvIlcRLohVOQlwfWg==",
  5341. "type": "package",
  5342. "path": "runtime.native.System.Security.Cryptography/4.0.0",
  5343. "files": [
  5344. "ThirdPartyNotices.txt",
  5345. "dotnet_library_license.txt",
  5346. "lib/netstandard1.0/_._",
  5347. "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
  5348. "runtime.native.System.Security.Cryptography.nuspec"
  5349. ]
  5350. },
  5351. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5352. "sha512": "jwjwlEL0Elv6gwoyaokRn12nv/JE+UW/DXJEbzhjCPvGbef36StnHKc9XaZD/rGWqYicrphZ7eumR/jdmNcjRg==",
  5353. "type": "package",
  5354. "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
  5355. "files": [
  5356. "ThirdPartyNotices.txt",
  5357. "dotnet_library_license.txt",
  5358. "lib/netstandard1.0/_._",
  5359. "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
  5360. "runtime.native.System.Security.Cryptography.Apple.nuspec"
  5361. ]
  5362. },
  5363. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5364. "sha512": "wWqB5kJ+vYC+IH7orP8EezottaOczECwYBFcecbkgG3IG6s8WghUdmM6pbUqSLhPibItxCWNg73rvG5cbL9tmw==",
  5365. "type": "package",
  5366. "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5367. "files": [
  5368. "ThirdPartyNotices.txt",
  5369. "dotnet_library_license.txt",
  5370. "lib/netstandard1.0/_._",
  5371. "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5372. "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
  5373. ]
  5374. },
  5375. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5376. "sha512": "zWLOQ77Y4FV/6Vw2g+FYzprbQX5/xKvjoCLe4L9159Aw1bSboQoJ1KRZFNdexDooWRAIsLSdE0ZokkrVkwN8Yw==",
  5377. "type": "package",
  5378. "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5379. "files": [
  5380. "ThirdPartyNotices.txt",
  5381. "dotnet_library_license.txt",
  5382. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5383. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5384. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5385. ]
  5386. },
  5387. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5388. "sha512": "G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==",
  5389. "type": "package",
  5390. "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5391. "files": [
  5392. "ThirdPartyNotices.txt",
  5393. "dotnet_library_license.txt",
  5394. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5395. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5396. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5397. ]
  5398. },
  5399. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5400. "sha512": "Kh9W4agE0r/hK8AX1LvyQI2NrKHBL8pO0gRoDTdDb0LL6Ta1Z2OtFx3lOaAE0ZpCUc/dt9Wzs3rA7a3IsKdOVA==",
  5401. "type": "package",
  5402. "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
  5403. "files": [
  5404. "ThirdPartyNotices.txt",
  5405. "dotnet_library_license.txt",
  5406. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
  5407. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
  5408. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5409. ]
  5410. },
  5411. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5412. "sha512": "/p8IQT2brFMDa7BHMH71LV+w5Tb3OxoLHxhn6+MGqN5xeqhM2HRHmj+7xQGJnaRn73d7ZTvp6yRCFMvolws4wA==",
  5413. "type": "package",
  5414. "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5415. "files": [
  5416. "ThirdPartyNotices.txt",
  5417. "dotnet_library_license.txt",
  5418. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5419. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5420. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5421. ]
  5422. },
  5423. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5424. "sha512": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==",
  5425. "type": "package",
  5426. "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5427. "files": [
  5428. "ThirdPartyNotices.txt",
  5429. "dotnet_library_license.txt",
  5430. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5431. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5432. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5433. ]
  5434. },
  5435. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5436. "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==",
  5437. "type": "package",
  5438. "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5439. "files": [
  5440. "ThirdPartyNotices.txt",
  5441. "dotnet_library_license.txt",
  5442. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5443. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5444. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5445. ]
  5446. },
  5447. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5448. "sha512": "YWzJvhiC+iLWI/IfpPQUIBhYnAHUFQFRDqR7VDNmPj0b3rjW7dArFqKysZ9v0iSBs9Ih4v9GasLpYCSUwADMQQ==",
  5449. "type": "package",
  5450. "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5451. "files": [
  5452. "ThirdPartyNotices.txt",
  5453. "dotnet_library_license.txt",
  5454. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5455. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5456. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5457. ]
  5458. },
  5459. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5460. "sha512": "1uVTITQP8/cI6YoO6FqfW1pzP0k2TnDZ3TFD88Bu/9H7ZuTsMY9xmadbGpwPu8w8swcd1ifZJsjD9hF9O6C/tg==",
  5461. "type": "package",
  5462. "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5463. "files": [
  5464. "ThirdPartyNotices.txt",
  5465. "dotnet_library_license.txt",
  5466. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5467. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5468. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5469. ]
  5470. },
  5471. "System.AppContext/4.3.0": {
  5472. "sha512": "196NfWFfUbYriRPqeGwOnLnvmXBRPOEeo5oaLQ1TcMExbCBC3Ub8cGkjSfc/XbXjYyXXpeePcYOIJAzaEgwpcg==",
  5473. "type": "package",
  5474. "path": "System.AppContext/4.3.0",
  5475. "files": [
  5476. "System.AppContext.4.3.0.nupkg.sha512",
  5477. "System.AppContext.nuspec",
  5478. "ThirdPartyNotices.txt",
  5479. "dotnet_library_license.txt",
  5480. "lib/MonoAndroid10/_._",
  5481. "lib/MonoTouch10/_._",
  5482. "lib/net46/System.AppContext.dll",
  5483. "lib/net463/System.AppContext.dll",
  5484. "lib/netcore50/System.AppContext.dll",
  5485. "lib/netstandard1.6/System.AppContext.dll",
  5486. "lib/xamarinios10/_._",
  5487. "lib/xamarinmac20/_._",
  5488. "lib/xamarintvos10/_._",
  5489. "lib/xamarinwatchos10/_._",
  5490. "ref/MonoAndroid10/_._",
  5491. "ref/MonoTouch10/_._",
  5492. "ref/net46/System.AppContext.dll",
  5493. "ref/net463/System.AppContext.dll",
  5494. "ref/netstandard/_._",
  5495. "ref/netstandard1.3/System.AppContext.dll",
  5496. "ref/netstandard1.3/System.AppContext.xml",
  5497. "ref/netstandard1.3/de/System.AppContext.xml",
  5498. "ref/netstandard1.3/es/System.AppContext.xml",
  5499. "ref/netstandard1.3/fr/System.AppContext.xml",
  5500. "ref/netstandard1.3/it/System.AppContext.xml",
  5501. "ref/netstandard1.3/ja/System.AppContext.xml",
  5502. "ref/netstandard1.3/ko/System.AppContext.xml",
  5503. "ref/netstandard1.3/ru/System.AppContext.xml",
  5504. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5505. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5506. "ref/netstandard1.6/System.AppContext.dll",
  5507. "ref/netstandard1.6/System.AppContext.xml",
  5508. "ref/netstandard1.6/de/System.AppContext.xml",
  5509. "ref/netstandard1.6/es/System.AppContext.xml",
  5510. "ref/netstandard1.6/fr/System.AppContext.xml",
  5511. "ref/netstandard1.6/it/System.AppContext.xml",
  5512. "ref/netstandard1.6/ja/System.AppContext.xml",
  5513. "ref/netstandard1.6/ko/System.AppContext.xml",
  5514. "ref/netstandard1.6/ru/System.AppContext.xml",
  5515. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5516. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5517. "ref/xamarinios10/_._",
  5518. "ref/xamarinmac20/_._",
  5519. "ref/xamarintvos10/_._",
  5520. "ref/xamarinwatchos10/_._",
  5521. "runtimes/aot/lib/netcore50/System.AppContext.dll"
  5522. ]
  5523. },
  5524. "System.Buffers/4.3.0": {
  5525. "sha512": "QlPt4bQMECP/uhcNRRS+pQIyV2wJKTNae0xOYabWEn0o5QeR8NGLcp6++ncRafvecygL22uEp9kHP5LQelw5yA==",
  5526. "type": "package",
  5527. "path": "System.Buffers/4.3.0",
  5528. "files": [
  5529. "System.Buffers.4.3.0.nupkg.sha512",
  5530. "System.Buffers.nuspec",
  5531. "ThirdPartyNotices.txt",
  5532. "dotnet_library_license.txt",
  5533. "lib/netstandard1.1/.xml",
  5534. "lib/netstandard1.1/System.Buffers.dll"
  5535. ]
  5536. },
  5537. "System.Collections/4.3.0": {
  5538. "sha512": "dCeWf/8Kw4IXDArDjLqCxuJedAlqWspWOpO0YZ+1pQj0GMmF89Y15PqUWwaTsEKaksidNA8yC8uUVDmfiueTkA==",
  5539. "type": "package",
  5540. "path": "System.Collections/4.3.0",
  5541. "files": [
  5542. "System.Collections.4.3.0.nupkg.sha512",
  5543. "System.Collections.nuspec",
  5544. "ThirdPartyNotices.txt",
  5545. "dotnet_library_license.txt",
  5546. "lib/MonoAndroid10/_._",
  5547. "lib/MonoTouch10/_._",
  5548. "lib/net45/_._",
  5549. "lib/portable-net45+win8+wp8+wpa81/_._",
  5550. "lib/win8/_._",
  5551. "lib/wp80/_._",
  5552. "lib/wpa81/_._",
  5553. "lib/xamarinios10/_._",
  5554. "lib/xamarinmac20/_._",
  5555. "lib/xamarintvos10/_._",
  5556. "lib/xamarinwatchos10/_._",
  5557. "ref/MonoAndroid10/_._",
  5558. "ref/MonoTouch10/_._",
  5559. "ref/net45/_._",
  5560. "ref/netcore50/System.Collections.dll",
  5561. "ref/netcore50/System.Collections.xml",
  5562. "ref/netcore50/de/System.Collections.xml",
  5563. "ref/netcore50/es/System.Collections.xml",
  5564. "ref/netcore50/fr/System.Collections.xml",
  5565. "ref/netcore50/it/System.Collections.xml",
  5566. "ref/netcore50/ja/System.Collections.xml",
  5567. "ref/netcore50/ko/System.Collections.xml",
  5568. "ref/netcore50/ru/System.Collections.xml",
  5569. "ref/netcore50/zh-hans/System.Collections.xml",
  5570. "ref/netcore50/zh-hant/System.Collections.xml",
  5571. "ref/netstandard1.0/System.Collections.dll",
  5572. "ref/netstandard1.0/System.Collections.xml",
  5573. "ref/netstandard1.0/de/System.Collections.xml",
  5574. "ref/netstandard1.0/es/System.Collections.xml",
  5575. "ref/netstandard1.0/fr/System.Collections.xml",
  5576. "ref/netstandard1.0/it/System.Collections.xml",
  5577. "ref/netstandard1.0/ja/System.Collections.xml",
  5578. "ref/netstandard1.0/ko/System.Collections.xml",
  5579. "ref/netstandard1.0/ru/System.Collections.xml",
  5580. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5581. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5582. "ref/netstandard1.3/System.Collections.dll",
  5583. "ref/netstandard1.3/System.Collections.xml",
  5584. "ref/netstandard1.3/de/System.Collections.xml",
  5585. "ref/netstandard1.3/es/System.Collections.xml",
  5586. "ref/netstandard1.3/fr/System.Collections.xml",
  5587. "ref/netstandard1.3/it/System.Collections.xml",
  5588. "ref/netstandard1.3/ja/System.Collections.xml",
  5589. "ref/netstandard1.3/ko/System.Collections.xml",
  5590. "ref/netstandard1.3/ru/System.Collections.xml",
  5591. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5592. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5593. "ref/portable-net45+win8+wp8+wpa81/_._",
  5594. "ref/win8/_._",
  5595. "ref/wp80/_._",
  5596. "ref/wpa81/_._",
  5597. "ref/xamarinios10/_._",
  5598. "ref/xamarinmac20/_._",
  5599. "ref/xamarintvos10/_._",
  5600. "ref/xamarinwatchos10/_._"
  5601. ]
  5602. },
  5603. "System.Collections.Concurrent/4.3.0": {
  5604. "sha512": "W1w8D/B4Nt0S8rwPZJGIAxVvUTGxE69AEW79okWOoYuA04gqJQeHoi+QK7Agpk5FnTFxxVQ30k7HAs9yhRIzFA==",
  5605. "type": "package",
  5606. "path": "System.Collections.Concurrent/4.3.0",
  5607. "files": [
  5608. "System.Collections.Concurrent.4.3.0.nupkg.sha512",
  5609. "System.Collections.Concurrent.nuspec",
  5610. "ThirdPartyNotices.txt",
  5611. "dotnet_library_license.txt",
  5612. "lib/MonoAndroid10/_._",
  5613. "lib/MonoTouch10/_._",
  5614. "lib/net45/_._",
  5615. "lib/netcore50/System.Collections.Concurrent.dll",
  5616. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5617. "lib/portable-net45+win8+wpa81/_._",
  5618. "lib/win8/_._",
  5619. "lib/wpa81/_._",
  5620. "lib/xamarinios10/_._",
  5621. "lib/xamarinmac20/_._",
  5622. "lib/xamarintvos10/_._",
  5623. "lib/xamarinwatchos10/_._",
  5624. "ref/MonoAndroid10/_._",
  5625. "ref/MonoTouch10/_._",
  5626. "ref/net45/_._",
  5627. "ref/netcore50/System.Collections.Concurrent.dll",
  5628. "ref/netcore50/System.Collections.Concurrent.xml",
  5629. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5630. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5631. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5632. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5633. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5634. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5635. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5636. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5637. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5638. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5639. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5640. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5641. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5642. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5643. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5644. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5645. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5646. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5647. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5648. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5649. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5650. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5651. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5652. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5653. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5654. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5655. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5656. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5657. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5658. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5659. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5660. "ref/portable-net45+win8+wpa81/_._",
  5661. "ref/win8/_._",
  5662. "ref/wpa81/_._",
  5663. "ref/xamarinios10/_._",
  5664. "ref/xamarinmac20/_._",
  5665. "ref/xamarintvos10/_._",
  5666. "ref/xamarinwatchos10/_._"
  5667. ]
  5668. },
  5669. "System.Collections.Immutable/1.3.0": {
  5670. "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
  5671. "type": "package",
  5672. "path": "System.Collections.Immutable/1.3.0",
  5673. "files": [
  5674. "System.Collections.Immutable.1.3.0.nupkg.sha512",
  5675. "System.Collections.Immutable.nuspec",
  5676. "ThirdPartyNotices.txt",
  5677. "dotnet_library_license.txt",
  5678. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5679. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5680. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5681. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
  5682. ]
  5683. },
  5684. "System.Collections.NonGeneric/4.3.0": {
  5685. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5686. "type": "package",
  5687. "path": "System.Collections.NonGeneric/4.3.0",
  5688. "files": [
  5689. "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
  5690. "System.Collections.NonGeneric.nuspec",
  5691. "ThirdPartyNotices.txt",
  5692. "dotnet_library_license.txt",
  5693. "lib/MonoAndroid10/_._",
  5694. "lib/MonoTouch10/_._",
  5695. "lib/net46/System.Collections.NonGeneric.dll",
  5696. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5697. "lib/xamarinios10/_._",
  5698. "lib/xamarinmac20/_._",
  5699. "lib/xamarintvos10/_._",
  5700. "lib/xamarinwatchos10/_._",
  5701. "ref/MonoAndroid10/_._",
  5702. "ref/MonoTouch10/_._",
  5703. "ref/net46/System.Collections.NonGeneric.dll",
  5704. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5705. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5706. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5707. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5708. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5709. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5710. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5711. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5712. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5713. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5714. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5715. "ref/xamarinios10/_._",
  5716. "ref/xamarinmac20/_._",
  5717. "ref/xamarintvos10/_._",
  5718. "ref/xamarinwatchos10/_._"
  5719. ]
  5720. },
  5721. "System.Collections.Specialized/4.0.1": {
  5722. "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
  5723. "type": "package",
  5724. "path": "System.Collections.Specialized/4.0.1",
  5725. "files": [
  5726. "System.Collections.Specialized.4.0.1.nupkg.sha512",
  5727. "System.Collections.Specialized.nuspec",
  5728. "ThirdPartyNotices.txt",
  5729. "dotnet_library_license.txt",
  5730. "lib/MonoAndroid10/_._",
  5731. "lib/MonoTouch10/_._",
  5732. "lib/net46/System.Collections.Specialized.dll",
  5733. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5734. "lib/xamarinios10/_._",
  5735. "lib/xamarinmac20/_._",
  5736. "lib/xamarintvos10/_._",
  5737. "lib/xamarinwatchos10/_._",
  5738. "ref/MonoAndroid10/_._",
  5739. "ref/MonoTouch10/_._",
  5740. "ref/net46/System.Collections.Specialized.dll",
  5741. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5742. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5743. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5744. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5745. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5746. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5747. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5748. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5749. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5750. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5751. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5752. "ref/xamarinios10/_._",
  5753. "ref/xamarinmac20/_._",
  5754. "ref/xamarintvos10/_._",
  5755. "ref/xamarinwatchos10/_._"
  5756. ]
  5757. },
  5758. "System.ComponentModel/4.3.0": {
  5759. "sha512": "Zglf50lZbM1GhgQdi/M315CW83GBZ+InRWeZwsNtO3djtszSPp0Xzf78P3vtD7GkE440I+04JKfgNdi9mlnimQ==",
  5760. "type": "package",
  5761. "path": "System.ComponentModel/4.3.0",
  5762. "files": [
  5763. "System.ComponentModel.4.3.0.nupkg.sha512",
  5764. "System.ComponentModel.nuspec",
  5765. "ThirdPartyNotices.txt",
  5766. "dotnet_library_license.txt",
  5767. "lib/MonoAndroid10/_._",
  5768. "lib/MonoTouch10/_._",
  5769. "lib/net45/_._",
  5770. "lib/netcore50/System.ComponentModel.dll",
  5771. "lib/netstandard1.3/System.ComponentModel.dll",
  5772. "lib/portable-net45+win8+wp8+wpa81/_._",
  5773. "lib/win8/_._",
  5774. "lib/wp80/_._",
  5775. "lib/wpa81/_._",
  5776. "lib/xamarinios10/_._",
  5777. "lib/xamarinmac20/_._",
  5778. "lib/xamarintvos10/_._",
  5779. "lib/xamarinwatchos10/_._",
  5780. "ref/MonoAndroid10/_._",
  5781. "ref/MonoTouch10/_._",
  5782. "ref/net45/_._",
  5783. "ref/netcore50/System.ComponentModel.dll",
  5784. "ref/netcore50/System.ComponentModel.xml",
  5785. "ref/netcore50/de/System.ComponentModel.xml",
  5786. "ref/netcore50/es/System.ComponentModel.xml",
  5787. "ref/netcore50/fr/System.ComponentModel.xml",
  5788. "ref/netcore50/it/System.ComponentModel.xml",
  5789. "ref/netcore50/ja/System.ComponentModel.xml",
  5790. "ref/netcore50/ko/System.ComponentModel.xml",
  5791. "ref/netcore50/ru/System.ComponentModel.xml",
  5792. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5793. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5794. "ref/netstandard1.0/System.ComponentModel.dll",
  5795. "ref/netstandard1.0/System.ComponentModel.xml",
  5796. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5797. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5798. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5799. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5800. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5801. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5802. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5803. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5804. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5805. "ref/portable-net45+win8+wp8+wpa81/_._",
  5806. "ref/win8/_._",
  5807. "ref/wp80/_._",
  5808. "ref/wpa81/_._",
  5809. "ref/xamarinios10/_._",
  5810. "ref/xamarinmac20/_._",
  5811. "ref/xamarintvos10/_._",
  5812. "ref/xamarinwatchos10/_._"
  5813. ]
  5814. },
  5815. "System.ComponentModel.Annotations/4.3.0": {
  5816. "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
  5817. "type": "package",
  5818. "path": "System.ComponentModel.Annotations/4.3.0",
  5819. "files": [
  5820. "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
  5821. "System.ComponentModel.Annotations.nuspec",
  5822. "ThirdPartyNotices.txt",
  5823. "dotnet_library_license.txt",
  5824. "lib/MonoAndroid10/_._",
  5825. "lib/MonoTouch10/_._",
  5826. "lib/net45/_._",
  5827. "lib/net461/System.ComponentModel.Annotations.dll",
  5828. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5829. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5830. "lib/portable-net45+win8/_._",
  5831. "lib/win8/_._",
  5832. "lib/xamarinios10/_._",
  5833. "lib/xamarinmac20/_._",
  5834. "lib/xamarintvos10/_._",
  5835. "lib/xamarinwatchos10/_._",
  5836. "ref/MonoAndroid10/_._",
  5837. "ref/MonoTouch10/_._",
  5838. "ref/net45/_._",
  5839. "ref/net461/System.ComponentModel.Annotations.dll",
  5840. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5841. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5842. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5843. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5844. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5845. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5846. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5847. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5848. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5849. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5850. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5851. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5852. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5853. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5854. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5855. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5856. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5857. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5858. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5859. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5860. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5861. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5862. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5863. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5864. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5865. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5866. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5867. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5868. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5869. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5870. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5871. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5872. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5873. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5874. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5875. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5876. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5877. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5878. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5879. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5880. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5881. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5882. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5883. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5884. "ref/portable-net45+win8/_._",
  5885. "ref/win8/_._",
  5886. "ref/xamarinios10/_._",
  5887. "ref/xamarinmac20/_._",
  5888. "ref/xamarintvos10/_._",
  5889. "ref/xamarinwatchos10/_._"
  5890. ]
  5891. },
  5892. "System.ComponentModel.Primitives/4.1.0": {
  5893. "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
  5894. "type": "package",
  5895. "path": "System.ComponentModel.Primitives/4.1.0",
  5896. "files": [
  5897. "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
  5898. "System.ComponentModel.Primitives.nuspec",
  5899. "ThirdPartyNotices.txt",
  5900. "dotnet_library_license.txt",
  5901. "lib/MonoAndroid10/_._",
  5902. "lib/MonoTouch10/_._",
  5903. "lib/net45/System.ComponentModel.Primitives.dll",
  5904. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5905. "lib/xamarinios10/_._",
  5906. "lib/xamarinmac20/_._",
  5907. "lib/xamarintvos10/_._",
  5908. "lib/xamarinwatchos10/_._",
  5909. "ref/MonoAndroid10/_._",
  5910. "ref/MonoTouch10/_._",
  5911. "ref/net45/System.ComponentModel.Primitives.dll",
  5912. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5913. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5914. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5915. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5916. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5917. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5918. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5919. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5920. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5921. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5922. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5923. "ref/xamarinios10/_._",
  5924. "ref/xamarinmac20/_._",
  5925. "ref/xamarintvos10/_._",
  5926. "ref/xamarinwatchos10/_._"
  5927. ]
  5928. },
  5929. "System.ComponentModel.TypeConverter/4.1.0": {
  5930. "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
  5931. "type": "package",
  5932. "path": "System.ComponentModel.TypeConverter/4.1.0",
  5933. "files": [
  5934. "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
  5935. "System.ComponentModel.TypeConverter.nuspec",
  5936. "ThirdPartyNotices.txt",
  5937. "dotnet_library_license.txt",
  5938. "lib/MonoAndroid10/_._",
  5939. "lib/MonoTouch10/_._",
  5940. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5941. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5942. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5943. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5944. "lib/xamarinios10/_._",
  5945. "lib/xamarinmac20/_._",
  5946. "lib/xamarintvos10/_._",
  5947. "lib/xamarinwatchos10/_._",
  5948. "ref/MonoAndroid10/_._",
  5949. "ref/MonoTouch10/_._",
  5950. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5951. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5952. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5953. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5954. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5955. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5956. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5957. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5958. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5959. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5960. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5961. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5962. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5963. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5964. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5965. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5966. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5967. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5968. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5969. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5970. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5971. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5972. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5973. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5974. "ref/xamarinios10/_._",
  5975. "ref/xamarinmac20/_._",
  5976. "ref/xamarintvos10/_._",
  5977. "ref/xamarinwatchos10/_._"
  5978. ]
  5979. },
  5980. "System.Console/4.3.0": {
  5981. "sha512": "Ik/kfdgP1dA+xJOCUMqkrB+m7PmzYvN5w2HedSaLGJpncrfcFEuTois34LJPSnF8oaIsiUA0VxNODUd7EJ3qKQ==",
  5982. "type": "package",
  5983. "path": "System.Console/4.3.0",
  5984. "files": [
  5985. "System.Console.4.3.0.nupkg.sha512",
  5986. "System.Console.nuspec",
  5987. "ThirdPartyNotices.txt",
  5988. "dotnet_library_license.txt",
  5989. "lib/MonoAndroid10/_._",
  5990. "lib/MonoTouch10/_._",
  5991. "lib/net46/System.Console.dll",
  5992. "lib/xamarinios10/_._",
  5993. "lib/xamarinmac20/_._",
  5994. "lib/xamarintvos10/_._",
  5995. "lib/xamarinwatchos10/_._",
  5996. "ref/MonoAndroid10/_._",
  5997. "ref/MonoTouch10/_._",
  5998. "ref/net46/System.Console.dll",
  5999. "ref/netstandard1.3/System.Console.dll",
  6000. "ref/netstandard1.3/System.Console.xml",
  6001. "ref/netstandard1.3/de/System.Console.xml",
  6002. "ref/netstandard1.3/es/System.Console.xml",
  6003. "ref/netstandard1.3/fr/System.Console.xml",
  6004. "ref/netstandard1.3/it/System.Console.xml",
  6005. "ref/netstandard1.3/ja/System.Console.xml",
  6006. "ref/netstandard1.3/ko/System.Console.xml",
  6007. "ref/netstandard1.3/ru/System.Console.xml",
  6008. "ref/netstandard1.3/zh-hans/System.Console.xml",
  6009. "ref/netstandard1.3/zh-hant/System.Console.xml",
  6010. "ref/xamarinios10/_._",
  6011. "ref/xamarinmac20/_._",
  6012. "ref/xamarintvos10/_._",
  6013. "ref/xamarinwatchos10/_._"
  6014. ]
  6015. },
  6016. "System.Data.Common/4.3.0": {
  6017. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  6018. "type": "package",
  6019. "path": "System.Data.Common/4.3.0",
  6020. "files": [
  6021. "System.Data.Common.4.3.0.nupkg.sha512",
  6022. "System.Data.Common.nuspec",
  6023. "ThirdPartyNotices.txt",
  6024. "dotnet_library_license.txt",
  6025. "lib/MonoAndroid10/_._",
  6026. "lib/MonoTouch10/_._",
  6027. "lib/net451/System.Data.Common.dll",
  6028. "lib/netstandard1.2/System.Data.Common.dll",
  6029. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  6030. "lib/xamarinios10/_._",
  6031. "lib/xamarinmac20/_._",
  6032. "lib/xamarintvos10/_._",
  6033. "lib/xamarinwatchos10/_._",
  6034. "ref/MonoAndroid10/_._",
  6035. "ref/MonoTouch10/_._",
  6036. "ref/net451/System.Data.Common.dll",
  6037. "ref/netstandard1.2/System.Data.Common.dll",
  6038. "ref/netstandard1.2/System.Data.Common.xml",
  6039. "ref/netstandard1.2/de/System.Data.Common.xml",
  6040. "ref/netstandard1.2/es/System.Data.Common.xml",
  6041. "ref/netstandard1.2/fr/System.Data.Common.xml",
  6042. "ref/netstandard1.2/it/System.Data.Common.xml",
  6043. "ref/netstandard1.2/ja/System.Data.Common.xml",
  6044. "ref/netstandard1.2/ko/System.Data.Common.xml",
  6045. "ref/netstandard1.2/ru/System.Data.Common.xml",
  6046. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  6047. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  6048. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  6049. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  6050. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  6051. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  6052. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  6053. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  6054. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  6055. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  6056. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  6057. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  6058. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  6059. "ref/xamarinios10/_._",
  6060. "ref/xamarinmac20/_._",
  6061. "ref/xamarintvos10/_._",
  6062. "ref/xamarinwatchos10/_._"
  6063. ]
  6064. },
  6065. "System.Diagnostics.Contracts/4.3.0": {
  6066. "sha512": "pE7RRONH8d93rbABHPVw4C1tGwB9CtIYgLUPT9sMih/oHSIlP9XvtTlpkGBHK0TFwqzOaZky1wXCNlLcDDnyJw==",
  6067. "type": "package",
  6068. "path": "System.Diagnostics.Contracts/4.3.0",
  6069. "files": [
  6070. "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
  6071. "System.Diagnostics.Contracts.nuspec",
  6072. "ThirdPartyNotices.txt",
  6073. "dotnet_library_license.txt",
  6074. "lib/MonoAndroid10/_._",
  6075. "lib/MonoTouch10/_._",
  6076. "lib/net45/_._",
  6077. "lib/netcore50/System.Diagnostics.Contracts.dll",
  6078. "lib/netstandard1.0/System.Diagnostics.Contracts.dll",
  6079. "lib/portable-net45+win8+wp8+wpa81/_._",
  6080. "lib/win8/_._",
  6081. "lib/wp80/_._",
  6082. "lib/wpa81/_._",
  6083. "lib/xamarinios10/_._",
  6084. "lib/xamarinmac20/_._",
  6085. "lib/xamarintvos10/_._",
  6086. "lib/xamarinwatchos10/_._",
  6087. "ref/MonoAndroid10/_._",
  6088. "ref/MonoTouch10/_._",
  6089. "ref/net45/_._",
  6090. "ref/netcore50/System.Diagnostics.Contracts.dll",
  6091. "ref/netcore50/System.Diagnostics.Contracts.xml",
  6092. "ref/netcore50/de/System.Diagnostics.Contracts.xml",
  6093. "ref/netcore50/es/System.Diagnostics.Contracts.xml",
  6094. "ref/netcore50/fr/System.Diagnostics.Contracts.xml",
  6095. "ref/netcore50/it/System.Diagnostics.Contracts.xml",
  6096. "ref/netcore50/ja/System.Diagnostics.Contracts.xml",
  6097. "ref/netcore50/ko/System.Diagnostics.Contracts.xml",
  6098. "ref/netcore50/ru/System.Diagnostics.Contracts.xml",
  6099. "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
  6100. "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
  6101. "ref/netstandard1.0/System.Diagnostics.Contracts.dll",
  6102. "ref/netstandard1.0/System.Diagnostics.Contracts.xml",
  6103. "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
  6104. "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
  6105. "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
  6106. "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
  6107. "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
  6108. "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
  6109. "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
  6110. "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
  6111. "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml",
  6112. "ref/portable-net45+win8+wp8+wpa81/_._",
  6113. "ref/win8/_._",
  6114. "ref/wp80/_._",
  6115. "ref/wpa81/_._",
  6116. "ref/xamarinios10/_._",
  6117. "ref/xamarinmac20/_._",
  6118. "ref/xamarintvos10/_._",
  6119. "ref/xamarinwatchos10/_._",
  6120. "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
  6121. ]
  6122. },
  6123. "System.Diagnostics.Debug/4.3.0": {
  6124. "sha512": "wtg85zBbPrOo5lkGsdSlSXfy9ebeKW/3kcg6m3pA2PZaeib8gkSssMRCwqSG16hV+nAMoRZwbqzxFZT7LW7NXg==",
  6125. "type": "package",
  6126. "path": "System.Diagnostics.Debug/4.3.0",
  6127. "files": [
  6128. "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
  6129. "System.Diagnostics.Debug.nuspec",
  6130. "ThirdPartyNotices.txt",
  6131. "dotnet_library_license.txt",
  6132. "lib/MonoAndroid10/_._",
  6133. "lib/MonoTouch10/_._",
  6134. "lib/net45/_._",
  6135. "lib/portable-net45+win8+wp8+wpa81/_._",
  6136. "lib/win8/_._",
  6137. "lib/wp80/_._",
  6138. "lib/wpa81/_._",
  6139. "lib/xamarinios10/_._",
  6140. "lib/xamarinmac20/_._",
  6141. "lib/xamarintvos10/_._",
  6142. "lib/xamarinwatchos10/_._",
  6143. "ref/MonoAndroid10/_._",
  6144. "ref/MonoTouch10/_._",
  6145. "ref/net45/_._",
  6146. "ref/netcore50/System.Diagnostics.Debug.dll",
  6147. "ref/netcore50/System.Diagnostics.Debug.xml",
  6148. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  6149. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  6150. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6151. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6152. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6153. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6154. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6155. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6156. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6157. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6158. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6159. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6160. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6161. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6162. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6163. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6164. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6165. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6166. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6167. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6168. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6169. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6170. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6171. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6172. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6173. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6174. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6175. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6176. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6177. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6178. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6179. "ref/portable-net45+win8+wp8+wpa81/_._",
  6180. "ref/win8/_._",
  6181. "ref/wp80/_._",
  6182. "ref/wpa81/_._",
  6183. "ref/xamarinios10/_._",
  6184. "ref/xamarinmac20/_._",
  6185. "ref/xamarintvos10/_._",
  6186. "ref/xamarinwatchos10/_._"
  6187. ]
  6188. },
  6189. "System.Diagnostics.DiagnosticSource/4.3.0": {
  6190. "sha512": "S7z/ARtRxDygqv8f9VlC42M4eqCninL29ijZY0SyU/5r25X/H1vzC14P19DDEArKempVnjSJlX2XR5wGrWzKOw==",
  6191. "type": "package",
  6192. "path": "System.Diagnostics.DiagnosticSource/4.3.0",
  6193. "files": [
  6194. "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
  6195. "System.Diagnostics.DiagnosticSource.nuspec",
  6196. "ThirdPartyNotices.txt",
  6197. "dotnet_library_license.txt",
  6198. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6199. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6200. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6201. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6202. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6203. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6204. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6205. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
  6206. ]
  6207. },
  6208. "System.Diagnostics.FileVersionInfo/4.0.0": {
  6209. "sha512": "y3jHY9nmSiGasMfg+EtUoTw/i7iFPvJeGzEwffBThBjwgF+dz34BUSfa/qp4LyR0YqqWmt7CqP+FbomGeLnPNw==",
  6210. "type": "package",
  6211. "path": "System.Diagnostics.FileVersionInfo/4.0.0",
  6212. "files": [
  6213. "System.Diagnostics.FileVersionInfo.4.0.0.nupkg.sha512",
  6214. "System.Diagnostics.FileVersionInfo.nuspec",
  6215. "ThirdPartyNotices.txt",
  6216. "dotnet_library_license.txt",
  6217. "lib/MonoAndroid10/_._",
  6218. "lib/MonoTouch10/_._",
  6219. "lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6220. "lib/xamarinios10/_._",
  6221. "lib/xamarinmac20/_._",
  6222. "lib/xamarintvos10/_._",
  6223. "lib/xamarinwatchos10/_._",
  6224. "ref/MonoAndroid10/_._",
  6225. "ref/MonoTouch10/_._",
  6226. "ref/net46/System.Diagnostics.FileVersionInfo.dll",
  6227. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6228. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml",
  6229. "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml",
  6230. "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml",
  6231. "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml",
  6232. "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml",
  6233. "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml",
  6234. "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml",
  6235. "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml",
  6236. "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml",
  6237. "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml",
  6238. "ref/xamarinios10/_._",
  6239. "ref/xamarinmac20/_._",
  6240. "ref/xamarintvos10/_._",
  6241. "ref/xamarinwatchos10/_._",
  6242. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6243. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6244. "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll",
  6245. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll"
  6246. ]
  6247. },
  6248. "System.Diagnostics.Process/4.1.0": {
  6249. "sha512": "sa4NxaGiD/iRM9m667nspIUMLT9nyoWkmAhYBlC4USnarm48cOOi13LOq7b127CeWZEHv0IkBt79g6r6l28LiA==",
  6250. "type": "package",
  6251. "path": "System.Diagnostics.Process/4.1.0",
  6252. "files": [
  6253. "System.Diagnostics.Process.4.1.0.nupkg.sha512",
  6254. "System.Diagnostics.Process.nuspec",
  6255. "ThirdPartyNotices.txt",
  6256. "dotnet_library_license.txt",
  6257. "lib/MonoAndroid10/_._",
  6258. "lib/MonoTouch10/_._",
  6259. "lib/net46/System.Diagnostics.Process.dll",
  6260. "lib/net461/System.Diagnostics.Process.dll",
  6261. "lib/xamarinios10/_._",
  6262. "lib/xamarinmac20/_._",
  6263. "lib/xamarintvos10/_._",
  6264. "lib/xamarinwatchos10/_._",
  6265. "ref/MonoAndroid10/_._",
  6266. "ref/MonoTouch10/_._",
  6267. "ref/net46/System.Diagnostics.Process.dll",
  6268. "ref/net461/System.Diagnostics.Process.dll",
  6269. "ref/netstandard1.3/System.Diagnostics.Process.dll",
  6270. "ref/netstandard1.3/System.Diagnostics.Process.xml",
  6271. "ref/netstandard1.3/de/System.Diagnostics.Process.xml",
  6272. "ref/netstandard1.3/es/System.Diagnostics.Process.xml",
  6273. "ref/netstandard1.3/fr/System.Diagnostics.Process.xml",
  6274. "ref/netstandard1.3/it/System.Diagnostics.Process.xml",
  6275. "ref/netstandard1.3/ja/System.Diagnostics.Process.xml",
  6276. "ref/netstandard1.3/ko/System.Diagnostics.Process.xml",
  6277. "ref/netstandard1.3/ru/System.Diagnostics.Process.xml",
  6278. "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml",
  6279. "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml",
  6280. "ref/netstandard1.4/System.Diagnostics.Process.dll",
  6281. "ref/netstandard1.4/System.Diagnostics.Process.xml",
  6282. "ref/netstandard1.4/de/System.Diagnostics.Process.xml",
  6283. "ref/netstandard1.4/es/System.Diagnostics.Process.xml",
  6284. "ref/netstandard1.4/fr/System.Diagnostics.Process.xml",
  6285. "ref/netstandard1.4/it/System.Diagnostics.Process.xml",
  6286. "ref/netstandard1.4/ja/System.Diagnostics.Process.xml",
  6287. "ref/netstandard1.4/ko/System.Diagnostics.Process.xml",
  6288. "ref/netstandard1.4/ru/System.Diagnostics.Process.xml",
  6289. "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml",
  6290. "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml",
  6291. "ref/xamarinios10/_._",
  6292. "ref/xamarinmac20/_._",
  6293. "ref/xamarintvos10/_._",
  6294. "ref/xamarinwatchos10/_._",
  6295. "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll",
  6296. "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll",
  6297. "runtimes/win/lib/net46/System.Diagnostics.Process.dll",
  6298. "runtimes/win/lib/net461/System.Diagnostics.Process.dll",
  6299. "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll",
  6300. "runtimes/win7/lib/netcore50/_._"
  6301. ]
  6302. },
  6303. "System.Diagnostics.StackTrace/4.0.1": {
  6304. "sha512": "YPjCe8NYK/J+jiC5lAlgXbnoIQW2W1xIMTfSRq2orVkskj3njPNuHtHnu5Q65AshHK63gLkWlbq+UbtaGzDmaQ==",
  6305. "type": "package",
  6306. "path": "System.Diagnostics.StackTrace/4.0.1",
  6307. "files": [
  6308. "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512",
  6309. "System.Diagnostics.StackTrace.nuspec",
  6310. "ThirdPartyNotices.txt",
  6311. "dotnet_library_license.txt",
  6312. "lib/MonoAndroid10/_._",
  6313. "lib/MonoTouch10/_._",
  6314. "lib/net46/System.Diagnostics.StackTrace.dll",
  6315. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6316. "lib/xamarinios10/_._",
  6317. "lib/xamarinmac20/_._",
  6318. "lib/xamarintvos10/_._",
  6319. "lib/xamarinwatchos10/_._",
  6320. "ref/MonoAndroid10/_._",
  6321. "ref/MonoTouch10/_._",
  6322. "ref/net46/System.Diagnostics.StackTrace.dll",
  6323. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6324. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  6325. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  6326. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  6327. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  6328. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  6329. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  6330. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  6331. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  6332. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  6333. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  6334. "ref/xamarinios10/_._",
  6335. "ref/xamarinmac20/_._",
  6336. "ref/xamarintvos10/_._",
  6337. "ref/xamarinwatchos10/_._",
  6338. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
  6339. ]
  6340. },
  6341. "System.Diagnostics.Tools/4.3.0": {
  6342. "sha512": "czwL60JAaLVGvtNAKCzK718b+wUgw7/8vHiZ1rrtEjBXsODEG4S9Qoevu5DMpUHlZn7+pSsw5xk/HKXxE+oDoQ==",
  6343. "type": "package",
  6344. "path": "System.Diagnostics.Tools/4.3.0",
  6345. "files": [
  6346. "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
  6347. "System.Diagnostics.Tools.nuspec",
  6348. "ThirdPartyNotices.txt",
  6349. "dotnet_library_license.txt",
  6350. "lib/MonoAndroid10/_._",
  6351. "lib/MonoTouch10/_._",
  6352. "lib/net45/_._",
  6353. "lib/portable-net45+win8+wp8+wpa81/_._",
  6354. "lib/win8/_._",
  6355. "lib/wp80/_._",
  6356. "lib/wpa81/_._",
  6357. "lib/xamarinios10/_._",
  6358. "lib/xamarinmac20/_._",
  6359. "lib/xamarintvos10/_._",
  6360. "lib/xamarinwatchos10/_._",
  6361. "ref/MonoAndroid10/_._",
  6362. "ref/MonoTouch10/_._",
  6363. "ref/net45/_._",
  6364. "ref/netcore50/System.Diagnostics.Tools.dll",
  6365. "ref/netcore50/System.Diagnostics.Tools.xml",
  6366. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6367. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6368. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6369. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6370. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6371. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6372. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6373. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6374. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6375. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6376. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6377. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6378. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6379. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6380. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6381. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6382. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6383. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6384. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6385. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6386. "ref/portable-net45+win8+wp8+wpa81/_._",
  6387. "ref/win8/_._",
  6388. "ref/wp80/_._",
  6389. "ref/wpa81/_._",
  6390. "ref/xamarinios10/_._",
  6391. "ref/xamarinmac20/_._",
  6392. "ref/xamarintvos10/_._",
  6393. "ref/xamarinwatchos10/_._"
  6394. ]
  6395. },
  6396. "System.Diagnostics.TraceSource/4.0.0": {
  6397. "sha512": "6WVCczFZKXwpWpzd/iJkYnsmWTSFFiU24Xx/YdHXBcu+nFI/ehTgeqdJQFbtRPzbrO3KtRNjvkhtj4t5/WwWsA==",
  6398. "type": "package",
  6399. "path": "system.diagnostics.tracesource/4.0.0",
  6400. "files": [
  6401. "ThirdPartyNotices.txt",
  6402. "dotnet_library_license.txt",
  6403. "lib/MonoAndroid10/_._",
  6404. "lib/MonoTouch10/_._",
  6405. "lib/net46/System.Diagnostics.TraceSource.dll",
  6406. "lib/xamarinios10/_._",
  6407. "lib/xamarinmac20/_._",
  6408. "lib/xamarintvos10/_._",
  6409. "lib/xamarinwatchos10/_._",
  6410. "ref/MonoAndroid10/_._",
  6411. "ref/MonoTouch10/_._",
  6412. "ref/net46/System.Diagnostics.TraceSource.dll",
  6413. "ref/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6414. "ref/netstandard1.3/System.Diagnostics.TraceSource.xml",
  6415. "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml",
  6416. "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml",
  6417. "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml",
  6418. "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml",
  6419. "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml",
  6420. "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml",
  6421. "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml",
  6422. "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml",
  6423. "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml",
  6424. "ref/xamarinios10/_._",
  6425. "ref/xamarinmac20/_._",
  6426. "ref/xamarintvos10/_._",
  6427. "ref/xamarinwatchos10/_._",
  6428. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6429. "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll",
  6430. "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll",
  6431. "system.diagnostics.tracesource.4.0.0.nupkg.sha512",
  6432. "system.diagnostics.tracesource.nuspec"
  6433. ]
  6434. },
  6435. "System.Diagnostics.Tracing/4.3.0": {
  6436. "sha512": "i7hxQeTRMSYS9CMuWyldbzRkVpIy0VOZVwGkzuhF4NK3y3xd6zr97o0+q1VJ7xDNSa/h1ytwP7N2hd82IqRmLQ==",
  6437. "type": "package",
  6438. "path": "System.Diagnostics.Tracing/4.3.0",
  6439. "files": [
  6440. "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
  6441. "System.Diagnostics.Tracing.nuspec",
  6442. "ThirdPartyNotices.txt",
  6443. "dotnet_library_license.txt",
  6444. "lib/MonoAndroid10/_._",
  6445. "lib/MonoTouch10/_._",
  6446. "lib/net45/_._",
  6447. "lib/net462/System.Diagnostics.Tracing.dll",
  6448. "lib/portable-net45+win8+wpa81/_._",
  6449. "lib/win8/_._",
  6450. "lib/wpa81/_._",
  6451. "lib/xamarinios10/_._",
  6452. "lib/xamarinmac20/_._",
  6453. "lib/xamarintvos10/_._",
  6454. "lib/xamarinwatchos10/_._",
  6455. "ref/MonoAndroid10/_._",
  6456. "ref/MonoTouch10/_._",
  6457. "ref/net45/_._",
  6458. "ref/net462/System.Diagnostics.Tracing.dll",
  6459. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6460. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6461. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6462. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6463. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6464. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6465. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6466. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6467. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6468. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6469. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6470. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6471. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6472. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6473. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6474. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6475. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6476. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6477. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6478. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6479. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6480. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6481. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6482. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6483. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6484. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6485. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6486. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6487. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6488. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6489. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6490. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6491. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6492. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6493. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6494. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6495. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6496. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6497. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6498. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6499. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6500. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6501. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6502. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6503. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6504. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6505. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6506. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6507. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6508. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6509. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6510. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6511. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6512. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6513. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6514. "ref/portable-net45+win8+wpa81/_._",
  6515. "ref/win8/_._",
  6516. "ref/wpa81/_._",
  6517. "ref/xamarinios10/_._",
  6518. "ref/xamarinmac20/_._",
  6519. "ref/xamarintvos10/_._",
  6520. "ref/xamarinwatchos10/_._"
  6521. ]
  6522. },
  6523. "System.Dynamic.Runtime/4.3.0": {
  6524. "sha512": "6I9mCWqeCgjg661yDDuSmGQ9Ro5LK6VTLDvRWWBmOuyVnN8F+2p9Ka1MnkD6p5tZbzbf50Bhp2TLfl5mix+NXw==",
  6525. "type": "package",
  6526. "path": "System.Dynamic.Runtime/4.3.0",
  6527. "files": [
  6528. "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
  6529. "System.Dynamic.Runtime.nuspec",
  6530. "ThirdPartyNotices.txt",
  6531. "dotnet_library_license.txt",
  6532. "lib/MonoAndroid10/_._",
  6533. "lib/MonoTouch10/_._",
  6534. "lib/net45/_._",
  6535. "lib/netcore50/System.Dynamic.Runtime.dll",
  6536. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6537. "lib/portable-net45+win8+wp8+wpa81/_._",
  6538. "lib/win8/_._",
  6539. "lib/wp80/_._",
  6540. "lib/wpa81/_._",
  6541. "lib/xamarinios10/_._",
  6542. "lib/xamarinmac20/_._",
  6543. "lib/xamarintvos10/_._",
  6544. "lib/xamarinwatchos10/_._",
  6545. "ref/MonoAndroid10/_._",
  6546. "ref/MonoTouch10/_._",
  6547. "ref/net45/_._",
  6548. "ref/netcore50/System.Dynamic.Runtime.dll",
  6549. "ref/netcore50/System.Dynamic.Runtime.xml",
  6550. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6551. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6552. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6553. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6554. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6555. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6556. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6557. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6558. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6559. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6560. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6561. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6562. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6563. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6564. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6565. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6566. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6567. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6568. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6569. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6570. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6571. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6572. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6573. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6574. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6575. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6576. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6577. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6578. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6579. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6580. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6581. "ref/portable-net45+win8+wp8+wpa81/_._",
  6582. "ref/win8/_._",
  6583. "ref/wp80/_._",
  6584. "ref/wpa81/_._",
  6585. "ref/xamarinios10/_._",
  6586. "ref/xamarinmac20/_._",
  6587. "ref/xamarintvos10/_._",
  6588. "ref/xamarinwatchos10/_._",
  6589. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
  6590. ]
  6591. },
  6592. "System.Globalization/4.3.0": {
  6593. "sha512": "ySK9WB3u1ONxQ82Q6cE7O3IfboPZ/QlyKID75oOC66GKfyfvEyZvaZpqzLTy4n7a9SUHwz90pfflJ9HFRM8GZQ==",
  6594. "type": "package",
  6595. "path": "System.Globalization/4.3.0",
  6596. "files": [
  6597. "System.Globalization.4.3.0.nupkg.sha512",
  6598. "System.Globalization.nuspec",
  6599. "ThirdPartyNotices.txt",
  6600. "dotnet_library_license.txt",
  6601. "lib/MonoAndroid10/_._",
  6602. "lib/MonoTouch10/_._",
  6603. "lib/net45/_._",
  6604. "lib/portable-net45+win8+wp8+wpa81/_._",
  6605. "lib/win8/_._",
  6606. "lib/wp80/_._",
  6607. "lib/wpa81/_._",
  6608. "lib/xamarinios10/_._",
  6609. "lib/xamarinmac20/_._",
  6610. "lib/xamarintvos10/_._",
  6611. "lib/xamarinwatchos10/_._",
  6612. "ref/MonoAndroid10/_._",
  6613. "ref/MonoTouch10/_._",
  6614. "ref/net45/_._",
  6615. "ref/netcore50/System.Globalization.dll",
  6616. "ref/netcore50/System.Globalization.xml",
  6617. "ref/netcore50/de/System.Globalization.xml",
  6618. "ref/netcore50/es/System.Globalization.xml",
  6619. "ref/netcore50/fr/System.Globalization.xml",
  6620. "ref/netcore50/it/System.Globalization.xml",
  6621. "ref/netcore50/ja/System.Globalization.xml",
  6622. "ref/netcore50/ko/System.Globalization.xml",
  6623. "ref/netcore50/ru/System.Globalization.xml",
  6624. "ref/netcore50/zh-hans/System.Globalization.xml",
  6625. "ref/netcore50/zh-hant/System.Globalization.xml",
  6626. "ref/netstandard1.0/System.Globalization.dll",
  6627. "ref/netstandard1.0/System.Globalization.xml",
  6628. "ref/netstandard1.0/de/System.Globalization.xml",
  6629. "ref/netstandard1.0/es/System.Globalization.xml",
  6630. "ref/netstandard1.0/fr/System.Globalization.xml",
  6631. "ref/netstandard1.0/it/System.Globalization.xml",
  6632. "ref/netstandard1.0/ja/System.Globalization.xml",
  6633. "ref/netstandard1.0/ko/System.Globalization.xml",
  6634. "ref/netstandard1.0/ru/System.Globalization.xml",
  6635. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6636. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6637. "ref/netstandard1.3/System.Globalization.dll",
  6638. "ref/netstandard1.3/System.Globalization.xml",
  6639. "ref/netstandard1.3/de/System.Globalization.xml",
  6640. "ref/netstandard1.3/es/System.Globalization.xml",
  6641. "ref/netstandard1.3/fr/System.Globalization.xml",
  6642. "ref/netstandard1.3/it/System.Globalization.xml",
  6643. "ref/netstandard1.3/ja/System.Globalization.xml",
  6644. "ref/netstandard1.3/ko/System.Globalization.xml",
  6645. "ref/netstandard1.3/ru/System.Globalization.xml",
  6646. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6647. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6648. "ref/portable-net45+win8+wp8+wpa81/_._",
  6649. "ref/win8/_._",
  6650. "ref/wp80/_._",
  6651. "ref/wpa81/_._",
  6652. "ref/xamarinios10/_._",
  6653. "ref/xamarinmac20/_._",
  6654. "ref/xamarintvos10/_._",
  6655. "ref/xamarinwatchos10/_._"
  6656. ]
  6657. },
  6658. "System.Globalization.Calendars/4.3.0": {
  6659. "sha512": "Lealz3HSgQd/FOC1TMDZ564wLsjMPeRiyH4j7Baiq2x79ei3uo05zlqhxpaXtHAUHJskMtzc2RsjAsd5Pg2+aw==",
  6660. "type": "package",
  6661. "path": "System.Globalization.Calendars/4.3.0",
  6662. "files": [
  6663. "System.Globalization.Calendars.4.3.0.nupkg.sha512",
  6664. "System.Globalization.Calendars.nuspec",
  6665. "ThirdPartyNotices.txt",
  6666. "dotnet_library_license.txt",
  6667. "lib/MonoAndroid10/_._",
  6668. "lib/MonoTouch10/_._",
  6669. "lib/net46/System.Globalization.Calendars.dll",
  6670. "lib/xamarinios10/_._",
  6671. "lib/xamarinmac20/_._",
  6672. "lib/xamarintvos10/_._",
  6673. "lib/xamarinwatchos10/_._",
  6674. "ref/MonoAndroid10/_._",
  6675. "ref/MonoTouch10/_._",
  6676. "ref/net46/System.Globalization.Calendars.dll",
  6677. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6678. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6679. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6680. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6681. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6682. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6683. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6684. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6685. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6686. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6687. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6688. "ref/xamarinios10/_._",
  6689. "ref/xamarinmac20/_._",
  6690. "ref/xamarintvos10/_._",
  6691. "ref/xamarinwatchos10/_._"
  6692. ]
  6693. },
  6694. "System.Globalization.Extensions/4.3.0": {
  6695. "sha512": "V94vDBcAzxqObtShcgiWSDazkkZm/mtfET5dXIgvzbTNgFXtoUots+s4FyQkUaAf9HtutUMQtBdaPmHXhIYTiw==",
  6696. "type": "package",
  6697. "path": "System.Globalization.Extensions/4.3.0",
  6698. "files": [
  6699. "System.Globalization.Extensions.4.3.0.nupkg.sha512",
  6700. "System.Globalization.Extensions.nuspec",
  6701. "ThirdPartyNotices.txt",
  6702. "dotnet_library_license.txt",
  6703. "lib/MonoAndroid10/_._",
  6704. "lib/MonoTouch10/_._",
  6705. "lib/net46/System.Globalization.Extensions.dll",
  6706. "lib/xamarinios10/_._",
  6707. "lib/xamarinmac20/_._",
  6708. "lib/xamarintvos10/_._",
  6709. "lib/xamarinwatchos10/_._",
  6710. "ref/MonoAndroid10/_._",
  6711. "ref/MonoTouch10/_._",
  6712. "ref/net46/System.Globalization.Extensions.dll",
  6713. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6714. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6715. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6716. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6717. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6718. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6719. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6720. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6721. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6722. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6723. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6724. "ref/xamarinios10/_._",
  6725. "ref/xamarinmac20/_._",
  6726. "ref/xamarintvos10/_._",
  6727. "ref/xamarinwatchos10/_._",
  6728. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6729. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6730. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
  6731. ]
  6732. },
  6733. "System.Interactive.Async/3.0.0": {
  6734. "sha512": "iyrgkZz9Dzm0fiPouQszFC3SO/46k6AYd/jG9bu+/o0AoDMaRXtlo3TIuWVNtOuJFd1noL963QouroJ0T3rImw==",
  6735. "type": "package",
  6736. "path": "System.Interactive.Async/3.0.0",
  6737. "files": [
  6738. "System.Interactive.Async.3.0.0.nupkg.sha512",
  6739. "System.Interactive.Async.nuspec",
  6740. "lib/net45/System.Interactive.Async.dll",
  6741. "lib/net45/System.Interactive.Async.xml",
  6742. "lib/netstandard1.0/System.Interactive.Async.dll",
  6743. "lib/netstandard1.0/System.Interactive.Async.xml"
  6744. ]
  6745. },
  6746. "System.IO/4.3.0": {
  6747. "sha512": "cXuYu/ygrY2jSUssaHsn/PfCPS/Kek0It6YztrW5hjVssowvgsgKuqHmjrCeAf3AmSI79vZ8PsLW1iiD7nWxqA==",
  6748. "type": "package",
  6749. "path": "System.IO/4.3.0",
  6750. "files": [
  6751. "System.IO.4.3.0.nupkg.sha512",
  6752. "System.IO.nuspec",
  6753. "ThirdPartyNotices.txt",
  6754. "dotnet_library_license.txt",
  6755. "lib/MonoAndroid10/_._",
  6756. "lib/MonoTouch10/_._",
  6757. "lib/net45/_._",
  6758. "lib/net462/System.IO.dll",
  6759. "lib/portable-net45+win8+wp8+wpa81/_._",
  6760. "lib/win8/_._",
  6761. "lib/wp80/_._",
  6762. "lib/wpa81/_._",
  6763. "lib/xamarinios10/_._",
  6764. "lib/xamarinmac20/_._",
  6765. "lib/xamarintvos10/_._",
  6766. "lib/xamarinwatchos10/_._",
  6767. "ref/MonoAndroid10/_._",
  6768. "ref/MonoTouch10/_._",
  6769. "ref/net45/_._",
  6770. "ref/net462/System.IO.dll",
  6771. "ref/netcore50/System.IO.dll",
  6772. "ref/netcore50/System.IO.xml",
  6773. "ref/netcore50/de/System.IO.xml",
  6774. "ref/netcore50/es/System.IO.xml",
  6775. "ref/netcore50/fr/System.IO.xml",
  6776. "ref/netcore50/it/System.IO.xml",
  6777. "ref/netcore50/ja/System.IO.xml",
  6778. "ref/netcore50/ko/System.IO.xml",
  6779. "ref/netcore50/ru/System.IO.xml",
  6780. "ref/netcore50/zh-hans/System.IO.xml",
  6781. "ref/netcore50/zh-hant/System.IO.xml",
  6782. "ref/netstandard1.0/System.IO.dll",
  6783. "ref/netstandard1.0/System.IO.xml",
  6784. "ref/netstandard1.0/de/System.IO.xml",
  6785. "ref/netstandard1.0/es/System.IO.xml",
  6786. "ref/netstandard1.0/fr/System.IO.xml",
  6787. "ref/netstandard1.0/it/System.IO.xml",
  6788. "ref/netstandard1.0/ja/System.IO.xml",
  6789. "ref/netstandard1.0/ko/System.IO.xml",
  6790. "ref/netstandard1.0/ru/System.IO.xml",
  6791. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6792. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6793. "ref/netstandard1.3/System.IO.dll",
  6794. "ref/netstandard1.3/System.IO.xml",
  6795. "ref/netstandard1.3/de/System.IO.xml",
  6796. "ref/netstandard1.3/es/System.IO.xml",
  6797. "ref/netstandard1.3/fr/System.IO.xml",
  6798. "ref/netstandard1.3/it/System.IO.xml",
  6799. "ref/netstandard1.3/ja/System.IO.xml",
  6800. "ref/netstandard1.3/ko/System.IO.xml",
  6801. "ref/netstandard1.3/ru/System.IO.xml",
  6802. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6803. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6804. "ref/netstandard1.5/System.IO.dll",
  6805. "ref/netstandard1.5/System.IO.xml",
  6806. "ref/netstandard1.5/de/System.IO.xml",
  6807. "ref/netstandard1.5/es/System.IO.xml",
  6808. "ref/netstandard1.5/fr/System.IO.xml",
  6809. "ref/netstandard1.5/it/System.IO.xml",
  6810. "ref/netstandard1.5/ja/System.IO.xml",
  6811. "ref/netstandard1.5/ko/System.IO.xml",
  6812. "ref/netstandard1.5/ru/System.IO.xml",
  6813. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6814. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6815. "ref/portable-net45+win8+wp8+wpa81/_._",
  6816. "ref/win8/_._",
  6817. "ref/wp80/_._",
  6818. "ref/wpa81/_._",
  6819. "ref/xamarinios10/_._",
  6820. "ref/xamarinmac20/_._",
  6821. "ref/xamarintvos10/_._",
  6822. "ref/xamarinwatchos10/_._"
  6823. ]
  6824. },
  6825. "System.IO.Compression/4.3.0": {
  6826. "sha512": "1QYOMtObmdRHs5dthBBr5Jef3X+d6YACS3neNwSDaWs+yxsDgBCPgEzZhFnXWoibLDROETI+zkBMAL+vopVbfg==",
  6827. "type": "package",
  6828. "path": "System.IO.Compression/4.3.0",
  6829. "files": [
  6830. "System.IO.Compression.4.3.0.nupkg.sha512",
  6831. "System.IO.Compression.nuspec",
  6832. "ThirdPartyNotices.txt",
  6833. "dotnet_library_license.txt",
  6834. "lib/MonoAndroid10/_._",
  6835. "lib/MonoTouch10/_._",
  6836. "lib/net45/_._",
  6837. "lib/net46/System.IO.Compression.dll",
  6838. "lib/portable-net45+win8+wpa81/_._",
  6839. "lib/win8/_._",
  6840. "lib/wpa81/_._",
  6841. "lib/xamarinios10/_._",
  6842. "lib/xamarinmac20/_._",
  6843. "lib/xamarintvos10/_._",
  6844. "lib/xamarinwatchos10/_._",
  6845. "ref/MonoAndroid10/_._",
  6846. "ref/MonoTouch10/_._",
  6847. "ref/net45/_._",
  6848. "ref/net46/System.IO.Compression.dll",
  6849. "ref/netcore50/System.IO.Compression.dll",
  6850. "ref/netcore50/System.IO.Compression.xml",
  6851. "ref/netcore50/de/System.IO.Compression.xml",
  6852. "ref/netcore50/es/System.IO.Compression.xml",
  6853. "ref/netcore50/fr/System.IO.Compression.xml",
  6854. "ref/netcore50/it/System.IO.Compression.xml",
  6855. "ref/netcore50/ja/System.IO.Compression.xml",
  6856. "ref/netcore50/ko/System.IO.Compression.xml",
  6857. "ref/netcore50/ru/System.IO.Compression.xml",
  6858. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6859. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6860. "ref/netstandard1.1/System.IO.Compression.dll",
  6861. "ref/netstandard1.1/System.IO.Compression.xml",
  6862. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6863. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6864. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6865. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6866. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6867. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6868. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6869. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6870. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6871. "ref/netstandard1.3/System.IO.Compression.dll",
  6872. "ref/netstandard1.3/System.IO.Compression.xml",
  6873. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6874. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6875. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6876. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6877. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6878. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6879. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6880. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6881. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6882. "ref/portable-net45+win8+wpa81/_._",
  6883. "ref/win8/_._",
  6884. "ref/wpa81/_._",
  6885. "ref/xamarinios10/_._",
  6886. "ref/xamarinmac20/_._",
  6887. "ref/xamarintvos10/_._",
  6888. "ref/xamarinwatchos10/_._",
  6889. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6890. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6891. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
  6892. ]
  6893. },
  6894. "System.IO.Compression.ZipFile/4.3.0": {
  6895. "sha512": "K7yrRwJuU22iBhr0ySICB4xfPDbV2x9lV6BNpf9N72ngRn/qO34JgMHcBHZI+PSLjRBVJzFeNVopt+5NOsY/aQ==",
  6896. "type": "package",
  6897. "path": "System.IO.Compression.ZipFile/4.3.0",
  6898. "files": [
  6899. "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
  6900. "System.IO.Compression.ZipFile.nuspec",
  6901. "ThirdPartyNotices.txt",
  6902. "dotnet_library_license.txt",
  6903. "lib/MonoAndroid10/_._",
  6904. "lib/MonoTouch10/_._",
  6905. "lib/net46/System.IO.Compression.ZipFile.dll",
  6906. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6907. "lib/xamarinios10/_._",
  6908. "lib/xamarinmac20/_._",
  6909. "lib/xamarintvos10/_._",
  6910. "lib/xamarinwatchos10/_._",
  6911. "ref/MonoAndroid10/_._",
  6912. "ref/MonoTouch10/_._",
  6913. "ref/net46/System.IO.Compression.ZipFile.dll",
  6914. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6915. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6916. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6917. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6918. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6919. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6920. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6921. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6922. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6923. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6924. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6925. "ref/xamarinios10/_._",
  6926. "ref/xamarinmac20/_._",
  6927. "ref/xamarintvos10/_._",
  6928. "ref/xamarinwatchos10/_._"
  6929. ]
  6930. },
  6931. "System.IO.FileSystem/4.3.0": {
  6932. "sha512": "oTvCY1epVpXNDk0CSKp8NvaHsrDPUoEiFAAx6GuJWDnOq8EBd/qW+gmRut8Zfol3ghlhuKrikz8O1aQgzPJPbQ==",
  6933. "type": "package",
  6934. "path": "System.IO.FileSystem/4.3.0",
  6935. "files": [
  6936. "System.IO.FileSystem.4.3.0.nupkg.sha512",
  6937. "System.IO.FileSystem.nuspec",
  6938. "ThirdPartyNotices.txt",
  6939. "dotnet_library_license.txt",
  6940. "lib/MonoAndroid10/_._",
  6941. "lib/MonoTouch10/_._",
  6942. "lib/net46/System.IO.FileSystem.dll",
  6943. "lib/xamarinios10/_._",
  6944. "lib/xamarinmac20/_._",
  6945. "lib/xamarintvos10/_._",
  6946. "lib/xamarinwatchos10/_._",
  6947. "ref/MonoAndroid10/_._",
  6948. "ref/MonoTouch10/_._",
  6949. "ref/net46/System.IO.FileSystem.dll",
  6950. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6951. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6952. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6953. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6954. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6955. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6956. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6957. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6958. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6959. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6960. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6961. "ref/xamarinios10/_._",
  6962. "ref/xamarinmac20/_._",
  6963. "ref/xamarintvos10/_._",
  6964. "ref/xamarinwatchos10/_._"
  6965. ]
  6966. },
  6967. "System.IO.FileSystem.Primitives/4.3.0": {
  6968. "sha512": "dUvETypIrGfDyjkGe99Z9EsD740KKyJWkHdVJYw294K56f8dHu8AHHbjmpb4bCOE9VGlIqWL5kM8UlejpYIhnQ==",
  6969. "type": "package",
  6970. "path": "System.IO.FileSystem.Primitives/4.3.0",
  6971. "files": [
  6972. "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
  6973. "System.IO.FileSystem.Primitives.nuspec",
  6974. "ThirdPartyNotices.txt",
  6975. "dotnet_library_license.txt",
  6976. "lib/MonoAndroid10/_._",
  6977. "lib/MonoTouch10/_._",
  6978. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6979. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6980. "lib/xamarinios10/_._",
  6981. "lib/xamarinmac20/_._",
  6982. "lib/xamarintvos10/_._",
  6983. "lib/xamarinwatchos10/_._",
  6984. "ref/MonoAndroid10/_._",
  6985. "ref/MonoTouch10/_._",
  6986. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6987. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6988. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6989. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6990. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6991. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6992. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6993. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6994. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6995. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6996. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6997. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6998. "ref/xamarinios10/_._",
  6999. "ref/xamarinmac20/_._",
  7000. "ref/xamarintvos10/_._",
  7001. "ref/xamarinwatchos10/_._"
  7002. ]
  7003. },
  7004. "System.IO.FileSystem.Watcher/4.0.0": {
  7005. "sha512": "smLdmwMbcOGkkcZv2QU55Pp/jSiZhYYxlJdn5zue1gBYA4rXiW7OnwlENPZX8DghsxlOZqEbcAgAKNFtuhX8UA==",
  7006. "type": "package",
  7007. "path": "System.IO.FileSystem.Watcher/4.0.0",
  7008. "files": [
  7009. "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
  7010. "System.IO.FileSystem.Watcher.nuspec",
  7011. "ThirdPartyNotices.txt",
  7012. "dotnet_library_license.txt",
  7013. "lib/MonoAndroid10/_._",
  7014. "lib/MonoTouch10/_._",
  7015. "lib/net46/System.IO.FileSystem.Watcher.dll",
  7016. "lib/xamarinios10/_._",
  7017. "lib/xamarinmac20/_._",
  7018. "lib/xamarintvos10/_._",
  7019. "lib/xamarinwatchos10/_._",
  7020. "ref/MonoAndroid10/_._",
  7021. "ref/MonoTouch10/_._",
  7022. "ref/net46/System.IO.FileSystem.Watcher.dll",
  7023. "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  7024. "ref/netstandard1.3/System.IO.FileSystem.Watcher.xml",
  7025. "ref/netstandard1.3/de/System.IO.FileSystem.Watcher.xml",
  7026. "ref/netstandard1.3/es/System.IO.FileSystem.Watcher.xml",
  7027. "ref/netstandard1.3/fr/System.IO.FileSystem.Watcher.xml",
  7028. "ref/netstandard1.3/it/System.IO.FileSystem.Watcher.xml",
  7029. "ref/netstandard1.3/ja/System.IO.FileSystem.Watcher.xml",
  7030. "ref/netstandard1.3/ko/System.IO.FileSystem.Watcher.xml",
  7031. "ref/netstandard1.3/ru/System.IO.FileSystem.Watcher.xml",
  7032. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Watcher.xml",
  7033. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Watcher.xml",
  7034. "ref/xamarinios10/_._",
  7035. "ref/xamarinmac20/_._",
  7036. "ref/xamarintvos10/_._",
  7037. "ref/xamarinwatchos10/_._",
  7038. "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  7039. "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  7040. "runtimes/win/lib/net46/System.IO.FileSystem.Watcher.dll",
  7041. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  7042. "runtimes/win7/lib/netcore50/_._"
  7043. ]
  7044. },
  7045. "System.IO.MemoryMappedFiles/4.0.0": {
  7046. "sha512": "PStypGn+lGm2JtQPyiwTrCVHz3dohrljUJ6vIVpgLGaaiMLXA6ZH413Ia7mv1LjKW/5vmGCT3RwSdemsgxkuMg==",
  7047. "type": "package",
  7048. "path": "System.IO.MemoryMappedFiles/4.0.0",
  7049. "files": [
  7050. "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
  7051. "System.IO.MemoryMappedFiles.nuspec",
  7052. "ThirdPartyNotices.txt",
  7053. "dotnet_library_license.txt",
  7054. "lib/MonoAndroid10/_._",
  7055. "lib/MonoTouch10/_._",
  7056. "lib/net46/System.IO.MemoryMappedFiles.dll",
  7057. "lib/xamarinios10/_._",
  7058. "lib/xamarinmac20/_._",
  7059. "lib/xamarintvos10/_._",
  7060. "lib/xamarinwatchos10/_._",
  7061. "ref/MonoAndroid10/_._",
  7062. "ref/MonoTouch10/_._",
  7063. "ref/net46/System.IO.MemoryMappedFiles.dll",
  7064. "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll",
  7065. "ref/netstandard1.3/System.IO.MemoryMappedFiles.xml",
  7066. "ref/netstandard1.3/de/System.IO.MemoryMappedFiles.xml",
  7067. "ref/netstandard1.3/es/System.IO.MemoryMappedFiles.xml",
  7068. "ref/netstandard1.3/fr/System.IO.MemoryMappedFiles.xml",
  7069. "ref/netstandard1.3/it/System.IO.MemoryMappedFiles.xml",
  7070. "ref/netstandard1.3/ja/System.IO.MemoryMappedFiles.xml",
  7071. "ref/netstandard1.3/ko/System.IO.MemoryMappedFiles.xml",
  7072. "ref/netstandard1.3/ru/System.IO.MemoryMappedFiles.xml",
  7073. "ref/netstandard1.3/zh-hans/System.IO.MemoryMappedFiles.xml",
  7074. "ref/netstandard1.3/zh-hant/System.IO.MemoryMappedFiles.xml",
  7075. "ref/xamarinios10/_._",
  7076. "ref/xamarinmac20/_._",
  7077. "ref/xamarintvos10/_._",
  7078. "ref/xamarinwatchos10/_._",
  7079. "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll",
  7080. "runtimes/win/lib/net46/System.IO.MemoryMappedFiles.dll",
  7081. "runtimes/win/lib/netcore50/System.IO.MemoryMappedFiles.dll",
  7082. "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
  7083. ]
  7084. },
  7085. "System.IO.UnmanagedMemoryStream/4.0.1": {
  7086. "sha512": "Xm2rVGIaXJN0ScBYeo5fDmNifi3AKkOo5q6AeqZoje1WcrAEwteLNaXsY6Kqqzuspv1YXTylyvs1z1XYLwEglw==",
  7087. "type": "package",
  7088. "path": "System.IO.UnmanagedMemoryStream/4.0.1",
  7089. "files": [
  7090. "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
  7091. "System.IO.UnmanagedMemoryStream.nuspec",
  7092. "ThirdPartyNotices.txt",
  7093. "dotnet_library_license.txt",
  7094. "lib/MonoAndroid10/_._",
  7095. "lib/MonoTouch10/_._",
  7096. "lib/net46/System.IO.UnmanagedMemoryStream.dll",
  7097. "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
  7098. "lib/xamarinios10/_._",
  7099. "lib/xamarinmac20/_._",
  7100. "lib/xamarintvos10/_._",
  7101. "lib/xamarinwatchos10/_._",
  7102. "ref/MonoAndroid10/_._",
  7103. "ref/MonoTouch10/_._",
  7104. "ref/net46/System.IO.UnmanagedMemoryStream.dll",
  7105. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
  7106. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml",
  7107. "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml",
  7108. "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml",
  7109. "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml",
  7110. "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml",
  7111. "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml",
  7112. "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml",
  7113. "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml",
  7114. "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml",
  7115. "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml",
  7116. "ref/xamarinios10/_._",
  7117. "ref/xamarinmac20/_._",
  7118. "ref/xamarintvos10/_._",
  7119. "ref/xamarinwatchos10/_._"
  7120. ]
  7121. },
  7122. "System.Linq/4.3.0": {
  7123. "sha512": "P71Cxp86ljJd8N2EO2OXb/xdClfs6BRCqDSZeXfSF0g+fT+S6/zmPFVJUEPFycY1pYDAqPGu+2lI9vcP46qmWg==",
  7124. "type": "package",
  7125. "path": "System.Linq/4.3.0",
  7126. "files": [
  7127. "System.Linq.4.3.0.nupkg.sha512",
  7128. "System.Linq.nuspec",
  7129. "ThirdPartyNotices.txt",
  7130. "dotnet_library_license.txt",
  7131. "lib/MonoAndroid10/_._",
  7132. "lib/MonoTouch10/_._",
  7133. "lib/net45/_._",
  7134. "lib/net463/System.Linq.dll",
  7135. "lib/netcore50/System.Linq.dll",
  7136. "lib/netstandard1.6/System.Linq.dll",
  7137. "lib/portable-net45+win8+wp8+wpa81/_._",
  7138. "lib/win8/_._",
  7139. "lib/wp80/_._",
  7140. "lib/wpa81/_._",
  7141. "lib/xamarinios10/_._",
  7142. "lib/xamarinmac20/_._",
  7143. "lib/xamarintvos10/_._",
  7144. "lib/xamarinwatchos10/_._",
  7145. "ref/MonoAndroid10/_._",
  7146. "ref/MonoTouch10/_._",
  7147. "ref/net45/_._",
  7148. "ref/net463/System.Linq.dll",
  7149. "ref/netcore50/System.Linq.dll",
  7150. "ref/netcore50/System.Linq.xml",
  7151. "ref/netcore50/de/System.Linq.xml",
  7152. "ref/netcore50/es/System.Linq.xml",
  7153. "ref/netcore50/fr/System.Linq.xml",
  7154. "ref/netcore50/it/System.Linq.xml",
  7155. "ref/netcore50/ja/System.Linq.xml",
  7156. "ref/netcore50/ko/System.Linq.xml",
  7157. "ref/netcore50/ru/System.Linq.xml",
  7158. "ref/netcore50/zh-hans/System.Linq.xml",
  7159. "ref/netcore50/zh-hant/System.Linq.xml",
  7160. "ref/netstandard1.0/System.Linq.dll",
  7161. "ref/netstandard1.0/System.Linq.xml",
  7162. "ref/netstandard1.0/de/System.Linq.xml",
  7163. "ref/netstandard1.0/es/System.Linq.xml",
  7164. "ref/netstandard1.0/fr/System.Linq.xml",
  7165. "ref/netstandard1.0/it/System.Linq.xml",
  7166. "ref/netstandard1.0/ja/System.Linq.xml",
  7167. "ref/netstandard1.0/ko/System.Linq.xml",
  7168. "ref/netstandard1.0/ru/System.Linq.xml",
  7169. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  7170. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  7171. "ref/netstandard1.6/System.Linq.dll",
  7172. "ref/netstandard1.6/System.Linq.xml",
  7173. "ref/netstandard1.6/de/System.Linq.xml",
  7174. "ref/netstandard1.6/es/System.Linq.xml",
  7175. "ref/netstandard1.6/fr/System.Linq.xml",
  7176. "ref/netstandard1.6/it/System.Linq.xml",
  7177. "ref/netstandard1.6/ja/System.Linq.xml",
  7178. "ref/netstandard1.6/ko/System.Linq.xml",
  7179. "ref/netstandard1.6/ru/System.Linq.xml",
  7180. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  7181. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  7182. "ref/portable-net45+win8+wp8+wpa81/_._",
  7183. "ref/win8/_._",
  7184. "ref/wp80/_._",
  7185. "ref/wpa81/_._",
  7186. "ref/xamarinios10/_._",
  7187. "ref/xamarinmac20/_._",
  7188. "ref/xamarintvos10/_._",
  7189. "ref/xamarinwatchos10/_._"
  7190. ]
  7191. },
  7192. "System.Linq.Expressions/4.3.0": {
  7193. "sha512": "/J2T2wXiXRBhO910kRJl3dGU/AvUrsNpVJCfsC5YuVjiRve1JmyUntYScnN2yWb9YOXTscdYbZiI2jtgowslIg==",
  7194. "type": "package",
  7195. "path": "System.Linq.Expressions/4.3.0",
  7196. "files": [
  7197. "System.Linq.Expressions.4.3.0.nupkg.sha512",
  7198. "System.Linq.Expressions.nuspec",
  7199. "ThirdPartyNotices.txt",
  7200. "dotnet_library_license.txt",
  7201. "lib/MonoAndroid10/_._",
  7202. "lib/MonoTouch10/_._",
  7203. "lib/net45/_._",
  7204. "lib/net463/System.Linq.Expressions.dll",
  7205. "lib/netcore50/System.Linq.Expressions.dll",
  7206. "lib/netstandard1.6/System.Linq.Expressions.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/net463/System.Linq.Expressions.dll",
  7219. "ref/netcore50/System.Linq.Expressions.dll",
  7220. "ref/netcore50/System.Linq.Expressions.xml",
  7221. "ref/netcore50/de/System.Linq.Expressions.xml",
  7222. "ref/netcore50/es/System.Linq.Expressions.xml",
  7223. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7224. "ref/netcore50/it/System.Linq.Expressions.xml",
  7225. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7226. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7227. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7228. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7229. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7230. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7231. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7232. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7233. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7234. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7235. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7236. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7237. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7238. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7239. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7240. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7241. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7242. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7243. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7244. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7245. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7246. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7247. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7248. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7249. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7250. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7251. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7252. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7253. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7254. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7255. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7256. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7257. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7258. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7259. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7260. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7261. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7262. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7263. "ref/portable-net45+win8+wp8+wpa81/_._",
  7264. "ref/win8/_._",
  7265. "ref/wp80/_._",
  7266. "ref/wpa81/_._",
  7267. "ref/xamarinios10/_._",
  7268. "ref/xamarinmac20/_._",
  7269. "ref/xamarintvos10/_._",
  7270. "ref/xamarinwatchos10/_._",
  7271. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
  7272. ]
  7273. },
  7274. "System.Linq.Parallel/4.0.1": {
  7275. "sha512": "cze1FtznS4SLU9kbYyJjuy9mhKPbLCqc9OMqAEIDQjkqNZgsRDGfBx1kKjP7Xsk+UXdAfUDTk4Dl9HrIyMExew==",
  7276. "type": "package",
  7277. "path": "System.Linq.Parallel/4.0.1",
  7278. "files": [
  7279. "System.Linq.Parallel.4.0.1.nupkg.sha512",
  7280. "System.Linq.Parallel.nuspec",
  7281. "ThirdPartyNotices.txt",
  7282. "dotnet_library_license.txt",
  7283. "lib/MonoAndroid10/_._",
  7284. "lib/MonoTouch10/_._",
  7285. "lib/net45/_._",
  7286. "lib/netcore50/System.Linq.Parallel.dll",
  7287. "lib/netstandard1.3/System.Linq.Parallel.dll",
  7288. "lib/portable-net45+win8+wpa81/_._",
  7289. "lib/win8/_._",
  7290. "lib/wpa81/_._",
  7291. "lib/xamarinios10/_._",
  7292. "lib/xamarinmac20/_._",
  7293. "lib/xamarintvos10/_._",
  7294. "lib/xamarinwatchos10/_._",
  7295. "ref/MonoAndroid10/_._",
  7296. "ref/MonoTouch10/_._",
  7297. "ref/net45/_._",
  7298. "ref/netcore50/System.Linq.Parallel.dll",
  7299. "ref/netcore50/System.Linq.Parallel.xml",
  7300. "ref/netcore50/de/System.Linq.Parallel.xml",
  7301. "ref/netcore50/es/System.Linq.Parallel.xml",
  7302. "ref/netcore50/fr/System.Linq.Parallel.xml",
  7303. "ref/netcore50/it/System.Linq.Parallel.xml",
  7304. "ref/netcore50/ja/System.Linq.Parallel.xml",
  7305. "ref/netcore50/ko/System.Linq.Parallel.xml",
  7306. "ref/netcore50/ru/System.Linq.Parallel.xml",
  7307. "ref/netcore50/zh-hans/System.Linq.Parallel.xml",
  7308. "ref/netcore50/zh-hant/System.Linq.Parallel.xml",
  7309. "ref/netstandard1.1/System.Linq.Parallel.dll",
  7310. "ref/netstandard1.1/System.Linq.Parallel.xml",
  7311. "ref/netstandard1.1/de/System.Linq.Parallel.xml",
  7312. "ref/netstandard1.1/es/System.Linq.Parallel.xml",
  7313. "ref/netstandard1.1/fr/System.Linq.Parallel.xml",
  7314. "ref/netstandard1.1/it/System.Linq.Parallel.xml",
  7315. "ref/netstandard1.1/ja/System.Linq.Parallel.xml",
  7316. "ref/netstandard1.1/ko/System.Linq.Parallel.xml",
  7317. "ref/netstandard1.1/ru/System.Linq.Parallel.xml",
  7318. "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml",
  7319. "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml",
  7320. "ref/portable-net45+win8+wpa81/_._",
  7321. "ref/win8/_._",
  7322. "ref/wpa81/_._",
  7323. "ref/xamarinios10/_._",
  7324. "ref/xamarinmac20/_._",
  7325. "ref/xamarintvos10/_._",
  7326. "ref/xamarinwatchos10/_._"
  7327. ]
  7328. },
  7329. "System.Linq.Queryable/4.3.0": {
  7330. "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
  7331. "type": "package",
  7332. "path": "System.Linq.Queryable/4.3.0",
  7333. "files": [
  7334. "System.Linq.Queryable.4.3.0.nupkg.sha512",
  7335. "System.Linq.Queryable.nuspec",
  7336. "ThirdPartyNotices.txt",
  7337. "dotnet_library_license.txt",
  7338. "lib/monoandroid10/_._",
  7339. "lib/monotouch10/_._",
  7340. "lib/net45/_._",
  7341. "lib/netcore50/System.Linq.Queryable.dll",
  7342. "lib/netstandard1.3/System.Linq.Queryable.dll",
  7343. "lib/portable-net45+win8+wp8+wpa81/_._",
  7344. "lib/win8/_._",
  7345. "lib/wp80/_._",
  7346. "lib/wpa81/_._",
  7347. "lib/xamarinios10/_._",
  7348. "lib/xamarinmac20/_._",
  7349. "lib/xamarintvos10/_._",
  7350. "lib/xamarinwatchos10/_._",
  7351. "ref/monoandroid10/_._",
  7352. "ref/monotouch10/_._",
  7353. "ref/net45/_._",
  7354. "ref/netcore50/System.Linq.Queryable.dll",
  7355. "ref/netcore50/System.Linq.Queryable.xml",
  7356. "ref/netcore50/de/System.Linq.Queryable.xml",
  7357. "ref/netcore50/es/System.Linq.Queryable.xml",
  7358. "ref/netcore50/fr/System.Linq.Queryable.xml",
  7359. "ref/netcore50/it/System.Linq.Queryable.xml",
  7360. "ref/netcore50/ja/System.Linq.Queryable.xml",
  7361. "ref/netcore50/ko/System.Linq.Queryable.xml",
  7362. "ref/netcore50/ru/System.Linq.Queryable.xml",
  7363. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  7364. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  7365. "ref/netstandard1.0/System.Linq.Queryable.dll",
  7366. "ref/netstandard1.0/System.Linq.Queryable.xml",
  7367. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  7368. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  7369. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  7370. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  7371. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  7372. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  7373. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  7374. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  7375. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  7376. "ref/portable-net45+win8+wp8+wpa81/_._",
  7377. "ref/win8/_._",
  7378. "ref/wp80/_._",
  7379. "ref/wpa81/_._",
  7380. "ref/xamarinios10/_._",
  7381. "ref/xamarinmac20/_._",
  7382. "ref/xamarintvos10/_._",
  7383. "ref/xamarinwatchos10/_._"
  7384. ]
  7385. },
  7386. "System.Net.Http/4.3.0": {
  7387. "sha512": "lL9E2a0Z5O+QodbZAAn2HYkSKKPJT6S7+O+qV7jasC7J3zaiXRjv4C7uk61+SwEjAt5ybpmsO1lqStXR4T0Cbg==",
  7388. "type": "package",
  7389. "path": "System.Net.Http/4.3.0",
  7390. "files": [
  7391. "System.Net.Http.4.3.0.nupkg.sha512",
  7392. "System.Net.Http.nuspec",
  7393. "ThirdPartyNotices.txt",
  7394. "dotnet_library_license.txt",
  7395. "lib/Xamarinmac20/_._",
  7396. "lib/monoandroid10/_._",
  7397. "lib/monotouch10/_._",
  7398. "lib/net45/_._",
  7399. "lib/net46/System.Net.Http.dll",
  7400. "lib/portable-net45+win8+wpa81/_._",
  7401. "lib/win8/_._",
  7402. "lib/wpa81/_._",
  7403. "lib/xamarinios10/_._",
  7404. "lib/xamarintvos10/_._",
  7405. "lib/xamarinwatchos10/_._",
  7406. "ref/Xamarinmac20/_._",
  7407. "ref/monoandroid10/_._",
  7408. "ref/monotouch10/_._",
  7409. "ref/net45/_._",
  7410. "ref/net46/System.Net.Http.dll",
  7411. "ref/net46/System.Net.Http.xml",
  7412. "ref/net46/de/System.Net.Http.xml",
  7413. "ref/net46/es/System.Net.Http.xml",
  7414. "ref/net46/fr/System.Net.Http.xml",
  7415. "ref/net46/it/System.Net.Http.xml",
  7416. "ref/net46/ja/System.Net.Http.xml",
  7417. "ref/net46/ko/System.Net.Http.xml",
  7418. "ref/net46/ru/System.Net.Http.xml",
  7419. "ref/net46/zh-hans/System.Net.Http.xml",
  7420. "ref/net46/zh-hant/System.Net.Http.xml",
  7421. "ref/netcore50/System.Net.Http.dll",
  7422. "ref/netcore50/System.Net.Http.xml",
  7423. "ref/netcore50/de/System.Net.Http.xml",
  7424. "ref/netcore50/es/System.Net.Http.xml",
  7425. "ref/netcore50/fr/System.Net.Http.xml",
  7426. "ref/netcore50/it/System.Net.Http.xml",
  7427. "ref/netcore50/ja/System.Net.Http.xml",
  7428. "ref/netcore50/ko/System.Net.Http.xml",
  7429. "ref/netcore50/ru/System.Net.Http.xml",
  7430. "ref/netcore50/zh-hans/System.Net.Http.xml",
  7431. "ref/netcore50/zh-hant/System.Net.Http.xml",
  7432. "ref/netstandard1.1/System.Net.Http.dll",
  7433. "ref/netstandard1.1/System.Net.Http.xml",
  7434. "ref/netstandard1.1/de/System.Net.Http.xml",
  7435. "ref/netstandard1.1/es/System.Net.Http.xml",
  7436. "ref/netstandard1.1/fr/System.Net.Http.xml",
  7437. "ref/netstandard1.1/it/System.Net.Http.xml",
  7438. "ref/netstandard1.1/ja/System.Net.Http.xml",
  7439. "ref/netstandard1.1/ko/System.Net.Http.xml",
  7440. "ref/netstandard1.1/ru/System.Net.Http.xml",
  7441. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  7442. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  7443. "ref/netstandard1.3/System.Net.Http.dll",
  7444. "ref/netstandard1.3/System.Net.Http.xml",
  7445. "ref/netstandard1.3/de/System.Net.Http.xml",
  7446. "ref/netstandard1.3/es/System.Net.Http.xml",
  7447. "ref/netstandard1.3/fr/System.Net.Http.xml",
  7448. "ref/netstandard1.3/it/System.Net.Http.xml",
  7449. "ref/netstandard1.3/ja/System.Net.Http.xml",
  7450. "ref/netstandard1.3/ko/System.Net.Http.xml",
  7451. "ref/netstandard1.3/ru/System.Net.Http.xml",
  7452. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  7453. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  7454. "ref/portable-net45+win8+wpa81/_._",
  7455. "ref/win8/_._",
  7456. "ref/wpa81/_._",
  7457. "ref/xamarinios10/_._",
  7458. "ref/xamarintvos10/_._",
  7459. "ref/xamarinwatchos10/_._",
  7460. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7461. "runtimes/win/lib/net46/System.Net.Http.dll",
  7462. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7463. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
  7464. ]
  7465. },
  7466. "System.Net.NameResolution/4.0.0": {
  7467. "sha512": "OThG4wPbLixNd2++hNQH7dg36eJbvHTHOn2OUr9uXsq67kMIHeURNBmVEIPKxA7MWvBYTqHbMv18igLyXMtTdQ==",
  7468. "type": "package",
  7469. "path": "System.Net.NameResolution/4.0.0",
  7470. "files": [
  7471. "System.Net.NameResolution.4.0.0.nupkg.sha512",
  7472. "System.Net.NameResolution.nuspec",
  7473. "ThirdPartyNotices.txt",
  7474. "dotnet_library_license.txt",
  7475. "lib/MonoAndroid10/_._",
  7476. "lib/MonoTouch10/_._",
  7477. "lib/net46/System.Net.NameResolution.dll",
  7478. "lib/xamarinios10/_._",
  7479. "lib/xamarinmac20/_._",
  7480. "lib/xamarintvos10/_._",
  7481. "lib/xamarinwatchos10/_._",
  7482. "ref/MonoAndroid10/_._",
  7483. "ref/MonoTouch10/_._",
  7484. "ref/net46/System.Net.NameResolution.dll",
  7485. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7486. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7487. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7488. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7489. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7490. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7491. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7492. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7493. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7494. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7495. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7496. "ref/xamarinios10/_._",
  7497. "ref/xamarinmac20/_._",
  7498. "ref/xamarintvos10/_._",
  7499. "ref/xamarinwatchos10/_._",
  7500. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7501. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7502. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7503. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
  7504. ]
  7505. },
  7506. "System.Net.NetworkInformation/4.1.0": {
  7507. "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
  7508. "type": "package",
  7509. "path": "System.Net.NetworkInformation/4.1.0",
  7510. "files": [
  7511. "System.Net.NetworkInformation.4.1.0.nupkg.sha512",
  7512. "System.Net.NetworkInformation.nuspec",
  7513. "ThirdPartyNotices.txt",
  7514. "dotnet_library_license.txt",
  7515. "lib/MonoAndroid10/_._",
  7516. "lib/MonoTouch10/_._",
  7517. "lib/net45/_._",
  7518. "lib/net46/System.Net.NetworkInformation.dll",
  7519. "lib/portable-net45+win8+wp8+wpa81/_._",
  7520. "lib/win8/_._",
  7521. "lib/wp80/_._",
  7522. "lib/wpa81/_._",
  7523. "lib/xamarinios10/_._",
  7524. "lib/xamarinmac20/_._",
  7525. "lib/xamarintvos10/_._",
  7526. "lib/xamarinwatchos10/_._",
  7527. "ref/MonoAndroid10/_._",
  7528. "ref/MonoTouch10/_._",
  7529. "ref/net45/_._",
  7530. "ref/net46/System.Net.NetworkInformation.dll",
  7531. "ref/netcore50/System.Net.NetworkInformation.dll",
  7532. "ref/netcore50/System.Net.NetworkInformation.xml",
  7533. "ref/netcore50/de/System.Net.NetworkInformation.xml",
  7534. "ref/netcore50/es/System.Net.NetworkInformation.xml",
  7535. "ref/netcore50/fr/System.Net.NetworkInformation.xml",
  7536. "ref/netcore50/it/System.Net.NetworkInformation.xml",
  7537. "ref/netcore50/ja/System.Net.NetworkInformation.xml",
  7538. "ref/netcore50/ko/System.Net.NetworkInformation.xml",
  7539. "ref/netcore50/ru/System.Net.NetworkInformation.xml",
  7540. "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml",
  7541. "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml",
  7542. "ref/netstandard1.0/System.Net.NetworkInformation.dll",
  7543. "ref/netstandard1.0/System.Net.NetworkInformation.xml",
  7544. "ref/netstandard1.0/de/System.Net.NetworkInformation.xml",
  7545. "ref/netstandard1.0/es/System.Net.NetworkInformation.xml",
  7546. "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml",
  7547. "ref/netstandard1.0/it/System.Net.NetworkInformation.xml",
  7548. "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml",
  7549. "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml",
  7550. "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml",
  7551. "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml",
  7552. "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml",
  7553. "ref/netstandard1.3/System.Net.NetworkInformation.dll",
  7554. "ref/netstandard1.3/System.Net.NetworkInformation.xml",
  7555. "ref/netstandard1.3/de/System.Net.NetworkInformation.xml",
  7556. "ref/netstandard1.3/es/System.Net.NetworkInformation.xml",
  7557. "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml",
  7558. "ref/netstandard1.3/it/System.Net.NetworkInformation.xml",
  7559. "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml",
  7560. "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml",
  7561. "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml",
  7562. "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml",
  7563. "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml",
  7564. "ref/portable-net45+win8+wp8+wpa81/_._",
  7565. "ref/win8/_._",
  7566. "ref/wp80/_._",
  7567. "ref/wpa81/_._",
  7568. "ref/xamarinios10/_._",
  7569. "ref/xamarinmac20/_._",
  7570. "ref/xamarintvos10/_._",
  7571. "ref/xamarinwatchos10/_._",
  7572. "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll",
  7573. "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll",
  7574. "runtimes/win/lib/net46/System.Net.NetworkInformation.dll",
  7575. "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll",
  7576. "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll"
  7577. ]
  7578. },
  7579. "System.Net.Primitives/4.3.0": {
  7580. "sha512": "/F1CygaK7ssyNozh2IJpyKST7J3zhQF69S04a++b8mS35XY7UOiDdgFdSI78pJMxR8r89VfnszrfDeU1ICUgiQ==",
  7581. "type": "package",
  7582. "path": "System.Net.Primitives/4.3.0",
  7583. "files": [
  7584. "System.Net.Primitives.4.3.0.nupkg.sha512",
  7585. "System.Net.Primitives.nuspec",
  7586. "ThirdPartyNotices.txt",
  7587. "dotnet_library_license.txt",
  7588. "lib/MonoAndroid10/_._",
  7589. "lib/MonoTouch10/_._",
  7590. "lib/net45/_._",
  7591. "lib/portable-net45+win8+wp8+wpa81/_._",
  7592. "lib/win8/_._",
  7593. "lib/wp80/_._",
  7594. "lib/wpa81/_._",
  7595. "lib/xamarinios10/_._",
  7596. "lib/xamarinmac20/_._",
  7597. "lib/xamarintvos10/_._",
  7598. "lib/xamarinwatchos10/_._",
  7599. "ref/MonoAndroid10/_._",
  7600. "ref/MonoTouch10/_._",
  7601. "ref/net45/_._",
  7602. "ref/netcore50/System.Net.Primitives.dll",
  7603. "ref/netcore50/System.Net.Primitives.xml",
  7604. "ref/netcore50/de/System.Net.Primitives.xml",
  7605. "ref/netcore50/es/System.Net.Primitives.xml",
  7606. "ref/netcore50/fr/System.Net.Primitives.xml",
  7607. "ref/netcore50/it/System.Net.Primitives.xml",
  7608. "ref/netcore50/ja/System.Net.Primitives.xml",
  7609. "ref/netcore50/ko/System.Net.Primitives.xml",
  7610. "ref/netcore50/ru/System.Net.Primitives.xml",
  7611. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7612. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7613. "ref/netstandard1.0/System.Net.Primitives.dll",
  7614. "ref/netstandard1.0/System.Net.Primitives.xml",
  7615. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7616. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7617. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7618. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7619. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7620. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7621. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7622. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7623. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7624. "ref/netstandard1.1/System.Net.Primitives.dll",
  7625. "ref/netstandard1.1/System.Net.Primitives.xml",
  7626. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7627. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7628. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7629. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7630. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7631. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7632. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7633. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7634. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7635. "ref/netstandard1.3/System.Net.Primitives.dll",
  7636. "ref/netstandard1.3/System.Net.Primitives.xml",
  7637. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7638. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7639. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7640. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7641. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7642. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7643. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7644. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7645. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7646. "ref/portable-net45+win8+wp8+wpa81/_._",
  7647. "ref/win8/_._",
  7648. "ref/wp80/_._",
  7649. "ref/wpa81/_._",
  7650. "ref/xamarinios10/_._",
  7651. "ref/xamarinmac20/_._",
  7652. "ref/xamarintvos10/_._",
  7653. "ref/xamarinwatchos10/_._"
  7654. ]
  7655. },
  7656. "System.Net.Requests/4.0.11": {
  7657. "sha512": "MrvLsG/G/1UjIFIh9tFt2dO0k4V/CILA7yAv+lrIFmUtVdzBhF4ZG/sT/AaaGuchJJ16UEBBwP3ggPXlvVARcA==",
  7658. "type": "package",
  7659. "path": "System.Net.Requests/4.0.11",
  7660. "files": [
  7661. "System.Net.Requests.4.0.11.nupkg.sha512",
  7662. "System.Net.Requests.nuspec",
  7663. "ThirdPartyNotices.txt",
  7664. "dotnet_library_license.txt",
  7665. "lib/MonoAndroid10/_._",
  7666. "lib/MonoTouch10/_._",
  7667. "lib/net45/_._",
  7668. "lib/portable-net45+win8+wp8+wpa81/_._",
  7669. "lib/win8/_._",
  7670. "lib/wp80/_._",
  7671. "lib/wpa81/_._",
  7672. "lib/xamarinios10/_._",
  7673. "lib/xamarinmac20/_._",
  7674. "lib/xamarintvos10/_._",
  7675. "lib/xamarinwatchos10/_._",
  7676. "ref/MonoAndroid10/_._",
  7677. "ref/MonoTouch10/_._",
  7678. "ref/net45/_._",
  7679. "ref/net46/_._",
  7680. "ref/netcore50/System.Net.Requests.dll",
  7681. "ref/netcore50/System.Net.Requests.xml",
  7682. "ref/netcore50/de/System.Net.Requests.xml",
  7683. "ref/netcore50/es/System.Net.Requests.xml",
  7684. "ref/netcore50/fr/System.Net.Requests.xml",
  7685. "ref/netcore50/it/System.Net.Requests.xml",
  7686. "ref/netcore50/ja/System.Net.Requests.xml",
  7687. "ref/netcore50/ko/System.Net.Requests.xml",
  7688. "ref/netcore50/ru/System.Net.Requests.xml",
  7689. "ref/netcore50/zh-hans/System.Net.Requests.xml",
  7690. "ref/netcore50/zh-hant/System.Net.Requests.xml",
  7691. "ref/netstandard1.0/System.Net.Requests.dll",
  7692. "ref/netstandard1.0/System.Net.Requests.xml",
  7693. "ref/netstandard1.0/de/System.Net.Requests.xml",
  7694. "ref/netstandard1.0/es/System.Net.Requests.xml",
  7695. "ref/netstandard1.0/fr/System.Net.Requests.xml",
  7696. "ref/netstandard1.0/it/System.Net.Requests.xml",
  7697. "ref/netstandard1.0/ja/System.Net.Requests.xml",
  7698. "ref/netstandard1.0/ko/System.Net.Requests.xml",
  7699. "ref/netstandard1.0/ru/System.Net.Requests.xml",
  7700. "ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
  7701. "ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
  7702. "ref/netstandard1.1/System.Net.Requests.dll",
  7703. "ref/netstandard1.1/System.Net.Requests.xml",
  7704. "ref/netstandard1.1/de/System.Net.Requests.xml",
  7705. "ref/netstandard1.1/es/System.Net.Requests.xml",
  7706. "ref/netstandard1.1/fr/System.Net.Requests.xml",
  7707. "ref/netstandard1.1/it/System.Net.Requests.xml",
  7708. "ref/netstandard1.1/ja/System.Net.Requests.xml",
  7709. "ref/netstandard1.1/ko/System.Net.Requests.xml",
  7710. "ref/netstandard1.1/ru/System.Net.Requests.xml",
  7711. "ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
  7712. "ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
  7713. "ref/netstandard1.3/System.Net.Requests.dll",
  7714. "ref/netstandard1.3/System.Net.Requests.xml",
  7715. "ref/netstandard1.3/de/System.Net.Requests.xml",
  7716. "ref/netstandard1.3/es/System.Net.Requests.xml",
  7717. "ref/netstandard1.3/fr/System.Net.Requests.xml",
  7718. "ref/netstandard1.3/it/System.Net.Requests.xml",
  7719. "ref/netstandard1.3/ja/System.Net.Requests.xml",
  7720. "ref/netstandard1.3/ko/System.Net.Requests.xml",
  7721. "ref/netstandard1.3/ru/System.Net.Requests.xml",
  7722. "ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
  7723. "ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
  7724. "ref/portable-net45+win8+wp8+wpa81/_._",
  7725. "ref/win8/_._",
  7726. "ref/wp80/_._",
  7727. "ref/wpa81/_._",
  7728. "ref/xamarinios10/_._",
  7729. "ref/xamarinmac20/_._",
  7730. "ref/xamarintvos10/_._",
  7731. "ref/xamarinwatchos10/_._",
  7732. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
  7733. "runtimes/win/lib/net46/_._",
  7734. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
  7735. ]
  7736. },
  7737. "System.Net.Security/4.0.0": {
  7738. "sha512": "VDAJz83kg0UpbDI8dx97T8lpATcoowky6BYvVYqKAyWUeZ8dDS/SOUi8PciD4bYrnDEmpJpCxOZgxX2/VO+QxQ==",
  7739. "type": "package",
  7740. "path": "System.Net.Security/4.0.0",
  7741. "files": [
  7742. "System.Net.Security.4.0.0.nupkg.sha512",
  7743. "System.Net.Security.nuspec",
  7744. "ThirdPartyNotices.txt",
  7745. "dotnet_library_license.txt",
  7746. "lib/MonoAndroid10/_._",
  7747. "lib/MonoTouch10/_._",
  7748. "lib/net46/System.Net.Security.dll",
  7749. "lib/xamarinios10/_._",
  7750. "lib/xamarinmac20/_._",
  7751. "lib/xamarintvos10/_._",
  7752. "lib/xamarinwatchos10/_._",
  7753. "ref/MonoAndroid10/_._",
  7754. "ref/MonoTouch10/_._",
  7755. "ref/net46/System.Net.Security.dll",
  7756. "ref/netstandard1.3/System.Net.Security.dll",
  7757. "ref/netstandard1.3/System.Net.Security.xml",
  7758. "ref/netstandard1.3/de/System.Net.Security.xml",
  7759. "ref/netstandard1.3/es/System.Net.Security.xml",
  7760. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7761. "ref/netstandard1.3/it/System.Net.Security.xml",
  7762. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7763. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7764. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7765. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7766. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7767. "ref/xamarinios10/_._",
  7768. "ref/xamarinmac20/_._",
  7769. "ref/xamarintvos10/_._",
  7770. "ref/xamarinwatchos10/_._",
  7771. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7772. "runtimes/win/lib/net46/System.Net.Security.dll",
  7773. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7774. "runtimes/win7/lib/netcore50/_._"
  7775. ]
  7776. },
  7777. "System.Net.Sockets/4.3.0": {
  7778. "sha512": "KtqIgQ1TFnwpL/0fbB9pYZg3NzcOfTsC0GCx1a+w3MLkNCcyRs/F/UjunKzRDp5L9zWsKV822IyNuukxjgGuww==",
  7779. "type": "package",
  7780. "path": "System.Net.Sockets/4.3.0",
  7781. "files": [
  7782. "System.Net.Sockets.4.3.0.nupkg.sha512",
  7783. "System.Net.Sockets.nuspec",
  7784. "ThirdPartyNotices.txt",
  7785. "dotnet_library_license.txt",
  7786. "lib/MonoAndroid10/_._",
  7787. "lib/MonoTouch10/_._",
  7788. "lib/net46/System.Net.Sockets.dll",
  7789. "lib/xamarinios10/_._",
  7790. "lib/xamarinmac20/_._",
  7791. "lib/xamarintvos10/_._",
  7792. "lib/xamarinwatchos10/_._",
  7793. "ref/MonoAndroid10/_._",
  7794. "ref/MonoTouch10/_._",
  7795. "ref/net46/System.Net.Sockets.dll",
  7796. "ref/netstandard1.3/System.Net.Sockets.dll",
  7797. "ref/netstandard1.3/System.Net.Sockets.xml",
  7798. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7799. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7800. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7801. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7802. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7803. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7804. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7805. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7806. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7807. "ref/xamarinios10/_._",
  7808. "ref/xamarinmac20/_._",
  7809. "ref/xamarintvos10/_._",
  7810. "ref/xamarinwatchos10/_._"
  7811. ]
  7812. },
  7813. "System.Net.WebHeaderCollection/4.0.1": {
  7814. "sha512": "1wzUZ5bS+Tt2nbj75+BxWiTFgrcigDQHfWWoXJzz1LdvPCwkgkbbi+tqojxWnGy17Sm7t57zQLdWMVNvqU+OMw==",
  7815. "type": "package",
  7816. "path": "System.Net.WebHeaderCollection/4.0.1",
  7817. "files": [
  7818. "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
  7819. "System.Net.WebHeaderCollection.nuspec",
  7820. "ThirdPartyNotices.txt",
  7821. "dotnet_library_license.txt",
  7822. "lib/MonoAndroid10/_._",
  7823. "lib/MonoTouch10/_._",
  7824. "lib/net46/_._",
  7825. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7826. "lib/xamarinios10/_._",
  7827. "lib/xamarinmac20/_._",
  7828. "lib/xamarintvos10/_._",
  7829. "lib/xamarinwatchos10/_._",
  7830. "ref/MonoAndroid10/_._",
  7831. "ref/MonoTouch10/_._",
  7832. "ref/net46/_._",
  7833. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7834. "ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
  7835. "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
  7836. "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
  7837. "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
  7838. "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
  7839. "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
  7840. "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
  7841. "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
  7842. "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
  7843. "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
  7844. "ref/xamarinios10/_._",
  7845. "ref/xamarinmac20/_._",
  7846. "ref/xamarintvos10/_._",
  7847. "ref/xamarinwatchos10/_._"
  7848. ]
  7849. },
  7850. "System.Net.WebSockets/4.3.0": {
  7851. "sha512": "B4lrKZVGE6lp1OKhkIk+Nyapq0hM6x61WHB2pwa70E1BPl67raIynuUWH6usxdVye4T7Tp4o7yA20po03mNbhA==",
  7852. "type": "package",
  7853. "path": "System.Net.WebSockets/4.3.0",
  7854. "files": [
  7855. "System.Net.WebSockets.4.3.0.nupkg.sha512",
  7856. "System.Net.WebSockets.nuspec",
  7857. "ThirdPartyNotices.txt",
  7858. "dotnet_library_license.txt",
  7859. "lib/MonoAndroid10/_._",
  7860. "lib/MonoTouch10/_._",
  7861. "lib/net46/System.Net.WebSockets.dll",
  7862. "lib/netstandard1.3/System.Net.WebSockets.dll",
  7863. "lib/xamarinios10/_._",
  7864. "lib/xamarinmac20/_._",
  7865. "lib/xamarintvos10/_._",
  7866. "lib/xamarinwatchos10/_._",
  7867. "ref/MonoAndroid10/_._",
  7868. "ref/MonoTouch10/_._",
  7869. "ref/net46/System.Net.WebSockets.dll",
  7870. "ref/netstandard1.3/System.Net.WebSockets.dll",
  7871. "ref/netstandard1.3/System.Net.WebSockets.xml",
  7872. "ref/netstandard1.3/de/System.Net.WebSockets.xml",
  7873. "ref/netstandard1.3/es/System.Net.WebSockets.xml",
  7874. "ref/netstandard1.3/fr/System.Net.WebSockets.xml",
  7875. "ref/netstandard1.3/it/System.Net.WebSockets.xml",
  7876. "ref/netstandard1.3/ja/System.Net.WebSockets.xml",
  7877. "ref/netstandard1.3/ko/System.Net.WebSockets.xml",
  7878. "ref/netstandard1.3/ru/System.Net.WebSockets.xml",
  7879. "ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml",
  7880. "ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml",
  7881. "ref/xamarinios10/_._",
  7882. "ref/xamarinmac20/_._",
  7883. "ref/xamarintvos10/_._",
  7884. "ref/xamarinwatchos10/_._"
  7885. ]
  7886. },
  7887. "System.Numerics.Vectors/4.1.1": {
  7888. "sha512": "lwrxnXsh0D6LMkShlrOit+NPn+BwEFn+q7Ul00BgIlDHQ3iWRQYY/aNV11PsIEWgreHV06wiN83G/fWp4n58CA==",
  7889. "type": "package",
  7890. "path": "System.Numerics.Vectors/4.1.1",
  7891. "files": [
  7892. "System.Numerics.Vectors.4.1.1.nupkg.sha512",
  7893. "System.Numerics.Vectors.nuspec",
  7894. "ThirdPartyNotices.txt",
  7895. "dotnet_library_license.txt",
  7896. "lib/MonoAndroid10/_._",
  7897. "lib/MonoTouch10/_._",
  7898. "lib/net46/System.Numerics.Vectors.dll",
  7899. "lib/net46/System.Numerics.Vectors.xml",
  7900. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  7901. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  7902. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  7903. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  7904. "lib/xamarinios10/_._",
  7905. "lib/xamarinmac20/_._",
  7906. "lib/xamarintvos10/_._",
  7907. "lib/xamarinwatchos10/_._",
  7908. "ref/MonoAndroid10/_._",
  7909. "ref/MonoTouch10/_._",
  7910. "ref/net46/System.Numerics.Vectors.dll",
  7911. "ref/net46/System.Numerics.Vectors.xml",
  7912. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  7913. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  7914. "ref/xamarinios10/_._",
  7915. "ref/xamarinmac20/_._",
  7916. "ref/xamarintvos10/_._",
  7917. "ref/xamarinwatchos10/_._"
  7918. ]
  7919. },
  7920. "System.ObjectModel/4.3.0": {
  7921. "sha512": "04rvkI2O4vQW06QHRKPOlMMjLwKPyHpFjOgSq3YtQqzoVy8lzaC/CtbhHJzb6E2/0hP6gMCxFz0cOvTOUoLa2g==",
  7922. "type": "package",
  7923. "path": "System.ObjectModel/4.3.0",
  7924. "files": [
  7925. "System.ObjectModel.4.3.0.nupkg.sha512",
  7926. "System.ObjectModel.nuspec",
  7927. "ThirdPartyNotices.txt",
  7928. "dotnet_library_license.txt",
  7929. "lib/MonoAndroid10/_._",
  7930. "lib/MonoTouch10/_._",
  7931. "lib/net45/_._",
  7932. "lib/netcore50/System.ObjectModel.dll",
  7933. "lib/netstandard1.3/System.ObjectModel.dll",
  7934. "lib/portable-net45+win8+wp8+wpa81/_._",
  7935. "lib/win8/_._",
  7936. "lib/wp80/_._",
  7937. "lib/wpa81/_._",
  7938. "lib/xamarinios10/_._",
  7939. "lib/xamarinmac20/_._",
  7940. "lib/xamarintvos10/_._",
  7941. "lib/xamarinwatchos10/_._",
  7942. "ref/MonoAndroid10/_._",
  7943. "ref/MonoTouch10/_._",
  7944. "ref/net45/_._",
  7945. "ref/netcore50/System.ObjectModel.dll",
  7946. "ref/netcore50/System.ObjectModel.xml",
  7947. "ref/netcore50/de/System.ObjectModel.xml",
  7948. "ref/netcore50/es/System.ObjectModel.xml",
  7949. "ref/netcore50/fr/System.ObjectModel.xml",
  7950. "ref/netcore50/it/System.ObjectModel.xml",
  7951. "ref/netcore50/ja/System.ObjectModel.xml",
  7952. "ref/netcore50/ko/System.ObjectModel.xml",
  7953. "ref/netcore50/ru/System.ObjectModel.xml",
  7954. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7955. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7956. "ref/netstandard1.0/System.ObjectModel.dll",
  7957. "ref/netstandard1.0/System.ObjectModel.xml",
  7958. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7959. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7960. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7961. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7962. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7963. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7964. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7965. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7966. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7967. "ref/netstandard1.3/System.ObjectModel.dll",
  7968. "ref/netstandard1.3/System.ObjectModel.xml",
  7969. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7970. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7971. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7972. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7973. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7974. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7975. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7976. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7977. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7978. "ref/portable-net45+win8+wp8+wpa81/_._",
  7979. "ref/win8/_._",
  7980. "ref/wp80/_._",
  7981. "ref/wpa81/_._",
  7982. "ref/xamarinios10/_._",
  7983. "ref/xamarinmac20/_._",
  7984. "ref/xamarintvos10/_._",
  7985. "ref/xamarinwatchos10/_._"
  7986. ]
  7987. },
  7988. "System.Reflection/4.3.0": {
  7989. "sha512": "rIm0+BBrDLfCzhbIrVlqqrYxjqUS1/KIV0HLsVG2cN5PGGOyVTpnged4vC2YL5yHnPaqKJgqhU5Sk+2RnEbmfw==",
  7990. "type": "package",
  7991. "path": "System.Reflection/4.3.0",
  7992. "files": [
  7993. "System.Reflection.4.3.0.nupkg.sha512",
  7994. "System.Reflection.nuspec",
  7995. "ThirdPartyNotices.txt",
  7996. "dotnet_library_license.txt",
  7997. "lib/MonoAndroid10/_._",
  7998. "lib/MonoTouch10/_._",
  7999. "lib/net45/_._",
  8000. "lib/net462/System.Reflection.dll",
  8001. "lib/portable-net45+win8+wp8+wpa81/_._",
  8002. "lib/win8/_._",
  8003. "lib/wp80/_._",
  8004. "lib/wpa81/_._",
  8005. "lib/xamarinios10/_._",
  8006. "lib/xamarinmac20/_._",
  8007. "lib/xamarintvos10/_._",
  8008. "lib/xamarinwatchos10/_._",
  8009. "ref/MonoAndroid10/_._",
  8010. "ref/MonoTouch10/_._",
  8011. "ref/net45/_._",
  8012. "ref/net462/System.Reflection.dll",
  8013. "ref/netcore50/System.Reflection.dll",
  8014. "ref/netcore50/System.Reflection.xml",
  8015. "ref/netcore50/de/System.Reflection.xml",
  8016. "ref/netcore50/es/System.Reflection.xml",
  8017. "ref/netcore50/fr/System.Reflection.xml",
  8018. "ref/netcore50/it/System.Reflection.xml",
  8019. "ref/netcore50/ja/System.Reflection.xml",
  8020. "ref/netcore50/ko/System.Reflection.xml",
  8021. "ref/netcore50/ru/System.Reflection.xml",
  8022. "ref/netcore50/zh-hans/System.Reflection.xml",
  8023. "ref/netcore50/zh-hant/System.Reflection.xml",
  8024. "ref/netstandard1.0/System.Reflection.dll",
  8025. "ref/netstandard1.0/System.Reflection.xml",
  8026. "ref/netstandard1.0/de/System.Reflection.xml",
  8027. "ref/netstandard1.0/es/System.Reflection.xml",
  8028. "ref/netstandard1.0/fr/System.Reflection.xml",
  8029. "ref/netstandard1.0/it/System.Reflection.xml",
  8030. "ref/netstandard1.0/ja/System.Reflection.xml",
  8031. "ref/netstandard1.0/ko/System.Reflection.xml",
  8032. "ref/netstandard1.0/ru/System.Reflection.xml",
  8033. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  8034. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  8035. "ref/netstandard1.3/System.Reflection.dll",
  8036. "ref/netstandard1.3/System.Reflection.xml",
  8037. "ref/netstandard1.3/de/System.Reflection.xml",
  8038. "ref/netstandard1.3/es/System.Reflection.xml",
  8039. "ref/netstandard1.3/fr/System.Reflection.xml",
  8040. "ref/netstandard1.3/it/System.Reflection.xml",
  8041. "ref/netstandard1.3/ja/System.Reflection.xml",
  8042. "ref/netstandard1.3/ko/System.Reflection.xml",
  8043. "ref/netstandard1.3/ru/System.Reflection.xml",
  8044. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  8045. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  8046. "ref/netstandard1.5/System.Reflection.dll",
  8047. "ref/netstandard1.5/System.Reflection.xml",
  8048. "ref/netstandard1.5/de/System.Reflection.xml",
  8049. "ref/netstandard1.5/es/System.Reflection.xml",
  8050. "ref/netstandard1.5/fr/System.Reflection.xml",
  8051. "ref/netstandard1.5/it/System.Reflection.xml",
  8052. "ref/netstandard1.5/ja/System.Reflection.xml",
  8053. "ref/netstandard1.5/ko/System.Reflection.xml",
  8054. "ref/netstandard1.5/ru/System.Reflection.xml",
  8055. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  8056. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  8057. "ref/portable-net45+win8+wp8+wpa81/_._",
  8058. "ref/win8/_._",
  8059. "ref/wp80/_._",
  8060. "ref/wpa81/_._",
  8061. "ref/xamarinios10/_._",
  8062. "ref/xamarinmac20/_._",
  8063. "ref/xamarintvos10/_._",
  8064. "ref/xamarinwatchos10/_._"
  8065. ]
  8066. },
  8067. "System.Reflection.DispatchProxy/4.0.1": {
  8068. "sha512": "SsEK/GSCyMWk4CvftyexYZjKKPE+9HjrlKo7F9AqErUffgqDQh60sm90C4YLA8xfq90ymJL/veXl/OewOQ/Hyw==",
  8069. "type": "package",
  8070. "path": "System.Reflection.DispatchProxy/4.0.1",
  8071. "files": [
  8072. "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
  8073. "System.Reflection.DispatchProxy.nuspec",
  8074. "ThirdPartyNotices.txt",
  8075. "dotnet_library_license.txt",
  8076. "lib/MonoAndroid10/_._",
  8077. "lib/MonoTouch10/_._",
  8078. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  8079. "lib/xamarinios10/_._",
  8080. "lib/xamarinmac20/_._",
  8081. "lib/xamarintvos10/_._",
  8082. "lib/xamarinwatchos10/_._",
  8083. "ref/MonoAndroid10/_._",
  8084. "ref/MonoTouch10/_._",
  8085. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  8086. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  8087. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  8088. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  8089. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  8090. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  8091. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  8092. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  8093. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  8094. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  8095. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  8096. "ref/xamarinios10/_._",
  8097. "ref/xamarinmac20/_._",
  8098. "ref/xamarintvos10/_._",
  8099. "ref/xamarinwatchos10/_._",
  8100. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
  8101. ]
  8102. },
  8103. "System.Reflection.Emit/4.3.0": {
  8104. "sha512": "y0LBLyMUaxkALaxB8vhoIDC3kxRW8ASkL7cK86kbN2CpauEWE+SPGUbca2inK+HMPImkN9ut74l4DSnB30ozFQ==",
  8105. "type": "package",
  8106. "path": "System.Reflection.Emit/4.3.0",
  8107. "files": [
  8108. "System.Reflection.Emit.4.3.0.nupkg.sha512",
  8109. "System.Reflection.Emit.nuspec",
  8110. "ThirdPartyNotices.txt",
  8111. "dotnet_library_license.txt",
  8112. "lib/MonoAndroid10/_._",
  8113. "lib/monotouch10/_._",
  8114. "lib/net45/_._",
  8115. "lib/netcore50/System.Reflection.Emit.dll",
  8116. "lib/netstandard1.3/System.Reflection.Emit.dll",
  8117. "lib/xamarinios10/_._",
  8118. "lib/xamarinmac20/_._",
  8119. "lib/xamarintvos10/_._",
  8120. "lib/xamarinwatchos10/_._",
  8121. "ref/MonoAndroid10/_._",
  8122. "ref/net45/_._",
  8123. "ref/netstandard1.1/System.Reflection.Emit.dll",
  8124. "ref/netstandard1.1/System.Reflection.Emit.xml",
  8125. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  8126. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  8127. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  8128. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  8129. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  8130. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  8131. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  8132. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  8133. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  8134. "ref/xamarinmac20/_._"
  8135. ]
  8136. },
  8137. "System.Reflection.Emit.ILGeneration/4.3.0": {
  8138. "sha512": "gESuD3AAQLwwD3up3lCmH0vi0sPq2E4Zi7nx4hUkuqSXm7dF4kuQqrWkKgrT2F+HHG9oxf1p/t1s+VC2jKcFmQ==",
  8139. "type": "package",
  8140. "path": "System.Reflection.Emit.ILGeneration/4.3.0",
  8141. "files": [
  8142. "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
  8143. "System.Reflection.Emit.ILGeneration.nuspec",
  8144. "ThirdPartyNotices.txt",
  8145. "dotnet_library_license.txt",
  8146. "lib/MonoAndroid10/_._",
  8147. "lib/MonoTouch10/_._",
  8148. "lib/net45/_._",
  8149. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  8150. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  8151. "lib/portable-net45+wp8/_._",
  8152. "lib/wp80/_._",
  8153. "lib/xamarinios10/_._",
  8154. "lib/xamarinmac20/_._",
  8155. "lib/xamarintvos10/_._",
  8156. "lib/xamarinwatchos10/_._",
  8157. "ref/MonoAndroid10/_._",
  8158. "ref/MonoTouch10/_._",
  8159. "ref/net45/_._",
  8160. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  8161. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  8162. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  8163. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  8164. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  8165. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  8166. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  8167. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  8168. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  8169. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  8170. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  8171. "ref/portable-net45+wp8/_._",
  8172. "ref/wp80/_._",
  8173. "ref/xamarinios10/_._",
  8174. "ref/xamarinmac20/_._",
  8175. "ref/xamarintvos10/_._",
  8176. "ref/xamarinwatchos10/_._",
  8177. "runtimes/aot/lib/netcore50/_._"
  8178. ]
  8179. },
  8180. "System.Reflection.Emit.Lightweight/4.3.0": {
  8181. "sha512": "17M3uPACyrdLG/RZoY6irUI6WhLXPL8AnTUt6og3/ko3kgAwxe8jFT6m9mAQ44qVElUlBhqLb9G+iDp54GyrNg==",
  8182. "type": "package",
  8183. "path": "System.Reflection.Emit.Lightweight/4.3.0",
  8184. "files": [
  8185. "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
  8186. "System.Reflection.Emit.Lightweight.nuspec",
  8187. "ThirdPartyNotices.txt",
  8188. "dotnet_library_license.txt",
  8189. "lib/MonoAndroid10/_._",
  8190. "lib/MonoTouch10/_._",
  8191. "lib/net45/_._",
  8192. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8193. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8194. "lib/portable-net45+wp8/_._",
  8195. "lib/wp80/_._",
  8196. "lib/xamarinios10/_._",
  8197. "lib/xamarinmac20/_._",
  8198. "lib/xamarintvos10/_._",
  8199. "lib/xamarinwatchos10/_._",
  8200. "ref/MonoAndroid10/_._",
  8201. "ref/MonoTouch10/_._",
  8202. "ref/net45/_._",
  8203. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8204. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8205. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8206. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8207. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8208. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8209. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8210. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8211. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8212. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8213. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8214. "ref/portable-net45+wp8/_._",
  8215. "ref/wp80/_._",
  8216. "ref/xamarinios10/_._",
  8217. "ref/xamarinmac20/_._",
  8218. "ref/xamarintvos10/_._",
  8219. "ref/xamarinwatchos10/_._",
  8220. "runtimes/aot/lib/netcore50/_._"
  8221. ]
  8222. },
  8223. "System.Reflection.Extensions/4.3.0": {
  8224. "sha512": "TmoUwQELjPHz4mM5iiCbsqlh7pGvmbD+9zkXWQLlVR7xJaBb+KX/j41nXyX4iTqs7JEdojvT3kt/u7ZCW2TjbA==",
  8225. "type": "package",
  8226. "path": "System.Reflection.Extensions/4.3.0",
  8227. "files": [
  8228. "System.Reflection.Extensions.4.3.0.nupkg.sha512",
  8229. "System.Reflection.Extensions.nuspec",
  8230. "ThirdPartyNotices.txt",
  8231. "dotnet_library_license.txt",
  8232. "lib/MonoAndroid10/_._",
  8233. "lib/MonoTouch10/_._",
  8234. "lib/net45/_._",
  8235. "lib/portable-net45+win8+wp8+wpa81/_._",
  8236. "lib/win8/_._",
  8237. "lib/wp80/_._",
  8238. "lib/wpa81/_._",
  8239. "lib/xamarinios10/_._",
  8240. "lib/xamarinmac20/_._",
  8241. "lib/xamarintvos10/_._",
  8242. "lib/xamarinwatchos10/_._",
  8243. "ref/MonoAndroid10/_._",
  8244. "ref/MonoTouch10/_._",
  8245. "ref/net45/_._",
  8246. "ref/netcore50/System.Reflection.Extensions.dll",
  8247. "ref/netcore50/System.Reflection.Extensions.xml",
  8248. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8249. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8250. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8251. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8252. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8253. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8254. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8255. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8256. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8257. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8258. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8259. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8260. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8261. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8262. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8263. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8264. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8265. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8266. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8267. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8268. "ref/portable-net45+win8+wp8+wpa81/_._",
  8269. "ref/win8/_._",
  8270. "ref/wp80/_._",
  8271. "ref/wpa81/_._",
  8272. "ref/xamarinios10/_._",
  8273. "ref/xamarinmac20/_._",
  8274. "ref/xamarintvos10/_._",
  8275. "ref/xamarinwatchos10/_._"
  8276. ]
  8277. },
  8278. "System.Reflection.Metadata/1.3.0": {
  8279. "sha512": "F/bOSVnz+UaCELtSm4tlrWNwUTRSMfxIxmQZNZM/SY144LXkaGWuc4WAtr/jQHbiWl7UEAHlJU7P59Rw72A1xA==",
  8280. "type": "package",
  8281. "path": "System.Reflection.Metadata/1.3.0",
  8282. "files": [
  8283. "System.Reflection.Metadata.1.3.0.nupkg.sha512",
  8284. "System.Reflection.Metadata.nuspec",
  8285. "ThirdPartyNotices.txt",
  8286. "dotnet_library_license.txt",
  8287. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  8288. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  8289. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  8290. "lib/portable-net45+win8/System.Reflection.Metadata.xml"
  8291. ]
  8292. },
  8293. "System.Reflection.Primitives/4.3.0": {
  8294. "sha512": "nOjHLSGyMAcNd4KHC6+VQguBjVfSJ/GiGfofmVRvctMB/nZPFuc1ttpa7VUf2Jjae44fOQFgr1omhbKOGykaQA==",
  8295. "type": "package",
  8296. "path": "System.Reflection.Primitives/4.3.0",
  8297. "files": [
  8298. "System.Reflection.Primitives.4.3.0.nupkg.sha512",
  8299. "System.Reflection.Primitives.nuspec",
  8300. "ThirdPartyNotices.txt",
  8301. "dotnet_library_license.txt",
  8302. "lib/MonoAndroid10/_._",
  8303. "lib/MonoTouch10/_._",
  8304. "lib/net45/_._",
  8305. "lib/portable-net45+win8+wp8+wpa81/_._",
  8306. "lib/win8/_._",
  8307. "lib/wp80/_._",
  8308. "lib/wpa81/_._",
  8309. "lib/xamarinios10/_._",
  8310. "lib/xamarinmac20/_._",
  8311. "lib/xamarintvos10/_._",
  8312. "lib/xamarinwatchos10/_._",
  8313. "ref/MonoAndroid10/_._",
  8314. "ref/MonoTouch10/_._",
  8315. "ref/net45/_._",
  8316. "ref/netcore50/System.Reflection.Primitives.dll",
  8317. "ref/netcore50/System.Reflection.Primitives.xml",
  8318. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8319. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8320. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8321. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8322. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8323. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8324. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8325. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8326. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8327. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8328. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8329. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8330. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8331. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8332. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8333. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8334. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8335. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8336. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8337. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8338. "ref/portable-net45+win8+wp8+wpa81/_._",
  8339. "ref/win8/_._",
  8340. "ref/wp80/_._",
  8341. "ref/wpa81/_._",
  8342. "ref/xamarinios10/_._",
  8343. "ref/xamarinmac20/_._",
  8344. "ref/xamarintvos10/_._",
  8345. "ref/xamarinwatchos10/_._"
  8346. ]
  8347. },
  8348. "System.Reflection.TypeExtensions/4.3.0": {
  8349. "sha512": "mBE8znhdqUyHut5iu/mvMPzh0QWkWimCvddJso+6nqOmbte4XHEY1nzDw9uUW52F6NrueuD2lgx6aY+IY+l2pA==",
  8350. "type": "package",
  8351. "path": "System.Reflection.TypeExtensions/4.3.0",
  8352. "files": [
  8353. "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
  8354. "System.Reflection.TypeExtensions.nuspec",
  8355. "ThirdPartyNotices.txt",
  8356. "dotnet_library_license.txt",
  8357. "lib/MonoAndroid10/_._",
  8358. "lib/MonoTouch10/_._",
  8359. "lib/net46/System.Reflection.TypeExtensions.dll",
  8360. "lib/net462/System.Reflection.TypeExtensions.dll",
  8361. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8362. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8363. "lib/xamarinios10/_._",
  8364. "lib/xamarinmac20/_._",
  8365. "lib/xamarintvos10/_._",
  8366. "lib/xamarinwatchos10/_._",
  8367. "ref/MonoAndroid10/_._",
  8368. "ref/MonoTouch10/_._",
  8369. "ref/net46/System.Reflection.TypeExtensions.dll",
  8370. "ref/net462/System.Reflection.TypeExtensions.dll",
  8371. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8372. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8373. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8374. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8375. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8376. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8377. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8378. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8379. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8380. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8381. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8382. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8383. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8384. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8385. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8386. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8387. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8388. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8389. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8390. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8391. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8392. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8393. "ref/xamarinios10/_._",
  8394. "ref/xamarinmac20/_._",
  8395. "ref/xamarintvos10/_._",
  8396. "ref/xamarinwatchos10/_._",
  8397. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
  8398. ]
  8399. },
  8400. "System.Resources.Reader/4.0.0": {
  8401. "sha512": "o6eCc+whqNhmx4z3e858gXBS6XGbGtQxvcdfJq1l8xO0Ze2riQ01dsE1BkeoDyuo3goQOPhaXiXh11BXMOxsGg==",
  8402. "type": "package",
  8403. "path": "System.Resources.Reader/4.0.0",
  8404. "files": [
  8405. "System.Resources.Reader.4.0.0.nupkg.sha512",
  8406. "System.Resources.Reader.nuspec",
  8407. "ThirdPartyNotices.txt",
  8408. "dotnet_library_license.txt",
  8409. "lib/netstandard1.0/System.Resources.Reader.dll"
  8410. ]
  8411. },
  8412. "System.Resources.ResourceManager/4.3.0": {
  8413. "sha512": "R8JNBwxjGxZCaEPmMDCPXGS7nBjqBc3IZStpfGu1HfZVIvT0i52z9hnH2krhYUYRRt9ZVxSxdkIuDsw5ECd+Ow==",
  8414. "type": "package",
  8415. "path": "System.Resources.ResourceManager/4.3.0",
  8416. "files": [
  8417. "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
  8418. "System.Resources.ResourceManager.nuspec",
  8419. "ThirdPartyNotices.txt",
  8420. "dotnet_library_license.txt",
  8421. "lib/MonoAndroid10/_._",
  8422. "lib/MonoTouch10/_._",
  8423. "lib/net45/_._",
  8424. "lib/portable-net45+win8+wp8+wpa81/_._",
  8425. "lib/win8/_._",
  8426. "lib/wp80/_._",
  8427. "lib/wpa81/_._",
  8428. "lib/xamarinios10/_._",
  8429. "lib/xamarinmac20/_._",
  8430. "lib/xamarintvos10/_._",
  8431. "lib/xamarinwatchos10/_._",
  8432. "ref/MonoAndroid10/_._",
  8433. "ref/MonoTouch10/_._",
  8434. "ref/net45/_._",
  8435. "ref/netcore50/System.Resources.ResourceManager.dll",
  8436. "ref/netcore50/System.Resources.ResourceManager.xml",
  8437. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8438. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8439. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8440. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8441. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8442. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8443. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8444. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8445. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8446. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8447. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8448. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8449. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8450. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8451. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8452. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8453. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8454. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8455. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8456. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8457. "ref/portable-net45+win8+wp8+wpa81/_._",
  8458. "ref/win8/_._",
  8459. "ref/wp80/_._",
  8460. "ref/wpa81/_._",
  8461. "ref/xamarinios10/_._",
  8462. "ref/xamarinmac20/_._",
  8463. "ref/xamarintvos10/_._",
  8464. "ref/xamarinwatchos10/_._"
  8465. ]
  8466. },
  8467. "System.Runtime/4.3.0": {
  8468. "sha512": "GInOqt4B5f1RrcK10DwaNUZff0zDSZ2/wcHKA3SLTpwKEMZ6RT0NG4OYfT/y6rwvZ2PnJgT6U/lfzkX2wDlH4A==",
  8469. "type": "package",
  8470. "path": "System.Runtime/4.3.0",
  8471. "files": [
  8472. "System.Runtime.4.3.0.nupkg.sha512",
  8473. "System.Runtime.nuspec",
  8474. "ThirdPartyNotices.txt",
  8475. "dotnet_library_license.txt",
  8476. "lib/MonoAndroid10/_._",
  8477. "lib/MonoTouch10/_._",
  8478. "lib/net45/_._",
  8479. "lib/net462/System.Runtime.dll",
  8480. "lib/portable-net45+win8+wp80+wpa81/_._",
  8481. "lib/win8/_._",
  8482. "lib/wp80/_._",
  8483. "lib/wpa81/_._",
  8484. "lib/xamarinios10/_._",
  8485. "lib/xamarinmac20/_._",
  8486. "lib/xamarintvos10/_._",
  8487. "lib/xamarinwatchos10/_._",
  8488. "ref/MonoAndroid10/_._",
  8489. "ref/MonoTouch10/_._",
  8490. "ref/net45/_._",
  8491. "ref/net462/System.Runtime.dll",
  8492. "ref/netcore50/System.Runtime.dll",
  8493. "ref/netcore50/System.Runtime.xml",
  8494. "ref/netcore50/de/System.Runtime.xml",
  8495. "ref/netcore50/es/System.Runtime.xml",
  8496. "ref/netcore50/fr/System.Runtime.xml",
  8497. "ref/netcore50/it/System.Runtime.xml",
  8498. "ref/netcore50/ja/System.Runtime.xml",
  8499. "ref/netcore50/ko/System.Runtime.xml",
  8500. "ref/netcore50/ru/System.Runtime.xml",
  8501. "ref/netcore50/zh-hans/System.Runtime.xml",
  8502. "ref/netcore50/zh-hant/System.Runtime.xml",
  8503. "ref/netstandard1.0/System.Runtime.dll",
  8504. "ref/netstandard1.0/System.Runtime.xml",
  8505. "ref/netstandard1.0/de/System.Runtime.xml",
  8506. "ref/netstandard1.0/es/System.Runtime.xml",
  8507. "ref/netstandard1.0/fr/System.Runtime.xml",
  8508. "ref/netstandard1.0/it/System.Runtime.xml",
  8509. "ref/netstandard1.0/ja/System.Runtime.xml",
  8510. "ref/netstandard1.0/ko/System.Runtime.xml",
  8511. "ref/netstandard1.0/ru/System.Runtime.xml",
  8512. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8513. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8514. "ref/netstandard1.2/System.Runtime.dll",
  8515. "ref/netstandard1.2/System.Runtime.xml",
  8516. "ref/netstandard1.2/de/System.Runtime.xml",
  8517. "ref/netstandard1.2/es/System.Runtime.xml",
  8518. "ref/netstandard1.2/fr/System.Runtime.xml",
  8519. "ref/netstandard1.2/it/System.Runtime.xml",
  8520. "ref/netstandard1.2/ja/System.Runtime.xml",
  8521. "ref/netstandard1.2/ko/System.Runtime.xml",
  8522. "ref/netstandard1.2/ru/System.Runtime.xml",
  8523. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8524. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8525. "ref/netstandard1.3/System.Runtime.dll",
  8526. "ref/netstandard1.3/System.Runtime.xml",
  8527. "ref/netstandard1.3/de/System.Runtime.xml",
  8528. "ref/netstandard1.3/es/System.Runtime.xml",
  8529. "ref/netstandard1.3/fr/System.Runtime.xml",
  8530. "ref/netstandard1.3/it/System.Runtime.xml",
  8531. "ref/netstandard1.3/ja/System.Runtime.xml",
  8532. "ref/netstandard1.3/ko/System.Runtime.xml",
  8533. "ref/netstandard1.3/ru/System.Runtime.xml",
  8534. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8535. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8536. "ref/netstandard1.5/System.Runtime.dll",
  8537. "ref/netstandard1.5/System.Runtime.xml",
  8538. "ref/netstandard1.5/de/System.Runtime.xml",
  8539. "ref/netstandard1.5/es/System.Runtime.xml",
  8540. "ref/netstandard1.5/fr/System.Runtime.xml",
  8541. "ref/netstandard1.5/it/System.Runtime.xml",
  8542. "ref/netstandard1.5/ja/System.Runtime.xml",
  8543. "ref/netstandard1.5/ko/System.Runtime.xml",
  8544. "ref/netstandard1.5/ru/System.Runtime.xml",
  8545. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8546. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8547. "ref/portable-net45+win8+wp80+wpa81/_._",
  8548. "ref/win8/_._",
  8549. "ref/wp80/_._",
  8550. "ref/wpa81/_._",
  8551. "ref/xamarinios10/_._",
  8552. "ref/xamarinmac20/_._",
  8553. "ref/xamarintvos10/_._",
  8554. "ref/xamarinwatchos10/_._"
  8555. ]
  8556. },
  8557. "System.Runtime.CompilerServices.Unsafe/4.3.0": {
  8558. "sha512": "xhacsojOHYwPbRPNwT1bqhaXp1p4eMuctUXrOwL25kHrs3HIT6MK5EzazfbshWDKv5d3je6Dha9zChGhPMNjTA==",
  8559. "type": "package",
  8560. "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
  8561. "files": [
  8562. "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
  8563. "System.Runtime.CompilerServices.Unsafe.nuspec",
  8564. "ThirdPartyNotices.txt",
  8565. "dotnet_library_license.txt",
  8566. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8567. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
  8568. ]
  8569. },
  8570. "System.Runtime.Extensions/4.3.0": {
  8571. "sha512": "N8FTfVQk8FkB/VM8jwi/m5L/i6VOilcNjRLGO99MobplmUqy8nhh8Wnfy2nM3jwOdSXjcA2ypZ9hoZl4bOI9QQ==",
  8572. "type": "package",
  8573. "path": "System.Runtime.Extensions/4.3.0",
  8574. "files": [
  8575. "System.Runtime.Extensions.4.3.0.nupkg.sha512",
  8576. "System.Runtime.Extensions.nuspec",
  8577. "ThirdPartyNotices.txt",
  8578. "dotnet_library_license.txt",
  8579. "lib/MonoAndroid10/_._",
  8580. "lib/MonoTouch10/_._",
  8581. "lib/net45/_._",
  8582. "lib/net462/System.Runtime.Extensions.dll",
  8583. "lib/portable-net45+win8+wp8+wpa81/_._",
  8584. "lib/win8/_._",
  8585. "lib/wp80/_._",
  8586. "lib/wpa81/_._",
  8587. "lib/xamarinios10/_._",
  8588. "lib/xamarinmac20/_._",
  8589. "lib/xamarintvos10/_._",
  8590. "lib/xamarinwatchos10/_._",
  8591. "ref/MonoAndroid10/_._",
  8592. "ref/MonoTouch10/_._",
  8593. "ref/net45/_._",
  8594. "ref/net462/System.Runtime.Extensions.dll",
  8595. "ref/netcore50/System.Runtime.Extensions.dll",
  8596. "ref/netcore50/System.Runtime.Extensions.xml",
  8597. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8598. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8599. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8600. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8601. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8602. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8603. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8604. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8605. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8606. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8607. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8608. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8609. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8610. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8611. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8612. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8613. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8614. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8615. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8616. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8617. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8618. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8619. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8620. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8621. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8622. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8623. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8624. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8625. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8626. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8627. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8628. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8629. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8630. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8631. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8632. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8633. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8634. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8635. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8636. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8637. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8638. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8639. "ref/portable-net45+win8+wp8+wpa81/_._",
  8640. "ref/win8/_._",
  8641. "ref/wp80/_._",
  8642. "ref/wpa81/_._",
  8643. "ref/xamarinios10/_._",
  8644. "ref/xamarinmac20/_._",
  8645. "ref/xamarintvos10/_._",
  8646. "ref/xamarinwatchos10/_._"
  8647. ]
  8648. },
  8649. "System.Runtime.Handles/4.3.0": {
  8650. "sha512": "fGofPWaMaMt5S3smhLR2EIjTlpqjkVuc+5kuNaus0VcZrYNXTvjBwzgu5GXhOS59q5zUs8l2dtE2jzVzIlQCSg==",
  8651. "type": "package",
  8652. "path": "System.Runtime.Handles/4.3.0",
  8653. "files": [
  8654. "System.Runtime.Handles.4.3.0.nupkg.sha512",
  8655. "System.Runtime.Handles.nuspec",
  8656. "ThirdPartyNotices.txt",
  8657. "dotnet_library_license.txt",
  8658. "lib/MonoAndroid10/_._",
  8659. "lib/MonoTouch10/_._",
  8660. "lib/net46/_._",
  8661. "lib/xamarinios10/_._",
  8662. "lib/xamarinmac20/_._",
  8663. "lib/xamarintvos10/_._",
  8664. "lib/xamarinwatchos10/_._",
  8665. "ref/MonoAndroid10/_._",
  8666. "ref/MonoTouch10/_._",
  8667. "ref/net46/_._",
  8668. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8669. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8670. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8671. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8672. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8673. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8674. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8675. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8676. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8677. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8678. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8679. "ref/xamarinios10/_._",
  8680. "ref/xamarinmac20/_._",
  8681. "ref/xamarintvos10/_._",
  8682. "ref/xamarinwatchos10/_._"
  8683. ]
  8684. },
  8685. "System.Runtime.InteropServices/4.3.0": {
  8686. "sha512": "X0kW7e0Wq6inWIDDZhy0JfBAUHiJ+Z99LWLae54MUIMgby0pZuEaXziAd9dPsLOids04ft9ksIkLZrmDBHWHtA==",
  8687. "type": "package",
  8688. "path": "System.Runtime.InteropServices/4.3.0",
  8689. "files": [
  8690. "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
  8691. "System.Runtime.InteropServices.nuspec",
  8692. "ThirdPartyNotices.txt",
  8693. "dotnet_library_license.txt",
  8694. "lib/MonoAndroid10/_._",
  8695. "lib/MonoTouch10/_._",
  8696. "lib/net45/_._",
  8697. "lib/net462/System.Runtime.InteropServices.dll",
  8698. "lib/net463/System.Runtime.InteropServices.dll",
  8699. "lib/portable-net45+win8+wpa81/_._",
  8700. "lib/win8/_._",
  8701. "lib/wpa81/_._",
  8702. "lib/xamarinios10/_._",
  8703. "lib/xamarinmac20/_._",
  8704. "lib/xamarintvos10/_._",
  8705. "lib/xamarinwatchos10/_._",
  8706. "ref/MonoAndroid10/_._",
  8707. "ref/MonoTouch10/_._",
  8708. "ref/net45/_._",
  8709. "ref/net462/System.Runtime.InteropServices.dll",
  8710. "ref/net463/System.Runtime.InteropServices.dll",
  8711. "ref/netcore50/System.Runtime.InteropServices.dll",
  8712. "ref/netcore50/System.Runtime.InteropServices.xml",
  8713. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8714. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8715. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8716. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8717. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8718. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8719. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8720. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8721. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8722. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8723. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8724. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8725. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8726. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8727. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8728. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8729. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8730. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8731. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8732. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8733. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8734. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8735. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8736. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8737. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8738. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8739. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8740. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8741. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8742. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8743. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8744. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8745. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8746. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8747. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8748. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8749. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8750. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8751. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8752. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8753. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8754. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8755. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8756. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8757. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8758. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8759. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8760. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8761. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8762. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8763. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8764. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8765. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8766. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8767. "ref/portable-net45+win8+wpa81/_._",
  8768. "ref/win8/_._",
  8769. "ref/wpa81/_._",
  8770. "ref/xamarinios10/_._",
  8771. "ref/xamarinmac20/_._",
  8772. "ref/xamarintvos10/_._",
  8773. "ref/xamarinwatchos10/_._"
  8774. ]
  8775. },
  8776. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8777. "sha512": "eMlGhHMyby7s1jrGSus4vbAHQsigM6nmzenfJ9L/Lx42ZtvHMm69yWagPwVQ7vWEOcJoChHv93qMmvhrPNJ5jQ==",
  8778. "type": "package",
  8779. "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
  8780. "files": [
  8781. "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
  8782. "System.Runtime.InteropServices.RuntimeInformation.nuspec",
  8783. "ThirdPartyNotices.txt",
  8784. "dotnet_library_license.txt",
  8785. "lib/MonoAndroid10/_._",
  8786. "lib/MonoTouch10/_._",
  8787. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8788. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8789. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8790. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8791. "lib/xamarinios10/_._",
  8792. "lib/xamarinmac20/_._",
  8793. "lib/xamarintvos10/_._",
  8794. "lib/xamarinwatchos10/_._",
  8795. "ref/MonoAndroid10/_._",
  8796. "ref/MonoTouch10/_._",
  8797. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8798. "ref/xamarinios10/_._",
  8799. "ref/xamarinmac20/_._",
  8800. "ref/xamarintvos10/_._",
  8801. "ref/xamarinwatchos10/_._",
  8802. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8803. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8804. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8805. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8806. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
  8807. ]
  8808. },
  8809. "System.Runtime.Loader/4.0.0": {
  8810. "sha512": "zUIJ1HygfgipAQd0zhmICUYccHcnVt0SDOOTyPBkVjwnOfdBsVcSRLE1A+UhH45Nv4AixpifZfS5oKfYBy/TEg==",
  8811. "type": "package",
  8812. "path": "System.Runtime.Loader/4.0.0",
  8813. "files": [
  8814. "System.Runtime.Loader.4.0.0.nupkg.sha512",
  8815. "System.Runtime.Loader.nuspec",
  8816. "ThirdPartyNotices.txt",
  8817. "dotnet_library_license.txt",
  8818. "lib/net462/_._",
  8819. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8820. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8821. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8822. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8823. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8824. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8825. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8826. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8827. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8828. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8829. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8830. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
  8831. ]
  8832. },
  8833. "System.Runtime.Numerics/4.3.0": {
  8834. "sha512": "5Fjob3agW1SpK9eFQq/ovw2gOaxTm3q8U4FvuP6il8G6fp7W5RDHZ9uSBmYtgP3XvK/W5c2clKeeZr1wNH9Z6Q==",
  8835. "type": "package",
  8836. "path": "System.Runtime.Numerics/4.3.0",
  8837. "files": [
  8838. "System.Runtime.Numerics.4.3.0.nupkg.sha512",
  8839. "System.Runtime.Numerics.nuspec",
  8840. "ThirdPartyNotices.txt",
  8841. "dotnet_library_license.txt",
  8842. "lib/MonoAndroid10/_._",
  8843. "lib/MonoTouch10/_._",
  8844. "lib/net45/_._",
  8845. "lib/netcore50/System.Runtime.Numerics.dll",
  8846. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8847. "lib/portable-net45+win8+wpa81/_._",
  8848. "lib/win8/_._",
  8849. "lib/wpa81/_._",
  8850. "lib/xamarinios10/_._",
  8851. "lib/xamarinmac20/_._",
  8852. "lib/xamarintvos10/_._",
  8853. "lib/xamarinwatchos10/_._",
  8854. "ref/MonoAndroid10/_._",
  8855. "ref/MonoTouch10/_._",
  8856. "ref/net45/_._",
  8857. "ref/netcore50/System.Runtime.Numerics.dll",
  8858. "ref/netcore50/System.Runtime.Numerics.xml",
  8859. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8860. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8861. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8862. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8863. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8864. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8865. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8866. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8867. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8868. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8869. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8870. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8871. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8872. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8873. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8874. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8875. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8876. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8877. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8878. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8879. "ref/portable-net45+win8+wpa81/_._",
  8880. "ref/win8/_._",
  8881. "ref/wpa81/_._",
  8882. "ref/xamarinios10/_._",
  8883. "ref/xamarinmac20/_._",
  8884. "ref/xamarintvos10/_._",
  8885. "ref/xamarinwatchos10/_._"
  8886. ]
  8887. },
  8888. "System.Runtime.Serialization.Primitives/4.1.1": {
  8889. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  8890. "type": "package",
  8891. "path": "System.Runtime.Serialization.Primitives/4.1.1",
  8892. "files": [
  8893. "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
  8894. "System.Runtime.Serialization.Primitives.nuspec",
  8895. "ThirdPartyNotices.txt",
  8896. "dotnet_library_license.txt",
  8897. "lib/MonoAndroid10/_._",
  8898. "lib/MonoTouch10/_._",
  8899. "lib/net45/_._",
  8900. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8901. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8902. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8903. "lib/portable-net45+win8+wp8+wpa81/_._",
  8904. "lib/win8/_._",
  8905. "lib/wp80/_._",
  8906. "lib/wpa81/_._",
  8907. "lib/xamarinios10/_._",
  8908. "lib/xamarinmac20/_._",
  8909. "lib/xamarintvos10/_._",
  8910. "lib/xamarinwatchos10/_._",
  8911. "ref/MonoAndroid10/_._",
  8912. "ref/MonoTouch10/_._",
  8913. "ref/net45/_._",
  8914. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8915. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8916. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8917. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8918. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8919. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8920. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8921. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8922. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8923. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8924. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8925. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8926. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8927. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8928. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8929. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8930. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8931. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8932. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8933. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8934. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8935. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8936. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8937. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8938. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8939. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8940. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8941. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8942. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8943. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8944. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8945. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8946. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8947. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8948. "ref/portable-net45+win8+wp8+wpa81/_._",
  8949. "ref/win8/_._",
  8950. "ref/wp80/_._",
  8951. "ref/wpa81/_._",
  8952. "ref/xamarinios10/_._",
  8953. "ref/xamarinmac20/_._",
  8954. "ref/xamarintvos10/_._",
  8955. "ref/xamarinwatchos10/_._",
  8956. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
  8957. ]
  8958. },
  8959. "System.Security.Claims/4.3.0": {
  8960. "sha512": "BDVkWERVmVnPyN8sSb1YlY0vytaPaaPwLbNOF1cwP4wrCm9OY5z3UnOthja88Z99YrETiD4EFfOCYmDHE4AOOA==",
  8961. "type": "package",
  8962. "path": "System.Security.Claims/4.3.0",
  8963. "files": [
  8964. "System.Security.Claims.4.3.0.nupkg.sha512",
  8965. "System.Security.Claims.nuspec",
  8966. "ThirdPartyNotices.txt",
  8967. "dotnet_library_license.txt",
  8968. "lib/MonoAndroid10/_._",
  8969. "lib/MonoTouch10/_._",
  8970. "lib/net46/System.Security.Claims.dll",
  8971. "lib/netstandard1.3/System.Security.Claims.dll",
  8972. "lib/xamarinios10/_._",
  8973. "lib/xamarinmac20/_._",
  8974. "lib/xamarintvos10/_._",
  8975. "lib/xamarinwatchos10/_._",
  8976. "ref/MonoAndroid10/_._",
  8977. "ref/MonoTouch10/_._",
  8978. "ref/net46/System.Security.Claims.dll",
  8979. "ref/netstandard1.3/System.Security.Claims.dll",
  8980. "ref/netstandard1.3/System.Security.Claims.xml",
  8981. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8982. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8983. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8984. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8985. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8986. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8987. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8988. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8989. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8990. "ref/xamarinios10/_._",
  8991. "ref/xamarinmac20/_._",
  8992. "ref/xamarintvos10/_._",
  8993. "ref/xamarinwatchos10/_._"
  8994. ]
  8995. },
  8996. "System.Security.Cryptography.Algorithms/4.3.0": {
  8997. "sha512": "prGZyzFDK1I5VldOlfO0SQsCDsd8iDFTonCB2AAeYsl1GKp8Zmi2uXC/yMfnv70xWWDx/SjcCc+uJ5s8MnvlHQ==",
  8998. "type": "package",
  8999. "path": "System.Security.Cryptography.Algorithms/4.3.0",
  9000. "files": [
  9001. "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
  9002. "System.Security.Cryptography.Algorithms.nuspec",
  9003. "ThirdPartyNotices.txt",
  9004. "dotnet_library_license.txt",
  9005. "lib/MonoAndroid10/_._",
  9006. "lib/MonoTouch10/_._",
  9007. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  9008. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  9009. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  9010. "lib/xamarinios10/_._",
  9011. "lib/xamarinmac20/_._",
  9012. "lib/xamarintvos10/_._",
  9013. "lib/xamarinwatchos10/_._",
  9014. "ref/MonoAndroid10/_._",
  9015. "ref/MonoTouch10/_._",
  9016. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  9017. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  9018. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  9019. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  9020. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  9021. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9022. "ref/xamarinios10/_._",
  9023. "ref/xamarinmac20/_._",
  9024. "ref/xamarintvos10/_._",
  9025. "ref/xamarinwatchos10/_._",
  9026. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9027. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  9028. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  9029. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  9030. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  9031. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  9032. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
  9033. ]
  9034. },
  9035. "System.Security.Cryptography.Cng/4.3.0": {
  9036. "sha512": "blipAQpn9NAYtknm8Yhs9s6I12s0B0OPo3RAOGWxBQCjYMx8G72oNc3eNE9JQJgw/EV66kifIaF9oVLMxR8sQA==",
  9037. "type": "package",
  9038. "path": "System.Security.Cryptography.Cng/4.3.0",
  9039. "files": [
  9040. "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
  9041. "System.Security.Cryptography.Cng.nuspec",
  9042. "ThirdPartyNotices.txt",
  9043. "dotnet_library_license.txt",
  9044. "lib/net46/System.Security.Cryptography.Cng.dll",
  9045. "lib/net461/System.Security.Cryptography.Cng.dll",
  9046. "lib/net463/System.Security.Cryptography.Cng.dll",
  9047. "ref/net46/System.Security.Cryptography.Cng.dll",
  9048. "ref/net461/System.Security.Cryptography.Cng.dll",
  9049. "ref/net463/System.Security.Cryptography.Cng.dll",
  9050. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  9051. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9052. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9053. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  9054. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  9055. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  9056. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  9057. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  9058. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
  9059. ]
  9060. },
  9061. "System.Security.Cryptography.Csp/4.3.0": {
  9062. "sha512": "yO2k5o+Z+DiFRBvvB9vdRRAGHi6bm02M9OWXfCqQ8K0UxD3Woc3svQheZfb7PoTEFs0kGacO0IzzMWsb6Mkeow==",
  9063. "type": "package",
  9064. "path": "System.Security.Cryptography.Csp/4.3.0",
  9065. "files": [
  9066. "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
  9067. "System.Security.Cryptography.Csp.nuspec",
  9068. "ThirdPartyNotices.txt",
  9069. "dotnet_library_license.txt",
  9070. "lib/MonoAndroid10/_._",
  9071. "lib/MonoTouch10/_._",
  9072. "lib/net46/System.Security.Cryptography.Csp.dll",
  9073. "lib/xamarinios10/_._",
  9074. "lib/xamarinmac20/_._",
  9075. "lib/xamarintvos10/_._",
  9076. "lib/xamarinwatchos10/_._",
  9077. "ref/MonoAndroid10/_._",
  9078. "ref/MonoTouch10/_._",
  9079. "ref/net46/System.Security.Cryptography.Csp.dll",
  9080. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9081. "ref/xamarinios10/_._",
  9082. "ref/xamarinmac20/_._",
  9083. "ref/xamarintvos10/_._",
  9084. "ref/xamarinwatchos10/_._",
  9085. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  9086. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  9087. "runtimes/win/lib/netcore50/_._",
  9088. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
  9089. ]
  9090. },
  9091. "System.Security.Cryptography.Encoding/4.3.0": {
  9092. "sha512": "Lkf2ulpcKgt3Afd/IVRTpqN6QTz7tKWmDOnDj3pVp1fVK2EcH7Ma326DKHyyU2rvmh0YcwRoYEO95PS5bIeT+w==",
  9093. "type": "package",
  9094. "path": "System.Security.Cryptography.Encoding/4.3.0",
  9095. "files": [
  9096. "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
  9097. "System.Security.Cryptography.Encoding.nuspec",
  9098. "ThirdPartyNotices.txt",
  9099. "dotnet_library_license.txt",
  9100. "lib/MonoAndroid10/_._",
  9101. "lib/MonoTouch10/_._",
  9102. "lib/net46/System.Security.Cryptography.Encoding.dll",
  9103. "lib/xamarinios10/_._",
  9104. "lib/xamarinmac20/_._",
  9105. "lib/xamarintvos10/_._",
  9106. "lib/xamarinwatchos10/_._",
  9107. "ref/MonoAndroid10/_._",
  9108. "ref/MonoTouch10/_._",
  9109. "ref/net46/System.Security.Cryptography.Encoding.dll",
  9110. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9111. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  9112. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  9113. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  9114. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  9115. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  9116. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  9117. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  9118. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  9119. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  9120. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  9121. "ref/xamarinios10/_._",
  9122. "ref/xamarinmac20/_._",
  9123. "ref/xamarintvos10/_._",
  9124. "ref/xamarinwatchos10/_._",
  9125. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  9126. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  9127. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
  9128. ]
  9129. },
  9130. "System.Security.Cryptography.OpenSsl/4.3.0": {
  9131. "sha512": "vOYy7Jv9KsG3ld2hLt0GoERd82SZi4BelrbXLwI9yFBYX7kpbvUCWYo4eyevk47cuJXZ9ZLVAryANcc7iY71aA==",
  9132. "type": "package",
  9133. "path": "System.Security.Cryptography.OpenSsl/4.3.0",
  9134. "files": [
  9135. "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  9136. "System.Security.Cryptography.OpenSsl.nuspec",
  9137. "ThirdPartyNotices.txt",
  9138. "dotnet_library_license.txt",
  9139. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9140. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  9141. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
  9142. ]
  9143. },
  9144. "System.Security.Cryptography.Primitives/4.3.0": {
  9145. "sha512": "5sASQ/lka08PqSjlteeKYrpLf9tbtaFSVc3HgPCM4gbVXykM6rW7aZRaQQihKhvXLFE4mL/+NMtls3YwMc8srQ==",
  9146. "type": "package",
  9147. "path": "System.Security.Cryptography.Primitives/4.3.0",
  9148. "files": [
  9149. "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
  9150. "System.Security.Cryptography.Primitives.nuspec",
  9151. "ThirdPartyNotices.txt",
  9152. "dotnet_library_license.txt",
  9153. "lib/MonoAndroid10/_._",
  9154. "lib/MonoTouch10/_._",
  9155. "lib/net46/System.Security.Cryptography.Primitives.dll",
  9156. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9157. "lib/xamarinios10/_._",
  9158. "lib/xamarinmac20/_._",
  9159. "lib/xamarintvos10/_._",
  9160. "lib/xamarinwatchos10/_._",
  9161. "ref/MonoAndroid10/_._",
  9162. "ref/MonoTouch10/_._",
  9163. "ref/net46/System.Security.Cryptography.Primitives.dll",
  9164. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  9165. "ref/xamarinios10/_._",
  9166. "ref/xamarinmac20/_._",
  9167. "ref/xamarintvos10/_._",
  9168. "ref/xamarinwatchos10/_._"
  9169. ]
  9170. },
  9171. "System.Security.Cryptography.X509Certificates/4.3.0": {
  9172. "sha512": "F5wSRdv3QJe4Di/CL6AsW3CQkc0d7RLv8LOn2XubpvszI3zl239pnvGCM7YDS8S8UKtwDJByVXUfHQG/kW3zjQ==",
  9173. "type": "package",
  9174. "path": "System.Security.Cryptography.X509Certificates/4.3.0",
  9175. "files": [
  9176. "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
  9177. "System.Security.Cryptography.X509Certificates.nuspec",
  9178. "ThirdPartyNotices.txt",
  9179. "dotnet_library_license.txt",
  9180. "lib/MonoAndroid10/_._",
  9181. "lib/MonoTouch10/_._",
  9182. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9183. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9184. "lib/xamarinios10/_._",
  9185. "lib/xamarinmac20/_._",
  9186. "lib/xamarintvos10/_._",
  9187. "lib/xamarinwatchos10/_._",
  9188. "ref/MonoAndroid10/_._",
  9189. "ref/MonoTouch10/_._",
  9190. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9191. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9192. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9193. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9194. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9195. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9196. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9197. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9198. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9199. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9200. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9201. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9202. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9203. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9204. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9205. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9206. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9207. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9208. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9209. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9210. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9211. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9212. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9213. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9214. "ref/xamarinios10/_._",
  9215. "ref/xamarinmac20/_._",
  9216. "ref/xamarintvos10/_._",
  9217. "ref/xamarinwatchos10/_._",
  9218. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9219. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9220. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9221. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9222. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
  9223. ]
  9224. },
  9225. "System.Security.Principal/4.3.0": {
  9226. "sha512": "BMPnm8H2BmIxPAnACPKFXxkePsag2Wyto/qWZnvlSxBxAC9HNyx2Bp9+XNTg/HqfjG42ZrR4fXLZ/p9tbkrW8A==",
  9227. "type": "package",
  9228. "path": "System.Security.Principal/4.3.0",
  9229. "files": [
  9230. "System.Security.Principal.4.3.0.nupkg.sha512",
  9231. "System.Security.Principal.nuspec",
  9232. "ThirdPartyNotices.txt",
  9233. "dotnet_library_license.txt",
  9234. "lib/MonoAndroid10/_._",
  9235. "lib/MonoTouch10/_._",
  9236. "lib/net45/_._",
  9237. "lib/netcore50/System.Security.Principal.dll",
  9238. "lib/netstandard1.0/System.Security.Principal.dll",
  9239. "lib/portable-net45+win8+wp8+wpa81/_._",
  9240. "lib/win8/_._",
  9241. "lib/wp80/_._",
  9242. "lib/wpa81/_._",
  9243. "lib/xamarinios10/_._",
  9244. "lib/xamarinmac20/_._",
  9245. "lib/xamarintvos10/_._",
  9246. "lib/xamarinwatchos10/_._",
  9247. "ref/MonoAndroid10/_._",
  9248. "ref/MonoTouch10/_._",
  9249. "ref/net45/_._",
  9250. "ref/netcore50/System.Security.Principal.dll",
  9251. "ref/netcore50/System.Security.Principal.xml",
  9252. "ref/netcore50/de/System.Security.Principal.xml",
  9253. "ref/netcore50/es/System.Security.Principal.xml",
  9254. "ref/netcore50/fr/System.Security.Principal.xml",
  9255. "ref/netcore50/it/System.Security.Principal.xml",
  9256. "ref/netcore50/ja/System.Security.Principal.xml",
  9257. "ref/netcore50/ko/System.Security.Principal.xml",
  9258. "ref/netcore50/ru/System.Security.Principal.xml",
  9259. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9260. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9261. "ref/netstandard1.0/System.Security.Principal.dll",
  9262. "ref/netstandard1.0/System.Security.Principal.xml",
  9263. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9264. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9265. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9266. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9267. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9268. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9269. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9270. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9271. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9272. "ref/portable-net45+win8+wp8+wpa81/_._",
  9273. "ref/win8/_._",
  9274. "ref/wp80/_._",
  9275. "ref/wpa81/_._",
  9276. "ref/xamarinios10/_._",
  9277. "ref/xamarinmac20/_._",
  9278. "ref/xamarintvos10/_._",
  9279. "ref/xamarinwatchos10/_._"
  9280. ]
  9281. },
  9282. "System.Security.Principal.Windows/4.3.0": {
  9283. "sha512": "38zo3OMmOoR5twVinKjl7h+FljejIk8px70zq39GZ+RH2kKDDFNVK1YFDBSdOjqohNYslgidZuXoWLdB3e7hsw==",
  9284. "type": "package",
  9285. "path": "System.Security.Principal.Windows/4.3.0",
  9286. "files": [
  9287. "System.Security.Principal.Windows.4.3.0.nupkg.sha512",
  9288. "System.Security.Principal.Windows.nuspec",
  9289. "ThirdPartyNotices.txt",
  9290. "dotnet_library_license.txt",
  9291. "lib/net46/System.Security.Principal.Windows.dll",
  9292. "ref/net46/System.Security.Principal.Windows.dll",
  9293. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9294. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9295. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9296. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9297. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9298. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9299. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9300. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9301. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9302. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9303. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9304. "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9305. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9306. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
  9307. ]
  9308. },
  9309. "System.Text.Encoding/4.3.0": {
  9310. "sha512": "+iP02U89BqFB39pJ0wLsWT0lHFj5ccVv4+ruGvIdjl2FamD6qC07ngrw07tQF7PTVOmsuq5XN28Q+TRF5scLEQ==",
  9311. "type": "package",
  9312. "path": "System.Text.Encoding/4.3.0",
  9313. "files": [
  9314. "System.Text.Encoding.4.3.0.nupkg.sha512",
  9315. "System.Text.Encoding.nuspec",
  9316. "ThirdPartyNotices.txt",
  9317. "dotnet_library_license.txt",
  9318. "lib/MonoAndroid10/_._",
  9319. "lib/MonoTouch10/_._",
  9320. "lib/net45/_._",
  9321. "lib/portable-net45+win8+wp8+wpa81/_._",
  9322. "lib/win8/_._",
  9323. "lib/wp80/_._",
  9324. "lib/wpa81/_._",
  9325. "lib/xamarinios10/_._",
  9326. "lib/xamarinmac20/_._",
  9327. "lib/xamarintvos10/_._",
  9328. "lib/xamarinwatchos10/_._",
  9329. "ref/MonoAndroid10/_._",
  9330. "ref/MonoTouch10/_._",
  9331. "ref/net45/_._",
  9332. "ref/netcore50/System.Text.Encoding.dll",
  9333. "ref/netcore50/System.Text.Encoding.xml",
  9334. "ref/netcore50/de/System.Text.Encoding.xml",
  9335. "ref/netcore50/es/System.Text.Encoding.xml",
  9336. "ref/netcore50/fr/System.Text.Encoding.xml",
  9337. "ref/netcore50/it/System.Text.Encoding.xml",
  9338. "ref/netcore50/ja/System.Text.Encoding.xml",
  9339. "ref/netcore50/ko/System.Text.Encoding.xml",
  9340. "ref/netcore50/ru/System.Text.Encoding.xml",
  9341. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9342. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9343. "ref/netstandard1.0/System.Text.Encoding.dll",
  9344. "ref/netstandard1.0/System.Text.Encoding.xml",
  9345. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9346. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9347. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9348. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9349. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9350. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9351. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9352. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9353. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9354. "ref/netstandard1.3/System.Text.Encoding.dll",
  9355. "ref/netstandard1.3/System.Text.Encoding.xml",
  9356. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9357. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9358. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9359. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9360. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9361. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9362. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9363. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9364. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9365. "ref/portable-net45+win8+wp8+wpa81/_._",
  9366. "ref/win8/_._",
  9367. "ref/wp80/_._",
  9368. "ref/wpa81/_._",
  9369. "ref/xamarinios10/_._",
  9370. "ref/xamarinmac20/_._",
  9371. "ref/xamarintvos10/_._",
  9372. "ref/xamarinwatchos10/_._"
  9373. ]
  9374. },
  9375. "System.Text.Encoding.CodePages/4.0.1": {
  9376. "sha512": "+PUTo8pGLNuvG6zDKJswAnVUPMS4XBROyqeFvpEueyYFrim+cprnmo2zEXZZe6Enakf75umMThjinrH/qH2Y4A==",
  9377. "type": "package",
  9378. "path": "System.Text.Encoding.CodePages/4.0.1",
  9379. "files": [
  9380. "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512",
  9381. "System.Text.Encoding.CodePages.nuspec",
  9382. "ThirdPartyNotices.txt",
  9383. "dotnet_library_license.txt",
  9384. "lib/MonoAndroid10/_._",
  9385. "lib/MonoTouch10/_._",
  9386. "lib/net46/System.Text.Encoding.CodePages.dll",
  9387. "lib/xamarinios10/_._",
  9388. "lib/xamarinmac20/_._",
  9389. "lib/xamarintvos10/_._",
  9390. "lib/xamarinwatchos10/_._",
  9391. "ref/MonoAndroid10/_._",
  9392. "ref/MonoTouch10/_._",
  9393. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9394. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  9395. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  9396. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  9397. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  9398. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  9399. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  9400. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  9401. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  9402. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  9403. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  9404. "ref/xamarinios10/_._",
  9405. "ref/xamarinmac20/_._",
  9406. "ref/xamarintvos10/_._",
  9407. "ref/xamarinwatchos10/_._",
  9408. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9409. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
  9410. ]
  9411. },
  9412. "System.Text.Encoding.Extensions/4.3.0": {
  9413. "sha512": "htlnmFmHyyJ3W33dYn7ryer4luJ7QUoFCL/b5/df3YnQC2coNDk97NEH8dKKHqhvi/ApAru8ddN8zzKPkTxAZQ==",
  9414. "type": "package",
  9415. "path": "System.Text.Encoding.Extensions/4.3.0",
  9416. "files": [
  9417. "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
  9418. "System.Text.Encoding.Extensions.nuspec",
  9419. "ThirdPartyNotices.txt",
  9420. "dotnet_library_license.txt",
  9421. "lib/MonoAndroid10/_._",
  9422. "lib/MonoTouch10/_._",
  9423. "lib/net45/_._",
  9424. "lib/portable-net45+win8+wp8+wpa81/_._",
  9425. "lib/win8/_._",
  9426. "lib/wp80/_._",
  9427. "lib/wpa81/_._",
  9428. "lib/xamarinios10/_._",
  9429. "lib/xamarinmac20/_._",
  9430. "lib/xamarintvos10/_._",
  9431. "lib/xamarinwatchos10/_._",
  9432. "ref/MonoAndroid10/_._",
  9433. "ref/MonoTouch10/_._",
  9434. "ref/net45/_._",
  9435. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9436. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9437. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9438. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9439. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9440. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9441. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9442. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9443. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9444. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9445. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9446. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9447. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9448. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9449. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9450. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9451. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9452. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9453. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9454. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9455. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9456. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9457. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9458. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9459. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9460. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9461. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9462. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9463. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9464. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9465. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9466. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9467. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9468. "ref/portable-net45+win8+wp8+wpa81/_._",
  9469. "ref/win8/_._",
  9470. "ref/wp80/_._",
  9471. "ref/wpa81/_._",
  9472. "ref/xamarinios10/_._",
  9473. "ref/xamarinmac20/_._",
  9474. "ref/xamarintvos10/_._",
  9475. "ref/xamarinwatchos10/_._"
  9476. ]
  9477. },
  9478. "System.Text.Encodings.Web/4.3.0": {
  9479. "sha512": "Yc1XficqB5ae0yuwAfO8I9dbVW/B0txYWGIhyq/XeJFwWcaSvjyBlRtcuZzpwMS3f57FYoO7EZP1bV16+iHk0A==",
  9480. "type": "package",
  9481. "path": "System.Text.Encodings.Web/4.3.0",
  9482. "files": [
  9483. "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
  9484. "System.Text.Encodings.Web.nuspec",
  9485. "ThirdPartyNotices.txt",
  9486. "dotnet_library_license.txt",
  9487. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9488. "lib/netstandard1.0/System.Text.Encodings.Web.xml"
  9489. ]
  9490. },
  9491. "System.Text.RegularExpressions/4.3.0": {
  9492. "sha512": "zmRmBA0opc1WBtIZBIbdhwnUeaT1JU6AUDjGzLeY6alHYGSSBxKCrCJNqbz4GE4k5CdfBE2XEpT8AeZd+XUXGQ==",
  9493. "type": "package",
  9494. "path": "System.Text.RegularExpressions/4.3.0",
  9495. "files": [
  9496. "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
  9497. "System.Text.RegularExpressions.nuspec",
  9498. "ThirdPartyNotices.txt",
  9499. "dotnet_library_license.txt",
  9500. "lib/MonoAndroid10/_._",
  9501. "lib/MonoTouch10/_._",
  9502. "lib/net45/_._",
  9503. "lib/net463/System.Text.RegularExpressions.dll",
  9504. "lib/netcore50/System.Text.RegularExpressions.dll",
  9505. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9506. "lib/portable-net45+win8+wp8+wpa81/_._",
  9507. "lib/win8/_._",
  9508. "lib/wp80/_._",
  9509. "lib/wpa81/_._",
  9510. "lib/xamarinios10/_._",
  9511. "lib/xamarinmac20/_._",
  9512. "lib/xamarintvos10/_._",
  9513. "lib/xamarinwatchos10/_._",
  9514. "ref/MonoAndroid10/_._",
  9515. "ref/MonoTouch10/_._",
  9516. "ref/net45/_._",
  9517. "ref/net463/System.Text.RegularExpressions.dll",
  9518. "ref/netcore50/System.Text.RegularExpressions.dll",
  9519. "ref/netcore50/System.Text.RegularExpressions.xml",
  9520. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9521. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9522. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9523. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9524. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9525. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9526. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9527. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9528. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9529. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9530. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9531. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9532. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9533. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9534. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9535. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9536. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9537. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9538. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9539. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9540. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9541. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9542. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9543. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9544. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9545. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9546. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9547. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9548. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9549. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9550. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9551. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9552. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9553. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9554. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9555. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9556. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9557. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9558. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9559. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9560. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9561. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9562. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9563. "ref/portable-net45+win8+wp8+wpa81/_._",
  9564. "ref/win8/_._",
  9565. "ref/wp80/_._",
  9566. "ref/wpa81/_._",
  9567. "ref/xamarinios10/_._",
  9568. "ref/xamarinmac20/_._",
  9569. "ref/xamarintvos10/_._",
  9570. "ref/xamarinwatchos10/_._"
  9571. ]
  9572. },
  9573. "System.Threading/4.3.0": {
  9574. "sha512": "/MayCVIEltqXBtXrPKVadskHubAE6SnOQpLvifR/dXEOPFRvvwJtVpwqiV101SdHSsJi9Mzb7bpHWMM0C5Hr9Q==",
  9575. "type": "package",
  9576. "path": "System.Threading/4.3.0",
  9577. "files": [
  9578. "System.Threading.4.3.0.nupkg.sha512",
  9579. "System.Threading.nuspec",
  9580. "ThirdPartyNotices.txt",
  9581. "dotnet_library_license.txt",
  9582. "lib/MonoAndroid10/_._",
  9583. "lib/MonoTouch10/_._",
  9584. "lib/net45/_._",
  9585. "lib/netcore50/System.Threading.dll",
  9586. "lib/netstandard1.3/System.Threading.dll",
  9587. "lib/portable-net45+win8+wp8+wpa81/_._",
  9588. "lib/win8/_._",
  9589. "lib/wp80/_._",
  9590. "lib/wpa81/_._",
  9591. "lib/xamarinios10/_._",
  9592. "lib/xamarinmac20/_._",
  9593. "lib/xamarintvos10/_._",
  9594. "lib/xamarinwatchos10/_._",
  9595. "ref/MonoAndroid10/_._",
  9596. "ref/MonoTouch10/_._",
  9597. "ref/net45/_._",
  9598. "ref/netcore50/System.Threading.dll",
  9599. "ref/netcore50/System.Threading.xml",
  9600. "ref/netcore50/de/System.Threading.xml",
  9601. "ref/netcore50/es/System.Threading.xml",
  9602. "ref/netcore50/fr/System.Threading.xml",
  9603. "ref/netcore50/it/System.Threading.xml",
  9604. "ref/netcore50/ja/System.Threading.xml",
  9605. "ref/netcore50/ko/System.Threading.xml",
  9606. "ref/netcore50/ru/System.Threading.xml",
  9607. "ref/netcore50/zh-hans/System.Threading.xml",
  9608. "ref/netcore50/zh-hant/System.Threading.xml",
  9609. "ref/netstandard1.0/System.Threading.dll",
  9610. "ref/netstandard1.0/System.Threading.xml",
  9611. "ref/netstandard1.0/de/System.Threading.xml",
  9612. "ref/netstandard1.0/es/System.Threading.xml",
  9613. "ref/netstandard1.0/fr/System.Threading.xml",
  9614. "ref/netstandard1.0/it/System.Threading.xml",
  9615. "ref/netstandard1.0/ja/System.Threading.xml",
  9616. "ref/netstandard1.0/ko/System.Threading.xml",
  9617. "ref/netstandard1.0/ru/System.Threading.xml",
  9618. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9619. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9620. "ref/netstandard1.3/System.Threading.dll",
  9621. "ref/netstandard1.3/System.Threading.xml",
  9622. "ref/netstandard1.3/de/System.Threading.xml",
  9623. "ref/netstandard1.3/es/System.Threading.xml",
  9624. "ref/netstandard1.3/fr/System.Threading.xml",
  9625. "ref/netstandard1.3/it/System.Threading.xml",
  9626. "ref/netstandard1.3/ja/System.Threading.xml",
  9627. "ref/netstandard1.3/ko/System.Threading.xml",
  9628. "ref/netstandard1.3/ru/System.Threading.xml",
  9629. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9630. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9631. "ref/portable-net45+win8+wp8+wpa81/_._",
  9632. "ref/win8/_._",
  9633. "ref/wp80/_._",
  9634. "ref/wpa81/_._",
  9635. "ref/xamarinios10/_._",
  9636. "ref/xamarinmac20/_._",
  9637. "ref/xamarintvos10/_._",
  9638. "ref/xamarinwatchos10/_._",
  9639. "runtimes/aot/lib/netcore50/System.Threading.dll"
  9640. ]
  9641. },
  9642. "System.Threading.Overlapped/4.0.1": {
  9643. "sha512": "QfQWxe2enhtiKNtA3sY1OYgvk1Pz3Z8J4Uvx+g3LFOStpA9wsylP603eHP5NeFTcxBlYqyh5O1wvv3vy82Tp/Q==",
  9644. "type": "package",
  9645. "path": "System.Threading.Overlapped/4.0.1",
  9646. "files": [
  9647. "System.Threading.Overlapped.4.0.1.nupkg.sha512",
  9648. "System.Threading.Overlapped.nuspec",
  9649. "ThirdPartyNotices.txt",
  9650. "dotnet_library_license.txt",
  9651. "lib/net46/System.Threading.Overlapped.dll",
  9652. "ref/net46/System.Threading.Overlapped.dll",
  9653. "ref/netstandard1.3/System.Threading.Overlapped.dll",
  9654. "ref/netstandard1.3/System.Threading.Overlapped.xml",
  9655. "ref/netstandard1.3/de/System.Threading.Overlapped.xml",
  9656. "ref/netstandard1.3/es/System.Threading.Overlapped.xml",
  9657. "ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
  9658. "ref/netstandard1.3/it/System.Threading.Overlapped.xml",
  9659. "ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
  9660. "ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
  9661. "ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
  9662. "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
  9663. "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
  9664. "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
  9665. "runtimes/win/lib/net46/System.Threading.Overlapped.dll",
  9666. "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
  9667. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
  9668. ]
  9669. },
  9670. "System.Threading.Tasks/4.3.0": {
  9671. "sha512": "3X5WUrc2NZmi2pV7HU3zivGrMUsuT3r0ToS/V+bmgNRV+vd+jUngFZqGRLAs6Xed/+MJO+sd2++3G3YA+kUvgg==",
  9672. "type": "package",
  9673. "path": "System.Threading.Tasks/4.3.0",
  9674. "files": [
  9675. "System.Threading.Tasks.4.3.0.nupkg.sha512",
  9676. "System.Threading.Tasks.nuspec",
  9677. "ThirdPartyNotices.txt",
  9678. "dotnet_library_license.txt",
  9679. "lib/MonoAndroid10/_._",
  9680. "lib/MonoTouch10/_._",
  9681. "lib/net45/_._",
  9682. "lib/portable-net45+win8+wp8+wpa81/_._",
  9683. "lib/win8/_._",
  9684. "lib/wp80/_._",
  9685. "lib/wpa81/_._",
  9686. "lib/xamarinios10/_._",
  9687. "lib/xamarinmac20/_._",
  9688. "lib/xamarintvos10/_._",
  9689. "lib/xamarinwatchos10/_._",
  9690. "ref/MonoAndroid10/_._",
  9691. "ref/MonoTouch10/_._",
  9692. "ref/net45/_._",
  9693. "ref/netcore50/System.Threading.Tasks.dll",
  9694. "ref/netcore50/System.Threading.Tasks.xml",
  9695. "ref/netcore50/de/System.Threading.Tasks.xml",
  9696. "ref/netcore50/es/System.Threading.Tasks.xml",
  9697. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9698. "ref/netcore50/it/System.Threading.Tasks.xml",
  9699. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9700. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9701. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9702. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9703. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9704. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9705. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9706. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9707. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9708. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9709. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9710. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9711. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9712. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9713. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9714. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9715. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9716. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9717. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9718. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9719. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9720. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9721. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9722. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9723. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9724. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9725. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9726. "ref/portable-net45+win8+wp8+wpa81/_._",
  9727. "ref/win8/_._",
  9728. "ref/wp80/_._",
  9729. "ref/wpa81/_._",
  9730. "ref/xamarinios10/_._",
  9731. "ref/xamarinmac20/_._",
  9732. "ref/xamarintvos10/_._",
  9733. "ref/xamarinwatchos10/_._"
  9734. ]
  9735. },
  9736. "System.Threading.Tasks.Dataflow/4.6.0": {
  9737. "sha512": "xoVYfOA5XE9dfmQeNewe/8fiuYLo9oyyCzDk/oKHfGXIzaezrwA6XfCjmLDiB6sOwglJJQrxyCJlXMVsi73f4A==",
  9738. "type": "package",
  9739. "path": "System.Threading.Tasks.Dataflow/4.6.0",
  9740. "files": [
  9741. "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
  9742. "System.Threading.Tasks.Dataflow.nuspec",
  9743. "ThirdPartyNotices.txt",
  9744. "dotnet_library_license.txt",
  9745. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
  9746. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
  9747. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
  9748. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
  9749. ]
  9750. },
  9751. "System.Threading.Tasks.Extensions/4.3.0": {
  9752. "sha512": "Fndgac424TbKeV2uY0TXopkg6/4WfcKT1+vYa9jCM0yrx7rJYOFx/yOYw7qoGijbyUtHxbo6ieRI3+23vhrgiA==",
  9753. "type": "package",
  9754. "path": "System.Threading.Tasks.Extensions/4.3.0",
  9755. "files": [
  9756. "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
  9757. "System.Threading.Tasks.Extensions.nuspec",
  9758. "ThirdPartyNotices.txt",
  9759. "dotnet_library_license.txt",
  9760. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9761. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9762. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9763. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
  9764. ]
  9765. },
  9766. "System.Threading.Tasks.Parallel/4.0.1": {
  9767. "sha512": "NeY1d7KYltSvSSYQX2FxqN/pktX0wb6urCRf3MjpbOPiRZhYBFjqCL2a8Pefgqls6np4r8ir8qA2WGZegqq3Bg==",
  9768. "type": "package",
  9769. "path": "System.Threading.Tasks.Parallel/4.0.1",
  9770. "files": [
  9771. "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
  9772. "System.Threading.Tasks.Parallel.nuspec",
  9773. "ThirdPartyNotices.txt",
  9774. "dotnet_library_license.txt",
  9775. "lib/MonoAndroid10/_._",
  9776. "lib/MonoTouch10/_._",
  9777. "lib/net45/_._",
  9778. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  9779. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  9780. "lib/portable-net45+win8+wpa81/_._",
  9781. "lib/win8/_._",
  9782. "lib/wpa81/_._",
  9783. "lib/xamarinios10/_._",
  9784. "lib/xamarinmac20/_._",
  9785. "lib/xamarintvos10/_._",
  9786. "lib/xamarinwatchos10/_._",
  9787. "ref/MonoAndroid10/_._",
  9788. "ref/MonoTouch10/_._",
  9789. "ref/net45/_._",
  9790. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  9791. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  9792. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  9793. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  9794. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  9795. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  9796. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  9797. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  9798. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  9799. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  9800. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  9801. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  9802. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  9803. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  9804. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  9805. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  9806. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  9807. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  9808. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  9809. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  9810. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  9811. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  9812. "ref/portable-net45+win8+wpa81/_._",
  9813. "ref/win8/_._",
  9814. "ref/wpa81/_._",
  9815. "ref/xamarinios10/_._",
  9816. "ref/xamarinmac20/_._",
  9817. "ref/xamarintvos10/_._",
  9818. "ref/xamarinwatchos10/_._"
  9819. ]
  9820. },
  9821. "System.Threading.Thread/4.3.0": {
  9822. "sha512": "OqHbGdnQAQzxS+nYWexRRrQUPq9QU5Mii/0GampwcAqOY3AzM5r9cDusiKj97cXsAlsZYYrRI+/xSsR0r1EFEw==",
  9823. "type": "package",
  9824. "path": "System.Threading.Thread/4.3.0",
  9825. "files": [
  9826. "System.Threading.Thread.4.3.0.nupkg.sha512",
  9827. "System.Threading.Thread.nuspec",
  9828. "ThirdPartyNotices.txt",
  9829. "dotnet_library_license.txt",
  9830. "lib/MonoAndroid10/_._",
  9831. "lib/MonoTouch10/_._",
  9832. "lib/net46/System.Threading.Thread.dll",
  9833. "lib/netcore50/_._",
  9834. "lib/netstandard1.3/System.Threading.Thread.dll",
  9835. "lib/xamarinios10/_._",
  9836. "lib/xamarinmac20/_._",
  9837. "lib/xamarintvos10/_._",
  9838. "lib/xamarinwatchos10/_._",
  9839. "ref/MonoAndroid10/_._",
  9840. "ref/MonoTouch10/_._",
  9841. "ref/net46/System.Threading.Thread.dll",
  9842. "ref/netstandard1.3/System.Threading.Thread.dll",
  9843. "ref/netstandard1.3/System.Threading.Thread.xml",
  9844. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9845. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9846. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9847. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9848. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9849. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9850. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9851. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9852. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9853. "ref/xamarinios10/_._",
  9854. "ref/xamarinmac20/_._",
  9855. "ref/xamarintvos10/_._",
  9856. "ref/xamarinwatchos10/_._"
  9857. ]
  9858. },
  9859. "System.Threading.ThreadPool/4.3.0": {
  9860. "sha512": "SrCOmTvvOOCmJT4BBxdZcwhz6XEMsjBGZvGSVorOxdCznaUNeVotEjDfXGIZ8gcGo00qgPbTV6puHDgcFYl6Iw==",
  9861. "type": "package",
  9862. "path": "System.Threading.ThreadPool/4.3.0",
  9863. "files": [
  9864. "System.Threading.ThreadPool.4.3.0.nupkg.sha512",
  9865. "System.Threading.ThreadPool.nuspec",
  9866. "ThirdPartyNotices.txt",
  9867. "dotnet_library_license.txt",
  9868. "lib/MonoAndroid10/_._",
  9869. "lib/MonoTouch10/_._",
  9870. "lib/net46/System.Threading.ThreadPool.dll",
  9871. "lib/netcore50/_._",
  9872. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9873. "lib/xamarinios10/_._",
  9874. "lib/xamarinmac20/_._",
  9875. "lib/xamarintvos10/_._",
  9876. "lib/xamarinwatchos10/_._",
  9877. "ref/MonoAndroid10/_._",
  9878. "ref/MonoTouch10/_._",
  9879. "ref/net46/System.Threading.ThreadPool.dll",
  9880. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9881. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9882. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9883. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9884. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9885. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9886. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9887. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9888. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9889. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9890. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9891. "ref/xamarinios10/_._",
  9892. "ref/xamarinmac20/_._",
  9893. "ref/xamarintvos10/_._",
  9894. "ref/xamarinwatchos10/_._"
  9895. ]
  9896. },
  9897. "System.Threading.Timer/4.3.0": {
  9898. "sha512": "hoKRMGwOfTpSykA4CMiStPWmfIETJ6W6snKuqgHi1TZwnOdpCfXI5jkm2QEclcq04aVaqvd6/xkoXd8iObQpHw==",
  9899. "type": "package",
  9900. "path": "System.Threading.Timer/4.3.0",
  9901. "files": [
  9902. "System.Threading.Timer.4.3.0.nupkg.sha512",
  9903. "System.Threading.Timer.nuspec",
  9904. "ThirdPartyNotices.txt",
  9905. "dotnet_library_license.txt",
  9906. "lib/MonoAndroid10/_._",
  9907. "lib/MonoTouch10/_._",
  9908. "lib/net451/_._",
  9909. "lib/portable-net451+win81+wpa81/_._",
  9910. "lib/win81/_._",
  9911. "lib/wpa81/_._",
  9912. "lib/xamarinios10/_._",
  9913. "lib/xamarinmac20/_._",
  9914. "lib/xamarintvos10/_._",
  9915. "lib/xamarinwatchos10/_._",
  9916. "ref/MonoAndroid10/_._",
  9917. "ref/MonoTouch10/_._",
  9918. "ref/net451/_._",
  9919. "ref/netcore50/System.Threading.Timer.dll",
  9920. "ref/netcore50/System.Threading.Timer.xml",
  9921. "ref/netcore50/de/System.Threading.Timer.xml",
  9922. "ref/netcore50/es/System.Threading.Timer.xml",
  9923. "ref/netcore50/fr/System.Threading.Timer.xml",
  9924. "ref/netcore50/it/System.Threading.Timer.xml",
  9925. "ref/netcore50/ja/System.Threading.Timer.xml",
  9926. "ref/netcore50/ko/System.Threading.Timer.xml",
  9927. "ref/netcore50/ru/System.Threading.Timer.xml",
  9928. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9929. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9930. "ref/netstandard1.2/System.Threading.Timer.dll",
  9931. "ref/netstandard1.2/System.Threading.Timer.xml",
  9932. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9933. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9934. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9935. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9936. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9937. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9938. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9939. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9940. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9941. "ref/portable-net451+win81+wpa81/_._",
  9942. "ref/win81/_._",
  9943. "ref/wpa81/_._",
  9944. "ref/xamarinios10/_._",
  9945. "ref/xamarinmac20/_._",
  9946. "ref/xamarintvos10/_._",
  9947. "ref/xamarinwatchos10/_._"
  9948. ]
  9949. },
  9950. "System.Xml.ReaderWriter/4.3.0": {
  9951. "sha512": "f0HgI5Hp/jvkyqr1qldLrqps4+mjn6XHNoWQ1Cgj3L2paZUHq3fdRVU1NoEBYOByL/O6vXIS0D62MpyEC/Mhqw==",
  9952. "type": "package",
  9953. "path": "System.Xml.ReaderWriter/4.3.0",
  9954. "files": [
  9955. "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
  9956. "System.Xml.ReaderWriter.nuspec",
  9957. "ThirdPartyNotices.txt",
  9958. "dotnet_library_license.txt",
  9959. "lib/MonoAndroid10/_._",
  9960. "lib/MonoTouch10/_._",
  9961. "lib/net45/_._",
  9962. "lib/net46/System.Xml.ReaderWriter.dll",
  9963. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9964. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9965. "lib/portable-net45+win8+wp8+wpa81/_._",
  9966. "lib/win8/_._",
  9967. "lib/wp80/_._",
  9968. "lib/wpa81/_._",
  9969. "lib/xamarinios10/_._",
  9970. "lib/xamarinmac20/_._",
  9971. "lib/xamarintvos10/_._",
  9972. "lib/xamarinwatchos10/_._",
  9973. "ref/MonoAndroid10/_._",
  9974. "ref/MonoTouch10/_._",
  9975. "ref/net45/_._",
  9976. "ref/net46/System.Xml.ReaderWriter.dll",
  9977. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9978. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9979. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9980. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9981. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9982. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9983. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9984. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9985. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9986. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9987. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9988. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9989. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9990. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9991. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9992. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9993. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9994. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9995. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9996. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9997. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9998. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9999. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  10000. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  10001. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  10002. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  10003. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  10004. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  10005. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  10006. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  10007. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  10008. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  10009. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  10010. "ref/portable-net45+win8+wp8+wpa81/_._",
  10011. "ref/win8/_._",
  10012. "ref/wp80/_._",
  10013. "ref/wpa81/_._",
  10014. "ref/xamarinios10/_._",
  10015. "ref/xamarinmac20/_._",
  10016. "ref/xamarintvos10/_._",
  10017. "ref/xamarinwatchos10/_._"
  10018. ]
  10019. },
  10020. "System.Xml.XDocument/4.3.0": {
  10021. "sha512": "x5+orDQBjivGFynvLXDJgkQSeF64z7GTA7EooyogRG8/8U67m7jhEFNf5bJPfQdJSmlgBEVKxsVH3uepJ4fmqA==",
  10022. "type": "package",
  10023. "path": "System.Xml.XDocument/4.3.0",
  10024. "files": [
  10025. "System.Xml.XDocument.4.3.0.nupkg.sha512",
  10026. "System.Xml.XDocument.nuspec",
  10027. "ThirdPartyNotices.txt",
  10028. "dotnet_library_license.txt",
  10029. "lib/MonoAndroid10/_._",
  10030. "lib/MonoTouch10/_._",
  10031. "lib/net45/_._",
  10032. "lib/netcore50/System.Xml.XDocument.dll",
  10033. "lib/netstandard1.3/System.Xml.XDocument.dll",
  10034. "lib/portable-net45+win8+wp8+wpa81/_._",
  10035. "lib/win8/_._",
  10036. "lib/wp80/_._",
  10037. "lib/wpa81/_._",
  10038. "lib/xamarinios10/_._",
  10039. "lib/xamarinmac20/_._",
  10040. "lib/xamarintvos10/_._",
  10041. "lib/xamarinwatchos10/_._",
  10042. "ref/MonoAndroid10/_._",
  10043. "ref/MonoTouch10/_._",
  10044. "ref/net45/_._",
  10045. "ref/netcore50/System.Xml.XDocument.dll",
  10046. "ref/netcore50/System.Xml.XDocument.xml",
  10047. "ref/netcore50/de/System.Xml.XDocument.xml",
  10048. "ref/netcore50/es/System.Xml.XDocument.xml",
  10049. "ref/netcore50/fr/System.Xml.XDocument.xml",
  10050. "ref/netcore50/it/System.Xml.XDocument.xml",
  10051. "ref/netcore50/ja/System.Xml.XDocument.xml",
  10052. "ref/netcore50/ko/System.Xml.XDocument.xml",
  10053. "ref/netcore50/ru/System.Xml.XDocument.xml",
  10054. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  10055. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  10056. "ref/netstandard1.0/System.Xml.XDocument.dll",
  10057. "ref/netstandard1.0/System.Xml.XDocument.xml",
  10058. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  10059. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  10060. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  10061. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  10062. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  10063. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  10064. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  10065. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  10066. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  10067. "ref/netstandard1.3/System.Xml.XDocument.dll",
  10068. "ref/netstandard1.3/System.Xml.XDocument.xml",
  10069. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  10070. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  10071. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  10072. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  10073. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  10074. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  10075. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  10076. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  10077. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  10078. "ref/portable-net45+win8+wp8+wpa81/_._",
  10079. "ref/win8/_._",
  10080. "ref/wp80/_._",
  10081. "ref/wpa81/_._",
  10082. "ref/xamarinios10/_._",
  10083. "ref/xamarinmac20/_._",
  10084. "ref/xamarintvos10/_._",
  10085. "ref/xamarinwatchos10/_._"
  10086. ]
  10087. },
  10088. "System.Xml.XmlDocument/4.0.1": {
  10089. "sha512": "467a5tcqMHHaXMzG6aDXnsLSwJAmW7gHPeqOIbvXlQ/+hDRdbyFGXHe+npQ2tcYw138IRwynigPPuYnG57qwMQ==",
  10090. "type": "package",
  10091. "path": "System.Xml.XmlDocument/4.0.1",
  10092. "files": [
  10093. "System.Xml.XmlDocument.4.0.1.nupkg.sha512",
  10094. "System.Xml.XmlDocument.nuspec",
  10095. "ThirdPartyNotices.txt",
  10096. "dotnet_library_license.txt",
  10097. "lib/MonoAndroid10/_._",
  10098. "lib/MonoTouch10/_._",
  10099. "lib/net46/System.Xml.XmlDocument.dll",
  10100. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  10101. "lib/xamarinios10/_._",
  10102. "lib/xamarinmac20/_._",
  10103. "lib/xamarintvos10/_._",
  10104. "lib/xamarinwatchos10/_._",
  10105. "ref/MonoAndroid10/_._",
  10106. "ref/MonoTouch10/_._",
  10107. "ref/net46/System.Xml.XmlDocument.dll",
  10108. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  10109. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  10110. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  10111. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  10112. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  10113. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  10114. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  10115. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  10116. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  10117. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  10118. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  10119. "ref/xamarinios10/_._",
  10120. "ref/xamarinmac20/_._",
  10121. "ref/xamarintvos10/_._",
  10122. "ref/xamarinwatchos10/_._"
  10123. ]
  10124. },
  10125. "System.Xml.XmlSerializer/4.0.11": {
  10126. "sha512": "FrazwwqfIXTfq23mfv4zH+BjqkSFNaNFBtjzu3I9NRmG8EELYyrv/fJnttCIwRMFRR/YKXF1hmsMmMEnl55HGw==",
  10127. "type": "package",
  10128. "path": "system.xml.xmlserializer/4.0.11",
  10129. "files": [
  10130. "ThirdPartyNotices.txt",
  10131. "dotnet_library_license.txt",
  10132. "lib/MonoAndroid10/_._",
  10133. "lib/MonoTouch10/_._",
  10134. "lib/net45/_._",
  10135. "lib/netcore50/System.Xml.XmlSerializer.dll",
  10136. "lib/netstandard1.3/System.Xml.XmlSerializer.dll",
  10137. "lib/portable-net45+win8+wp8+wpa81/_._",
  10138. "lib/win8/_._",
  10139. "lib/wp80/_._",
  10140. "lib/wpa81/_._",
  10141. "lib/xamarinios10/_._",
  10142. "lib/xamarinmac20/_._",
  10143. "lib/xamarintvos10/_._",
  10144. "lib/xamarinwatchos10/_._",
  10145. "ref/MonoAndroid10/_._",
  10146. "ref/MonoTouch10/_._",
  10147. "ref/net45/_._",
  10148. "ref/netcore50/System.Xml.XmlSerializer.dll",
  10149. "ref/netcore50/System.Xml.XmlSerializer.xml",
  10150. "ref/netcore50/de/System.Xml.XmlSerializer.xml",
  10151. "ref/netcore50/es/System.Xml.XmlSerializer.xml",
  10152. "ref/netcore50/fr/System.Xml.XmlSerializer.xml",
  10153. "ref/netcore50/it/System.Xml.XmlSerializer.xml",
  10154. "ref/netcore50/ja/System.Xml.XmlSerializer.xml",
  10155. "ref/netcore50/ko/System.Xml.XmlSerializer.xml",
  10156. "ref/netcore50/ru/System.Xml.XmlSerializer.xml",
  10157. "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml",
  10158. "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml",
  10159. "ref/netstandard1.0/System.Xml.XmlSerializer.dll",
  10160. "ref/netstandard1.0/System.Xml.XmlSerializer.xml",
  10161. "ref/netstandard1.0/de/System.Xml.XmlSerializer.xml",
  10162. "ref/netstandard1.0/es/System.Xml.XmlSerializer.xml",
  10163. "ref/netstandard1.0/fr/System.Xml.XmlSerializer.xml",
  10164. "ref/netstandard1.0/it/System.Xml.XmlSerializer.xml",
  10165. "ref/netstandard1.0/ja/System.Xml.XmlSerializer.xml",
  10166. "ref/netstandard1.0/ko/System.Xml.XmlSerializer.xml",
  10167. "ref/netstandard1.0/ru/System.Xml.XmlSerializer.xml",
  10168. "ref/netstandard1.0/zh-hans/System.Xml.XmlSerializer.xml",
  10169. "ref/netstandard1.0/zh-hant/System.Xml.XmlSerializer.xml",
  10170. "ref/netstandard1.3/System.Xml.XmlSerializer.dll",
  10171. "ref/netstandard1.3/System.Xml.XmlSerializer.xml",
  10172. "ref/netstandard1.3/de/System.Xml.XmlSerializer.xml",
  10173. "ref/netstandard1.3/es/System.Xml.XmlSerializer.xml",
  10174. "ref/netstandard1.3/fr/System.Xml.XmlSerializer.xml",
  10175. "ref/netstandard1.3/it/System.Xml.XmlSerializer.xml",
  10176. "ref/netstandard1.3/ja/System.Xml.XmlSerializer.xml",
  10177. "ref/netstandard1.3/ko/System.Xml.XmlSerializer.xml",
  10178. "ref/netstandard1.3/ru/System.Xml.XmlSerializer.xml",
  10179. "ref/netstandard1.3/zh-hans/System.Xml.XmlSerializer.xml",
  10180. "ref/netstandard1.3/zh-hant/System.Xml.XmlSerializer.xml",
  10181. "ref/portable-net45+win8+wp8+wpa81/_._",
  10182. "ref/win8/_._",
  10183. "ref/wp80/_._",
  10184. "ref/wpa81/_._",
  10185. "ref/xamarinios10/_._",
  10186. "ref/xamarinmac20/_._",
  10187. "ref/xamarintvos10/_._",
  10188. "ref/xamarinwatchos10/_._",
  10189. "runtimes/aot/lib/netcore50/System.Xml.XmlSerializer.dll",
  10190. "system.xml.xmlserializer.4.0.11.nupkg.sha512",
  10191. "system.xml.xmlserializer.nuspec"
  10192. ]
  10193. },
  10194. "System.Xml.XPath/4.0.1": {
  10195. "sha512": "fNMrSYKz66pOCUqBLLmd3sBXCULopHsu78uU1NgMHn/SOMpXdYyIbfY+ed8O7WgzNrPDoxXXS5qxPDWagBBYWw==",
  10196. "type": "package",
  10197. "path": "System.Xml.XPath/4.0.1",
  10198. "files": [
  10199. "System.Xml.XPath.4.0.1.nupkg.sha512",
  10200. "System.Xml.XPath.nuspec",
  10201. "ThirdPartyNotices.txt",
  10202. "dotnet_library_license.txt",
  10203. "lib/MonoAndroid10/_._",
  10204. "lib/MonoTouch10/_._",
  10205. "lib/net46/System.Xml.XPath.dll",
  10206. "lib/netstandard1.3/System.Xml.XPath.dll",
  10207. "lib/xamarinios10/_._",
  10208. "lib/xamarinmac20/_._",
  10209. "lib/xamarintvos10/_._",
  10210. "lib/xamarinwatchos10/_._",
  10211. "ref/MonoAndroid10/_._",
  10212. "ref/MonoTouch10/_._",
  10213. "ref/net46/System.Xml.XPath.dll",
  10214. "ref/netstandard1.3/System.Xml.XPath.dll",
  10215. "ref/netstandard1.3/System.Xml.XPath.xml",
  10216. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  10217. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  10218. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  10219. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  10220. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  10221. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  10222. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  10223. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  10224. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  10225. "ref/xamarinios10/_._",
  10226. "ref/xamarinmac20/_._",
  10227. "ref/xamarintvos10/_._",
  10228. "ref/xamarinwatchos10/_._"
  10229. ]
  10230. },
  10231. "System.Xml.XPath.XDocument/4.0.1": {
  10232. "sha512": "M4noCUSSS3m/E9IwgkkdFA9dVeouBSP7jx4sozDLu2wm86R4zfhIsitSgfeuobLXZWEQ9AKZGLY7SmNaRGD4mA==",
  10233. "type": "package",
  10234. "path": "System.Xml.XPath.XDocument/4.0.1",
  10235. "files": [
  10236. "System.Xml.XPath.XDocument.4.0.1.nupkg.sha512",
  10237. "System.Xml.XPath.XDocument.nuspec",
  10238. "ThirdPartyNotices.txt",
  10239. "dotnet_library_license.txt",
  10240. "lib/MonoAndroid10/_._",
  10241. "lib/MonoTouch10/_._",
  10242. "lib/net46/System.Xml.XPath.XDocument.dll",
  10243. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll",
  10244. "lib/xamarinios10/_._",
  10245. "lib/xamarinmac20/_._",
  10246. "lib/xamarintvos10/_._",
  10247. "lib/xamarinwatchos10/_._",
  10248. "ref/MonoAndroid10/_._",
  10249. "ref/MonoTouch10/_._",
  10250. "ref/net46/System.Xml.XPath.XDocument.dll",
  10251. "ref/netstandard1.3/System.Xml.XPath.XDocument.dll",
  10252. "ref/netstandard1.3/System.Xml.XPath.XDocument.xml",
  10253. "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml",
  10254. "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml",
  10255. "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml",
  10256. "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml",
  10257. "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml",
  10258. "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml",
  10259. "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml",
  10260. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml",
  10261. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml",
  10262. "ref/xamarinios10/_._",
  10263. "ref/xamarinmac20/_._",
  10264. "ref/xamarintvos10/_._",
  10265. "ref/xamarinwatchos10/_._"
  10266. ]
  10267. },
  10268. "xunit/2.1.0": {
  10269. "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==",
  10270. "type": "package",
  10271. "path": "xunit/2.1.0",
  10272. "files": [
  10273. "xunit.2.1.0.nupkg.sha512",
  10274. "xunit.nuspec"
  10275. ]
  10276. },
  10277. "xunit.abstractions/2.0.0": {
  10278. "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==",
  10279. "type": "package",
  10280. "path": "xunit.abstractions/2.0.0",
  10281. "files": [
  10282. "lib/net35/xunit.abstractions.dll",
  10283. "lib/net35/xunit.abstractions.xml",
  10284. "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll",
  10285. "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml",
  10286. "xunit.abstractions.2.0.0.nupkg.sha512",
  10287. "xunit.abstractions.nuspec"
  10288. ]
  10289. },
  10290. "xunit.assert/2.1.0": {
  10291. "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==",
  10292. "type": "package",
  10293. "path": "xunit.assert/2.1.0",
  10294. "files": [
  10295. "lib/dotnet/xunit.assert.dll",
  10296. "lib/dotnet/xunit.assert.pdb",
  10297. "lib/dotnet/xunit.assert.xml",
  10298. "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll",
  10299. "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb",
  10300. "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml",
  10301. "xunit.assert.2.1.0.nupkg.sha512",
  10302. "xunit.assert.nuspec"
  10303. ]
  10304. },
  10305. "xunit.core/2.1.0": {
  10306. "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==",
  10307. "type": "package",
  10308. "path": "xunit.core/2.1.0",
  10309. "files": [
  10310. "build/_desktop/xunit.execution.desktop.dll",
  10311. "build/dnx451/_._",
  10312. "build/monoandroid/_._",
  10313. "build/monotouch/_._",
  10314. "build/net45/_._",
  10315. "build/portable-net45+win8+wp8+wpa81/xunit.core.props",
  10316. "build/win8/_._",
  10317. "build/win81/xunit.core.props",
  10318. "build/wp8/_._",
  10319. "build/wpa81/xunit.core.props",
  10320. "build/xamarinios/_._",
  10321. "xunit.core.2.1.0.nupkg.sha512",
  10322. "xunit.core.nuspec"
  10323. ]
  10324. },
  10325. "xunit.extensibility.core/2.1.0": {
  10326. "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==",
  10327. "type": "package",
  10328. "path": "xunit.extensibility.core/2.1.0",
  10329. "files": [
  10330. "lib/dotnet/xunit.core.dll",
  10331. "lib/dotnet/xunit.core.dll.tdnet",
  10332. "lib/dotnet/xunit.core.pdb",
  10333. "lib/dotnet/xunit.core.xml",
  10334. "lib/dotnet/xunit.runner.tdnet.dll",
  10335. "lib/dotnet/xunit.runner.utility.desktop.dll",
  10336. "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll",
  10337. "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet",
  10338. "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb",
  10339. "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml",
  10340. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll",
  10341. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll",
  10342. "xunit.extensibility.core.2.1.0.nupkg.sha512",
  10343. "xunit.extensibility.core.nuspec"
  10344. ]
  10345. },
  10346. "xunit.extensibility.execution/2.1.0": {
  10347. "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==",
  10348. "type": "package",
  10349. "path": "xunit.extensibility.execution/2.1.0",
  10350. "files": [
  10351. "lib/dnx451/xunit.execution.dotnet.dll",
  10352. "lib/dnx451/xunit.execution.dotnet.pdb",
  10353. "lib/dnx451/xunit.execution.dotnet.xml",
  10354. "lib/dotnet/xunit.execution.dotnet.dll",
  10355. "lib/dotnet/xunit.execution.dotnet.pdb",
  10356. "lib/dotnet/xunit.execution.dotnet.xml",
  10357. "lib/monoandroid/xunit.execution.dotnet.dll",
  10358. "lib/monoandroid/xunit.execution.dotnet.pdb",
  10359. "lib/monoandroid/xunit.execution.dotnet.xml",
  10360. "lib/monotouch/xunit.execution.dotnet.dll",
  10361. "lib/monotouch/xunit.execution.dotnet.pdb",
  10362. "lib/monotouch/xunit.execution.dotnet.xml",
  10363. "lib/net45/xunit.execution.desktop.dll",
  10364. "lib/net45/xunit.execution.desktop.pdb",
  10365. "lib/net45/xunit.execution.desktop.xml",
  10366. "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll",
  10367. "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb",
  10368. "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml",
  10369. "lib/win8/xunit.execution.dotnet.dll",
  10370. "lib/win8/xunit.execution.dotnet.pdb",
  10371. "lib/win8/xunit.execution.dotnet.xml",
  10372. "lib/wp8/xunit.execution.dotnet.dll",
  10373. "lib/wp8/xunit.execution.dotnet.pdb",
  10374. "lib/wp8/xunit.execution.dotnet.xml",
  10375. "lib/wpa81/xunit.execution.dotnet.dll",
  10376. "lib/wpa81/xunit.execution.dotnet.pdb",
  10377. "lib/wpa81/xunit.execution.dotnet.xml",
  10378. "lib/xamarinios/xunit.execution.dotnet.dll",
  10379. "lib/xamarinios/xunit.execution.dotnet.pdb",
  10380. "lib/xamarinios/xunit.execution.dotnet.xml",
  10381. "xunit.extensibility.execution.2.1.0.nupkg.sha512",
  10382. "xunit.extensibility.execution.nuspec"
  10383. ]
  10384. },
  10385. "xunit.runner.reporters/2.1.0": {
  10386. "sha512": "ja0kJrvwSiho2TRFpfHfa+6tGJI5edcyD8fdekTkjn7Us17PbGqglIihRe8sR9YFAmS4ipEC8+7CXOM/b69ENQ==",
  10387. "type": "package",
  10388. "path": "xunit.runner.reporters/2.1.0",
  10389. "files": [
  10390. "lib/dnx451/xunit.runner.reporters.dotnet.dll",
  10391. "lib/dotnet/xunit.runner.reporters.dotnet.dll",
  10392. "lib/net45/xunit.runner.reporters.desktop.dll",
  10393. "xunit.runner.reporters.2.1.0.nupkg.sha512",
  10394. "xunit.runner.reporters.nuspec"
  10395. ]
  10396. },
  10397. "xunit.runner.utility/2.1.0": {
  10398. "sha512": "jJJHROwskIhdQuYw7exe7KaW20dOCa+lzV/lY7Zdh1ZZzdUPpScMi9ReJIutqiyjhemGF8V/GaMIPrcjyZ4ioQ==",
  10399. "type": "package",
  10400. "path": "xunit.runner.utility/2.1.0",
  10401. "files": [
  10402. "lib/dnx451/xunit.runner.utility.dotnet.dll",
  10403. "lib/dnx451/xunit.runner.utility.dotnet.pdb",
  10404. "lib/dnx451/xunit.runner.utility.dotnet.xml",
  10405. "lib/dotnet/xunit.runner.utility.dotnet.dll",
  10406. "lib/dotnet/xunit.runner.utility.dotnet.pdb",
  10407. "lib/dotnet/xunit.runner.utility.dotnet.xml",
  10408. "lib/net35/xunit.runner.utility.desktop.dll",
  10409. "lib/net35/xunit.runner.utility.desktop.pdb",
  10410. "lib/net35/xunit.runner.utility.desktop.xml",
  10411. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.dll",
  10412. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.pdb",
  10413. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.xml",
  10414. "xunit.runner.utility.2.1.0.nupkg.sha512",
  10415. "xunit.runner.utility.nuspec"
  10416. ]
  10417. },
  10418. "Luticate2.Auth/1.0.0": {
  10419. "type": "project",
  10420. "path": "../Luticate2.Auth/project.json",
  10421. "msbuildProject": "../Luticate2.Auth/Luticate2.Auth.xproj"
  10422. },
  10423. "Luticate2.Utils/1.0.0": {
  10424. "type": "project",
  10425. "path": "../Luticate2.Utils/project.json",
  10426. "msbuildProject": "../Luticate2.Utils/Luticate2.Utils.xproj"
  10427. }
  10428. },
  10429. "projectFileDependencyGroups": {
  10430. "": [
  10431. "Luticate2.Auth >= 1.0.*",
  10432. "Moq >= 4.6.38-alpha",
  10433. "System.Runtime.Serialization.Primitives >= 4.1.1",
  10434. "dotnet-test-xunit >= 1.0.0-rc2-*",
  10435. "xunit >= 2.1.0"
  10436. ],
  10437. ".NETCoreApp,Version=v1.0": [
  10438. "Microsoft.NETCore.App >= 1.0.1"
  10439. ]
  10440. },
  10441. "tools": {},
  10442. "projectFileToolGroups": {}
  10443. }