Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

project.lock.json 430KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183
  1. {
  2. "locked": false,
  3. "version": 2,
  4. "targets": {
  5. ".NETCoreApp,Version=v1.0": {
  6. "dotnet-test-xunit/1.0.0-rc2-build10015": {
  7. "type": "package",
  8. "dependencies": {
  9. "Microsoft.Extensions.Testing.Abstractions": "1.0.0-preview1-002702",
  10. "Microsoft.NETCore.App": "1.0.0-rc2-3002702",
  11. "xunit.runner.reporters": "2.1.0"
  12. },
  13. "compile": {
  14. "lib/netcoreapp1.0/dotnet-test-xunit.dll": {}
  15. },
  16. "runtime": {
  17. "lib/netcoreapp1.0/dotnet-test-xunit.dll": {}
  18. }
  19. },
  20. "Gray.Microsoft.AspNetCore.SignalR.Messaging/0.2.0": {
  21. "type": "package",
  22. "dependencies": {
  23. "Microsoft.CSharp": "4.0.1",
  24. "Microsoft.Extensions.Logging": "1.1.0-alpha1-22144",
  25. "Microsoft.Extensions.Options": "1.1.0-alpha1-22144",
  26. "System.Collections.Concurrent": "4.0.12",
  27. "System.Diagnostics.Tools": "4.0.1",
  28. "System.Dynamic.Runtime": "4.0.11",
  29. "System.Linq.Expressions": "4.1.0",
  30. "System.Reflection.Emit": "4.0.1",
  31. "System.Reflection.Emit.ILGeneration": "4.0.1",
  32. "System.Reflection.Extensions": "4.0.1",
  33. "System.Reflection.Primitives": "4.0.1",
  34. "System.Security.Cryptography.Algorithms": "4.2.0",
  35. "System.Text.Encoding.Extensions": "4.0.11",
  36. "System.Threading.Thread": "4.0.0",
  37. "System.Threading.ThreadPool": "4.0.10",
  38. "System.Threading.Timer": "4.0.1"
  39. },
  40. "compile": {
  41. "lib/netstandard1.3/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll": {}
  42. },
  43. "runtime": {
  44. "lib/netstandard1.3/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll": {}
  45. }
  46. },
  47. "Gray.Microsoft.AspNetCore.SignalR.Server/0.2.0-alpha1": {
  48. "type": "package",
  49. "dependencies": {
  50. "Gray.Microsoft.AspNetCore.SignalR.Messaging": "0.2.0",
  51. "Microsoft.AspNetCore.DataProtection": "1.1.0-alpha1-22144",
  52. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-alpha1-22144",
  53. "Microsoft.AspNetCore.Http.Extensions": "1.1.0-alpha1-22144",
  54. "Microsoft.Extensions.DependencyModel": "1.0.1-beta-003206",
  55. "Newtonsoft.Json": "9.0.1",
  56. "System.Runtime.Serialization.Primitives": "4.1.1"
  57. },
  58. "compile": {
  59. "lib/netstandard1.6/Gray.Microsoft.AspNetCore.SignalR.Server.dll": {}
  60. },
  61. "runtime": {
  62. "lib/netstandard1.6/Gray.Microsoft.AspNetCore.SignalR.Server.dll": {}
  63. }
  64. },
  65. "Libuv/1.9.0": {
  66. "type": "package",
  67. "dependencies": {
  68. "Microsoft.NETCore.Platforms": "1.0.1"
  69. },
  70. "runtimeTargets": {
  71. "runtimes/debian-x64/native/libuv.so": {
  72. "assetType": "native",
  73. "rid": "debian-x64"
  74. },
  75. "runtimes/fedora-x64/native/libuv.so": {
  76. "assetType": "native",
  77. "rid": "fedora-x64"
  78. },
  79. "runtimes/opensuse-x64/native/libuv.so": {
  80. "assetType": "native",
  81. "rid": "opensuse-x64"
  82. },
  83. "runtimes/osx/native/libuv.dylib": {
  84. "assetType": "native",
  85. "rid": "osx"
  86. },
  87. "runtimes/rhel-x64/native/libuv.so": {
  88. "assetType": "native",
  89. "rid": "rhel-x64"
  90. },
  91. "runtimes/win7-arm/native/libuv.dll": {
  92. "assetType": "native",
  93. "rid": "win7-arm"
  94. },
  95. "runtimes/win7-x64/native/libuv.dll": {
  96. "assetType": "native",
  97. "rid": "win7-x64"
  98. },
  99. "runtimes/win7-x86/native/libuv.dll": {
  100. "assetType": "native",
  101. "rid": "win7-x86"
  102. }
  103. }
  104. },
  105. "Microsoft.ApplicationInsights/2.1.0": {
  106. "type": "package",
  107. "dependencies": {
  108. "System.Collections": "4.0.10",
  109. "System.Diagnostics.Debug": "4.0.10",
  110. "System.Diagnostics.Tools": "4.0.0",
  111. "System.Diagnostics.Tracing": "4.0.20",
  112. "System.Globalization": "4.0.10",
  113. "System.IO": "4.0.10",
  114. "System.IO.Compression": "4.0.0",
  115. "System.Linq": "4.0.0",
  116. "System.Net.Http": "4.0.0",
  117. "System.Reflection": "4.0.10",
  118. "System.Reflection.Extensions": "4.0.0",
  119. "System.Runtime": "4.0.20",
  120. "System.Runtime.Extensions": "4.0.10",
  121. "System.Text.Encoding": "4.0.10",
  122. "System.Text.Encoding.Extensions": "4.0.10",
  123. "System.Text.RegularExpressions": "4.0.10",
  124. "System.Threading": "4.0.10",
  125. "System.Threading.Tasks": "4.0.10",
  126. "System.Xml.XDocument": "4.0.10"
  127. },
  128. "compile": {
  129. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll": {}
  130. },
  131. "runtime": {
  132. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll": {}
  133. }
  134. },
  135. "Microsoft.ApplicationInsights.AspNetCore/1.0.2": {
  136. "type": "package",
  137. "dependencies": {
  138. "Microsoft.ApplicationInsights": "2.1.0",
  139. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  140. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  141. "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.1",
  142. "Microsoft.Extensions.Configuration": "1.0.0",
  143. "Microsoft.Extensions.DiagnosticAdapter": "1.0.0",
  144. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  145. "System.Net.NameResolution": "4.0.0"
  146. },
  147. "compile": {
  148. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {}
  149. },
  150. "runtime": {
  151. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll": {}
  152. }
  153. },
  154. "Microsoft.AspNetCore.Antiforgery/1.0.1": {
  155. "type": "package",
  156. "dependencies": {
  157. "Microsoft.AspNetCore.DataProtection": "1.0.0",
  158. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  159. "Microsoft.AspNetCore.WebUtilities": "1.0.0",
  160. "Microsoft.Extensions.ObjectPool": "1.0.0"
  161. },
  162. "compile": {
  163. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
  164. },
  165. "runtime": {
  166. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll": {}
  167. }
  168. },
  169. "Microsoft.AspNetCore.Authorization/1.0.0": {
  170. "type": "package",
  171. "dependencies": {
  172. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  173. "Microsoft.Extensions.Options": "1.0.0",
  174. "System.Security.Claims": "4.0.1"
  175. },
  176. "compile": {
  177. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
  178. },
  179. "runtime": {
  180. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll": {}
  181. }
  182. },
  183. "Microsoft.AspNetCore.Cryptography.Internal/1.1.0-preview1-final": {
  184. "type": "package",
  185. "dependencies": {
  186. "NETStandard.Library": "1.6.1-preview1-24530-04"
  187. },
  188. "compile": {
  189. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  190. },
  191. "runtime": {
  192. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll": {}
  193. }
  194. },
  195. "Microsoft.AspNetCore.DataProtection/1.1.0-preview1-final": {
  196. "type": "package",
  197. "dependencies": {
  198. "Microsoft.AspNetCore.Cryptography.Internal": "1.1.0-preview1-final",
  199. "Microsoft.AspNetCore.DataProtection.Abstractions": "1.1.0-preview1-final",
  200. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-preview1-final",
  201. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0-preview1-final",
  202. "Microsoft.Extensions.Logging.Abstractions": "1.1.0-preview1-final",
  203. "Microsoft.Extensions.Options": "1.1.0-preview1-final",
  204. "Microsoft.Win32.Registry": "4.3.0-preview1-24530-04",
  205. "NETStandard.Library": "1.6.1-preview1-24530-04",
  206. "System.Security.Claims": "4.3.0-preview1-24530-04",
  207. "System.Security.Principal.Windows": "4.3.0-preview1-24530-04"
  208. },
  209. "compile": {
  210. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
  211. },
  212. "runtime": {
  213. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll": {}
  214. }
  215. },
  216. "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0-preview1-final": {
  217. "type": "package",
  218. "dependencies": {
  219. "NETStandard.Library": "1.6.1-preview1-24530-04",
  220. "System.ComponentModel": "4.3.0-preview1-24530-04"
  221. },
  222. "compile": {
  223. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  224. },
  225. "runtime": {
  226. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {}
  227. }
  228. },
  229. "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
  230. "type": "package",
  231. "dependencies": {
  232. "System.Resources.ResourceManager": "4.0.1"
  233. },
  234. "compile": {
  235. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  236. },
  237. "runtime": {
  238. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {}
  239. }
  240. },
  241. "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
  242. "type": "package",
  243. "dependencies": {
  244. "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.1.0",
  245. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  246. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  247. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  248. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  249. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  250. "NETStandard.Library": "1.6.1"
  251. },
  252. "compile": {
  253. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  254. },
  255. "runtime": {
  256. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll": {}
  257. }
  258. },
  259. "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
  260. "type": "package",
  261. "dependencies": {
  262. "Microsoft.AspNetCore.Http.Features": "1.1.0",
  263. "Microsoft.Extensions.Configuration.Abstractions": "1.1.0",
  264. "NETStandard.Library": "1.6.1"
  265. },
  266. "compile": {
  267. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  268. },
  269. "runtime": {
  270. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {}
  271. }
  272. },
  273. "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
  274. "type": "package",
  275. "dependencies": {
  276. "System.Collections": "4.0.11",
  277. "System.Resources.ResourceManager": "4.0.1",
  278. "System.Text.Encodings.Web": "4.0.0"
  279. },
  280. "compile": {
  281. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  282. },
  283. "runtime": {
  284. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {}
  285. }
  286. },
  287. "Microsoft.AspNetCore.Http/1.0.0": {
  288. "type": "package",
  289. "dependencies": {
  290. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  291. "Microsoft.AspNetCore.WebUtilities": "1.0.0",
  292. "Microsoft.Extensions.ObjectPool": "1.0.0",
  293. "Microsoft.Extensions.Options": "1.0.0",
  294. "Microsoft.Net.Http.Headers": "1.0.0",
  295. "System.Buffers": "4.0.0",
  296. "System.Threading": "4.0.11"
  297. },
  298. "compile": {
  299. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
  300. },
  301. "runtime": {
  302. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll": {}
  303. }
  304. },
  305. "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
  306. "type": "package",
  307. "dependencies": {
  308. "Microsoft.AspNetCore.Http.Features": "1.1.0",
  309. "Microsoft.Extensions.Primitives": "1.1.0",
  310. "NETStandard.Library": "1.6.1",
  311. "System.Globalization.Extensions": "4.3.0",
  312. "System.Reflection.TypeExtensions": "4.3.0",
  313. "System.Text.Encodings.Web": "4.3.0"
  314. },
  315. "compile": {
  316. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  317. },
  318. "runtime": {
  319. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
  320. }
  321. },
  322. "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
  323. "type": "package",
  324. "dependencies": {
  325. "Microsoft.AspNetCore.Http.Abstractions": "1.1.0",
  326. "Microsoft.Extensions.FileProviders.Abstractions": "1.1.0",
  327. "Microsoft.Net.Http.Headers": "1.1.0",
  328. "NETStandard.Library": "1.6.1",
  329. "System.Buffers": "4.3.0"
  330. },
  331. "compile": {
  332. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
  333. },
  334. "runtime": {
  335. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll": {}
  336. }
  337. },
  338. "Microsoft.AspNetCore.Http.Features/1.1.0": {
  339. "type": "package",
  340. "dependencies": {
  341. "Microsoft.Extensions.Primitives": "1.1.0",
  342. "NETStandard.Library": "1.6.1",
  343. "System.ComponentModel": "4.3.0",
  344. "System.Net.WebSockets": "4.3.0",
  345. "System.Security.Claims": "4.3.0",
  346. "System.Security.Principal": "4.3.0"
  347. },
  348. "compile": {
  349. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
  350. },
  351. "runtime": {
  352. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll": {}
  353. }
  354. },
  355. "Microsoft.AspNetCore.JsonPatch/1.0.0": {
  356. "type": "package",
  357. "dependencies": {
  358. "Microsoft.CSharp": "4.0.1",
  359. "Newtonsoft.Json": "9.0.1",
  360. "System.Collections.Concurrent": "4.0.12",
  361. "System.ComponentModel.TypeConverter": "4.1.0",
  362. "System.Diagnostics.Debug": "4.0.11",
  363. "System.Globalization": "4.0.11",
  364. "System.Linq": "4.1.0",
  365. "System.Reflection.Extensions": "4.0.1",
  366. "System.Resources.ResourceManager": "4.0.1",
  367. "System.Runtime.Extensions": "4.1.0",
  368. "System.Runtime.Serialization.Primitives": "4.1.1",
  369. "System.Text.Encoding.Extensions": "4.0.11"
  370. },
  371. "compile": {
  372. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
  373. },
  374. "runtime": {
  375. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {}
  376. }
  377. },
  378. "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
  379. "type": "package",
  380. "dependencies": {
  381. "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
  382. "Microsoft.CSharp": "4.0.1",
  383. "Microsoft.Net.Http.Headers": "1.0.0",
  384. "System.ComponentModel.TypeConverter": "4.1.0",
  385. "System.Reflection.Extensions": "4.0.1",
  386. "System.Text.Encoding.Extensions": "4.0.11"
  387. },
  388. "compile": {
  389. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  390. },
  391. "runtime": {
  392. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll": {}
  393. }
  394. },
  395. "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
  396. "type": "package",
  397. "dependencies": {
  398. "Microsoft.AspNetCore.Authorization": "1.0.0",
  399. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  400. "Microsoft.AspNetCore.Http": "1.0.0",
  401. "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.1",
  402. "Microsoft.AspNetCore.Routing": "1.0.0",
  403. "Microsoft.Extensions.DependencyModel": "1.0.0",
  404. "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0",
  405. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  406. "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
  407. "System.Buffers": "4.0.0",
  408. "System.Diagnostics.DiagnosticSource": "4.0.0",
  409. "System.Text.Encoding": "4.0.11"
  410. },
  411. "compile": {
  412. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
  413. },
  414. "runtime": {
  415. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll": {}
  416. }
  417. },
  418. "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
  419. "type": "package",
  420. "dependencies": {
  421. "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
  422. "Microsoft.Extensions.Localization": "1.0.0",
  423. "System.ComponentModel.Annotations": "4.1.0"
  424. },
  425. "compile": {
  426. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  427. },
  428. "runtime": {
  429. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {}
  430. }
  431. },
  432. "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
  433. "type": "package",
  434. "dependencies": {
  435. "Microsoft.AspNetCore.JsonPatch": "1.0.0",
  436. "Microsoft.AspNetCore.Mvc.Core": "1.0.1"
  437. },
  438. "compile": {
  439. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  440. },
  441. "runtime": {
  442. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {}
  443. }
  444. },
  445. "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
  446. "type": "package",
  447. "dependencies": {
  448. "Microsoft.AspNetCore.Antiforgery": "1.0.1",
  449. "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0",
  450. "Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
  451. "Microsoft.AspNetCore.Mvc.Core": "1.0.1",
  452. "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.1",
  453. "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.1",
  454. "Microsoft.Extensions.WebEncoders": "1.0.0",
  455. "Newtonsoft.Json": "9.0.1",
  456. "System.Buffers": "4.0.0",
  457. "System.Runtime.Serialization.Primitives": "4.1.1"
  458. },
  459. "compile": {
  460. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  461. },
  462. "runtime": {
  463. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {}
  464. }
  465. },
  466. "Microsoft.AspNetCore.Routing/1.0.0": {
  467. "type": "package",
  468. "dependencies": {
  469. "Microsoft.AspNetCore.Http.Extensions": "1.0.0",
  470. "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0",
  471. "Microsoft.Extensions.Logging.Abstractions": "1.0.0",
  472. "Microsoft.Extensions.ObjectPool": "1.0.0",
  473. "Microsoft.Extensions.Options": "1.0.0",
  474. "System.Collections": "4.0.11",
  475. "System.Text.RegularExpressions": "4.1.0"
  476. },
  477. "compile": {
  478. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
  479. },
  480. "runtime": {
  481. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll": {}
  482. }
  483. },
  484. "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
  485. "type": "package",
  486. "dependencies": {
  487. "Microsoft.AspNetCore.Http.Abstractions": "1.0.0",
  488. "System.Collections.Concurrent": "4.0.12",
  489. "System.Reflection.Extensions": "4.0.1",
  490. "System.Threading.Tasks": "4.0.11"
  491. },
  492. "compile": {
  493. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  494. },
  495. "runtime": {
  496. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll": {}
  497. }
  498. },
  499. "Microsoft.AspNetCore.WebSockets/1.0.0": {
  500. "type": "package",
  501. "dependencies": {
  502. "Microsoft.AspNetCore.Http.Extensions": "1.1.0",
  503. "Microsoft.Extensions.Options": "1.1.0",
  504. "NETStandard.Library": "1.6.1"
  505. },
  506. "compile": {
  507. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll": {}
  508. },
  509. "runtime": {
  510. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll": {}
  511. }
  512. },
  513. "Microsoft.AspNetCore.WebUtilities/1.0.0": {
  514. "type": "package",
  515. "dependencies": {
  516. "Microsoft.Extensions.Primitives": "1.0.0",
  517. "System.Buffers": "4.0.0",
  518. "System.Collections": "4.0.11",
  519. "System.IO": "4.1.0",
  520. "System.IO.FileSystem": "4.0.1",
  521. "System.Text.Encodings.Web": "4.0.0"
  522. },
  523. "compile": {
  524. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
  525. },
  526. "runtime": {
  527. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll": {}
  528. }
  529. },
  530. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  531. "type": "package"
  532. },
  533. "Microsoft.CodeAnalysis.Common/1.3.0": {
  534. "type": "package",
  535. "dependencies": {
  536. "Microsoft.CodeAnalysis.Analyzers": "1.1.0",
  537. "System.AppContext": "4.1.0",
  538. "System.Collections": "4.0.11",
  539. "System.Collections.Concurrent": "4.0.12",
  540. "System.Collections.Immutable": "1.2.0",
  541. "System.Console": "4.0.0",
  542. "System.Diagnostics.Debug": "4.0.11",
  543. "System.Diagnostics.FileVersionInfo": "4.0.0",
  544. "System.Diagnostics.StackTrace": "4.0.1",
  545. "System.Diagnostics.Tools": "4.0.1",
  546. "System.Dynamic.Runtime": "4.0.11",
  547. "System.Globalization": "4.0.11",
  548. "System.IO.FileSystem": "4.0.1",
  549. "System.IO.FileSystem.Primitives": "4.0.1",
  550. "System.Linq": "4.1.0",
  551. "System.Linq.Expressions": "4.1.0",
  552. "System.Reflection": "4.1.0",
  553. "System.Reflection.Metadata": "1.3.0",
  554. "System.Reflection.Primitives": "4.0.1",
  555. "System.Resources.ResourceManager": "4.0.1",
  556. "System.Runtime": "4.1.0",
  557. "System.Runtime.Extensions": "4.1.0",
  558. "System.Runtime.Handles": "4.0.1",
  559. "System.Runtime.InteropServices": "4.1.0",
  560. "System.Runtime.Numerics": "4.0.1",
  561. "System.Security.Cryptography.Algorithms": "4.2.0",
  562. "System.Security.Cryptography.Encoding": "4.0.0",
  563. "System.Security.Cryptography.X509Certificates": "4.1.0",
  564. "System.Text.Encoding": "4.0.11",
  565. "System.Text.Encoding.CodePages": "4.0.1",
  566. "System.Text.Encoding.Extensions": "4.0.11",
  567. "System.Threading": "4.0.11",
  568. "System.Threading.Tasks": "4.0.11",
  569. "System.Threading.Tasks.Parallel": "4.0.1",
  570. "System.Threading.Thread": "4.0.0",
  571. "System.Xml.ReaderWriter": "4.0.11",
  572. "System.Xml.XDocument": "4.0.11",
  573. "System.Xml.XPath.XDocument": "4.0.1",
  574. "System.Xml.XmlDocument": "4.0.1"
  575. },
  576. "compile": {
  577. "lib/netstandard1.3/_._": {}
  578. },
  579. "runtime": {
  580. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": {}
  581. }
  582. },
  583. "Microsoft.CodeAnalysis.CSharp/1.3.0": {
  584. "type": "package",
  585. "dependencies": {
  586. "Microsoft.CodeAnalysis.Common": "[1.3.0]"
  587. },
  588. "compile": {
  589. "lib/netstandard1.3/_._": {}
  590. },
  591. "runtime": {
  592. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
  593. }
  594. },
  595. "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
  596. "type": "package",
  597. "dependencies": {
  598. "Microsoft.CodeAnalysis.Common": "1.3.0"
  599. },
  600. "compile": {
  601. "lib/netstandard1.3/_._": {}
  602. },
  603. "runtime": {
  604. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {}
  605. }
  606. },
  607. "Microsoft.CSharp/4.3.0": {
  608. "type": "package",
  609. "dependencies": {
  610. "System.Collections": "4.3.0",
  611. "System.Diagnostics.Debug": "4.3.0",
  612. "System.Dynamic.Runtime": "4.3.0",
  613. "System.Globalization": "4.3.0",
  614. "System.Linq": "4.3.0",
  615. "System.Linq.Expressions": "4.3.0",
  616. "System.ObjectModel": "4.3.0",
  617. "System.Reflection": "4.3.0",
  618. "System.Reflection.Extensions": "4.3.0",
  619. "System.Reflection.Primitives": "4.3.0",
  620. "System.Reflection.TypeExtensions": "4.3.0",
  621. "System.Resources.ResourceManager": "4.3.0",
  622. "System.Runtime": "4.3.0",
  623. "System.Runtime.Extensions": "4.3.0",
  624. "System.Runtime.InteropServices": "4.3.0",
  625. "System.Threading": "4.3.0"
  626. },
  627. "compile": {
  628. "ref/netstandard1.0/Microsoft.CSharp.dll": {}
  629. },
  630. "runtime": {
  631. "lib/netstandard1.3/Microsoft.CSharp.dll": {}
  632. }
  633. },
  634. "Microsoft.DiaSymReader/1.0.6": {
  635. "type": "package",
  636. "compile": {
  637. "lib/portable-net45+win8/Microsoft.DiaSymReader.dll": {}
  638. },
  639. "runtime": {
  640. "lib/portable-net45+win8/Microsoft.DiaSymReader.dll": {}
  641. }
  642. },
  643. "Microsoft.DiaSymReader.Native/1.3.3": {
  644. "type": "package",
  645. "runtimeTargets": {
  646. "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll": {
  647. "assetType": "native",
  648. "rid": "win-x64"
  649. },
  650. "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll": {
  651. "assetType": "native",
  652. "rid": "win-x86"
  653. },
  654. "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll": {
  655. "assetType": "native",
  656. "rid": "win"
  657. },
  658. "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll": {
  659. "assetType": "native",
  660. "rid": "win"
  661. },
  662. "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll": {
  663. "assetType": "native",
  664. "rid": "win"
  665. },
  666. "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll": {
  667. "assetType": "native",
  668. "rid": "win8-arm"
  669. }
  670. }
  671. },
  672. "Microsoft.DotNet.InternalAbstractions/1.0.500-preview2-1-003177": {
  673. "type": "package",
  674. "dependencies": {
  675. "System.AppContext": "4.3.0",
  676. "System.Collections": "4.3.0",
  677. "System.IO": "4.3.0",
  678. "System.IO.FileSystem": "4.3.0",
  679. "System.Reflection.TypeExtensions": "4.3.0",
  680. "System.Runtime.Extensions": "4.3.0",
  681. "System.Runtime.InteropServices": "4.3.0",
  682. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0"
  683. },
  684. "compile": {
  685. "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
  686. },
  687. "runtime": {
  688. "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": {}
  689. }
  690. },
  691. "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702": {
  692. "type": "package",
  693. "dependencies": {
  694. "Microsoft.CSharp": "4.0.1-rc2-24027",
  695. "Microsoft.Extensions.DependencyModel": "1.0.0-rc2-002702",
  696. "Newtonsoft.Json": "7.0.1",
  697. "NuGet.Packaging": "3.5.0-beta-final",
  698. "NuGet.RuntimeModel": "3.5.0-beta-final",
  699. "System.Dynamic.Runtime": "4.0.11-rc2-24027",
  700. "System.Reflection.Metadata": "1.3.0-rc2-24027",
  701. "System.Runtime.Loader": "4.0.0-rc2-24027",
  702. "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027",
  703. "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027",
  704. "System.Threading.Thread": "4.0.0-rc2-24027",
  705. "System.Xml.XDocument": "4.0.11-rc2-24027"
  706. },
  707. "compile": {
  708. "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll": {}
  709. },
  710. "runtime": {
  711. "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll": {}
  712. }
  713. },
  714. "Microsoft.EntityFrameworkCore/1.1.0": {
  715. "type": "package",
  716. "dependencies": {
  717. "Microsoft.Extensions.Caching.Memory": "1.1.0",
  718. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  719. "Microsoft.Extensions.Logging": "1.1.0",
  720. "NETStandard.Library": "1.6.1",
  721. "Remotion.Linq": "2.1.1",
  722. "System.Collections.Immutable": "1.3.0",
  723. "System.ComponentModel.Annotations": "4.3.0",
  724. "System.Interactive.Async": "3.0.0",
  725. "System.Linq.Queryable": "4.3.0"
  726. },
  727. "compile": {
  728. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
  729. },
  730. "runtime": {
  731. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll": {}
  732. }
  733. },
  734. "Microsoft.EntityFrameworkCore.Design/1.1.0": {
  735. "type": "package",
  736. "dependencies": {
  737. "Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0",
  738. "Microsoft.EntityFrameworkCore.Relational.Design": "1.1.0",
  739. "NETStandard.Library": "1.6.1",
  740. "System.Collections.NonGeneric": "4.3.0"
  741. },
  742. "compile": {
  743. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
  744. },
  745. "runtime": {
  746. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll": {}
  747. }
  748. },
  749. "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
  750. "type": "package",
  751. "dependencies": {
  752. "Microsoft.CSharp": "4.3.0",
  753. "Microsoft.EntityFrameworkCore": "1.1.0",
  754. "NETStandard.Library": "1.6.1",
  755. "System.Data.Common": "4.3.0",
  756. "System.Diagnostics.DiagnosticSource": "4.3.0"
  757. },
  758. "compile": {
  759. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
  760. },
  761. "runtime": {
  762. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll": {}
  763. }
  764. },
  765. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
  766. "type": "package",
  767. "dependencies": {
  768. "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
  769. "NETStandard.Library": "1.6.1"
  770. },
  771. "compile": {
  772. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
  773. },
  774. "runtime": {
  775. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
  776. }
  777. },
  778. "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
  779. "type": "package",
  780. "dependencies": {
  781. "Microsoft.EntityFrameworkCore.Design": "1.1.0"
  782. },
  783. "compile": {
  784. "lib/netstandard1.3/_._": {}
  785. },
  786. "runtime": {
  787. "lib/netstandard1.3/_._": {}
  788. }
  789. },
  790. "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
  791. "type": "package",
  792. "dependencies": {
  793. "Microsoft.Extensions.Primitives": "1.1.0",
  794. "NETStandard.Library": "1.6.1"
  795. },
  796. "compile": {
  797. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  798. },
  799. "runtime": {
  800. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
  801. }
  802. },
  803. "Microsoft.Extensions.Caching.Memory/1.1.0": {
  804. "type": "package",
  805. "dependencies": {
  806. "Microsoft.Extensions.Caching.Abstractions": "1.1.0",
  807. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  808. "Microsoft.Extensions.Options": "1.1.0",
  809. "NETStandard.Library": "1.6.1"
  810. },
  811. "compile": {
  812. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
  813. },
  814. "runtime": {
  815. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll": {}
  816. }
  817. },
  818. "Microsoft.Extensions.Configuration/1.0.0": {
  819. "type": "package",
  820. "dependencies": {
  821. "Microsoft.Extensions.Configuration.Abstractions": "1.0.0",
  822. "System.Collections": "4.0.11",
  823. "System.Diagnostics.Debug": "4.0.11",
  824. "System.IO": "4.1.0",
  825. "System.Resources.ResourceManager": "4.0.1",
  826. "System.Runtime.Extensions": "4.1.0",
  827. "System.Runtime.InteropServices": "4.1.0",
  828. "System.Threading": "4.0.11"
  829. },
  830. "compile": {
  831. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
  832. },
  833. "runtime": {
  834. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {}
  835. }
  836. },
  837. "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
  838. "type": "package",
  839. "dependencies": {
  840. "Microsoft.Extensions.Primitives": "1.1.0",
  841. "NETStandard.Library": "1.6.1"
  842. },
  843. "compile": {
  844. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  845. },
  846. "runtime": {
  847. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
  848. }
  849. },
  850. "Microsoft.Extensions.DependencyInjection/1.1.0": {
  851. "type": "package",
  852. "dependencies": {
  853. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  854. "NETStandard.Library": "1.6.1"
  855. },
  856. "compile": {
  857. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
  858. },
  859. "runtime": {
  860. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {}
  861. }
  862. },
  863. "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
  864. "type": "package",
  865. "dependencies": {
  866. "NETStandard.Library": "1.6.1",
  867. "System.ComponentModel": "4.3.0"
  868. },
  869. "compile": {
  870. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  871. },
  872. "runtime": {
  873. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
  874. }
  875. },
  876. "Microsoft.Extensions.DependencyModel/1.0.500-preview2-1-003177": {
  877. "type": "package",
  878. "dependencies": {
  879. "Microsoft.DotNet.InternalAbstractions": "1.0.500-preview2-1-003177",
  880. "Newtonsoft.Json": "9.0.1",
  881. "System.Diagnostics.Debug": "4.3.0",
  882. "System.Dynamic.Runtime": "4.3.0",
  883. "System.Linq": "4.3.0"
  884. },
  885. "compile": {
  886. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  887. },
  888. "runtime": {
  889. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll": {}
  890. }
  891. },
  892. "Microsoft.Extensions.DiagnosticAdapter/1.0.0": {
  893. "type": "package",
  894. "dependencies": {
  895. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  896. "System.Collections.Concurrent": "4.0.12",
  897. "System.ComponentModel": "4.0.1",
  898. "System.Diagnostics.DiagnosticSource": "4.0.0",
  899. "System.Reflection.Emit": "4.0.1",
  900. "System.Reflection.Emit.Lightweight": "4.0.1",
  901. "System.Reflection.Extensions": "4.0.1",
  902. "System.Runtime.Extensions": "4.1.0"
  903. },
  904. "compile": {
  905. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  906. },
  907. "runtime": {
  908. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll": {}
  909. }
  910. },
  911. "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
  912. "type": "package",
  913. "dependencies": {
  914. "Microsoft.Extensions.Primitives": "1.1.0",
  915. "NETStandard.Library": "1.6.1"
  916. },
  917. "compile": {
  918. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  919. },
  920. "runtime": {
  921. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {}
  922. }
  923. },
  924. "Microsoft.Extensions.Localization/1.0.0": {
  925. "type": "package",
  926. "dependencies": {
  927. "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0",
  928. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  929. "Microsoft.Extensions.Localization.Abstractions": "1.0.0",
  930. "Microsoft.Extensions.Options": "1.0.0",
  931. "System.Collections.Concurrent": "4.0.12",
  932. "System.Resources.Reader": "4.0.0"
  933. },
  934. "compile": {
  935. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
  936. },
  937. "runtime": {
  938. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll": {}
  939. }
  940. },
  941. "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
  942. "type": "package",
  943. "dependencies": {
  944. "Microsoft.CSharp": "4.0.1",
  945. "System.Globalization": "4.0.11",
  946. "System.Resources.ResourceManager": "4.0.1"
  947. },
  948. "compile": {
  949. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  950. },
  951. "runtime": {
  952. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {}
  953. }
  954. },
  955. "Microsoft.Extensions.Logging/1.1.0": {
  956. "type": "package",
  957. "dependencies": {
  958. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  959. "Microsoft.Extensions.Logging.Abstractions": "1.1.0",
  960. "NETStandard.Library": "1.6.1"
  961. },
  962. "compile": {
  963. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
  964. },
  965. "runtime": {
  966. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {}
  967. }
  968. },
  969. "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
  970. "type": "package",
  971. "dependencies": {
  972. "NETStandard.Library": "1.6.1"
  973. },
  974. "compile": {
  975. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
  976. },
  977. "runtime": {
  978. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {}
  979. }
  980. },
  981. "Microsoft.Extensions.ObjectPool/1.0.0": {
  982. "type": "package",
  983. "dependencies": {
  984. "System.Diagnostics.Debug": "4.0.11",
  985. "System.Resources.ResourceManager": "4.0.1",
  986. "System.Runtime.Extensions": "4.1.0",
  987. "System.Threading": "4.0.11"
  988. },
  989. "compile": {
  990. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
  991. },
  992. "runtime": {
  993. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll": {}
  994. }
  995. },
  996. "Microsoft.Extensions.Options/1.1.0": {
  997. "type": "package",
  998. "dependencies": {
  999. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1000. "Microsoft.Extensions.Primitives": "1.1.0",
  1001. "NETStandard.Library": "1.6.1",
  1002. "System.ComponentModel": "4.3.0"
  1003. },
  1004. "compile": {
  1005. "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
  1006. },
  1007. "runtime": {
  1008. "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {}
  1009. }
  1010. },
  1011. "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
  1012. "type": "package",
  1013. "dependencies": {
  1014. "System.AppContext": "4.1.0",
  1015. "System.Reflection": "4.1.0",
  1016. "System.Reflection.Extensions": "4.0.1",
  1017. "System.Reflection.TypeExtensions": "4.1.0",
  1018. "System.Resources.ResourceManager": "4.0.1",
  1019. "System.Runtime.Extensions": "4.1.0"
  1020. },
  1021. "compile": {
  1022. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
  1023. },
  1024. "runtime": {
  1025. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll": {}
  1026. }
  1027. },
  1028. "Microsoft.Extensions.Primitives/1.1.0": {
  1029. "type": "package",
  1030. "dependencies": {
  1031. "NETStandard.Library": "1.6.1",
  1032. "System.Runtime.CompilerServices.Unsafe": "4.3.0"
  1033. },
  1034. "compile": {
  1035. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
  1036. },
  1037. "runtime": {
  1038. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {}
  1039. }
  1040. },
  1041. "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview1-002702": {
  1042. "type": "package",
  1043. "dependencies": {
  1044. "Microsoft.DiaSymReader": "1.0.6",
  1045. "Microsoft.DiaSymReader.Native": "1.3.3",
  1046. "Microsoft.DotNet.ProjectModel": "1.0.0-rc2-002702",
  1047. "Newtonsoft.Json": "7.0.1",
  1048. "System.Reflection.TypeExtensions": "4.1.0-rc2-24027",
  1049. "System.Resources.ResourceManager": "4.0.1-rc2-24027"
  1050. },
  1051. "compile": {
  1052. "lib/netstandard1.5/Microsoft.Extensions.Testing.Abstractions.dll": {}
  1053. },
  1054. "runtime": {
  1055. "lib/netstandard1.5/Microsoft.Extensions.Testing.Abstractions.dll": {}
  1056. }
  1057. },
  1058. "Microsoft.Extensions.WebEncoders/1.0.0": {
  1059. "type": "package",
  1060. "dependencies": {
  1061. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0",
  1062. "Microsoft.Extensions.Options": "1.0.0",
  1063. "System.Text.Encodings.Web": "4.0.0"
  1064. },
  1065. "compile": {
  1066. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
  1067. },
  1068. "runtime": {
  1069. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {}
  1070. }
  1071. },
  1072. "Microsoft.Net.Http.Headers/1.1.0": {
  1073. "type": "package",
  1074. "dependencies": {
  1075. "Microsoft.Extensions.Primitives": "1.1.0",
  1076. "NETStandard.Library": "1.6.1",
  1077. "System.Buffers": "4.3.0",
  1078. "System.Diagnostics.Contracts": "4.3.0"
  1079. },
  1080. "compile": {
  1081. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
  1082. },
  1083. "runtime": {
  1084. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
  1085. }
  1086. },
  1087. "Microsoft.NETCore.App/1.0.1": {
  1088. "type": "package",
  1089. "dependencies": {
  1090. "Libuv": "1.9.0",
  1091. "Microsoft.CSharp": "4.0.1",
  1092. "Microsoft.CodeAnalysis.CSharp": "1.3.0",
  1093. "Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
  1094. "Microsoft.NETCore.DotNetHostPolicy": "1.0.1",
  1095. "Microsoft.NETCore.Runtime.CoreCLR": "1.0.4",
  1096. "Microsoft.VisualBasic": "10.0.1",
  1097. "NETStandard.Library": "1.6.0",
  1098. "System.Buffers": "4.0.0",
  1099. "System.Collections.Immutable": "1.2.0",
  1100. "System.ComponentModel": "4.0.1",
  1101. "System.ComponentModel.Annotations": "4.1.0",
  1102. "System.Diagnostics.DiagnosticSource": "4.0.0",
  1103. "System.Diagnostics.Process": "4.1.0",
  1104. "System.Dynamic.Runtime": "4.0.11",
  1105. "System.Globalization.Extensions": "4.0.1",
  1106. "System.IO.FileSystem.Watcher": "4.0.0",
  1107. "System.IO.MemoryMappedFiles": "4.0.0",
  1108. "System.IO.UnmanagedMemoryStream": "4.0.1",
  1109. "System.Linq.Expressions": "4.1.0",
  1110. "System.Linq.Parallel": "4.0.1",
  1111. "System.Linq.Queryable": "4.0.1",
  1112. "System.Net.NameResolution": "4.0.0",
  1113. "System.Net.Requests": "4.0.11",
  1114. "System.Net.Security": "4.0.0",
  1115. "System.Net.WebHeaderCollection": "4.0.1",
  1116. "System.Numerics.Vectors": "4.1.1",
  1117. "System.Reflection.DispatchProxy": "4.0.1",
  1118. "System.Reflection.Metadata": "1.3.0",
  1119. "System.Reflection.TypeExtensions": "4.1.0",
  1120. "System.Resources.Reader": "4.0.0",
  1121. "System.Runtime.Loader": "4.0.0",
  1122. "System.Security.Cryptography.Algorithms": "4.2.0",
  1123. "System.Security.Cryptography.Encoding": "4.0.0",
  1124. "System.Security.Cryptography.Primitives": "4.0.0",
  1125. "System.Security.Cryptography.X509Certificates": "4.1.0",
  1126. "System.Threading.Tasks.Dataflow": "4.6.0",
  1127. "System.Threading.Tasks.Extensions": "4.0.0",
  1128. "System.Threading.Tasks.Parallel": "4.0.1",
  1129. "System.Threading.Thread": "4.0.0",
  1130. "System.Threading.ThreadPool": "4.0.10"
  1131. },
  1132. "compile": {
  1133. "lib/netcoreapp1.0/_._": {}
  1134. },
  1135. "runtime": {
  1136. "lib/netcoreapp1.0/_._": {}
  1137. }
  1138. },
  1139. "Microsoft.NETCore.DotNetHost/1.0.1": {
  1140. "type": "package"
  1141. },
  1142. "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
  1143. "type": "package",
  1144. "dependencies": {
  1145. "Microsoft.NETCore.DotNetHostResolver": "1.0.1"
  1146. }
  1147. },
  1148. "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
  1149. "type": "package",
  1150. "dependencies": {
  1151. "Microsoft.NETCore.DotNetHost": "1.0.1"
  1152. }
  1153. },
  1154. "Microsoft.NETCore.Jit/1.0.4": {
  1155. "type": "package"
  1156. },
  1157. "Microsoft.NETCore.Platforms/1.1.0": {
  1158. "type": "package",
  1159. "compile": {
  1160. "lib/netstandard1.0/_._": {}
  1161. },
  1162. "runtime": {
  1163. "lib/netstandard1.0/_._": {}
  1164. }
  1165. },
  1166. "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
  1167. "type": "package",
  1168. "dependencies": {
  1169. "Microsoft.NETCore.Jit": "1.0.4",
  1170. "Microsoft.NETCore.Windows.ApiSets": "1.0.1"
  1171. }
  1172. },
  1173. "Microsoft.NETCore.Targets/1.1.0": {
  1174. "type": "package",
  1175. "compile": {
  1176. "lib/netstandard1.0/_._": {}
  1177. },
  1178. "runtime": {
  1179. "lib/netstandard1.0/_._": {}
  1180. }
  1181. },
  1182. "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
  1183. "type": "package"
  1184. },
  1185. "Microsoft.VisualBasic/10.0.1": {
  1186. "type": "package",
  1187. "dependencies": {
  1188. "System.Collections": "4.0.11",
  1189. "System.Diagnostics.Debug": "4.0.11",
  1190. "System.Dynamic.Runtime": "4.0.11",
  1191. "System.Globalization": "4.0.11",
  1192. "System.Linq": "4.1.0",
  1193. "System.Linq.Expressions": "4.1.0",
  1194. "System.ObjectModel": "4.0.12",
  1195. "System.Reflection": "4.1.0",
  1196. "System.Reflection.Extensions": "4.0.1",
  1197. "System.Reflection.Primitives": "4.0.1",
  1198. "System.Reflection.TypeExtensions": "4.1.0",
  1199. "System.Resources.ResourceManager": "4.0.1",
  1200. "System.Runtime": "4.1.0",
  1201. "System.Runtime.Extensions": "4.1.0",
  1202. "System.Runtime.InteropServices": "4.1.0",
  1203. "System.Threading": "4.0.11"
  1204. },
  1205. "compile": {
  1206. "ref/netstandard1.1/Microsoft.VisualBasic.dll": {}
  1207. },
  1208. "runtime": {
  1209. "lib/netstandard1.3/Microsoft.VisualBasic.dll": {}
  1210. }
  1211. },
  1212. "Microsoft.Win32.Primitives/4.3.0": {
  1213. "type": "package",
  1214. "dependencies": {
  1215. "Microsoft.NETCore.Platforms": "1.1.0",
  1216. "Microsoft.NETCore.Targets": "1.1.0",
  1217. "System.Runtime": "4.3.0"
  1218. },
  1219. "compile": {
  1220. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
  1221. }
  1222. },
  1223. "Microsoft.Win32.Registry/4.3.0-preview1-24530-04": {
  1224. "type": "package",
  1225. "dependencies": {
  1226. "Microsoft.NETCore.Platforms": "1.1.0-preview1-24530-04",
  1227. "System.Collections": "4.3.0-preview1-24530-04",
  1228. "System.Globalization": "4.3.0-preview1-24530-04",
  1229. "System.Resources.ResourceManager": "4.3.0-preview1-24530-04",
  1230. "System.Runtime": "4.3.0-preview1-24530-04",
  1231. "System.Runtime.Extensions": "4.3.0-preview1-24530-04",
  1232. "System.Runtime.Handles": "4.3.0-preview1-24530-04",
  1233. "System.Runtime.InteropServices": "4.3.0-preview1-24530-04"
  1234. },
  1235. "compile": {
  1236. "ref/netstandard1.3/Microsoft.Win32.Registry.dll": {}
  1237. },
  1238. "runtimeTargets": {
  1239. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  1240. "assetType": "runtime",
  1241. "rid": "unix"
  1242. },
  1243. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll": {
  1244. "assetType": "runtime",
  1245. "rid": "win"
  1246. }
  1247. }
  1248. },
  1249. "NETStandard.Library/1.6.1": {
  1250. "type": "package",
  1251. "dependencies": {
  1252. "Microsoft.NETCore.Platforms": "1.1.0",
  1253. "Microsoft.Win32.Primitives": "4.3.0",
  1254. "System.AppContext": "4.3.0",
  1255. "System.Collections": "4.3.0",
  1256. "System.Collections.Concurrent": "4.3.0",
  1257. "System.Console": "4.3.0",
  1258. "System.Diagnostics.Debug": "4.3.0",
  1259. "System.Diagnostics.Tools": "4.3.0",
  1260. "System.Diagnostics.Tracing": "4.3.0",
  1261. "System.Globalization": "4.3.0",
  1262. "System.Globalization.Calendars": "4.3.0",
  1263. "System.IO": "4.3.0",
  1264. "System.IO.Compression": "4.3.0",
  1265. "System.IO.Compression.ZipFile": "4.3.0",
  1266. "System.IO.FileSystem": "4.3.0",
  1267. "System.IO.FileSystem.Primitives": "4.3.0",
  1268. "System.Linq": "4.3.0",
  1269. "System.Linq.Expressions": "4.3.0",
  1270. "System.Net.Http": "4.3.0",
  1271. "System.Net.Primitives": "4.3.0",
  1272. "System.Net.Sockets": "4.3.0",
  1273. "System.ObjectModel": "4.3.0",
  1274. "System.Reflection": "4.3.0",
  1275. "System.Reflection.Extensions": "4.3.0",
  1276. "System.Reflection.Primitives": "4.3.0",
  1277. "System.Resources.ResourceManager": "4.3.0",
  1278. "System.Runtime": "4.3.0",
  1279. "System.Runtime.Extensions": "4.3.0",
  1280. "System.Runtime.Handles": "4.3.0",
  1281. "System.Runtime.InteropServices": "4.3.0",
  1282. "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
  1283. "System.Runtime.Numerics": "4.3.0",
  1284. "System.Security.Cryptography.Algorithms": "4.3.0",
  1285. "System.Security.Cryptography.Encoding": "4.3.0",
  1286. "System.Security.Cryptography.Primitives": "4.3.0",
  1287. "System.Security.Cryptography.X509Certificates": "4.3.0",
  1288. "System.Text.Encoding": "4.3.0",
  1289. "System.Text.Encoding.Extensions": "4.3.0",
  1290. "System.Text.RegularExpressions": "4.3.0",
  1291. "System.Threading": "4.3.0",
  1292. "System.Threading.Tasks": "4.3.0",
  1293. "System.Threading.Timer": "4.3.0",
  1294. "System.Xml.ReaderWriter": "4.3.0",
  1295. "System.Xml.XDocument": "4.3.0"
  1296. }
  1297. },
  1298. "Newtonsoft.Json/9.0.1": {
  1299. "type": "package",
  1300. "dependencies": {
  1301. "Microsoft.CSharp": "4.0.1",
  1302. "System.Collections": "4.0.11",
  1303. "System.Diagnostics.Debug": "4.0.11",
  1304. "System.Dynamic.Runtime": "4.0.11",
  1305. "System.Globalization": "4.0.11",
  1306. "System.IO": "4.1.0",
  1307. "System.Linq": "4.1.0",
  1308. "System.Linq.Expressions": "4.1.0",
  1309. "System.ObjectModel": "4.0.12",
  1310. "System.Reflection": "4.1.0",
  1311. "System.Reflection.Extensions": "4.0.1",
  1312. "System.Resources.ResourceManager": "4.0.1",
  1313. "System.Runtime": "4.1.0",
  1314. "System.Runtime.Extensions": "4.1.0",
  1315. "System.Runtime.Serialization.Primitives": "4.1.1",
  1316. "System.Text.Encoding": "4.0.11",
  1317. "System.Text.Encoding.Extensions": "4.0.11",
  1318. "System.Text.RegularExpressions": "4.1.0",
  1319. "System.Threading": "4.0.11",
  1320. "System.Threading.Tasks": "4.0.11",
  1321. "System.Xml.ReaderWriter": "4.0.11",
  1322. "System.Xml.XDocument": "4.0.11"
  1323. },
  1324. "compile": {
  1325. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  1326. },
  1327. "runtime": {
  1328. "lib/netstandard1.0/Newtonsoft.Json.dll": {}
  1329. }
  1330. },
  1331. "Npgsql/3.1.9": {
  1332. "type": "package",
  1333. "dependencies": {
  1334. "Microsoft.Win32.Primitives": "4.0.1",
  1335. "System.Collections.Concurrent": "4.0.12",
  1336. "System.ComponentModel.TypeConverter": "4.1.0",
  1337. "System.Console": "4.0.0",
  1338. "System.Data.Common": "4.1.0",
  1339. "System.Diagnostics.Contracts": "4.0.1",
  1340. "System.Globalization.Extensions": "4.0.1",
  1341. "System.Linq": "4.1.0",
  1342. "System.Net.NameResolution": "4.0.0",
  1343. "System.Net.NetworkInformation": "4.1.0",
  1344. "System.Net.Primitives": "4.0.11",
  1345. "System.Net.Security": "4.0.0",
  1346. "System.Net.Sockets": "4.1.0",
  1347. "System.Reflection": "4.1.0",
  1348. "System.Reflection.Extensions": "4.0.1",
  1349. "System.Reflection.TypeExtensions": "4.1.0",
  1350. "System.Runtime": "4.1.0",
  1351. "System.Runtime.InteropServices": "4.1.0",
  1352. "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  1353. "System.Runtime.Numerics": "4.0.1",
  1354. "System.Text.Encoding.Extensions": "4.0.11",
  1355. "System.Text.RegularExpressions": "4.1.0",
  1356. "System.Threading": "4.0.11",
  1357. "System.Threading.Thread": "4.0.0",
  1358. "System.Threading.Timer": "4.0.1"
  1359. },
  1360. "compile": {
  1361. "lib/netstandard1.3/Npgsql.dll": {}
  1362. },
  1363. "runtime": {
  1364. "lib/netstandard1.3/Npgsql.dll": {}
  1365. }
  1366. },
  1367. "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0": {
  1368. "type": "package",
  1369. "dependencies": {
  1370. "Microsoft.EntityFrameworkCore": "1.1.0",
  1371. "Microsoft.EntityFrameworkCore.Relational": "1.1.0",
  1372. "Microsoft.Extensions.DependencyInjection": "1.1.0",
  1373. "Microsoft.Extensions.DependencyInjection.Abstractions": "1.1.0",
  1374. "Npgsql": "3.1.9"
  1375. },
  1376. "compile": {
  1377. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
  1378. },
  1379. "runtime": {
  1380. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {}
  1381. }
  1382. },
  1383. "NuGet.Common/3.5.0-beta-final": {
  1384. "type": "package",
  1385. "dependencies": {
  1386. "NETStandard.Library": "1.5.0-rc2-24027",
  1387. "System.Diagnostics.Process": "4.1.0-rc2-24027",
  1388. "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027",
  1389. "System.Threading.Thread": "4.0.0-rc2-24027"
  1390. },
  1391. "compile": {
  1392. "lib/netstandard1.3/NuGet.Common.dll": {}
  1393. },
  1394. "runtime": {
  1395. "lib/netstandard1.3/NuGet.Common.dll": {}
  1396. }
  1397. },
  1398. "NuGet.Frameworks/3.5.0-beta-final": {
  1399. "type": "package",
  1400. "dependencies": {
  1401. "NETStandard.Library": "1.5.0-rc2-24027",
  1402. "NuGet.Versioning": "3.5.0-beta-final"
  1403. },
  1404. "compile": {
  1405. "lib/netstandard1.3/NuGet.Frameworks.dll": {}
  1406. },
  1407. "runtime": {
  1408. "lib/netstandard1.3/NuGet.Frameworks.dll": {}
  1409. }
  1410. },
  1411. "NuGet.Packaging/3.5.0-beta-final": {
  1412. "type": "package",
  1413. "dependencies": {
  1414. "NETStandard.Library": "1.5.0-rc2-24027",
  1415. "NuGet.Common": "3.5.0-beta-final",
  1416. "NuGet.Packaging.Core": "3.5.0-beta-final",
  1417. "System.IO.Compression": "4.1.0-rc2-24027"
  1418. },
  1419. "compile": {
  1420. "lib/netstandard1.3/NuGet.Packaging.dll": {}
  1421. },
  1422. "runtime": {
  1423. "lib/netstandard1.3/NuGet.Packaging.dll": {}
  1424. }
  1425. },
  1426. "NuGet.Packaging.Core/3.5.0-beta-final": {
  1427. "type": "package",
  1428. "dependencies": {
  1429. "NETStandard.Library": "1.5.0-rc2-24027",
  1430. "NuGet.Packaging.Core.Types": "3.5.0-beta-final",
  1431. "System.Xml.XDocument": "4.0.11-rc2-24027"
  1432. },
  1433. "compile": {
  1434. "lib/netstandard1.3/NuGet.Packaging.Core.dll": {}
  1435. },
  1436. "runtime": {
  1437. "lib/netstandard1.3/NuGet.Packaging.Core.dll": {}
  1438. }
  1439. },
  1440. "NuGet.Packaging.Core.Types/3.5.0-beta-final": {
  1441. "type": "package",
  1442. "dependencies": {
  1443. "NETStandard.Library": "1.5.0-rc2-24027",
  1444. "NuGet.Frameworks": "3.5.0-beta-final"
  1445. },
  1446. "compile": {
  1447. "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {}
  1448. },
  1449. "runtime": {
  1450. "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll": {}
  1451. }
  1452. },
  1453. "NuGet.RuntimeModel/3.5.0-beta-final": {
  1454. "type": "package",
  1455. "dependencies": {
  1456. "NETStandard.Library": "1.5.0-rc2-24027",
  1457. "Newtonsoft.Json": "6.0.4",
  1458. "NuGet.Frameworks": "3.5.0-beta-final",
  1459. "NuGet.Versioning": "3.5.0-beta-final",
  1460. "System.Dynamic.Runtime": "4.0.11-rc2-24027",
  1461. "System.ObjectModel": "4.0.12-rc2-24027"
  1462. },
  1463. "compile": {
  1464. "lib/netstandard1.3/NuGet.RuntimeModel.dll": {}
  1465. },
  1466. "runtime": {
  1467. "lib/netstandard1.3/NuGet.RuntimeModel.dll": {}
  1468. }
  1469. },
  1470. "NuGet.Versioning/3.5.0-beta-final": {
  1471. "type": "package",
  1472. "dependencies": {
  1473. "NETStandard.Library": "1.5.0-rc2-24027"
  1474. },
  1475. "compile": {
  1476. "lib/netstandard1.0/NuGet.Versioning.dll": {}
  1477. },
  1478. "runtime": {
  1479. "lib/netstandard1.0/NuGet.Versioning.dll": {}
  1480. }
  1481. },
  1482. "Remotion.Linq/2.1.1": {
  1483. "type": "package",
  1484. "dependencies": {
  1485. "System.Collections": "4.0.11",
  1486. "System.Diagnostics.Debug": "4.0.11",
  1487. "System.Linq": "4.1.0",
  1488. "System.Linq.Expressions": "4.1.0",
  1489. "System.Linq.Queryable": "4.0.1",
  1490. "System.ObjectModel": "4.0.12",
  1491. "System.Reflection": "4.1.0",
  1492. "System.Reflection.Extensions": "4.0.1",
  1493. "System.Runtime": "4.1.0",
  1494. "System.Runtime.Extensions": "4.1.0",
  1495. "System.Threading": "4.0.11"
  1496. },
  1497. "compile": {
  1498. "lib/netstandard1.0/Remotion.Linq.dll": {}
  1499. },
  1500. "runtime": {
  1501. "lib/netstandard1.0/Remotion.Linq.dll": {}
  1502. }
  1503. },
  1504. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1505. "type": "package",
  1506. "runtimeTargets": {
  1507. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1508. "assetType": "native",
  1509. "rid": "debian.8-x64"
  1510. }
  1511. }
  1512. },
  1513. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1514. "type": "package",
  1515. "runtimeTargets": {
  1516. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1517. "assetType": "native",
  1518. "rid": "fedora.23-x64"
  1519. }
  1520. }
  1521. },
  1522. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1523. "type": "package",
  1524. "runtimeTargets": {
  1525. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1526. "assetType": "native",
  1527. "rid": "fedora.24-x64"
  1528. }
  1529. }
  1530. },
  1531. "runtime.native.System/4.3.0": {
  1532. "type": "package",
  1533. "dependencies": {
  1534. "Microsoft.NETCore.Platforms": "1.1.0",
  1535. "Microsoft.NETCore.Targets": "1.1.0"
  1536. },
  1537. "compile": {
  1538. "lib/netstandard1.0/_._": {}
  1539. },
  1540. "runtime": {
  1541. "lib/netstandard1.0/_._": {}
  1542. }
  1543. },
  1544. "runtime.native.System.IO.Compression/4.3.0": {
  1545. "type": "package",
  1546. "dependencies": {
  1547. "Microsoft.NETCore.Platforms": "1.1.0",
  1548. "Microsoft.NETCore.Targets": "1.1.0"
  1549. },
  1550. "compile": {
  1551. "lib/netstandard1.0/_._": {}
  1552. },
  1553. "runtime": {
  1554. "lib/netstandard1.0/_._": {}
  1555. }
  1556. },
  1557. "runtime.native.System.Net.Http/4.3.0": {
  1558. "type": "package",
  1559. "dependencies": {
  1560. "Microsoft.NETCore.Platforms": "1.1.0",
  1561. "Microsoft.NETCore.Targets": "1.1.0"
  1562. },
  1563. "compile": {
  1564. "lib/netstandard1.0/_._": {}
  1565. },
  1566. "runtime": {
  1567. "lib/netstandard1.0/_._": {}
  1568. }
  1569. },
  1570. "runtime.native.System.Net.Security/4.0.1": {
  1571. "type": "package",
  1572. "dependencies": {
  1573. "Microsoft.NETCore.Platforms": "1.0.1",
  1574. "Microsoft.NETCore.Targets": "1.0.1"
  1575. },
  1576. "compile": {
  1577. "lib/netstandard1.0/_._": {}
  1578. },
  1579. "runtime": {
  1580. "lib/netstandard1.0/_._": {}
  1581. }
  1582. },
  1583. "runtime.native.System.Security.Cryptography/4.0.0": {
  1584. "type": "package",
  1585. "dependencies": {
  1586. "Microsoft.NETCore.Platforms": "1.0.1",
  1587. "Microsoft.NETCore.Targets": "1.0.1"
  1588. },
  1589. "compile": {
  1590. "lib/netstandard1.0/_._": {}
  1591. },
  1592. "runtime": {
  1593. "lib/netstandard1.0/_._": {}
  1594. }
  1595. },
  1596. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1597. "type": "package",
  1598. "dependencies": {
  1599. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
  1600. },
  1601. "compile": {
  1602. "lib/netstandard1.0/_._": {}
  1603. },
  1604. "runtime": {
  1605. "lib/netstandard1.0/_._": {}
  1606. }
  1607. },
  1608. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1609. "type": "package",
  1610. "dependencies": {
  1611. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1612. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1613. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1614. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1615. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1616. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1617. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1618. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1619. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
  1620. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  1621. },
  1622. "compile": {
  1623. "lib/netstandard1.0/_._": {}
  1624. },
  1625. "runtime": {
  1626. "lib/netstandard1.0/_._": {}
  1627. }
  1628. },
  1629. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1630. "type": "package",
  1631. "runtimeTargets": {
  1632. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1633. "assetType": "native",
  1634. "rid": "opensuse.13.2-x64"
  1635. }
  1636. }
  1637. },
  1638. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1639. "type": "package",
  1640. "runtimeTargets": {
  1641. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1642. "assetType": "native",
  1643. "rid": "opensuse.42.1-x64"
  1644. }
  1645. }
  1646. },
  1647. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  1648. "type": "package",
  1649. "runtimeTargets": {
  1650. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
  1651. "assetType": "native",
  1652. "rid": "osx.10.10-x64"
  1653. }
  1654. }
  1655. },
  1656. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1657. "type": "package",
  1658. "runtimeTargets": {
  1659. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": {
  1660. "assetType": "native",
  1661. "rid": "osx.10.10-x64"
  1662. }
  1663. }
  1664. },
  1665. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1666. "type": "package",
  1667. "runtimeTargets": {
  1668. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1669. "assetType": "native",
  1670. "rid": "rhel.7-x64"
  1671. }
  1672. }
  1673. },
  1674. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1675. "type": "package",
  1676. "runtimeTargets": {
  1677. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1678. "assetType": "native",
  1679. "rid": "ubuntu.14.04-x64"
  1680. }
  1681. }
  1682. },
  1683. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1684. "type": "package",
  1685. "runtimeTargets": {
  1686. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1687. "assetType": "native",
  1688. "rid": "ubuntu.16.04-x64"
  1689. }
  1690. }
  1691. },
  1692. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  1693. "type": "package",
  1694. "runtimeTargets": {
  1695. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
  1696. "assetType": "native",
  1697. "rid": "ubuntu.16.10-x64"
  1698. }
  1699. }
  1700. },
  1701. "System.AppContext/4.3.0": {
  1702. "type": "package",
  1703. "dependencies": {
  1704. "System.Runtime": "4.3.0"
  1705. },
  1706. "compile": {
  1707. "ref/netstandard1.6/System.AppContext.dll": {}
  1708. },
  1709. "runtime": {
  1710. "lib/netstandard1.6/System.AppContext.dll": {}
  1711. }
  1712. },
  1713. "System.Buffers/4.3.0": {
  1714. "type": "package",
  1715. "dependencies": {
  1716. "System.Diagnostics.Debug": "4.3.0",
  1717. "System.Diagnostics.Tracing": "4.3.0",
  1718. "System.Resources.ResourceManager": "4.3.0",
  1719. "System.Runtime": "4.3.0",
  1720. "System.Threading": "4.3.0"
  1721. },
  1722. "compile": {
  1723. "lib/netstandard1.1/System.Buffers.dll": {}
  1724. },
  1725. "runtime": {
  1726. "lib/netstandard1.1/System.Buffers.dll": {}
  1727. }
  1728. },
  1729. "System.Collections/4.3.0": {
  1730. "type": "package",
  1731. "dependencies": {
  1732. "Microsoft.NETCore.Platforms": "1.1.0",
  1733. "Microsoft.NETCore.Targets": "1.1.0",
  1734. "System.Runtime": "4.3.0"
  1735. },
  1736. "compile": {
  1737. "ref/netstandard1.3/System.Collections.dll": {}
  1738. },
  1739. "runtime": {
  1740. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  1741. }
  1742. },
  1743. "System.Collections.Concurrent/4.3.0": {
  1744. "type": "package",
  1745. "dependencies": {
  1746. "System.Collections": "4.3.0",
  1747. "System.Diagnostics.Debug": "4.3.0",
  1748. "System.Diagnostics.Tracing": "4.3.0",
  1749. "System.Globalization": "4.3.0",
  1750. "System.Reflection": "4.3.0",
  1751. "System.Resources.ResourceManager": "4.3.0",
  1752. "System.Runtime": "4.3.0",
  1753. "System.Runtime.Extensions": "4.3.0",
  1754. "System.Threading": "4.3.0",
  1755. "System.Threading.Tasks": "4.3.0"
  1756. },
  1757. "compile": {
  1758. "ref/netstandard1.3/System.Collections.Concurrent.dll": {}
  1759. },
  1760. "runtime": {
  1761. "lib/netstandard1.3/System.Collections.Concurrent.dll": {}
  1762. }
  1763. },
  1764. "System.Collections.Immutable/1.3.0": {
  1765. "type": "package",
  1766. "dependencies": {
  1767. "System.Collections": "4.3.0",
  1768. "System.Diagnostics.Debug": "4.3.0",
  1769. "System.Globalization": "4.3.0",
  1770. "System.Linq": "4.3.0",
  1771. "System.Resources.ResourceManager": "4.3.0",
  1772. "System.Runtime": "4.3.0",
  1773. "System.Runtime.Extensions": "4.3.0",
  1774. "System.Threading": "4.3.0"
  1775. },
  1776. "compile": {
  1777. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  1778. },
  1779. "runtime": {
  1780. "lib/netstandard1.0/System.Collections.Immutable.dll": {}
  1781. }
  1782. },
  1783. "System.Collections.NonGeneric/4.3.0": {
  1784. "type": "package",
  1785. "dependencies": {
  1786. "System.Diagnostics.Debug": "4.3.0",
  1787. "System.Globalization": "4.3.0",
  1788. "System.Resources.ResourceManager": "4.3.0",
  1789. "System.Runtime": "4.3.0",
  1790. "System.Runtime.Extensions": "4.3.0",
  1791. "System.Threading": "4.3.0"
  1792. },
  1793. "compile": {
  1794. "ref/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1795. },
  1796. "runtime": {
  1797. "lib/netstandard1.3/System.Collections.NonGeneric.dll": {}
  1798. }
  1799. },
  1800. "System.Collections.Specialized/4.0.1": {
  1801. "type": "package",
  1802. "dependencies": {
  1803. "System.Collections.NonGeneric": "4.0.1",
  1804. "System.Globalization": "4.0.11",
  1805. "System.Globalization.Extensions": "4.0.1",
  1806. "System.Resources.ResourceManager": "4.0.1",
  1807. "System.Runtime": "4.1.0",
  1808. "System.Runtime.Extensions": "4.1.0",
  1809. "System.Threading": "4.0.11"
  1810. },
  1811. "compile": {
  1812. "ref/netstandard1.3/_._": {}
  1813. },
  1814. "runtime": {
  1815. "lib/netstandard1.3/System.Collections.Specialized.dll": {}
  1816. }
  1817. },
  1818. "System.ComponentModel/4.3.0": {
  1819. "type": "package",
  1820. "dependencies": {
  1821. "System.Runtime": "4.3.0"
  1822. },
  1823. "compile": {
  1824. "ref/netstandard1.0/System.ComponentModel.dll": {}
  1825. },
  1826. "runtime": {
  1827. "lib/netstandard1.3/System.ComponentModel.dll": {}
  1828. }
  1829. },
  1830. "System.ComponentModel.Annotations/4.3.0": {
  1831. "type": "package",
  1832. "dependencies": {
  1833. "System.Collections": "4.3.0",
  1834. "System.ComponentModel": "4.3.0",
  1835. "System.Globalization": "4.3.0",
  1836. "System.Linq": "4.3.0",
  1837. "System.Reflection": "4.3.0",
  1838. "System.Reflection.Extensions": "4.3.0",
  1839. "System.Resources.ResourceManager": "4.3.0",
  1840. "System.Runtime": "4.3.0",
  1841. "System.Runtime.Extensions": "4.3.0",
  1842. "System.Text.RegularExpressions": "4.3.0",
  1843. "System.Threading": "4.3.0"
  1844. },
  1845. "compile": {
  1846. "ref/netstandard1.4/System.ComponentModel.Annotations.dll": {}
  1847. },
  1848. "runtime": {
  1849. "lib/netstandard1.4/System.ComponentModel.Annotations.dll": {}
  1850. }
  1851. },
  1852. "System.ComponentModel.Primitives/4.1.0": {
  1853. "type": "package",
  1854. "dependencies": {
  1855. "System.ComponentModel": "4.0.1",
  1856. "System.Resources.ResourceManager": "4.0.1",
  1857. "System.Runtime": "4.1.0"
  1858. },
  1859. "compile": {
  1860. "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1861. },
  1862. "runtime": {
  1863. "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {}
  1864. }
  1865. },
  1866. "System.ComponentModel.TypeConverter/4.1.0": {
  1867. "type": "package",
  1868. "dependencies": {
  1869. "System.Collections": "4.0.11",
  1870. "System.Collections.NonGeneric": "4.0.1",
  1871. "System.Collections.Specialized": "4.0.1",
  1872. "System.ComponentModel": "4.0.1",
  1873. "System.ComponentModel.Primitives": "4.1.0",
  1874. "System.Globalization": "4.0.11",
  1875. "System.Linq": "4.1.0",
  1876. "System.Reflection": "4.1.0",
  1877. "System.Reflection.Extensions": "4.0.1",
  1878. "System.Reflection.Primitives": "4.0.1",
  1879. "System.Reflection.TypeExtensions": "4.1.0",
  1880. "System.Resources.ResourceManager": "4.0.1",
  1881. "System.Runtime": "4.1.0",
  1882. "System.Runtime.Extensions": "4.1.0",
  1883. "System.Threading": "4.0.11"
  1884. },
  1885. "compile": {
  1886. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1887. },
  1888. "runtime": {
  1889. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {}
  1890. }
  1891. },
  1892. "System.Console/4.3.0": {
  1893. "type": "package",
  1894. "dependencies": {
  1895. "Microsoft.NETCore.Platforms": "1.1.0",
  1896. "Microsoft.NETCore.Targets": "1.1.0",
  1897. "System.IO": "4.3.0",
  1898. "System.Runtime": "4.3.0",
  1899. "System.Text.Encoding": "4.3.0"
  1900. },
  1901. "compile": {
  1902. "ref/netstandard1.3/System.Console.dll": {}
  1903. }
  1904. },
  1905. "System.Data.Common/4.3.0": {
  1906. "type": "package",
  1907. "dependencies": {
  1908. "System.Collections": "4.3.0",
  1909. "System.Globalization": "4.3.0",
  1910. "System.IO": "4.3.0",
  1911. "System.Resources.ResourceManager": "4.3.0",
  1912. "System.Runtime": "4.3.0",
  1913. "System.Runtime.Extensions": "4.3.0",
  1914. "System.Text.RegularExpressions": "4.3.0",
  1915. "System.Threading.Tasks": "4.3.0"
  1916. },
  1917. "compile": {
  1918. "ref/netstandard1.2/System.Data.Common.dll": {}
  1919. },
  1920. "runtime": {
  1921. "lib/netstandard1.2/System.Data.Common.dll": {}
  1922. }
  1923. },
  1924. "System.Diagnostics.Contracts/4.3.0": {
  1925. "type": "package",
  1926. "dependencies": {
  1927. "System.Runtime": "4.3.0"
  1928. },
  1929. "compile": {
  1930. "ref/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  1931. },
  1932. "runtime": {
  1933. "lib/netstandard1.0/System.Diagnostics.Contracts.dll": {}
  1934. }
  1935. },
  1936. "System.Diagnostics.Debug/4.3.0": {
  1937. "type": "package",
  1938. "dependencies": {
  1939. "Microsoft.NETCore.Platforms": "1.1.0",
  1940. "Microsoft.NETCore.Targets": "1.1.0",
  1941. "System.Runtime": "4.3.0"
  1942. },
  1943. "compile": {
  1944. "ref/netstandard1.3/System.Diagnostics.Debug.dll": {}
  1945. },
  1946. "runtime": {
  1947. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  1948. }
  1949. },
  1950. "System.Diagnostics.DiagnosticSource/4.3.0": {
  1951. "type": "package",
  1952. "dependencies": {
  1953. "System.Collections": "4.3.0",
  1954. "System.Diagnostics.Tracing": "4.3.0",
  1955. "System.Reflection": "4.3.0",
  1956. "System.Runtime": "4.3.0",
  1957. "System.Threading": "4.3.0"
  1958. },
  1959. "compile": {
  1960. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1961. },
  1962. "runtime": {
  1963. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {}
  1964. }
  1965. },
  1966. "System.Diagnostics.FileVersionInfo/4.0.0": {
  1967. "type": "package",
  1968. "dependencies": {
  1969. "Microsoft.NETCore.Platforms": "1.0.1",
  1970. "System.Globalization": "4.0.11",
  1971. "System.IO": "4.1.0",
  1972. "System.IO.FileSystem": "4.0.1",
  1973. "System.IO.FileSystem.Primitives": "4.0.1",
  1974. "System.Reflection.Metadata": "1.3.0",
  1975. "System.Runtime": "4.1.0",
  1976. "System.Runtime.Extensions": "4.1.0",
  1977. "System.Runtime.InteropServices": "4.1.0"
  1978. },
  1979. "compile": {
  1980. "ref/netstandard1.3/_._": {}
  1981. },
  1982. "runtimeTargets": {
  1983. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  1984. "assetType": "runtime",
  1985. "rid": "unix"
  1986. },
  1987. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": {
  1988. "assetType": "runtime",
  1989. "rid": "win"
  1990. }
  1991. }
  1992. },
  1993. "System.Diagnostics.Process/4.1.0": {
  1994. "type": "package",
  1995. "dependencies": {
  1996. "Microsoft.NETCore.Platforms": "1.0.1",
  1997. "Microsoft.Win32.Primitives": "4.0.1",
  1998. "Microsoft.Win32.Registry": "4.0.0",
  1999. "System.Collections": "4.0.11",
  2000. "System.Diagnostics.Debug": "4.0.11",
  2001. "System.Globalization": "4.0.11",
  2002. "System.IO": "4.1.0",
  2003. "System.IO.FileSystem": "4.0.1",
  2004. "System.IO.FileSystem.Primitives": "4.0.1",
  2005. "System.Resources.ResourceManager": "4.0.1",
  2006. "System.Runtime": "4.1.0",
  2007. "System.Runtime.Extensions": "4.1.0",
  2008. "System.Runtime.Handles": "4.0.1",
  2009. "System.Runtime.InteropServices": "4.1.0",
  2010. "System.Text.Encoding": "4.0.11",
  2011. "System.Text.Encoding.Extensions": "4.0.11",
  2012. "System.Threading": "4.0.11",
  2013. "System.Threading.Tasks": "4.0.11",
  2014. "System.Threading.Thread": "4.0.0",
  2015. "System.Threading.ThreadPool": "4.0.10",
  2016. "runtime.native.System": "4.0.0"
  2017. },
  2018. "compile": {
  2019. "ref/netstandard1.4/System.Diagnostics.Process.dll": {}
  2020. },
  2021. "runtimeTargets": {
  2022. "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll": {
  2023. "assetType": "runtime",
  2024. "rid": "linux"
  2025. },
  2026. "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll": {
  2027. "assetType": "runtime",
  2028. "rid": "osx"
  2029. },
  2030. "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll": {
  2031. "assetType": "runtime",
  2032. "rid": "win"
  2033. }
  2034. }
  2035. },
  2036. "System.Diagnostics.StackTrace/4.0.1": {
  2037. "type": "package",
  2038. "dependencies": {
  2039. "System.Collections.Immutable": "1.2.0",
  2040. "System.IO.FileSystem": "4.0.1",
  2041. "System.Reflection": "4.1.0",
  2042. "System.Reflection.Metadata": "1.3.0",
  2043. "System.Runtime": "4.1.0",
  2044. "System.Runtime.Extensions": "4.1.0"
  2045. },
  2046. "compile": {
  2047. "ref/netstandard1.3/_._": {}
  2048. },
  2049. "runtime": {
  2050. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll": {}
  2051. }
  2052. },
  2053. "System.Diagnostics.Tools/4.3.0": {
  2054. "type": "package",
  2055. "dependencies": {
  2056. "Microsoft.NETCore.Platforms": "1.1.0",
  2057. "Microsoft.NETCore.Targets": "1.1.0",
  2058. "System.Runtime": "4.3.0"
  2059. },
  2060. "compile": {
  2061. "ref/netstandard1.0/System.Diagnostics.Tools.dll": {}
  2062. },
  2063. "runtime": {
  2064. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2065. }
  2066. },
  2067. "System.Diagnostics.Tracing/4.3.0": {
  2068. "type": "package",
  2069. "dependencies": {
  2070. "Microsoft.NETCore.Platforms": "1.1.0",
  2071. "Microsoft.NETCore.Targets": "1.1.0",
  2072. "System.Runtime": "4.3.0"
  2073. },
  2074. "compile": {
  2075. "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {}
  2076. },
  2077. "runtime": {
  2078. "lib/portable-net45+win8+wpa81/_._": {}
  2079. }
  2080. },
  2081. "System.Dynamic.Runtime/4.3.0": {
  2082. "type": "package",
  2083. "dependencies": {
  2084. "System.Collections": "4.3.0",
  2085. "System.Diagnostics.Debug": "4.3.0",
  2086. "System.Linq": "4.3.0",
  2087. "System.Linq.Expressions": "4.3.0",
  2088. "System.ObjectModel": "4.3.0",
  2089. "System.Reflection": "4.3.0",
  2090. "System.Reflection.Emit": "4.3.0",
  2091. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2092. "System.Reflection.Primitives": "4.3.0",
  2093. "System.Reflection.TypeExtensions": "4.3.0",
  2094. "System.Resources.ResourceManager": "4.3.0",
  2095. "System.Runtime": "4.3.0",
  2096. "System.Runtime.Extensions": "4.3.0",
  2097. "System.Threading": "4.3.0"
  2098. },
  2099. "compile": {
  2100. "ref/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2101. },
  2102. "runtime": {
  2103. "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
  2104. }
  2105. },
  2106. "System.Globalization/4.3.0": {
  2107. "type": "package",
  2108. "dependencies": {
  2109. "Microsoft.NETCore.Platforms": "1.1.0",
  2110. "Microsoft.NETCore.Targets": "1.1.0",
  2111. "System.Runtime": "4.3.0"
  2112. },
  2113. "compile": {
  2114. "ref/netstandard1.3/System.Globalization.dll": {}
  2115. },
  2116. "runtime": {
  2117. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2118. }
  2119. },
  2120. "System.Globalization.Calendars/4.3.0": {
  2121. "type": "package",
  2122. "dependencies": {
  2123. "Microsoft.NETCore.Platforms": "1.1.0",
  2124. "Microsoft.NETCore.Targets": "1.1.0",
  2125. "System.Globalization": "4.3.0",
  2126. "System.Runtime": "4.3.0"
  2127. },
  2128. "compile": {
  2129. "ref/netstandard1.3/System.Globalization.Calendars.dll": {}
  2130. }
  2131. },
  2132. "System.Globalization.Extensions/4.3.0": {
  2133. "type": "package",
  2134. "dependencies": {
  2135. "Microsoft.NETCore.Platforms": "1.1.0",
  2136. "System.Globalization": "4.3.0",
  2137. "System.Resources.ResourceManager": "4.3.0",
  2138. "System.Runtime": "4.3.0",
  2139. "System.Runtime.Extensions": "4.3.0",
  2140. "System.Runtime.InteropServices": "4.3.0"
  2141. },
  2142. "compile": {
  2143. "ref/netstandard1.3/System.Globalization.Extensions.dll": {}
  2144. },
  2145. "runtimeTargets": {
  2146. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2147. "assetType": "runtime",
  2148. "rid": "unix"
  2149. },
  2150. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": {
  2151. "assetType": "runtime",
  2152. "rid": "win"
  2153. }
  2154. }
  2155. },
  2156. "System.Interactive.Async/3.0.0": {
  2157. "type": "package",
  2158. "dependencies": {
  2159. "System.Collections": "4.0.11",
  2160. "System.Diagnostics.Debug": "4.0.11",
  2161. "System.Linq": "4.1.0",
  2162. "System.Resources.ResourceManager": "4.0.1",
  2163. "System.Runtime": "4.1.0",
  2164. "System.Runtime.Extensions": "4.1.0",
  2165. "System.Threading": "4.0.11",
  2166. "System.Threading.Tasks": "4.0.11"
  2167. },
  2168. "compile": {
  2169. "lib/netstandard1.0/System.Interactive.Async.dll": {}
  2170. },
  2171. "runtime": {
  2172. "lib/netstandard1.0/System.Interactive.Async.dll": {}
  2173. }
  2174. },
  2175. "System.IO/4.3.0": {
  2176. "type": "package",
  2177. "dependencies": {
  2178. "Microsoft.NETCore.Platforms": "1.1.0",
  2179. "Microsoft.NETCore.Targets": "1.1.0",
  2180. "System.Runtime": "4.3.0",
  2181. "System.Text.Encoding": "4.3.0",
  2182. "System.Threading.Tasks": "4.3.0"
  2183. },
  2184. "compile": {
  2185. "ref/netstandard1.5/System.IO.dll": {}
  2186. },
  2187. "runtime": {
  2188. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2189. }
  2190. },
  2191. "System.IO.Compression/4.3.0": {
  2192. "type": "package",
  2193. "dependencies": {
  2194. "Microsoft.NETCore.Platforms": "1.1.0",
  2195. "System.Buffers": "4.3.0",
  2196. "System.Collections": "4.3.0",
  2197. "System.Diagnostics.Debug": "4.3.0",
  2198. "System.IO": "4.3.0",
  2199. "System.Resources.ResourceManager": "4.3.0",
  2200. "System.Runtime": "4.3.0",
  2201. "System.Runtime.Extensions": "4.3.0",
  2202. "System.Runtime.Handles": "4.3.0",
  2203. "System.Runtime.InteropServices": "4.3.0",
  2204. "System.Text.Encoding": "4.3.0",
  2205. "System.Threading": "4.3.0",
  2206. "System.Threading.Tasks": "4.3.0",
  2207. "runtime.native.System": "4.3.0",
  2208. "runtime.native.System.IO.Compression": "4.3.0"
  2209. },
  2210. "compile": {
  2211. "ref/netstandard1.3/System.IO.Compression.dll": {}
  2212. },
  2213. "runtime": {
  2214. "lib/portable-net45+win8+wpa81/_._": {}
  2215. },
  2216. "runtimeTargets": {
  2217. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": {
  2218. "assetType": "runtime",
  2219. "rid": "unix"
  2220. },
  2221. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": {
  2222. "assetType": "runtime",
  2223. "rid": "win"
  2224. }
  2225. }
  2226. },
  2227. "System.IO.Compression.ZipFile/4.3.0": {
  2228. "type": "package",
  2229. "dependencies": {
  2230. "System.Buffers": "4.3.0",
  2231. "System.IO": "4.3.0",
  2232. "System.IO.Compression": "4.3.0",
  2233. "System.IO.FileSystem": "4.3.0",
  2234. "System.IO.FileSystem.Primitives": "4.3.0",
  2235. "System.Resources.ResourceManager": "4.3.0",
  2236. "System.Runtime": "4.3.0",
  2237. "System.Runtime.Extensions": "4.3.0",
  2238. "System.Text.Encoding": "4.3.0"
  2239. },
  2240. "compile": {
  2241. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2242. },
  2243. "runtime": {
  2244. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {}
  2245. }
  2246. },
  2247. "System.IO.FileSystem/4.3.0": {
  2248. "type": "package",
  2249. "dependencies": {
  2250. "Microsoft.NETCore.Platforms": "1.1.0",
  2251. "Microsoft.NETCore.Targets": "1.1.0",
  2252. "System.IO": "4.3.0",
  2253. "System.IO.FileSystem.Primitives": "4.3.0",
  2254. "System.Runtime": "4.3.0",
  2255. "System.Runtime.Handles": "4.3.0",
  2256. "System.Text.Encoding": "4.3.0",
  2257. "System.Threading.Tasks": "4.3.0"
  2258. },
  2259. "compile": {
  2260. "ref/netstandard1.3/System.IO.FileSystem.dll": {}
  2261. }
  2262. },
  2263. "System.IO.FileSystem.Primitives/4.3.0": {
  2264. "type": "package",
  2265. "dependencies": {
  2266. "System.Runtime": "4.3.0"
  2267. },
  2268. "compile": {
  2269. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2270. },
  2271. "runtime": {
  2272. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {}
  2273. }
  2274. },
  2275. "System.IO.FileSystem.Watcher/4.0.0": {
  2276. "type": "package",
  2277. "dependencies": {
  2278. "Microsoft.NETCore.Platforms": "1.0.1",
  2279. "Microsoft.Win32.Primitives": "4.0.1",
  2280. "System.Collections": "4.0.11",
  2281. "System.IO.FileSystem": "4.0.1",
  2282. "System.IO.FileSystem.Primitives": "4.0.1",
  2283. "System.Resources.ResourceManager": "4.0.1",
  2284. "System.Runtime": "4.1.0",
  2285. "System.Runtime.Extensions": "4.1.0",
  2286. "System.Runtime.Handles": "4.0.1",
  2287. "System.Runtime.InteropServices": "4.1.0",
  2288. "System.Text.Encoding": "4.0.11",
  2289. "System.Threading": "4.0.11",
  2290. "System.Threading.Overlapped": "4.0.1",
  2291. "System.Threading.Tasks": "4.0.11",
  2292. "System.Threading.Thread": "4.0.0",
  2293. "runtime.native.System": "4.0.0"
  2294. },
  2295. "compile": {
  2296. "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll": {}
  2297. },
  2298. "runtimeTargets": {
  2299. "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
  2300. "assetType": "runtime",
  2301. "rid": "linux"
  2302. },
  2303. "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
  2304. "assetType": "runtime",
  2305. "rid": "osx"
  2306. },
  2307. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll": {
  2308. "assetType": "runtime",
  2309. "rid": "win"
  2310. }
  2311. }
  2312. },
  2313. "System.IO.MemoryMappedFiles/4.0.0": {
  2314. "type": "package",
  2315. "dependencies": {
  2316. "Microsoft.NETCore.Platforms": "1.0.1",
  2317. "System.IO": "4.1.0",
  2318. "System.IO.FileSystem": "4.0.1",
  2319. "System.IO.FileSystem.Primitives": "4.0.1",
  2320. "System.IO.UnmanagedMemoryStream": "4.0.1",
  2321. "System.Resources.ResourceManager": "4.0.1",
  2322. "System.Runtime": "4.1.0",
  2323. "System.Runtime.Extensions": "4.1.0",
  2324. "System.Runtime.Handles": "4.0.1",
  2325. "System.Runtime.InteropServices": "4.1.0",
  2326. "System.Threading": "4.0.11",
  2327. "System.Threading.Tasks": "4.0.11",
  2328. "runtime.native.System": "4.0.0"
  2329. },
  2330. "compile": {
  2331. "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll": {}
  2332. },
  2333. "runtimeTargets": {
  2334. "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": {
  2335. "assetType": "runtime",
  2336. "rid": "unix"
  2337. },
  2338. "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll": {
  2339. "assetType": "runtime",
  2340. "rid": "win"
  2341. }
  2342. }
  2343. },
  2344. "System.IO.UnmanagedMemoryStream/4.0.1": {
  2345. "type": "package",
  2346. "dependencies": {
  2347. "System.IO": "4.1.0",
  2348. "System.IO.FileSystem.Primitives": "4.0.1",
  2349. "System.Resources.ResourceManager": "4.0.1",
  2350. "System.Runtime": "4.1.0",
  2351. "System.Runtime.InteropServices": "4.1.0",
  2352. "System.Threading": "4.0.11",
  2353. "System.Threading.Tasks": "4.0.11"
  2354. },
  2355. "compile": {
  2356. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
  2357. },
  2358. "runtime": {
  2359. "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll": {}
  2360. }
  2361. },
  2362. "System.Linq/4.3.0": {
  2363. "type": "package",
  2364. "dependencies": {
  2365. "System.Collections": "4.3.0",
  2366. "System.Diagnostics.Debug": "4.3.0",
  2367. "System.Resources.ResourceManager": "4.3.0",
  2368. "System.Runtime": "4.3.0",
  2369. "System.Runtime.Extensions": "4.3.0"
  2370. },
  2371. "compile": {
  2372. "ref/netstandard1.6/System.Linq.dll": {}
  2373. },
  2374. "runtime": {
  2375. "lib/netstandard1.6/System.Linq.dll": {}
  2376. }
  2377. },
  2378. "System.Linq.Expressions/4.3.0": {
  2379. "type": "package",
  2380. "dependencies": {
  2381. "System.Collections": "4.3.0",
  2382. "System.Diagnostics.Debug": "4.3.0",
  2383. "System.Globalization": "4.3.0",
  2384. "System.IO": "4.3.0",
  2385. "System.Linq": "4.3.0",
  2386. "System.ObjectModel": "4.3.0",
  2387. "System.Reflection": "4.3.0",
  2388. "System.Reflection.Emit": "4.3.0",
  2389. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2390. "System.Reflection.Emit.Lightweight": "4.3.0",
  2391. "System.Reflection.Extensions": "4.3.0",
  2392. "System.Reflection.Primitives": "4.3.0",
  2393. "System.Reflection.TypeExtensions": "4.3.0",
  2394. "System.Resources.ResourceManager": "4.3.0",
  2395. "System.Runtime": "4.3.0",
  2396. "System.Runtime.Extensions": "4.3.0",
  2397. "System.Threading": "4.3.0"
  2398. },
  2399. "compile": {
  2400. "ref/netstandard1.6/System.Linq.Expressions.dll": {}
  2401. },
  2402. "runtime": {
  2403. "lib/netstandard1.6/System.Linq.Expressions.dll": {}
  2404. }
  2405. },
  2406. "System.Linq.Parallel/4.0.1": {
  2407. "type": "package",
  2408. "dependencies": {
  2409. "System.Collections": "4.0.11",
  2410. "System.Collections.Concurrent": "4.0.12",
  2411. "System.Diagnostics.Debug": "4.0.11",
  2412. "System.Diagnostics.Tracing": "4.1.0",
  2413. "System.Linq": "4.1.0",
  2414. "System.Resources.ResourceManager": "4.0.1",
  2415. "System.Runtime": "4.1.0",
  2416. "System.Runtime.Extensions": "4.1.0",
  2417. "System.Threading": "4.0.11",
  2418. "System.Threading.Tasks": "4.0.11"
  2419. },
  2420. "compile": {
  2421. "ref/netstandard1.1/System.Linq.Parallel.dll": {}
  2422. },
  2423. "runtime": {
  2424. "lib/netstandard1.3/System.Linq.Parallel.dll": {}
  2425. }
  2426. },
  2427. "System.Linq.Queryable/4.3.0": {
  2428. "type": "package",
  2429. "dependencies": {
  2430. "System.Collections": "4.3.0",
  2431. "System.Diagnostics.Debug": "4.3.0",
  2432. "System.Linq": "4.3.0",
  2433. "System.Linq.Expressions": "4.3.0",
  2434. "System.Reflection": "4.3.0",
  2435. "System.Reflection.Extensions": "4.3.0",
  2436. "System.Resources.ResourceManager": "4.3.0",
  2437. "System.Runtime": "4.3.0"
  2438. },
  2439. "compile": {
  2440. "ref/netstandard1.0/System.Linq.Queryable.dll": {}
  2441. },
  2442. "runtime": {
  2443. "lib/netstandard1.3/System.Linq.Queryable.dll": {}
  2444. }
  2445. },
  2446. "System.Net.Http/4.3.0": {
  2447. "type": "package",
  2448. "dependencies": {
  2449. "Microsoft.NETCore.Platforms": "1.1.0",
  2450. "System.Collections": "4.3.0",
  2451. "System.Diagnostics.Debug": "4.3.0",
  2452. "System.Diagnostics.DiagnosticSource": "4.3.0",
  2453. "System.Diagnostics.Tracing": "4.3.0",
  2454. "System.Globalization": "4.3.0",
  2455. "System.Globalization.Extensions": "4.3.0",
  2456. "System.IO": "4.3.0",
  2457. "System.IO.FileSystem": "4.3.0",
  2458. "System.Net.Primitives": "4.3.0",
  2459. "System.Resources.ResourceManager": "4.3.0",
  2460. "System.Runtime": "4.3.0",
  2461. "System.Runtime.Extensions": "4.3.0",
  2462. "System.Runtime.Handles": "4.3.0",
  2463. "System.Runtime.InteropServices": "4.3.0",
  2464. "System.Security.Cryptography.Algorithms": "4.3.0",
  2465. "System.Security.Cryptography.Encoding": "4.3.0",
  2466. "System.Security.Cryptography.OpenSsl": "4.3.0",
  2467. "System.Security.Cryptography.Primitives": "4.3.0",
  2468. "System.Security.Cryptography.X509Certificates": "4.3.0",
  2469. "System.Text.Encoding": "4.3.0",
  2470. "System.Threading": "4.3.0",
  2471. "System.Threading.Tasks": "4.3.0",
  2472. "runtime.native.System": "4.3.0",
  2473. "runtime.native.System.Net.Http": "4.3.0",
  2474. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  2475. },
  2476. "compile": {
  2477. "ref/netstandard1.3/System.Net.Http.dll": {}
  2478. },
  2479. "runtime": {
  2480. "lib/portable-net45+win8+wpa81/_._": {}
  2481. },
  2482. "runtimeTargets": {
  2483. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": {
  2484. "assetType": "runtime",
  2485. "rid": "unix"
  2486. },
  2487. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": {
  2488. "assetType": "runtime",
  2489. "rid": "win"
  2490. }
  2491. }
  2492. },
  2493. "System.Net.NameResolution/4.0.0": {
  2494. "type": "package",
  2495. "dependencies": {
  2496. "Microsoft.NETCore.Platforms": "1.0.1",
  2497. "System.Collections": "4.0.11",
  2498. "System.Diagnostics.Tracing": "4.1.0",
  2499. "System.Globalization": "4.0.11",
  2500. "System.Net.Primitives": "4.0.11",
  2501. "System.Resources.ResourceManager": "4.0.1",
  2502. "System.Runtime": "4.1.0",
  2503. "System.Runtime.Extensions": "4.1.0",
  2504. "System.Runtime.Handles": "4.0.1",
  2505. "System.Runtime.InteropServices": "4.1.0",
  2506. "System.Security.Principal.Windows": "4.0.0",
  2507. "System.Threading": "4.0.11",
  2508. "System.Threading.Tasks": "4.0.11",
  2509. "runtime.native.System": "4.0.0"
  2510. },
  2511. "compile": {
  2512. "ref/netstandard1.3/System.Net.NameResolution.dll": {}
  2513. },
  2514. "runtimeTargets": {
  2515. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2516. "assetType": "runtime",
  2517. "rid": "unix"
  2518. },
  2519. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll": {
  2520. "assetType": "runtime",
  2521. "rid": "win"
  2522. }
  2523. }
  2524. },
  2525. "System.Net.NetworkInformation/4.1.0": {
  2526. "type": "package",
  2527. "dependencies": {
  2528. "Microsoft.NETCore.Platforms": "1.0.1",
  2529. "Microsoft.Win32.Primitives": "4.0.1",
  2530. "System.Collections": "4.0.11",
  2531. "System.Diagnostics.Tracing": "4.1.0",
  2532. "System.Globalization": "4.0.11",
  2533. "System.IO": "4.1.0",
  2534. "System.IO.FileSystem": "4.0.1",
  2535. "System.IO.FileSystem.Primitives": "4.0.1",
  2536. "System.Linq": "4.1.0",
  2537. "System.Net.Primitives": "4.0.11",
  2538. "System.Net.Sockets": "4.1.0",
  2539. "System.Resources.ResourceManager": "4.0.1",
  2540. "System.Runtime": "4.1.0",
  2541. "System.Runtime.Extensions": "4.1.0",
  2542. "System.Runtime.Handles": "4.0.1",
  2543. "System.Runtime.InteropServices": "4.1.0",
  2544. "System.Security.Principal.Windows": "4.0.0",
  2545. "System.Threading": "4.0.11",
  2546. "System.Threading.Overlapped": "4.0.1",
  2547. "System.Threading.Tasks": "4.0.11",
  2548. "System.Threading.Thread": "4.0.0",
  2549. "System.Threading.ThreadPool": "4.0.10",
  2550. "runtime.native.System": "4.0.0"
  2551. },
  2552. "compile": {
  2553. "ref/netstandard1.3/System.Net.NetworkInformation.dll": {}
  2554. },
  2555. "runtime": {
  2556. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2557. },
  2558. "runtimeTargets": {
  2559. "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2560. "assetType": "runtime",
  2561. "rid": "linux"
  2562. },
  2563. "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2564. "assetType": "runtime",
  2565. "rid": "osx"
  2566. },
  2567. "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll": {
  2568. "assetType": "runtime",
  2569. "rid": "win"
  2570. }
  2571. }
  2572. },
  2573. "System.Net.Primitives/4.3.0": {
  2574. "type": "package",
  2575. "dependencies": {
  2576. "Microsoft.NETCore.Platforms": "1.1.0",
  2577. "Microsoft.NETCore.Targets": "1.1.0",
  2578. "System.Runtime": "4.3.0",
  2579. "System.Runtime.Handles": "4.3.0"
  2580. },
  2581. "compile": {
  2582. "ref/netstandard1.3/System.Net.Primitives.dll": {}
  2583. },
  2584. "runtime": {
  2585. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2586. }
  2587. },
  2588. "System.Net.Requests/4.0.11": {
  2589. "type": "package",
  2590. "dependencies": {
  2591. "Microsoft.NETCore.Platforms": "1.0.1",
  2592. "System.Collections": "4.0.11",
  2593. "System.Diagnostics.Debug": "4.0.11",
  2594. "System.Diagnostics.Tracing": "4.1.0",
  2595. "System.Globalization": "4.0.11",
  2596. "System.IO": "4.1.0",
  2597. "System.Net.Http": "4.1.0",
  2598. "System.Net.Primitives": "4.0.11",
  2599. "System.Net.WebHeaderCollection": "4.0.1",
  2600. "System.Resources.ResourceManager": "4.0.1",
  2601. "System.Runtime": "4.1.0",
  2602. "System.Threading": "4.0.11",
  2603. "System.Threading.Tasks": "4.0.11"
  2604. },
  2605. "compile": {
  2606. "ref/netstandard1.3/System.Net.Requests.dll": {}
  2607. },
  2608. "runtime": {
  2609. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2610. },
  2611. "runtimeTargets": {
  2612. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll": {
  2613. "assetType": "runtime",
  2614. "rid": "unix"
  2615. },
  2616. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll": {
  2617. "assetType": "runtime",
  2618. "rid": "win"
  2619. }
  2620. }
  2621. },
  2622. "System.Net.Security/4.0.0": {
  2623. "type": "package",
  2624. "dependencies": {
  2625. "Microsoft.NETCore.Platforms": "1.0.1",
  2626. "Microsoft.Win32.Primitives": "4.0.1",
  2627. "System.Collections": "4.0.11",
  2628. "System.Collections.Concurrent": "4.0.12",
  2629. "System.Diagnostics.Tracing": "4.1.0",
  2630. "System.Globalization": "4.0.11",
  2631. "System.Globalization.Extensions": "4.0.1",
  2632. "System.IO": "4.1.0",
  2633. "System.Net.Primitives": "4.0.11",
  2634. "System.Resources.ResourceManager": "4.0.1",
  2635. "System.Runtime": "4.1.0",
  2636. "System.Runtime.Extensions": "4.1.0",
  2637. "System.Runtime.Handles": "4.0.1",
  2638. "System.Runtime.InteropServices": "4.1.0",
  2639. "System.Security.Claims": "4.0.1",
  2640. "System.Security.Cryptography.Algorithms": "4.2.0",
  2641. "System.Security.Cryptography.Encoding": "4.0.0",
  2642. "System.Security.Cryptography.OpenSsl": "4.0.0",
  2643. "System.Security.Cryptography.Primitives": "4.0.0",
  2644. "System.Security.Cryptography.X509Certificates": "4.1.0",
  2645. "System.Security.Principal": "4.0.1",
  2646. "System.Text.Encoding": "4.0.11",
  2647. "System.Threading": "4.0.11",
  2648. "System.Threading.Tasks": "4.0.11",
  2649. "System.Threading.ThreadPool": "4.0.10",
  2650. "runtime.native.System": "4.0.0",
  2651. "runtime.native.System.Net.Security": "4.0.1",
  2652. "runtime.native.System.Security.Cryptography": "4.0.0"
  2653. },
  2654. "compile": {
  2655. "ref/netstandard1.3/System.Net.Security.dll": {}
  2656. },
  2657. "runtimeTargets": {
  2658. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll": {
  2659. "assetType": "runtime",
  2660. "rid": "unix"
  2661. },
  2662. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll": {
  2663. "assetType": "runtime",
  2664. "rid": "win"
  2665. }
  2666. }
  2667. },
  2668. "System.Net.Sockets/4.3.0": {
  2669. "type": "package",
  2670. "dependencies": {
  2671. "Microsoft.NETCore.Platforms": "1.1.0",
  2672. "Microsoft.NETCore.Targets": "1.1.0",
  2673. "System.IO": "4.3.0",
  2674. "System.Net.Primitives": "4.3.0",
  2675. "System.Runtime": "4.3.0",
  2676. "System.Threading.Tasks": "4.3.0"
  2677. },
  2678. "compile": {
  2679. "ref/netstandard1.3/System.Net.Sockets.dll": {}
  2680. }
  2681. },
  2682. "System.Net.WebHeaderCollection/4.0.1": {
  2683. "type": "package",
  2684. "dependencies": {
  2685. "System.Collections": "4.0.11",
  2686. "System.Resources.ResourceManager": "4.0.1",
  2687. "System.Runtime": "4.1.0",
  2688. "System.Runtime.Extensions": "4.1.0"
  2689. },
  2690. "compile": {
  2691. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2692. },
  2693. "runtime": {
  2694. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll": {}
  2695. }
  2696. },
  2697. "System.Net.WebSockets/4.3.0": {
  2698. "type": "package",
  2699. "dependencies": {
  2700. "Microsoft.Win32.Primitives": "4.3.0",
  2701. "System.Resources.ResourceManager": "4.3.0",
  2702. "System.Runtime": "4.3.0",
  2703. "System.Threading.Tasks": "4.3.0"
  2704. },
  2705. "compile": {
  2706. "ref/netstandard1.3/System.Net.WebSockets.dll": {}
  2707. },
  2708. "runtime": {
  2709. "lib/netstandard1.3/System.Net.WebSockets.dll": {}
  2710. }
  2711. },
  2712. "System.Numerics.Vectors/4.1.1": {
  2713. "type": "package",
  2714. "dependencies": {
  2715. "System.Globalization": "4.0.11",
  2716. "System.Resources.ResourceManager": "4.0.1",
  2717. "System.Runtime": "4.1.0",
  2718. "System.Runtime.Extensions": "4.1.0"
  2719. },
  2720. "compile": {
  2721. "ref/netstandard1.0/System.Numerics.Vectors.dll": {}
  2722. },
  2723. "runtime": {
  2724. "lib/netstandard1.0/System.Numerics.Vectors.dll": {}
  2725. }
  2726. },
  2727. "System.ObjectModel/4.3.0": {
  2728. "type": "package",
  2729. "dependencies": {
  2730. "System.Collections": "4.3.0",
  2731. "System.Diagnostics.Debug": "4.3.0",
  2732. "System.Resources.ResourceManager": "4.3.0",
  2733. "System.Runtime": "4.3.0",
  2734. "System.Threading": "4.3.0"
  2735. },
  2736. "compile": {
  2737. "ref/netstandard1.3/System.ObjectModel.dll": {}
  2738. },
  2739. "runtime": {
  2740. "lib/netstandard1.3/System.ObjectModel.dll": {}
  2741. }
  2742. },
  2743. "System.Reflection/4.3.0": {
  2744. "type": "package",
  2745. "dependencies": {
  2746. "Microsoft.NETCore.Platforms": "1.1.0",
  2747. "Microsoft.NETCore.Targets": "1.1.0",
  2748. "System.IO": "4.3.0",
  2749. "System.Reflection.Primitives": "4.3.0",
  2750. "System.Runtime": "4.3.0"
  2751. },
  2752. "compile": {
  2753. "ref/netstandard1.5/System.Reflection.dll": {}
  2754. },
  2755. "runtime": {
  2756. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2757. }
  2758. },
  2759. "System.Reflection.DispatchProxy/4.0.1": {
  2760. "type": "package",
  2761. "dependencies": {
  2762. "System.Collections": "4.0.11",
  2763. "System.Linq": "4.1.0",
  2764. "System.Reflection": "4.1.0",
  2765. "System.Reflection.Emit": "4.0.1",
  2766. "System.Reflection.Emit.ILGeneration": "4.0.1",
  2767. "System.Reflection.Extensions": "4.0.1",
  2768. "System.Reflection.Primitives": "4.0.1",
  2769. "System.Resources.ResourceManager": "4.0.1",
  2770. "System.Runtime": "4.1.0",
  2771. "System.Threading": "4.0.11"
  2772. },
  2773. "compile": {
  2774. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
  2775. },
  2776. "runtime": {
  2777. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll": {}
  2778. }
  2779. },
  2780. "System.Reflection.Emit/4.3.0": {
  2781. "type": "package",
  2782. "dependencies": {
  2783. "System.IO": "4.3.0",
  2784. "System.Reflection": "4.3.0",
  2785. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2786. "System.Reflection.Primitives": "4.3.0",
  2787. "System.Runtime": "4.3.0"
  2788. },
  2789. "compile": {
  2790. "ref/netstandard1.1/System.Reflection.Emit.dll": {}
  2791. },
  2792. "runtime": {
  2793. "lib/netstandard1.3/System.Reflection.Emit.dll": {}
  2794. }
  2795. },
  2796. "System.Reflection.Emit.ILGeneration/4.3.0": {
  2797. "type": "package",
  2798. "dependencies": {
  2799. "System.Reflection": "4.3.0",
  2800. "System.Reflection.Primitives": "4.3.0",
  2801. "System.Runtime": "4.3.0"
  2802. },
  2803. "compile": {
  2804. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {}
  2805. },
  2806. "runtime": {
  2807. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
  2808. }
  2809. },
  2810. "System.Reflection.Emit.Lightweight/4.3.0": {
  2811. "type": "package",
  2812. "dependencies": {
  2813. "System.Reflection": "4.3.0",
  2814. "System.Reflection.Emit.ILGeneration": "4.3.0",
  2815. "System.Reflection.Primitives": "4.3.0",
  2816. "System.Runtime": "4.3.0"
  2817. },
  2818. "compile": {
  2819. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll": {}
  2820. },
  2821. "runtime": {
  2822. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
  2823. }
  2824. },
  2825. "System.Reflection.Extensions/4.3.0": {
  2826. "type": "package",
  2827. "dependencies": {
  2828. "Microsoft.NETCore.Platforms": "1.1.0",
  2829. "Microsoft.NETCore.Targets": "1.1.0",
  2830. "System.Reflection": "4.3.0",
  2831. "System.Runtime": "4.3.0"
  2832. },
  2833. "compile": {
  2834. "ref/netstandard1.0/System.Reflection.Extensions.dll": {}
  2835. },
  2836. "runtime": {
  2837. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2838. }
  2839. },
  2840. "System.Reflection.Metadata/1.3.0": {
  2841. "type": "package",
  2842. "dependencies": {
  2843. "System.Collections": "4.0.11",
  2844. "System.Collections.Immutable": "1.2.0",
  2845. "System.Diagnostics.Debug": "4.0.11",
  2846. "System.IO": "4.1.0",
  2847. "System.Linq": "4.1.0",
  2848. "System.Reflection": "4.1.0",
  2849. "System.Reflection.Extensions": "4.0.1",
  2850. "System.Reflection.Primitives": "4.0.1",
  2851. "System.Resources.ResourceManager": "4.0.1",
  2852. "System.Runtime": "4.1.0",
  2853. "System.Runtime.Extensions": "4.1.0",
  2854. "System.Runtime.InteropServices": "4.1.0",
  2855. "System.Text.Encoding": "4.0.11",
  2856. "System.Text.Encoding.Extensions": "4.0.11",
  2857. "System.Threading": "4.0.11"
  2858. },
  2859. "compile": {
  2860. "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
  2861. },
  2862. "runtime": {
  2863. "lib/netstandard1.1/System.Reflection.Metadata.dll": {}
  2864. }
  2865. },
  2866. "System.Reflection.Primitives/4.3.0": {
  2867. "type": "package",
  2868. "dependencies": {
  2869. "Microsoft.NETCore.Platforms": "1.1.0",
  2870. "Microsoft.NETCore.Targets": "1.1.0",
  2871. "System.Runtime": "4.3.0"
  2872. },
  2873. "compile": {
  2874. "ref/netstandard1.0/System.Reflection.Primitives.dll": {}
  2875. },
  2876. "runtime": {
  2877. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2878. }
  2879. },
  2880. "System.Reflection.TypeExtensions/4.3.0": {
  2881. "type": "package",
  2882. "dependencies": {
  2883. "System.Reflection": "4.3.0",
  2884. "System.Runtime": "4.3.0"
  2885. },
  2886. "compile": {
  2887. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2888. },
  2889. "runtime": {
  2890. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
  2891. }
  2892. },
  2893. "System.Resources.Reader/4.0.0": {
  2894. "type": "package",
  2895. "dependencies": {
  2896. "System.IO": "4.1.0",
  2897. "System.Resources.ResourceManager": "4.0.1",
  2898. "System.Runtime": "4.1.0",
  2899. "System.Text.Encoding": "4.0.11",
  2900. "System.Threading": "4.0.11"
  2901. },
  2902. "compile": {
  2903. "lib/netstandard1.0/System.Resources.Reader.dll": {}
  2904. },
  2905. "runtime": {
  2906. "lib/netstandard1.0/System.Resources.Reader.dll": {}
  2907. }
  2908. },
  2909. "System.Resources.ResourceManager/4.3.0": {
  2910. "type": "package",
  2911. "dependencies": {
  2912. "Microsoft.NETCore.Platforms": "1.1.0",
  2913. "Microsoft.NETCore.Targets": "1.1.0",
  2914. "System.Globalization": "4.3.0",
  2915. "System.Reflection": "4.3.0",
  2916. "System.Runtime": "4.3.0"
  2917. },
  2918. "compile": {
  2919. "ref/netstandard1.0/System.Resources.ResourceManager.dll": {}
  2920. },
  2921. "runtime": {
  2922. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2923. }
  2924. },
  2925. "System.Runtime/4.3.0": {
  2926. "type": "package",
  2927. "dependencies": {
  2928. "Microsoft.NETCore.Platforms": "1.1.0",
  2929. "Microsoft.NETCore.Targets": "1.1.0"
  2930. },
  2931. "compile": {
  2932. "ref/netstandard1.5/System.Runtime.dll": {}
  2933. },
  2934. "runtime": {
  2935. "lib/portable-net45+win8+wp80+wpa81/_._": {}
  2936. }
  2937. },
  2938. "System.Runtime.CompilerServices.Unsafe/4.3.0": {
  2939. "type": "package",
  2940. "dependencies": {
  2941. "System.Runtime": "4.3.0"
  2942. },
  2943. "compile": {
  2944. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  2945. },
  2946. "runtime": {
  2947. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll": {}
  2948. }
  2949. },
  2950. "System.Runtime.Extensions/4.3.0": {
  2951. "type": "package",
  2952. "dependencies": {
  2953. "Microsoft.NETCore.Platforms": "1.1.0",
  2954. "Microsoft.NETCore.Targets": "1.1.0",
  2955. "System.Runtime": "4.3.0"
  2956. },
  2957. "compile": {
  2958. "ref/netstandard1.5/System.Runtime.Extensions.dll": {}
  2959. },
  2960. "runtime": {
  2961. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  2962. }
  2963. },
  2964. "System.Runtime.Handles/4.3.0": {
  2965. "type": "package",
  2966. "dependencies": {
  2967. "Microsoft.NETCore.Platforms": "1.1.0",
  2968. "Microsoft.NETCore.Targets": "1.1.0",
  2969. "System.Runtime": "4.3.0"
  2970. },
  2971. "compile": {
  2972. "ref/netstandard1.3/System.Runtime.Handles.dll": {}
  2973. }
  2974. },
  2975. "System.Runtime.InteropServices/4.3.0": {
  2976. "type": "package",
  2977. "dependencies": {
  2978. "Microsoft.NETCore.Platforms": "1.1.0",
  2979. "Microsoft.NETCore.Targets": "1.1.0",
  2980. "System.Reflection": "4.3.0",
  2981. "System.Reflection.Primitives": "4.3.0",
  2982. "System.Runtime": "4.3.0",
  2983. "System.Runtime.Handles": "4.3.0"
  2984. },
  2985. "compile": {
  2986. "ref/netstandard1.5/System.Runtime.InteropServices.dll": {}
  2987. },
  2988. "runtime": {
  2989. "lib/portable-net45+win8+wpa81/_._": {}
  2990. }
  2991. },
  2992. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  2993. "type": "package",
  2994. "dependencies": {
  2995. "System.Reflection": "4.3.0",
  2996. "System.Reflection.Extensions": "4.3.0",
  2997. "System.Resources.ResourceManager": "4.3.0",
  2998. "System.Runtime": "4.3.0",
  2999. "System.Runtime.InteropServices": "4.3.0",
  3000. "System.Threading": "4.3.0",
  3001. "runtime.native.System": "4.3.0"
  3002. },
  3003. "compile": {
  3004. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3005. },
  3006. "runtime": {
  3007. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {}
  3008. },
  3009. "runtimeTargets": {
  3010. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3011. "assetType": "runtime",
  3012. "rid": "unix"
  3013. },
  3014. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {
  3015. "assetType": "runtime",
  3016. "rid": "win"
  3017. }
  3018. }
  3019. },
  3020. "System.Runtime.Loader/4.0.0": {
  3021. "type": "package",
  3022. "dependencies": {
  3023. "System.IO": "4.1.0",
  3024. "System.Reflection": "4.1.0",
  3025. "System.Runtime": "4.1.0"
  3026. },
  3027. "compile": {
  3028. "ref/netstandard1.5/System.Runtime.Loader.dll": {}
  3029. },
  3030. "runtime": {
  3031. "lib/netstandard1.5/System.Runtime.Loader.dll": {}
  3032. }
  3033. },
  3034. "System.Runtime.Numerics/4.3.0": {
  3035. "type": "package",
  3036. "dependencies": {
  3037. "System.Globalization": "4.3.0",
  3038. "System.Resources.ResourceManager": "4.3.0",
  3039. "System.Runtime": "4.3.0",
  3040. "System.Runtime.Extensions": "4.3.0"
  3041. },
  3042. "compile": {
  3043. "ref/netstandard1.1/System.Runtime.Numerics.dll": {}
  3044. },
  3045. "runtime": {
  3046. "lib/netstandard1.3/System.Runtime.Numerics.dll": {}
  3047. }
  3048. },
  3049. "System.Runtime.Serialization.Primitives/4.1.1": {
  3050. "type": "package",
  3051. "dependencies": {
  3052. "System.Resources.ResourceManager": "4.0.1",
  3053. "System.Runtime": "4.1.0"
  3054. },
  3055. "compile": {
  3056. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3057. },
  3058. "runtime": {
  3059. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
  3060. }
  3061. },
  3062. "System.Security.Claims/4.3.0": {
  3063. "type": "package",
  3064. "dependencies": {
  3065. "System.Collections": "4.3.0",
  3066. "System.Globalization": "4.3.0",
  3067. "System.IO": "4.3.0",
  3068. "System.Resources.ResourceManager": "4.3.0",
  3069. "System.Runtime": "4.3.0",
  3070. "System.Runtime.Extensions": "4.3.0",
  3071. "System.Security.Principal": "4.3.0"
  3072. },
  3073. "compile": {
  3074. "ref/netstandard1.3/System.Security.Claims.dll": {}
  3075. },
  3076. "runtime": {
  3077. "lib/netstandard1.3/System.Security.Claims.dll": {}
  3078. }
  3079. },
  3080. "System.Security.Cryptography.Algorithms/4.3.0": {
  3081. "type": "package",
  3082. "dependencies": {
  3083. "Microsoft.NETCore.Platforms": "1.1.0",
  3084. "System.Collections": "4.3.0",
  3085. "System.IO": "4.3.0",
  3086. "System.Resources.ResourceManager": "4.3.0",
  3087. "System.Runtime": "4.3.0",
  3088. "System.Runtime.Extensions": "4.3.0",
  3089. "System.Runtime.Handles": "4.3.0",
  3090. "System.Runtime.InteropServices": "4.3.0",
  3091. "System.Runtime.Numerics": "4.3.0",
  3092. "System.Security.Cryptography.Encoding": "4.3.0",
  3093. "System.Security.Cryptography.Primitives": "4.3.0",
  3094. "System.Text.Encoding": "4.3.0",
  3095. "runtime.native.System.Security.Cryptography.Apple": "4.3.0",
  3096. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3097. },
  3098. "compile": {
  3099. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {}
  3100. },
  3101. "runtimeTargets": {
  3102. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3103. "assetType": "runtime",
  3104. "rid": "osx"
  3105. },
  3106. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3107. "assetType": "runtime",
  3108. "rid": "unix"
  3109. },
  3110. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {
  3111. "assetType": "runtime",
  3112. "rid": "win"
  3113. }
  3114. }
  3115. },
  3116. "System.Security.Cryptography.Cng/4.3.0": {
  3117. "type": "package",
  3118. "dependencies": {
  3119. "Microsoft.NETCore.Platforms": "1.1.0",
  3120. "System.IO": "4.3.0",
  3121. "System.Resources.ResourceManager": "4.3.0",
  3122. "System.Runtime": "4.3.0",
  3123. "System.Runtime.Extensions": "4.3.0",
  3124. "System.Runtime.Handles": "4.3.0",
  3125. "System.Runtime.InteropServices": "4.3.0",
  3126. "System.Security.Cryptography.Algorithms": "4.3.0",
  3127. "System.Security.Cryptography.Encoding": "4.3.0",
  3128. "System.Security.Cryptography.Primitives": "4.3.0",
  3129. "System.Text.Encoding": "4.3.0"
  3130. },
  3131. "compile": {
  3132. "ref/netstandard1.6/_._": {}
  3133. },
  3134. "runtimeTargets": {
  3135. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3136. "assetType": "runtime",
  3137. "rid": "unix"
  3138. },
  3139. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": {
  3140. "assetType": "runtime",
  3141. "rid": "win"
  3142. }
  3143. }
  3144. },
  3145. "System.Security.Cryptography.Csp/4.3.0": {
  3146. "type": "package",
  3147. "dependencies": {
  3148. "Microsoft.NETCore.Platforms": "1.1.0",
  3149. "System.IO": "4.3.0",
  3150. "System.Reflection": "4.3.0",
  3151. "System.Resources.ResourceManager": "4.3.0",
  3152. "System.Runtime": "4.3.0",
  3153. "System.Runtime.Extensions": "4.3.0",
  3154. "System.Runtime.Handles": "4.3.0",
  3155. "System.Runtime.InteropServices": "4.3.0",
  3156. "System.Security.Cryptography.Algorithms": "4.3.0",
  3157. "System.Security.Cryptography.Encoding": "4.3.0",
  3158. "System.Security.Cryptography.Primitives": "4.3.0",
  3159. "System.Text.Encoding": "4.3.0",
  3160. "System.Threading": "4.3.0"
  3161. },
  3162. "compile": {
  3163. "ref/netstandard1.3/_._": {}
  3164. },
  3165. "runtimeTargets": {
  3166. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3167. "assetType": "runtime",
  3168. "rid": "unix"
  3169. },
  3170. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": {
  3171. "assetType": "runtime",
  3172. "rid": "win"
  3173. }
  3174. }
  3175. },
  3176. "System.Security.Cryptography.Encoding/4.3.0": {
  3177. "type": "package",
  3178. "dependencies": {
  3179. "Microsoft.NETCore.Platforms": "1.1.0",
  3180. "System.Collections": "4.3.0",
  3181. "System.Collections.Concurrent": "4.3.0",
  3182. "System.Linq": "4.3.0",
  3183. "System.Resources.ResourceManager": "4.3.0",
  3184. "System.Runtime": "4.3.0",
  3185. "System.Runtime.Extensions": "4.3.0",
  3186. "System.Runtime.Handles": "4.3.0",
  3187. "System.Runtime.InteropServices": "4.3.0",
  3188. "System.Security.Cryptography.Primitives": "4.3.0",
  3189. "System.Text.Encoding": "4.3.0",
  3190. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3191. },
  3192. "compile": {
  3193. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {}
  3194. },
  3195. "runtimeTargets": {
  3196. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3197. "assetType": "runtime",
  3198. "rid": "unix"
  3199. },
  3200. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": {
  3201. "assetType": "runtime",
  3202. "rid": "win"
  3203. }
  3204. }
  3205. },
  3206. "System.Security.Cryptography.OpenSsl/4.3.0": {
  3207. "type": "package",
  3208. "dependencies": {
  3209. "System.Collections": "4.3.0",
  3210. "System.IO": "4.3.0",
  3211. "System.Resources.ResourceManager": "4.3.0",
  3212. "System.Runtime": "4.3.0",
  3213. "System.Runtime.Extensions": "4.3.0",
  3214. "System.Runtime.Handles": "4.3.0",
  3215. "System.Runtime.InteropServices": "4.3.0",
  3216. "System.Runtime.Numerics": "4.3.0",
  3217. "System.Security.Cryptography.Algorithms": "4.3.0",
  3218. "System.Security.Cryptography.Encoding": "4.3.0",
  3219. "System.Security.Cryptography.Primitives": "4.3.0",
  3220. "System.Text.Encoding": "4.3.0",
  3221. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3222. },
  3223. "compile": {
  3224. "ref/netstandard1.6/_._": {}
  3225. },
  3226. "runtime": {
  3227. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {}
  3228. },
  3229. "runtimeTargets": {
  3230. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {
  3231. "assetType": "runtime",
  3232. "rid": "unix"
  3233. }
  3234. }
  3235. },
  3236. "System.Security.Cryptography.Primitives/4.3.0": {
  3237. "type": "package",
  3238. "dependencies": {
  3239. "System.Diagnostics.Debug": "4.3.0",
  3240. "System.Globalization": "4.3.0",
  3241. "System.IO": "4.3.0",
  3242. "System.Resources.ResourceManager": "4.3.0",
  3243. "System.Runtime": "4.3.0",
  3244. "System.Threading": "4.3.0",
  3245. "System.Threading.Tasks": "4.3.0"
  3246. },
  3247. "compile": {
  3248. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3249. },
  3250. "runtime": {
  3251. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {}
  3252. }
  3253. },
  3254. "System.Security.Cryptography.X509Certificates/4.3.0": {
  3255. "type": "package",
  3256. "dependencies": {
  3257. "Microsoft.NETCore.Platforms": "1.1.0",
  3258. "System.Collections": "4.3.0",
  3259. "System.Diagnostics.Debug": "4.3.0",
  3260. "System.Globalization": "4.3.0",
  3261. "System.Globalization.Calendars": "4.3.0",
  3262. "System.IO": "4.3.0",
  3263. "System.IO.FileSystem": "4.3.0",
  3264. "System.IO.FileSystem.Primitives": "4.3.0",
  3265. "System.Resources.ResourceManager": "4.3.0",
  3266. "System.Runtime": "4.3.0",
  3267. "System.Runtime.Extensions": "4.3.0",
  3268. "System.Runtime.Handles": "4.3.0",
  3269. "System.Runtime.InteropServices": "4.3.0",
  3270. "System.Runtime.Numerics": "4.3.0",
  3271. "System.Security.Cryptography.Algorithms": "4.3.0",
  3272. "System.Security.Cryptography.Cng": "4.3.0",
  3273. "System.Security.Cryptography.Csp": "4.3.0",
  3274. "System.Security.Cryptography.Encoding": "4.3.0",
  3275. "System.Security.Cryptography.OpenSsl": "4.3.0",
  3276. "System.Security.Cryptography.Primitives": "4.3.0",
  3277. "System.Text.Encoding": "4.3.0",
  3278. "System.Threading": "4.3.0",
  3279. "runtime.native.System": "4.3.0",
  3280. "runtime.native.System.Net.Http": "4.3.0",
  3281. "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
  3282. },
  3283. "compile": {
  3284. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {}
  3285. },
  3286. "runtimeTargets": {
  3287. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3288. "assetType": "runtime",
  3289. "rid": "unix"
  3290. },
  3291. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": {
  3292. "assetType": "runtime",
  3293. "rid": "win"
  3294. }
  3295. }
  3296. },
  3297. "System.Security.Principal/4.3.0": {
  3298. "type": "package",
  3299. "dependencies": {
  3300. "System.Runtime": "4.3.0"
  3301. },
  3302. "compile": {
  3303. "ref/netstandard1.0/System.Security.Principal.dll": {}
  3304. },
  3305. "runtime": {
  3306. "lib/netstandard1.0/System.Security.Principal.dll": {}
  3307. }
  3308. },
  3309. "System.Security.Principal.Windows/4.3.0-preview1-24530-04": {
  3310. "type": "package",
  3311. "dependencies": {
  3312. "Microsoft.NETCore.Platforms": "1.1.0-preview1-24530-04",
  3313. "Microsoft.Win32.Primitives": "4.3.0-preview1-24530-04",
  3314. "System.Collections": "4.3.0-preview1-24530-04",
  3315. "System.Diagnostics.Debug": "4.3.0-preview1-24530-04",
  3316. "System.Reflection": "4.3.0-preview1-24530-04",
  3317. "System.Resources.ResourceManager": "4.3.0-preview1-24530-04",
  3318. "System.Runtime": "4.3.0-preview1-24530-04",
  3319. "System.Runtime.Extensions": "4.3.0-preview1-24530-04",
  3320. "System.Runtime.Handles": "4.3.0-preview1-24530-04",
  3321. "System.Runtime.InteropServices": "4.3.0-preview1-24530-04",
  3322. "System.Security.Claims": "4.3.0-preview1-24530-04",
  3323. "System.Security.Principal": "4.3.0-preview1-24530-04",
  3324. "System.Text.Encoding": "4.3.0-preview1-24530-04",
  3325. "System.Threading": "4.3.0-preview1-24530-04"
  3326. },
  3327. "compile": {
  3328. "ref/netstandard1.3/System.Security.Principal.Windows.dll": {}
  3329. },
  3330. "runtimeTargets": {
  3331. "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  3332. "assetType": "runtime",
  3333. "rid": "unix"
  3334. },
  3335. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll": {
  3336. "assetType": "runtime",
  3337. "rid": "win"
  3338. }
  3339. }
  3340. },
  3341. "System.Text.Encoding/4.3.0": {
  3342. "type": "package",
  3343. "dependencies": {
  3344. "Microsoft.NETCore.Platforms": "1.1.0",
  3345. "Microsoft.NETCore.Targets": "1.1.0",
  3346. "System.Runtime": "4.3.0"
  3347. },
  3348. "compile": {
  3349. "ref/netstandard1.3/System.Text.Encoding.dll": {}
  3350. },
  3351. "runtime": {
  3352. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3353. }
  3354. },
  3355. "System.Text.Encoding.CodePages/4.0.1": {
  3356. "type": "package",
  3357. "dependencies": {
  3358. "Microsoft.NETCore.Platforms": "1.0.1",
  3359. "System.Collections": "4.0.11",
  3360. "System.Globalization": "4.0.11",
  3361. "System.IO": "4.1.0",
  3362. "System.Reflection": "4.1.0",
  3363. "System.Resources.ResourceManager": "4.0.1",
  3364. "System.Runtime": "4.1.0",
  3365. "System.Runtime.Extensions": "4.1.0",
  3366. "System.Runtime.Handles": "4.0.1",
  3367. "System.Runtime.InteropServices": "4.1.0",
  3368. "System.Text.Encoding": "4.0.11",
  3369. "System.Threading": "4.0.11"
  3370. },
  3371. "compile": {
  3372. "ref/netstandard1.3/_._": {}
  3373. },
  3374. "runtimeTargets": {
  3375. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  3376. "assetType": "runtime",
  3377. "rid": "unix"
  3378. },
  3379. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": {
  3380. "assetType": "runtime",
  3381. "rid": "win"
  3382. }
  3383. }
  3384. },
  3385. "System.Text.Encoding.Extensions/4.3.0": {
  3386. "type": "package",
  3387. "dependencies": {
  3388. "Microsoft.NETCore.Platforms": "1.1.0",
  3389. "Microsoft.NETCore.Targets": "1.1.0",
  3390. "System.Runtime": "4.3.0",
  3391. "System.Text.Encoding": "4.3.0"
  3392. },
  3393. "compile": {
  3394. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {}
  3395. },
  3396. "runtime": {
  3397. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3398. }
  3399. },
  3400. "System.Text.Encodings.Web/4.3.0": {
  3401. "type": "package",
  3402. "dependencies": {
  3403. "System.Diagnostics.Debug": "4.3.0",
  3404. "System.IO": "4.3.0",
  3405. "System.Reflection": "4.3.0",
  3406. "System.Resources.ResourceManager": "4.3.0",
  3407. "System.Runtime": "4.3.0",
  3408. "System.Runtime.Extensions": "4.3.0",
  3409. "System.Threading": "4.3.0"
  3410. },
  3411. "compile": {
  3412. "lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
  3413. },
  3414. "runtime": {
  3415. "lib/netstandard1.0/System.Text.Encodings.Web.dll": {}
  3416. }
  3417. },
  3418. "System.Text.RegularExpressions/4.3.0": {
  3419. "type": "package",
  3420. "dependencies": {
  3421. "System.Collections": "4.3.0",
  3422. "System.Globalization": "4.3.0",
  3423. "System.Resources.ResourceManager": "4.3.0",
  3424. "System.Runtime": "4.3.0",
  3425. "System.Runtime.Extensions": "4.3.0",
  3426. "System.Threading": "4.3.0"
  3427. },
  3428. "compile": {
  3429. "ref/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3430. },
  3431. "runtime": {
  3432. "lib/netstandard1.6/System.Text.RegularExpressions.dll": {}
  3433. }
  3434. },
  3435. "System.Threading/4.3.0": {
  3436. "type": "package",
  3437. "dependencies": {
  3438. "System.Runtime": "4.3.0",
  3439. "System.Threading.Tasks": "4.3.0"
  3440. },
  3441. "compile": {
  3442. "ref/netstandard1.3/System.Threading.dll": {}
  3443. },
  3444. "runtime": {
  3445. "lib/netstandard1.3/System.Threading.dll": {}
  3446. }
  3447. },
  3448. "System.Threading.Overlapped/4.0.1": {
  3449. "type": "package",
  3450. "dependencies": {
  3451. "Microsoft.NETCore.Platforms": "1.0.1",
  3452. "System.Resources.ResourceManager": "4.0.1",
  3453. "System.Runtime": "4.1.0",
  3454. "System.Runtime.Handles": "4.0.1"
  3455. },
  3456. "compile": {
  3457. "ref/netstandard1.3/_._": {}
  3458. },
  3459. "runtimeTargets": {
  3460. "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll": {
  3461. "assetType": "runtime",
  3462. "rid": "unix"
  3463. },
  3464. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll": {
  3465. "assetType": "runtime",
  3466. "rid": "win"
  3467. }
  3468. }
  3469. },
  3470. "System.Threading.Tasks/4.3.0": {
  3471. "type": "package",
  3472. "dependencies": {
  3473. "Microsoft.NETCore.Platforms": "1.1.0",
  3474. "Microsoft.NETCore.Targets": "1.1.0",
  3475. "System.Runtime": "4.3.0"
  3476. },
  3477. "compile": {
  3478. "ref/netstandard1.3/System.Threading.Tasks.dll": {}
  3479. },
  3480. "runtime": {
  3481. "lib/portable-net45+win8+wp8+wpa81/_._": {}
  3482. }
  3483. },
  3484. "System.Threading.Tasks.Dataflow/4.6.0": {
  3485. "type": "package",
  3486. "dependencies": {
  3487. "System.Collections": "4.0.11",
  3488. "System.Collections.Concurrent": "4.0.12",
  3489. "System.Diagnostics.Debug": "4.0.11",
  3490. "System.Diagnostics.Tracing": "4.1.0",
  3491. "System.Dynamic.Runtime": "4.0.11",
  3492. "System.Linq": "4.1.0",
  3493. "System.Resources.ResourceManager": "4.0.1",
  3494. "System.Runtime": "4.1.0",
  3495. "System.Runtime.Extensions": "4.1.0",
  3496. "System.Threading": "4.0.11",
  3497. "System.Threading.Tasks": "4.0.11"
  3498. },
  3499. "compile": {
  3500. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
  3501. },
  3502. "runtime": {
  3503. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll": {}
  3504. }
  3505. },
  3506. "System.Threading.Tasks.Extensions/4.3.0": {
  3507. "type": "package",
  3508. "dependencies": {
  3509. "System.Collections": "4.3.0",
  3510. "System.Runtime": "4.3.0",
  3511. "System.Threading.Tasks": "4.3.0"
  3512. },
  3513. "compile": {
  3514. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  3515. },
  3516. "runtime": {
  3517. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": {}
  3518. }
  3519. },
  3520. "System.Threading.Tasks.Parallel/4.0.1": {
  3521. "type": "package",
  3522. "dependencies": {
  3523. "System.Collections.Concurrent": "4.0.12",
  3524. "System.Diagnostics.Debug": "4.0.11",
  3525. "System.Diagnostics.Tracing": "4.1.0",
  3526. "System.Resources.ResourceManager": "4.0.1",
  3527. "System.Runtime": "4.1.0",
  3528. "System.Runtime.Extensions": "4.1.0",
  3529. "System.Threading": "4.0.11",
  3530. "System.Threading.Tasks": "4.0.11"
  3531. },
  3532. "compile": {
  3533. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll": {}
  3534. },
  3535. "runtime": {
  3536. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll": {}
  3537. }
  3538. },
  3539. "System.Threading.Thread/4.0.0": {
  3540. "type": "package",
  3541. "dependencies": {
  3542. "System.Runtime": "4.1.0"
  3543. },
  3544. "compile": {
  3545. "ref/netstandard1.3/System.Threading.Thread.dll": {}
  3546. },
  3547. "runtime": {
  3548. "lib/netstandard1.3/System.Threading.Thread.dll": {}
  3549. }
  3550. },
  3551. "System.Threading.ThreadPool/4.0.10": {
  3552. "type": "package",
  3553. "dependencies": {
  3554. "System.Runtime": "4.1.0",
  3555. "System.Runtime.Handles": "4.0.1"
  3556. },
  3557. "compile": {
  3558. "ref/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3559. },
  3560. "runtime": {
  3561. "lib/netstandard1.3/System.Threading.ThreadPool.dll": {}
  3562. }
  3563. },
  3564. "System.Threading.Timer/4.3.0": {
  3565. "type": "package",
  3566. "dependencies": {
  3567. "Microsoft.NETCore.Platforms": "1.1.0",
  3568. "Microsoft.NETCore.Targets": "1.1.0",
  3569. "System.Runtime": "4.3.0"
  3570. },
  3571. "compile": {
  3572. "ref/netstandard1.2/System.Threading.Timer.dll": {}
  3573. }
  3574. },
  3575. "System.Xml.ReaderWriter/4.3.0": {
  3576. "type": "package",
  3577. "dependencies": {
  3578. "System.Collections": "4.3.0",
  3579. "System.Diagnostics.Debug": "4.3.0",
  3580. "System.Globalization": "4.3.0",
  3581. "System.IO": "4.3.0",
  3582. "System.IO.FileSystem": "4.3.0",
  3583. "System.IO.FileSystem.Primitives": "4.3.0",
  3584. "System.Resources.ResourceManager": "4.3.0",
  3585. "System.Runtime": "4.3.0",
  3586. "System.Runtime.Extensions": "4.3.0",
  3587. "System.Runtime.InteropServices": "4.3.0",
  3588. "System.Text.Encoding": "4.3.0",
  3589. "System.Text.Encoding.Extensions": "4.3.0",
  3590. "System.Text.RegularExpressions": "4.3.0",
  3591. "System.Threading.Tasks": "4.3.0",
  3592. "System.Threading.Tasks.Extensions": "4.3.0"
  3593. },
  3594. "compile": {
  3595. "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3596. },
  3597. "runtime": {
  3598. "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {}
  3599. }
  3600. },
  3601. "System.Xml.XDocument/4.3.0": {
  3602. "type": "package",
  3603. "dependencies": {
  3604. "System.Collections": "4.3.0",
  3605. "System.Diagnostics.Debug": "4.3.0",
  3606. "System.Diagnostics.Tools": "4.3.0",
  3607. "System.Globalization": "4.3.0",
  3608. "System.IO": "4.3.0",
  3609. "System.Reflection": "4.3.0",
  3610. "System.Resources.ResourceManager": "4.3.0",
  3611. "System.Runtime": "4.3.0",
  3612. "System.Runtime.Extensions": "4.3.0",
  3613. "System.Text.Encoding": "4.3.0",
  3614. "System.Threading": "4.3.0",
  3615. "System.Xml.ReaderWriter": "4.3.0"
  3616. },
  3617. "compile": {
  3618. "ref/netstandard1.3/System.Xml.XDocument.dll": {}
  3619. },
  3620. "runtime": {
  3621. "lib/netstandard1.3/System.Xml.XDocument.dll": {}
  3622. }
  3623. },
  3624. "System.Xml.XmlDocument/4.0.1": {
  3625. "type": "package",
  3626. "dependencies": {
  3627. "System.Collections": "4.0.11",
  3628. "System.Diagnostics.Debug": "4.0.11",
  3629. "System.Globalization": "4.0.11",
  3630. "System.IO": "4.1.0",
  3631. "System.Resources.ResourceManager": "4.0.1",
  3632. "System.Runtime": "4.1.0",
  3633. "System.Runtime.Extensions": "4.1.0",
  3634. "System.Text.Encoding": "4.0.11",
  3635. "System.Threading": "4.0.11",
  3636. "System.Xml.ReaderWriter": "4.0.11"
  3637. },
  3638. "compile": {
  3639. "ref/netstandard1.3/_._": {}
  3640. },
  3641. "runtime": {
  3642. "lib/netstandard1.3/System.Xml.XmlDocument.dll": {}
  3643. }
  3644. },
  3645. "System.Xml.XPath/4.0.1": {
  3646. "type": "package",
  3647. "dependencies": {
  3648. "System.Collections": "4.0.11",
  3649. "System.Diagnostics.Debug": "4.0.11",
  3650. "System.Globalization": "4.0.11",
  3651. "System.IO": "4.1.0",
  3652. "System.Resources.ResourceManager": "4.0.1",
  3653. "System.Runtime": "4.1.0",
  3654. "System.Runtime.Extensions": "4.1.0",
  3655. "System.Threading": "4.0.11",
  3656. "System.Xml.ReaderWriter": "4.0.11"
  3657. },
  3658. "compile": {
  3659. "ref/netstandard1.3/_._": {}
  3660. },
  3661. "runtime": {
  3662. "lib/netstandard1.3/System.Xml.XPath.dll": {}
  3663. }
  3664. },
  3665. "System.Xml.XPath.XDocument/4.0.1": {
  3666. "type": "package",
  3667. "dependencies": {
  3668. "System.Diagnostics.Debug": "4.0.11",
  3669. "System.Linq": "4.1.0",
  3670. "System.Resources.ResourceManager": "4.0.1",
  3671. "System.Runtime": "4.1.0",
  3672. "System.Runtime.Extensions": "4.1.0",
  3673. "System.Threading": "4.0.11",
  3674. "System.Xml.ReaderWriter": "4.0.11",
  3675. "System.Xml.XDocument": "4.0.11",
  3676. "System.Xml.XPath": "4.0.1"
  3677. },
  3678. "compile": {
  3679. "ref/netstandard1.3/_._": {}
  3680. },
  3681. "runtime": {
  3682. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll": {}
  3683. }
  3684. },
  3685. "xunit/2.1.0": {
  3686. "type": "package",
  3687. "dependencies": {
  3688. "xunit.assert": "[2.1.0]",
  3689. "xunit.core": "[2.1.0]"
  3690. }
  3691. },
  3692. "xunit.abstractions/2.0.0": {
  3693. "type": "package",
  3694. "compile": {
  3695. "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
  3696. },
  3697. "runtime": {
  3698. "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {}
  3699. }
  3700. },
  3701. "xunit.assert/2.1.0": {
  3702. "type": "package",
  3703. "dependencies": {
  3704. "System.Collections": "4.0.0",
  3705. "System.Diagnostics.Debug": "4.0.0",
  3706. "System.Globalization": "4.0.0",
  3707. "System.Linq": "4.0.0",
  3708. "System.ObjectModel": "4.0.0",
  3709. "System.Reflection": "4.0.0",
  3710. "System.Reflection.Extensions": "4.0.0",
  3711. "System.Runtime": "4.0.0",
  3712. "System.Runtime.Extensions": "4.0.0",
  3713. "System.Text.RegularExpressions": "4.0.0",
  3714. "System.Threading.Tasks": "4.0.0"
  3715. },
  3716. "compile": {
  3717. "lib/dotnet/xunit.assert.dll": {}
  3718. },
  3719. "runtime": {
  3720. "lib/dotnet/xunit.assert.dll": {}
  3721. }
  3722. },
  3723. "xunit.core/2.1.0": {
  3724. "type": "package",
  3725. "dependencies": {
  3726. "System.Collections": "4.0.0",
  3727. "System.Diagnostics.Debug": "4.0.0",
  3728. "System.Globalization": "4.0.0",
  3729. "System.Linq": "4.0.0",
  3730. "System.Reflection": "4.0.0",
  3731. "System.Reflection.Extensions": "4.0.0",
  3732. "System.Runtime": "4.0.0",
  3733. "System.Runtime.Extensions": "4.0.0",
  3734. "System.Threading.Tasks": "4.0.0",
  3735. "xunit.abstractions": "2.0.0",
  3736. "xunit.extensibility.core": "[2.1.0]",
  3737. "xunit.extensibility.execution": "[2.1.0]"
  3738. }
  3739. },
  3740. "xunit.extensibility.core/2.1.0": {
  3741. "type": "package",
  3742. "dependencies": {
  3743. "xunit.abstractions": "[2.0.0]"
  3744. },
  3745. "compile": {
  3746. "lib/dotnet/xunit.core.dll": {}
  3747. },
  3748. "runtime": {
  3749. "lib/dotnet/xunit.core.dll": {}
  3750. }
  3751. },
  3752. "xunit.extensibility.execution/2.1.0": {
  3753. "type": "package",
  3754. "dependencies": {
  3755. "System.Collections": "4.0.0",
  3756. "System.Diagnostics.Debug": "4.0.0",
  3757. "System.Globalization": "4.0.0",
  3758. "System.IO": "4.0.0",
  3759. "System.Linq": "4.0.0",
  3760. "System.Linq.Expressions": "4.0.0",
  3761. "System.Reflection": "4.0.0",
  3762. "System.Reflection.Extensions": "4.0.0",
  3763. "System.Runtime": "4.0.0",
  3764. "System.Runtime.Extensions": "4.0.0",
  3765. "System.Text.Encoding": "4.0.0",
  3766. "System.Threading": "4.0.0",
  3767. "System.Threading.Tasks": "4.0.0",
  3768. "xunit.abstractions": "2.0.0",
  3769. "xunit.extensibility.core": "[2.1.0]"
  3770. },
  3771. "compile": {
  3772. "lib/dotnet/xunit.execution.dotnet.dll": {}
  3773. },
  3774. "runtime": {
  3775. "lib/dotnet/xunit.execution.dotnet.dll": {}
  3776. }
  3777. },
  3778. "xunit.runner.reporters/2.1.0": {
  3779. "type": "package",
  3780. "dependencies": {
  3781. "Newtonsoft.Json": "7.0.1",
  3782. "System.Collections": "4.0.0",
  3783. "System.Diagnostics.Debug": "4.0.0",
  3784. "System.Net.Http": "4.0.0",
  3785. "System.Net.Primitives": "4.0.0",
  3786. "System.Reflection": "4.0.0",
  3787. "System.Reflection.Extensions": "4.0.0",
  3788. "System.Runtime": "4.0.0",
  3789. "System.Runtime.Extensions": "4.0.0",
  3790. "System.Text.Encoding": "4.0.0",
  3791. "System.Threading": "4.0.0",
  3792. "System.Threading.Tasks": "4.0.0",
  3793. "xunit.abstractions": "2.0.0",
  3794. "xunit.runner.utility": "[2.1.0]"
  3795. },
  3796. "compile": {
  3797. "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
  3798. },
  3799. "runtime": {
  3800. "lib/dotnet/xunit.runner.reporters.dotnet.dll": {}
  3801. }
  3802. },
  3803. "xunit.runner.utility/2.1.0": {
  3804. "type": "package",
  3805. "dependencies": {
  3806. "System.Collections": "4.0.0",
  3807. "System.Diagnostics.Debug": "4.0.0",
  3808. "System.Globalization": "4.0.0",
  3809. "System.IO": "4.0.0",
  3810. "System.Linq": "4.0.0",
  3811. "System.Reflection": "4.0.0",
  3812. "System.Reflection.Extensions": "4.0.0",
  3813. "System.Runtime": "4.0.0",
  3814. "System.Runtime.Extensions": "4.0.0",
  3815. "System.Text.RegularExpressions": "4.0.0",
  3816. "System.Threading": "4.0.0",
  3817. "System.Threading.Tasks": "4.0.0",
  3818. "xunit.abstractions": "2.0.0"
  3819. },
  3820. "compile": {
  3821. "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
  3822. },
  3823. "runtime": {
  3824. "lib/dotnet/xunit.runner.utility.dotnet.dll": {}
  3825. }
  3826. },
  3827. "Luticate2.Auth/1.0.0": {
  3828. "type": "project",
  3829. "framework": ".NETCoreApp,Version=v1.0",
  3830. "dependencies": {
  3831. "Luticate2.Utils": "1.0.0"
  3832. },
  3833. "compile": {
  3834. "netcoreapp1.0/Luticate2.Auth.dll": {}
  3835. },
  3836. "runtime": {
  3837. "netcoreapp1.0/Luticate2.Auth.dll": {}
  3838. }
  3839. },
  3840. "Luticate2.Utils/1.0.0": {
  3841. "type": "project",
  3842. "framework": ".NETCoreApp,Version=v1.0",
  3843. "dependencies": {
  3844. "Gray.Microsoft.AspNetCore.SignalR.Server": "0.2.0-alpha1",
  3845. "Microsoft.ApplicationInsights.AspNetCore": "1.0.2",
  3846. "Microsoft.AspNetCore.WebSockets": "1.0.0",
  3847. "Microsoft.EntityFrameworkCore.Tools": "1.1.0-preview4-final",
  3848. "Npgsql.EntityFrameworkCore.PostgreSQL": "1.1.0"
  3849. },
  3850. "compile": {
  3851. "netcoreapp1.0/Luticate2.Utils.dll": {}
  3852. },
  3853. "runtime": {
  3854. "netcoreapp1.0/Luticate2.Utils.dll": {}
  3855. }
  3856. }
  3857. }
  3858. },
  3859. "libraries": {
  3860. "dotnet-test-xunit/1.0.0-rc2-build10015": {
  3861. "sha512": "2traZWYeJiFzau+1j9HcnSZ3rQLDyIrqKyYKCTbPPmu6lsQAtaOG5q+fuKS9Vaxczmh0IcvZ2hdWEuYmtVb9zw==",
  3862. "type": "package",
  3863. "path": "dotnet-test-xunit/1.0.0-rc2-build10015",
  3864. "files": [
  3865. "dotnet-test-xunit.1.0.0-rc2-build10015.nupkg.sha512",
  3866. "dotnet-test-xunit.nuspec",
  3867. "lib/net451/dotnet-test-xunit.exe",
  3868. "lib/netcoreapp1.0/dotnet-test-xunit.dll",
  3869. "lib/netcoreapp1.0/dotnet-test-xunit.runtimeconfig.json",
  3870. "runtimes/unix-x64/lib/net451/dotnet-test-xunit.exe",
  3871. "runtimes/win7-x64/lib/net451/dotnet-test-xunit.exe",
  3872. "runtimes/win7-x86/lib/net451/dotnet-test-xunit.exe"
  3873. ]
  3874. },
  3875. "Gray.Microsoft.AspNetCore.SignalR.Messaging/0.2.0": {
  3876. "sha512": "f6ADNhKb2bJEIOL8kCR9ypGfKjiUa21KtIAa2mM2zjDNbddBgLRYE5k05aqTB7KqivFwp1MqhrJwiMrGsqNF8w==",
  3877. "type": "package",
  3878. "path": "Gray.Microsoft.AspNetCore.SignalR.Messaging/0.2.0",
  3879. "files": [
  3880. "Gray.Microsoft.AspNetCore.SignalR.Messaging.0.2.0.nupkg.sha512",
  3881. "Gray.Microsoft.AspNetCore.SignalR.Messaging.nuspec",
  3882. "lib/net451/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll",
  3883. "lib/netstandard1.3/Gray.Microsoft.AspNetCore.SignalR.Messaging.dll"
  3884. ]
  3885. },
  3886. "Gray.Microsoft.AspNetCore.SignalR.Server/0.2.0-alpha1": {
  3887. "sha512": "MyB2gibCua7nxjFaP+PHO/LdgV4xkJRtDFKrN5MNOcycky9yhCG3JtxFbm3UFpo/24GEmrmSgzC0pxIIwr3MVg==",
  3888. "type": "package",
  3889. "path": "Gray.Microsoft.AspNetCore.SignalR.Server/0.2.0-alpha1",
  3890. "files": [
  3891. "Gray.Microsoft.AspNetCore.SignalR.Server.0.2.0-alpha1.nupkg.sha512",
  3892. "Gray.Microsoft.AspNetCore.SignalR.Server.nuspec",
  3893. "lib/net451/Gray.Microsoft.AspNetCore.SignalR.Server.dll",
  3894. "lib/netstandard1.6/Gray.Microsoft.AspNetCore.SignalR.Server.dll"
  3895. ]
  3896. },
  3897. "Libuv/1.9.0": {
  3898. "sha512": "yGthZwFHS5Fmup6VPeY8eGJwtaBXXwrvBbTnPzYBJhtb4IeCwAELCKRDdrEUoF0dl346A1fHMHRgqxB+nfKV4A==",
  3899. "type": "package",
  3900. "path": "Libuv/1.9.0",
  3901. "files": [
  3902. "Libuv.1.9.0.nupkg.sha512",
  3903. "Libuv.nuspec",
  3904. "License.txt",
  3905. "runtimes/debian-x64/native/libuv.so",
  3906. "runtimes/fedora-x64/native/libuv.so",
  3907. "runtimes/opensuse-x64/native/libuv.so",
  3908. "runtimes/osx/native/libuv.dylib",
  3909. "runtimes/rhel-x64/native/libuv.so",
  3910. "runtimes/win7-arm/native/libuv.dll",
  3911. "runtimes/win7-x64/native/libuv.dll",
  3912. "runtimes/win7-x86/native/libuv.dll"
  3913. ]
  3914. },
  3915. "Microsoft.ApplicationInsights/2.1.0": {
  3916. "sha512": "mviO8PLQd3r22Pmv8JfjYzTCQ9ByhkU9wdC4fwd6WmAARwAMgMw9HEbHeYS3r+8pB3w+fZMi7p4LKijzgNybRQ==",
  3917. "type": "package",
  3918. "path": "Microsoft.ApplicationInsights/2.1.0",
  3919. "files": [
  3920. "Microsoft.ApplicationInsights.2.1.0.nupkg.sha512",
  3921. "Microsoft.ApplicationInsights.nuspec",
  3922. "lib/dotnet5.4/Microsoft.ApplicationInsights.XML",
  3923. "lib/dotnet5.4/Microsoft.ApplicationInsights.dll",
  3924. "lib/net40/Microsoft.ApplicationInsights.XML",
  3925. "lib/net40/Microsoft.ApplicationInsights.dll",
  3926. "lib/net45/Microsoft.ApplicationInsights.XML",
  3927. "lib/net45/Microsoft.ApplicationInsights.dll",
  3928. "lib/net46/Microsoft.ApplicationInsights.XML",
  3929. "lib/net46/Microsoft.ApplicationInsights.dll",
  3930. "lib/portable-win81+wpa81/Microsoft.ApplicationInsights.dll",
  3931. "lib/uap10.0/Microsoft.ApplicationInsights.dll",
  3932. "lib/wp8/Microsoft.ApplicationInsights.dll"
  3933. ]
  3934. },
  3935. "Microsoft.ApplicationInsights.AspNetCore/1.0.2": {
  3936. "sha512": "2pe22FuypQRT5YNd4cIehYqDduxiQzt1o/585LgG6vJmOfuX7aF2h4uSI5epRrvu1EikuoZEzBchAR6U8cBybQ==",
  3937. "type": "package",
  3938. "path": "Microsoft.ApplicationInsights.AspNetCore/1.0.2",
  3939. "files": [
  3940. "Microsoft.ApplicationInsights.AspNetCore.1.0.2.nupkg.sha512",
  3941. "Microsoft.ApplicationInsights.AspNetCore.nuspec",
  3942. "lib/net451/Microsoft.ApplicationInsights.AspNetCore.dll",
  3943. "lib/net451/Microsoft.ApplicationInsights.AspNetCore.xml",
  3944. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.dll",
  3945. "lib/netstandard1.6/Microsoft.ApplicationInsights.AspNetCore.xml"
  3946. ]
  3947. },
  3948. "Microsoft.AspNetCore.Antiforgery/1.0.1": {
  3949. "sha512": "MMevi8HnI5GxtNOS9ZqZLuNafltbngXsOrNqyykFveMWFN5a3AfAB7I0qU77tBS9B/N3boRQuyT9AR0BsCQbaw==",
  3950. "type": "package",
  3951. "path": "Microsoft.AspNetCore.Antiforgery/1.0.1",
  3952. "files": [
  3953. "Microsoft.AspNetCore.Antiforgery.1.0.1.nupkg.sha512",
  3954. "Microsoft.AspNetCore.Antiforgery.nuspec",
  3955. "lib/net451/Microsoft.AspNetCore.Antiforgery.dll",
  3956. "lib/net451/Microsoft.AspNetCore.Antiforgery.xml",
  3957. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll",
  3958. "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml"
  3959. ]
  3960. },
  3961. "Microsoft.AspNetCore.Authorization/1.0.0": {
  3962. "sha512": "iVFQ5xHSyxmfWYdl5B/xIFzXgm4SRgYQUKlLFVNGfEhbbjw0Ur2pfVrEvpENrhHFOQ2XAZcuFlGxSIzZwsVrMg==",
  3963. "type": "package",
  3964. "path": "Microsoft.AspNetCore.Authorization/1.0.0",
  3965. "files": [
  3966. "Microsoft.AspNetCore.Authorization.1.0.0.nupkg.sha512",
  3967. "Microsoft.AspNetCore.Authorization.nuspec",
  3968. "lib/net451/Microsoft.AspNetCore.Authorization.dll",
  3969. "lib/net451/Microsoft.AspNetCore.Authorization.xml",
  3970. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll",
  3971. "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml"
  3972. ]
  3973. },
  3974. "Microsoft.AspNetCore.Cryptography.Internal/1.1.0-preview1-final": {
  3975. "sha512": "fnNO6Y+ccmbzEWDIVVqWdFWwG1Yk60rDMOZVCyo6ERkyH8kfvqZHG8XEmX0Lpso7YdAjP+a24qIIxJXvzI8j/A==",
  3976. "type": "package",
  3977. "path": "Microsoft.AspNetCore.Cryptography.Internal/1.1.0-preview1-final",
  3978. "files": [
  3979. "Microsoft.AspNetCore.Cryptography.Internal.1.1.0-preview1-final.nupkg.sha512",
  3980. "Microsoft.AspNetCore.Cryptography.Internal.nuspec",
  3981. "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3982. "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml",
  3983. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll",
  3984. "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml"
  3985. ]
  3986. },
  3987. "Microsoft.AspNetCore.DataProtection/1.1.0-preview1-final": {
  3988. "sha512": "emUmY9K/FVZXP7dE+cCy8EygC0ETFu7ZqboR593OP6KBMNBgN0x89kz+ULXvpdQ17g43OnojOfNlb6A0iG1ZWA==",
  3989. "type": "package",
  3990. "path": "Microsoft.AspNetCore.DataProtection/1.1.0-preview1-final",
  3991. "files": [
  3992. "Microsoft.AspNetCore.DataProtection.1.1.0-preview1-final.nupkg.sha512",
  3993. "Microsoft.AspNetCore.DataProtection.nuspec",
  3994. "lib/net451/Microsoft.AspNetCore.DataProtection.dll",
  3995. "lib/net451/Microsoft.AspNetCore.DataProtection.xml",
  3996. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll",
  3997. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml"
  3998. ]
  3999. },
  4000. "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0-preview1-final": {
  4001. "sha512": "jCD7nlum9L6+mc4iJcaqDmDfWxncjEWYhNDPsHvcs8yjjMOLwXhVRMrGkijdVEq1n2Bxd2jH7GuyRjPUTSv0GA==",
  4002. "type": "package",
  4003. "path": "Microsoft.AspNetCore.DataProtection.Abstractions/1.1.0-preview1-final",
  4004. "files": [
  4005. "Microsoft.AspNetCore.DataProtection.Abstractions.1.1.0-preview1-final.nupkg.sha512",
  4006. "Microsoft.AspNetCore.DataProtection.Abstractions.nuspec",
  4007. "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4008. "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml",
  4009. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll",
  4010. "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml"
  4011. ]
  4012. },
  4013. "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0": {
  4014. "sha512": "RrXsm5Xzvxs0OFDhRcIIUNOM5rXKnRWj/bIkuDkXNIBniGcPDrfGbACIatA127I6pmybNAE84puFAt3wsU2kww==",
  4015. "type": "package",
  4016. "path": "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0",
  4017. "files": [
  4018. "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0.nupkg.sha512",
  4019. "Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec",
  4020. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll",
  4021. "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml"
  4022. ]
  4023. },
  4024. "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0": {
  4025. "sha512": "bi3l+bdJLrkhtNXk/988mWCRHr9dlRpDkaQof6aFjni/oJfPOHpu2B2+cH+gCemaWHTipzSYoCOuz0UL+AxG2g==",
  4026. "type": "package",
  4027. "path": "Microsoft.AspNetCore.Hosting.Abstractions/1.1.0",
  4028. "files": [
  4029. "Microsoft.AspNetCore.Hosting.Abstractions.1.1.0.nupkg.sha512",
  4030. "Microsoft.AspNetCore.Hosting.Abstractions.nuspec",
  4031. "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4032. "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml",
  4033. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll",
  4034. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml"
  4035. ]
  4036. },
  4037. "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0": {
  4038. "sha512": "GynDm8oz39EA8WvLIkfitPwHU27IVhLoVocZKaEYQ6Cs+jZnW2PT3OKBKJeeEepvMMbS5grvKM7HeZyGZqPthg==",
  4039. "type": "package",
  4040. "path": "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.1.0",
  4041. "files": [
  4042. "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.1.0.nupkg.sha512",
  4043. "Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec",
  4044. "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4045. "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml",
  4046. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll",
  4047. "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml"
  4048. ]
  4049. },
  4050. "Microsoft.AspNetCore.Html.Abstractions/1.0.0": {
  4051. "sha512": "/JLMu2k8FiInLZC0SHXT+Cmdzi7AYa3B5v9w32Kd0mPTH4RYIQo/XNPIOr2HsPTXp3I9cZo1DajaMVGnJMN2QA==",
  4052. "type": "package",
  4053. "path": "Microsoft.AspNetCore.Html.Abstractions/1.0.0",
  4054. "files": [
  4055. "Microsoft.AspNetCore.Html.Abstractions.1.0.0.nupkg.sha512",
  4056. "Microsoft.AspNetCore.Html.Abstractions.nuspec",
  4057. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll",
  4058. "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml"
  4059. ]
  4060. },
  4061. "Microsoft.AspNetCore.Http/1.0.0": {
  4062. "sha512": "c/+eWVWQ8fX5hBHhL1BY4k2n4kVyUnqJLSCj0sTTXwRTU6IKoGbTOUqHT9as8C71Vk54YpAsi/VPmGW7T/ap3A==",
  4063. "type": "package",
  4064. "path": "Microsoft.AspNetCore.Http/1.0.0",
  4065. "files": [
  4066. "Microsoft.AspNetCore.Http.1.0.0.nupkg.sha512",
  4067. "Microsoft.AspNetCore.Http.nuspec",
  4068. "lib/net451/Microsoft.AspNetCore.Http.dll",
  4069. "lib/net451/Microsoft.AspNetCore.Http.xml",
  4070. "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll",
  4071. "lib/netstandard1.3/Microsoft.AspNetCore.Http.xml"
  4072. ]
  4073. },
  4074. "Microsoft.AspNetCore.Http.Abstractions/1.1.0": {
  4075. "sha512": "D5ytRM662nwczIVUPm2mvEJ8nf0UlHSxO6yPlXGpbdwilGchK6MrwiHI6XEfCfryhoXBn6q97fsu5K8el3uGCA==",
  4076. "type": "package",
  4077. "path": "Microsoft.AspNetCore.Http.Abstractions/1.1.0",
  4078. "files": [
  4079. "Microsoft.AspNetCore.Http.Abstractions.1.1.0.nupkg.sha512",
  4080. "Microsoft.AspNetCore.Http.Abstractions.nuspec",
  4081. "lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll",
  4082. "lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml",
  4083. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll",
  4084. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml"
  4085. ]
  4086. },
  4087. "Microsoft.AspNetCore.Http.Extensions/1.1.0": {
  4088. "sha512": "ZR2CbLAqwjGMFRhg0GlyrsIPA2lT1o2AHniryplFYOjyDi7rG9a9JwPiCmXsnu+22nK9+ca7mxNPx8eWSy/NQw==",
  4089. "type": "package",
  4090. "path": "Microsoft.AspNetCore.Http.Extensions/1.1.0",
  4091. "files": [
  4092. "Microsoft.AspNetCore.Http.Extensions.1.1.0.nupkg.sha512",
  4093. "Microsoft.AspNetCore.Http.Extensions.nuspec",
  4094. "lib/net451/Microsoft.AspNetCore.Http.Extensions.dll",
  4095. "lib/net451/Microsoft.AspNetCore.Http.Extensions.xml",
  4096. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll",
  4097. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml"
  4098. ]
  4099. },
  4100. "Microsoft.AspNetCore.Http.Features/1.1.0": {
  4101. "sha512": "zH5Qi6uJaojL+aQ/5QIt7MJ1I4Zimwc1ti6+luEHthc1xq6nevChup0lYCcthh47lrRAJwybqEg6g+c+TG3MyQ==",
  4102. "type": "package",
  4103. "path": "Microsoft.AspNetCore.Http.Features/1.1.0",
  4104. "files": [
  4105. "Microsoft.AspNetCore.Http.Features.1.1.0.nupkg.sha512",
  4106. "Microsoft.AspNetCore.Http.Features.nuspec",
  4107. "lib/net451/Microsoft.AspNetCore.Http.Features.dll",
  4108. "lib/net451/Microsoft.AspNetCore.Http.Features.xml",
  4109. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll",
  4110. "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml"
  4111. ]
  4112. },
  4113. "Microsoft.AspNetCore.JsonPatch/1.0.0": {
  4114. "sha512": "WVaSVS+dDlWCR/qerHnBxU9tIeJ9GMA3M5tg4cxH7/cJYZZLnr2zvaFHGB+cRRNCKKTJ0pFRxT7ES8knhgAAaA==",
  4115. "type": "package",
  4116. "path": "Microsoft.AspNetCore.JsonPatch/1.0.0",
  4117. "files": [
  4118. "Microsoft.AspNetCore.JsonPatch.1.0.0.nupkg.sha512",
  4119. "Microsoft.AspNetCore.JsonPatch.nuspec",
  4120. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll",
  4121. "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml"
  4122. ]
  4123. },
  4124. "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1": {
  4125. "sha512": "Xa9XOA/NEIGSUSyAtc0rQrTRJKcxN8rzvBy0QJn2tRAXVeXc0Lbx4/1ia9kxyn3ygbjhF6bO90ZnC3Z3a2cq5g==",
  4126. "type": "package",
  4127. "path": "Microsoft.AspNetCore.Mvc.Abstractions/1.0.1",
  4128. "files": [
  4129. "Microsoft.AspNetCore.Mvc.Abstractions.1.0.1.nupkg.sha512",
  4130. "Microsoft.AspNetCore.Mvc.Abstractions.nuspec",
  4131. "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  4132. "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml",
  4133. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll",
  4134. "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml"
  4135. ]
  4136. },
  4137. "Microsoft.AspNetCore.Mvc.Core/1.0.1": {
  4138. "sha512": "TfUFH0HYbL3DCGkWE24gUDnHoa3pCr4b6xbUiQTnqIbIXdL79qW8mTtfD+RHmAN5bsf1J1fndJJ84/jKri+kiw==",
  4139. "type": "package",
  4140. "path": "Microsoft.AspNetCore.Mvc.Core/1.0.1",
  4141. "files": [
  4142. "Microsoft.AspNetCore.Mvc.Core.1.0.1.nupkg.sha512",
  4143. "Microsoft.AspNetCore.Mvc.Core.nuspec",
  4144. "lib/net451/Microsoft.AspNetCore.Mvc.Core.dll",
  4145. "lib/net451/Microsoft.AspNetCore.Mvc.Core.xml",
  4146. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.dll",
  4147. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Core.xml"
  4148. ]
  4149. },
  4150. "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1": {
  4151. "sha512": "y3QkHvOI+vopfhncU9NpUH2MvtZ2Z0EfnApb92jqbmfWL1wd5Np3SHrFSXgI4zVLlM38dMa/QU2SYM3e4T7fFQ==",
  4152. "type": "package",
  4153. "path": "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.1",
  4154. "files": [
  4155. "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.1.nupkg.sha512",
  4156. "Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec",
  4157. "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  4158. "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml",
  4159. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.dll",
  4160. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.DataAnnotations.xml"
  4161. ]
  4162. },
  4163. "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1": {
  4164. "sha512": "wM12hSUlF0Eqed44psOYT4fY/RRjMx049A4bBUfqiGr1UFU54zTR8djRLW0dIp1w7Xv5WQ/bgG9jyqiaRbv6jg==",
  4165. "type": "package",
  4166. "path": "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.1",
  4167. "files": [
  4168. "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.1.nupkg.sha512",
  4169. "Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec",
  4170. "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  4171. "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml",
  4172. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.dll",
  4173. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.Formatters.Json.xml"
  4174. ]
  4175. },
  4176. "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1": {
  4177. "sha512": "1zGeF76JEqvocxdM+H5n/vJunUUVNzKK4LmgnaFdrrCDTrI6MVdok+8TBBUbeI+uNk3ssrLnP3EcHIdvxl66gw==",
  4178. "type": "package",
  4179. "path": "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.1",
  4180. "files": [
  4181. "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.1.nupkg.sha512",
  4182. "Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec",
  4183. "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  4184. "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml",
  4185. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.dll",
  4186. "lib/netstandard1.6/Microsoft.AspNetCore.Mvc.ViewFeatures.xml"
  4187. ]
  4188. },
  4189. "Microsoft.AspNetCore.Routing/1.0.0": {
  4190. "sha512": "NvFvRtYHXWjBbXz5/7F7JDNcdhrE+tG1/Q9R6LmMxFgu8tkl1bqtFZQbMy17FYFkmm8Fn/T81blRGE2nxCbDRA==",
  4191. "type": "package",
  4192. "path": "Microsoft.AspNetCore.Routing/1.0.0",
  4193. "files": [
  4194. "Microsoft.AspNetCore.Routing.1.0.0.nupkg.sha512",
  4195. "Microsoft.AspNetCore.Routing.nuspec",
  4196. "lib/net451/Microsoft.AspNetCore.Routing.dll",
  4197. "lib/net451/Microsoft.AspNetCore.Routing.xml",
  4198. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll",
  4199. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml"
  4200. ]
  4201. },
  4202. "Microsoft.AspNetCore.Routing.Abstractions/1.0.0": {
  4203. "sha512": "Ne5CFiD1xCGSHrGICw7PsVnj7gijfkMfsw52AO6ingcUhE01dc87cJPpfGLnY22MIvqn11ECLbNZYmzFp/Rs+A==",
  4204. "type": "package",
  4205. "path": "Microsoft.AspNetCore.Routing.Abstractions/1.0.0",
  4206. "files": [
  4207. "Microsoft.AspNetCore.Routing.Abstractions.1.0.0.nupkg.sha512",
  4208. "Microsoft.AspNetCore.Routing.Abstractions.nuspec",
  4209. "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4210. "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml",
  4211. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll",
  4212. "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml"
  4213. ]
  4214. },
  4215. "Microsoft.AspNetCore.WebSockets/1.0.0": {
  4216. "sha512": "vhA8iwDMjL+C/iNKubp9qBjkeh0b1bJyl3nOiL+B15yiUeEcnvx7vPXV2eyIX792dVCqn+hyYCatm/ST1Cg0Hg==",
  4217. "type": "package",
  4218. "path": "Microsoft.AspNetCore.WebSockets/1.0.0",
  4219. "files": [
  4220. "Microsoft.AspNetCore.WebSockets.1.0.0.nupkg.sha512",
  4221. "Microsoft.AspNetCore.WebSockets.nuspec",
  4222. "lib/net451/Microsoft.AspNetCore.WebSockets.dll",
  4223. "lib/net451/Microsoft.AspNetCore.WebSockets.xml",
  4224. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.dll",
  4225. "lib/netstandard1.3/Microsoft.AspNetCore.WebSockets.xml"
  4226. ]
  4227. },
  4228. "Microsoft.AspNetCore.WebUtilities/1.0.0": {
  4229. "sha512": "D0licSnS1JgqQ/gYlN41wXbeYG3dFIdjY781YzMHZ5gBB7kczacshW+H6plZkXRr/cCnAJWGa31o1R8c5GEy/A==",
  4230. "type": "package",
  4231. "path": "Microsoft.AspNetCore.WebUtilities/1.0.0",
  4232. "files": [
  4233. "Microsoft.AspNetCore.WebUtilities.1.0.0.nupkg.sha512",
  4234. "Microsoft.AspNetCore.WebUtilities.nuspec",
  4235. "lib/net451/Microsoft.AspNetCore.WebUtilities.dll",
  4236. "lib/net451/Microsoft.AspNetCore.WebUtilities.xml",
  4237. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll",
  4238. "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.xml"
  4239. ]
  4240. },
  4241. "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
  4242. "sha512": "65YL5Wa8x4Ip6nUVLwVmoFWmfUfO7T5TwwqYZ5eFuu3ekpKZwub1gCKlfEDCJlzYT8h+IWdr2wvGQqWk6Kc70w==",
  4243. "type": "package",
  4244. "path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
  4245. "files": [
  4246. "Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg.sha512",
  4247. "Microsoft.CodeAnalysis.Analyzers.nuspec",
  4248. "ThirdPartyNotices.rtf",
  4249. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
  4250. "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
  4251. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
  4252. "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
  4253. "tools/install.ps1",
  4254. "tools/uninstall.ps1"
  4255. ]
  4256. },
  4257. "Microsoft.CodeAnalysis.Common/1.3.0": {
  4258. "sha512": "8alKL52PjN/eelP22WMnbPblT7EadukkeTKMCKozStKUOHYbjAenjQIFRa9y8WveR2ypej2NetvUnW81vDRzQg==",
  4259. "type": "package",
  4260. "path": "Microsoft.CodeAnalysis.Common/1.3.0",
  4261. "files": [
  4262. "Microsoft.CodeAnalysis.Common.1.3.0.nupkg.sha512",
  4263. "Microsoft.CodeAnalysis.Common.nuspec",
  4264. "ThirdPartyNotices.rtf",
  4265. "lib/net45/Microsoft.CodeAnalysis.dll",
  4266. "lib/net45/Microsoft.CodeAnalysis.xml",
  4267. "lib/netstandard1.3/Microsoft.CodeAnalysis.dll",
  4268. "lib/netstandard1.3/Microsoft.CodeAnalysis.xml",
  4269. "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll",
  4270. "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml"
  4271. ]
  4272. },
  4273. "Microsoft.CodeAnalysis.CSharp/1.3.0": {
  4274. "sha512": "1Qf+GO6rDrndaJ1KKnAf8UgSIWgM+f3tiO3HGqTo1iAmFsVYOw95E0kQLaD7rRKJ9jG8aoiWdfKFPpvgdmnk3A==",
  4275. "type": "package",
  4276. "path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
  4277. "files": [
  4278. "Microsoft.CodeAnalysis.CSharp.1.3.0.nupkg.sha512",
  4279. "Microsoft.CodeAnalysis.CSharp.nuspec",
  4280. "ThirdPartyNotices.rtf",
  4281. "lib/net45/Microsoft.CodeAnalysis.CSharp.dll",
  4282. "lib/net45/Microsoft.CodeAnalysis.CSharp.xml",
  4283. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll",
  4284. "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml",
  4285. "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll",
  4286. "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml"
  4287. ]
  4288. },
  4289. "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
  4290. "sha512": "EcgpeGq0OKq+AT4l2wYOxHweSbSajzpqU0RqQrsY6rv8bL1x+gP6cI26/PbtCdQljfhnTvFQSr98tqLQL8XmNQ==",
  4291. "type": "package",
  4292. "path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
  4293. "files": [
  4294. "Microsoft.CodeAnalysis.VisualBasic.1.3.0.nupkg.sha512",
  4295. "Microsoft.CodeAnalysis.VisualBasic.nuspec",
  4296. "ThirdPartyNotices.rtf",
  4297. "lib/net45/Microsoft.CodeAnalysis.VisualBasic.dll",
  4298. "lib/net45/Microsoft.CodeAnalysis.VisualBasic.xml",
  4299. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll",
  4300. "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.xml",
  4301. "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.dll",
  4302. "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
  4303. ]
  4304. },
  4305. "Microsoft.CSharp/4.3.0": {
  4306. "sha512": "jJcEOG+9VTkBqsWo4yERaaEea3aw9zL2H02Y6k6gKLqiJXbj9BYEyzKGdxrsD1OGCIcaAbPEGhaxTbp124Vb9g==",
  4307. "type": "package",
  4308. "path": "Microsoft.CSharp/4.3.0",
  4309. "files": [
  4310. "Microsoft.CSharp.4.3.0.nupkg.sha512",
  4311. "Microsoft.CSharp.nuspec",
  4312. "ThirdPartyNotices.txt",
  4313. "dotnet_library_license.txt",
  4314. "lib/MonoAndroid10/_._",
  4315. "lib/MonoTouch10/_._",
  4316. "lib/net45/_._",
  4317. "lib/netcore50/Microsoft.CSharp.dll",
  4318. "lib/netstandard1.3/Microsoft.CSharp.dll",
  4319. "lib/portable-net45+win8+wp8+wpa81/_._",
  4320. "lib/win8/_._",
  4321. "lib/wp80/_._",
  4322. "lib/wpa81/_._",
  4323. "lib/xamarinios10/_._",
  4324. "lib/xamarinmac20/_._",
  4325. "lib/xamarintvos10/_._",
  4326. "lib/xamarinwatchos10/_._",
  4327. "ref/MonoAndroid10/_._",
  4328. "ref/MonoTouch10/_._",
  4329. "ref/net45/_._",
  4330. "ref/netcore50/Microsoft.CSharp.dll",
  4331. "ref/netcore50/Microsoft.CSharp.xml",
  4332. "ref/netcore50/de/Microsoft.CSharp.xml",
  4333. "ref/netcore50/es/Microsoft.CSharp.xml",
  4334. "ref/netcore50/fr/Microsoft.CSharp.xml",
  4335. "ref/netcore50/it/Microsoft.CSharp.xml",
  4336. "ref/netcore50/ja/Microsoft.CSharp.xml",
  4337. "ref/netcore50/ko/Microsoft.CSharp.xml",
  4338. "ref/netcore50/ru/Microsoft.CSharp.xml",
  4339. "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
  4340. "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
  4341. "ref/netstandard1.0/Microsoft.CSharp.dll",
  4342. "ref/netstandard1.0/Microsoft.CSharp.xml",
  4343. "ref/netstandard1.0/de/Microsoft.CSharp.xml",
  4344. "ref/netstandard1.0/es/Microsoft.CSharp.xml",
  4345. "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
  4346. "ref/netstandard1.0/it/Microsoft.CSharp.xml",
  4347. "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
  4348. "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
  4349. "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
  4350. "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
  4351. "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
  4352. "ref/portable-net45+win8+wp8+wpa81/_._",
  4353. "ref/win8/_._",
  4354. "ref/wp80/_._",
  4355. "ref/wpa81/_._",
  4356. "ref/xamarinios10/_._",
  4357. "ref/xamarinmac20/_._",
  4358. "ref/xamarintvos10/_._",
  4359. "ref/xamarinwatchos10/_._"
  4360. ]
  4361. },
  4362. "Microsoft.DiaSymReader/1.0.6": {
  4363. "sha512": "ai2eBJrXlHa0hecUKnEyacH0iXxGNOMpc9X0s7VAeqqh5TSTW70QMhTRZ0FNCtf3R/W67K4a+uf3R7MASmAjrg==",
  4364. "type": "package",
  4365. "path": "Microsoft.DiaSymReader/1.0.6",
  4366. "files": [
  4367. "Microsoft.DiaSymReader.1.0.6.nupkg.sha512",
  4368. "Microsoft.DiaSymReader.nuspec",
  4369. "lib/net20/Microsoft.DiaSymReader.dll",
  4370. "lib/net20/Microsoft.DiaSymReader.xml",
  4371. "lib/portable-net45+win8/Microsoft.DiaSymReader.dll",
  4372. "lib/portable-net45+win8/Microsoft.DiaSymReader.xml"
  4373. ]
  4374. },
  4375. "Microsoft.DiaSymReader.Native/1.3.3": {
  4376. "sha512": "mjATkm+L2UlP35gO/ExNutLDfgX4iiwz1l/8sYVoeGHp5WnkEDu0NfIEsC4Oy/pCYeRw0/6SGB+kArJVNNvENQ==",
  4377. "type": "package",
  4378. "path": "Microsoft.DiaSymReader.Native/1.3.3",
  4379. "files": [
  4380. "Microsoft.DiaSymReader.Native.1.3.3.nupkg.sha512",
  4381. "Microsoft.DiaSymReader.Native.nuspec",
  4382. "build/Microsoft.DiaSymReader.Native.props",
  4383. "runtimes/win-x64/native/Microsoft.DiaSymReader.Native.amd64.dll",
  4384. "runtimes/win-x86/native/Microsoft.DiaSymReader.Native.x86.dll",
  4385. "runtimes/win/native/Microsoft.DiaSymReader.Native.amd64.dll",
  4386. "runtimes/win/native/Microsoft.DiaSymReader.Native.arm.dll",
  4387. "runtimes/win/native/Microsoft.DiaSymReader.Native.x86.dll",
  4388. "runtimes/win8-arm/native/Microsoft.DiaSymReader.Native.arm.dll"
  4389. ]
  4390. },
  4391. "Microsoft.DotNet.InternalAbstractions/1.0.500-preview2-1-003177": {
  4392. "sha512": "wEkDYPRP19wqmn7Q5iMTzSBmBgm+DMM9RdqAtvgeD+bMYCBfVhN2mK96vAAywfqXdx2RL4JixLU5I0joYEaciQ==",
  4393. "type": "package",
  4394. "path": "Microsoft.DotNet.InternalAbstractions/1.0.500-preview2-1-003177",
  4395. "files": [
  4396. "Microsoft.DotNet.InternalAbstractions.1.0.500-preview2-1-003177.nupkg.sha512",
  4397. "Microsoft.DotNet.InternalAbstractions.nuspec",
  4398. "lib/net451/Microsoft.DotNet.InternalAbstractions.dll",
  4399. "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll"
  4400. ]
  4401. },
  4402. "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702": {
  4403. "sha512": "ryslqqMpPRcJma9kJn3V1/GydzUny6i6xfpQ0cqfWmlPdSQ9Hnh6x2l8yVqU+ueCiVffKWn/Or80moLwroXP/A==",
  4404. "type": "package",
  4405. "path": "Microsoft.DotNet.ProjectModel/1.0.0-rc2-002702",
  4406. "files": [
  4407. "Microsoft.DotNet.ProjectModel.1.0.0-rc2-002702.nupkg.sha512",
  4408. "Microsoft.DotNet.ProjectModel.nuspec",
  4409. "lib/net451/Microsoft.DotNet.ProjectModel.dll",
  4410. "lib/netstandard1.5/Microsoft.DotNet.ProjectModel.dll"
  4411. ]
  4412. },
  4413. "Microsoft.EntityFrameworkCore/1.1.0": {
  4414. "sha512": "S00vr6pLeoCMbm1PsXNZIceCAA/TUX83W3f2PcLFLGrx2QnGo5aqhtYjHvBhOVKJXZmt52EKEdORoTZVZ/swww==",
  4415. "type": "package",
  4416. "path": "Microsoft.EntityFrameworkCore/1.1.0",
  4417. "files": [
  4418. "Microsoft.EntityFrameworkCore.1.1.0.nupkg.sha512",
  4419. "Microsoft.EntityFrameworkCore.nuspec",
  4420. "lib/net451/Microsoft.EntityFrameworkCore.dll",
  4421. "lib/net451/Microsoft.EntityFrameworkCore.xml",
  4422. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.dll",
  4423. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.xml"
  4424. ]
  4425. },
  4426. "Microsoft.EntityFrameworkCore.Design/1.1.0": {
  4427. "sha512": "7hWqxlNYUocjRqljw6yi3bQpEjMyzNSBX+LqsUuo9cFqTu3uv2YVRyRobBmfvnXVNfRxB6EysMmTmhxApPhiNw==",
  4428. "type": "package",
  4429. "path": "Microsoft.EntityFrameworkCore.Design/1.1.0",
  4430. "files": [
  4431. "Microsoft.EntityFrameworkCore.Design.1.1.0.nupkg.sha512",
  4432. "Microsoft.EntityFrameworkCore.Design.nuspec",
  4433. "lib/net451/Microsoft.EntityFrameworkCore.Design.dll",
  4434. "lib/net451/Microsoft.EntityFrameworkCore.Design.xml",
  4435. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.dll",
  4436. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Design.xml"
  4437. ]
  4438. },
  4439. "Microsoft.EntityFrameworkCore.Relational/1.1.0": {
  4440. "sha512": "5LkSh1GHK/ZbI/2N6YxyofFKaAVe5/RBN38G6UQzOQVgfJxzucpJVyZt1mGHBkJ4yTlr4WQS9Wr3Ppa5X0opbw==",
  4441. "type": "package",
  4442. "path": "Microsoft.EntityFrameworkCore.Relational/1.1.0",
  4443. "files": [
  4444. "Microsoft.EntityFrameworkCore.Relational.1.1.0.nupkg.sha512",
  4445. "Microsoft.EntityFrameworkCore.Relational.nuspec",
  4446. "lib/net451/Microsoft.EntityFrameworkCore.Relational.dll",
  4447. "lib/net451/Microsoft.EntityFrameworkCore.Relational.xml",
  4448. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.dll",
  4449. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.xml"
  4450. ]
  4451. },
  4452. "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0": {
  4453. "sha512": "fF0sVEUkoGeJutGIzwnYsJJ9o2hxEGJRpSaCxPq63rhSwn0hBmCwf9ET4QqYqO9Pc6+ODXenAQa095CWzuM4Kg==",
  4454. "type": "package",
  4455. "path": "Microsoft.EntityFrameworkCore.Relational.Design/1.1.0",
  4456. "files": [
  4457. "Microsoft.EntityFrameworkCore.Relational.Design.1.1.0.nupkg.sha512",
  4458. "Microsoft.EntityFrameworkCore.Relational.Design.nuspec",
  4459. "lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.dll",
  4460. "lib/net451/Microsoft.EntityFrameworkCore.Relational.Design.xml",
  4461. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll",
  4462. "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.xml"
  4463. ]
  4464. },
  4465. "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final": {
  4466. "sha512": "n7g5JB4YxLYCl32XCmjXEHDF/9J/DSeNYGjxGAzG1xUi/IXOCWd6T3XyEnDXsub7iFDvpB2VgUlh6wHDqmTZgA==",
  4467. "type": "package",
  4468. "path": "Microsoft.EntityFrameworkCore.Tools/1.1.0-preview4-final",
  4469. "files": [
  4470. "Microsoft.EntityFrameworkCore.Tools.1.1.0-preview4-final.nupkg.sha512",
  4471. "Microsoft.EntityFrameworkCore.Tools.nuspec",
  4472. "lib/net451/_._",
  4473. "lib/netstandard1.3/_._",
  4474. "tools/EntityFrameworkCore.PowerShell2.psd1",
  4475. "tools/EntityFrameworkCore.PowerShell2.psm1",
  4476. "tools/EntityFrameworkCore.psd1",
  4477. "tools/EntityFrameworkCore.psm1",
  4478. "tools/Microsoft.EntityFrameworkCore.Tools.dll",
  4479. "tools/about_EntityFrameworkCore.help.txt",
  4480. "tools/init.ps1",
  4481. "tools/install.ps1",
  4482. "tools/net451/ef.exe",
  4483. "tools/net451/ef.x86.exe",
  4484. "tools/netcoreapp1.0/ef.dll",
  4485. "tools/netcoreapp1.0/ef.runtimeconfig.json"
  4486. ]
  4487. },
  4488. "Microsoft.Extensions.Caching.Abstractions/1.1.0": {
  4489. "sha512": "uMbUDz/lNoO9LGc+DSjKMLWJk+y4qX6syDRcmQC0w6LSQzizkRqmo5Y8jO0ePtZRjF2lSGgO5URt4YgB6STDBQ==",
  4490. "type": "package",
  4491. "path": "Microsoft.Extensions.Caching.Abstractions/1.1.0",
  4492. "files": [
  4493. "Microsoft.Extensions.Caching.Abstractions.1.1.0.nupkg.sha512",
  4494. "Microsoft.Extensions.Caching.Abstractions.nuspec",
  4495. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll",
  4496. "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml"
  4497. ]
  4498. },
  4499. "Microsoft.Extensions.Caching.Memory/1.1.0": {
  4500. "sha512": "ihFzFRKf/LrXHIvn0wDDt6oLxaAjsCPfrIzV9CLrTURD7qT+HujJ0TaRfC91e6tB8OAgkzY4AsHRBNq8KzrQQQ==",
  4501. "type": "package",
  4502. "path": "Microsoft.Extensions.Caching.Memory/1.1.0",
  4503. "files": [
  4504. "Microsoft.Extensions.Caching.Memory.1.1.0.nupkg.sha512",
  4505. "Microsoft.Extensions.Caching.Memory.nuspec",
  4506. "lib/net451/Microsoft.Extensions.Caching.Memory.dll",
  4507. "lib/net451/Microsoft.Extensions.Caching.Memory.xml",
  4508. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll",
  4509. "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml"
  4510. ]
  4511. },
  4512. "Microsoft.Extensions.Configuration/1.0.0": {
  4513. "sha512": "hR4yYebruRp6qyFnV3RW4qrnEb0J1LnMmQbj50AUA423V8dMs4E3YAohsyRyGBFnpbJ+KKzieSG/n2A6T0klZQ==",
  4514. "type": "package",
  4515. "path": "Microsoft.Extensions.Configuration/1.0.0",
  4516. "files": [
  4517. "Microsoft.Extensions.Configuration.1.0.0.nupkg.sha512",
  4518. "Microsoft.Extensions.Configuration.nuspec",
  4519. "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll",
  4520. "lib/netstandard1.1/Microsoft.Extensions.Configuration.xml"
  4521. ]
  4522. },
  4523. "Microsoft.Extensions.Configuration.Abstractions/1.1.0": {
  4524. "sha512": "ggfk85eY5+Nr90O9wN0ei8YyouHTeLOSj4R7PJAEkAAR1TNCoeErydX2OuFjT/lF6o7Zupwd+DIRifC17XL2VA==",
  4525. "type": "package",
  4526. "path": "Microsoft.Extensions.Configuration.Abstractions/1.1.0",
  4527. "files": [
  4528. "Microsoft.Extensions.Configuration.Abstractions.1.1.0.nupkg.sha512",
  4529. "Microsoft.Extensions.Configuration.Abstractions.nuspec",
  4530. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll",
  4531. "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml"
  4532. ]
  4533. },
  4534. "Microsoft.Extensions.DependencyInjection/1.1.0": {
  4535. "sha512": "meG2tsLdHT0SROqxGBiY8A6XUKlwsQVj1N9cyrS+ZJd1MKhoSaw54KuSH6PmpCB/K/ifkR7o9yVVVamu9XZyeg==",
  4536. "type": "package",
  4537. "path": "Microsoft.Extensions.DependencyInjection/1.1.0",
  4538. "files": [
  4539. "Microsoft.Extensions.DependencyInjection.1.1.0.nupkg.sha512",
  4540. "Microsoft.Extensions.DependencyInjection.nuspec",
  4541. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll",
  4542. "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml"
  4543. ]
  4544. },
  4545. "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0": {
  4546. "sha512": "2luhjVaWZd8Wmr2KUJcLNAN+iZgezTyfamLG6Lo5FVYY1LYaS7UFOmNtApHGVIytWWtuXSk4ea0t2Vx0HgF5fg==",
  4547. "type": "package",
  4548. "path": "Microsoft.Extensions.DependencyInjection.Abstractions/1.1.0",
  4549. "files": [
  4550. "Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0.nupkg.sha512",
  4551. "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec",
  4552. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
  4553. "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml"
  4554. ]
  4555. },
  4556. "Microsoft.Extensions.DependencyModel/1.0.500-preview2-1-003177": {
  4557. "sha512": "ODnV5S/TCEMyzjlLN+F9c0tprb0GSI/SU19Ray8u1m1o758Dg9G5mbUIVa9u43CE/pD2NuOK3Aoqk28B9j8ZJw==",
  4558. "type": "package",
  4559. "path": "Microsoft.Extensions.DependencyModel/1.0.500-preview2-1-003177",
  4560. "files": [
  4561. "Microsoft.Extensions.DependencyModel.1.0.500-preview2-1-003177.nupkg.sha512",
  4562. "Microsoft.Extensions.DependencyModel.nuspec",
  4563. "lib/net451/Microsoft.Extensions.DependencyModel.dll",
  4564. "lib/netstandard1.6/Microsoft.Extensions.DependencyModel.dll"
  4565. ]
  4566. },
  4567. "Microsoft.Extensions.DiagnosticAdapter/1.0.0": {
  4568. "sha512": "GGI4Pp9DpRBFlAXDcZRz5e+R+TqLFBWzToTDXqxPjQiRq6DwPvDYuKD10rlJD4QxxeX8fcjakTlKO1RfC+DmFg==",
  4569. "type": "package",
  4570. "path": "Microsoft.Extensions.DiagnosticAdapter/1.0.0",
  4571. "files": [
  4572. "Microsoft.Extensions.DiagnosticAdapter.1.0.0.nupkg.sha512",
  4573. "Microsoft.Extensions.DiagnosticAdapter.nuspec",
  4574. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.dll",
  4575. "lib/netstandard1.1/Microsoft.Extensions.DiagnosticAdapter.xml"
  4576. ]
  4577. },
  4578. "Microsoft.Extensions.FileProviders.Abstractions/1.1.0": {
  4579. "sha512": "TBG5/xsMSOJ9hrit5TcM6Ipn+3/cgBs5tywXHun+L+8w1WYal13AMac2ziwPRY/PQqC4oG88Hw9hwIEj95xdGw==",
  4580. "type": "package",
  4581. "path": "Microsoft.Extensions.FileProviders.Abstractions/1.1.0",
  4582. "files": [
  4583. "Microsoft.Extensions.FileProviders.Abstractions.1.1.0.nupkg.sha512",
  4584. "Microsoft.Extensions.FileProviders.Abstractions.nuspec",
  4585. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll",
  4586. "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml"
  4587. ]
  4588. },
  4589. "Microsoft.Extensions.Localization/1.0.0": {
  4590. "sha512": "nkDgz++GXjMSEIiVS6CpeirV8m8zvc/vUN2sq5sPnqG8PZltCMSNmqrwyL1onx6A6aRNdTr1nVfvYHwWAmS4vg==",
  4591. "type": "package",
  4592. "path": "Microsoft.Extensions.Localization/1.0.0",
  4593. "files": [
  4594. "Microsoft.Extensions.Localization.1.0.0.nupkg.sha512",
  4595. "Microsoft.Extensions.Localization.nuspec",
  4596. "lib/net451/Microsoft.Extensions.Localization.dll",
  4597. "lib/net451/Microsoft.Extensions.Localization.xml",
  4598. "lib/netstandard1.3/Microsoft.Extensions.Localization.dll",
  4599. "lib/netstandard1.3/Microsoft.Extensions.Localization.xml"
  4600. ]
  4601. },
  4602. "Microsoft.Extensions.Localization.Abstractions/1.0.0": {
  4603. "sha512": "hQ2sEJf7swsD5jk4DogLI3DazGvsvbz0IuSbxPFDjcvP0PRdxgCsyGpg70LD+3tRmxZcE1uh5jtcAi4X2BcB9w==",
  4604. "type": "package",
  4605. "path": "Microsoft.Extensions.Localization.Abstractions/1.0.0",
  4606. "files": [
  4607. "Microsoft.Extensions.Localization.Abstractions.1.0.0.nupkg.sha512",
  4608. "Microsoft.Extensions.Localization.Abstractions.nuspec",
  4609. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll",
  4610. "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml"
  4611. ]
  4612. },
  4613. "Microsoft.Extensions.Logging/1.1.0": {
  4614. "sha512": "IbNogJJE3NRtc5/DAtKEkhXaUQK9N7I6A5G2+ZfyBzWMvAgLKSimESpNMp+gnzUYsW3YbHkeT8jLk9m/3vGY5A==",
  4615. "type": "package",
  4616. "path": "Microsoft.Extensions.Logging/1.1.0",
  4617. "files": [
  4618. "Microsoft.Extensions.Logging.1.1.0.nupkg.sha512",
  4619. "Microsoft.Extensions.Logging.nuspec",
  4620. "lib/netstandard1.1/Microsoft.Extensions.Logging.dll",
  4621. "lib/netstandard1.1/Microsoft.Extensions.Logging.xml"
  4622. ]
  4623. },
  4624. "Microsoft.Extensions.Logging.Abstractions/1.1.0": {
  4625. "sha512": "5zDtM0Dal+pwDIj49PPq9Y8SYu6z70v55VDx70rOuquLTlaCIdv9uItkcp9c1FH/ASNdfANVnh1cTwd85dyE+Q==",
  4626. "type": "package",
  4627. "path": "Microsoft.Extensions.Logging.Abstractions/1.1.0",
  4628. "files": [
  4629. "Microsoft.Extensions.Logging.Abstractions.1.1.0.nupkg.sha512",
  4630. "Microsoft.Extensions.Logging.Abstractions.nuspec",
  4631. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll",
  4632. "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml"
  4633. ]
  4634. },
  4635. "Microsoft.Extensions.ObjectPool/1.0.0": {
  4636. "sha512": "BTXoWSTrv/saLlNSg8l41YOoSKeUUanQLykUqRTtiUJz2xxQOCgm4ckPzrdmSK6w0mdjR2h7IrUDGdBF78Z7yg==",
  4637. "type": "package",
  4638. "path": "Microsoft.Extensions.ObjectPool/1.0.0",
  4639. "files": [
  4640. "Microsoft.Extensions.ObjectPool.1.0.0.nupkg.sha512",
  4641. "Microsoft.Extensions.ObjectPool.nuspec",
  4642. "lib/net451/Microsoft.Extensions.ObjectPool.dll",
  4643. "lib/net451/Microsoft.Extensions.ObjectPool.xml",
  4644. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll",
  4645. "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml"
  4646. ]
  4647. },
  4648. "Microsoft.Extensions.Options/1.1.0": {
  4649. "sha512": "NZlEcVm+SPPeNAkYuwiZdqnMrs/Lne/cDAWiBal1EL//m/KjDgOC6jKg5m9rt/cvqb7Obql5e0JtkNmdP1fGQA==",
  4650. "type": "package",
  4651. "path": "Microsoft.Extensions.Options/1.1.0",
  4652. "files": [
  4653. "Microsoft.Extensions.Options.1.1.0.nupkg.sha512",
  4654. "Microsoft.Extensions.Options.nuspec",
  4655. "lib/netstandard1.0/Microsoft.Extensions.Options.dll",
  4656. "lib/netstandard1.0/Microsoft.Extensions.Options.xml"
  4657. ]
  4658. },
  4659. "Microsoft.Extensions.PlatformAbstractions/1.0.0": {
  4660. "sha512": "zyjUzrOmuevOAJpIo3Mt5GmpALVYCVdLZ99keMbmCxxgQH7oxzU58kGHzE6hAgYEiWsdfMJLjVR7r+vSmaJmtg==",
  4661. "type": "package",
  4662. "path": "Microsoft.Extensions.PlatformAbstractions/1.0.0",
  4663. "files": [
  4664. "Microsoft.Extensions.PlatformAbstractions.1.0.0.nupkg.sha512",
  4665. "Microsoft.Extensions.PlatformAbstractions.nuspec",
  4666. "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll",
  4667. "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml",
  4668. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll",
  4669. "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml"
  4670. ]
  4671. },
  4672. "Microsoft.Extensions.Primitives/1.1.0": {
  4673. "sha512": "GhQG5CBUR9/czBLTblt1giKBkfvHVDeppWd6KIgPyexrspECqzzSW5IXe0STTTs2NlUp9vIFwjSWG8O9c74R9g==",
  4674. "type": "package",
  4675. "path": "Microsoft.Extensions.Primitives/1.1.0",
  4676. "files": [
  4677. "Microsoft.Extensions.Primitives.1.1.0.nupkg.sha512",
  4678. "Microsoft.Extensions.Primitives.nuspec",
  4679. "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll",
  4680. "lib/netstandard1.0/Microsoft.Extensions.Primitives.xml"
  4681. ]
  4682. },
  4683. "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview1-002702": {
  4684. "sha512": "NE4Efz4kvkztJ80CSifUlP0UaBP4iOOaeTVk6nrj+ZIJzhsRGLbecIe4oX8G82pkCkqFF9i8KTl7YYUwpQY5Wg==",
  4685. "type": "package",
  4686. "path": "Microsoft.Extensions.Testing.Abstractions/1.0.0-preview1-002702",
  4687. "files": [
  4688. "Microsoft.Extensions.Testing.Abstractions.1.0.0-preview1-002702.nupkg.sha512",
  4689. "Microsoft.Extensions.Testing.Abstractions.nuspec",
  4690. "lib/net451/Microsoft.Extensions.Testing.Abstractions.dll",
  4691. "lib/netstandard1.5/Microsoft.Extensions.Testing.Abstractions.dll"
  4692. ]
  4693. },
  4694. "Microsoft.Extensions.WebEncoders/1.0.0": {
  4695. "sha512": "NSSIBREmHHiyoAFXV2LMA+a6RMZtTHxgUbHJGHRtnjmTKnRyticx5HAzNpy8VG9+HCCHenL9QD7zSA8jjgAi5A==",
  4696. "type": "package",
  4697. "path": "Microsoft.Extensions.WebEncoders/1.0.0",
  4698. "files": [
  4699. "Microsoft.Extensions.WebEncoders.1.0.0.nupkg.sha512",
  4700. "Microsoft.Extensions.WebEncoders.nuspec",
  4701. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll",
  4702. "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml"
  4703. ]
  4704. },
  4705. "Microsoft.Net.Http.Headers/1.1.0": {
  4706. "sha512": "jeVS60A5qfWNFxs1aZ8UmUclrN6r6AdXkHmNjO0HzyaDmzc0zm7h0F0A/FHSu2i9sj5E7KrxTwaHapeiFBw/DA==",
  4707. "type": "package",
  4708. "path": "Microsoft.Net.Http.Headers/1.1.0",
  4709. "files": [
  4710. "Microsoft.Net.Http.Headers.1.1.0.nupkg.sha512",
  4711. "Microsoft.Net.Http.Headers.nuspec",
  4712. "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll",
  4713. "lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
  4714. ]
  4715. },
  4716. "Microsoft.NETCore.App/1.0.1": {
  4717. "sha512": "1ZiTaAAc3Msi4siXtdVmallNCrFA5ZUzoGkIh4litHjBJBZcRgWvwRXT60woB5FpWPC9qDiTFc6L1Gr8EbOPog==",
  4718. "type": "package",
  4719. "path": "Microsoft.NETCore.App/1.0.1",
  4720. "files": [
  4721. "Microsoft.NETCore.App.1.0.1.nupkg.sha512",
  4722. "Microsoft.NETCore.App.nuspec",
  4723. "ThirdPartyNotices.txt",
  4724. "dotnet_library_license.txt",
  4725. "lib/netcoreapp1.0/_._"
  4726. ]
  4727. },
  4728. "Microsoft.NETCore.DotNetHost/1.0.1": {
  4729. "sha512": "sMqlTLwQ7PPeFs6w4eLPN07z+xtecj4k+mFoCLPsppsid91fmjRJBTRwOAx2k1cFCZb4TXswDhjmN05eqJ+0Lg==",
  4730. "type": "package",
  4731. "path": "Microsoft.NETCore.DotNetHost/1.0.1",
  4732. "files": [
  4733. "Microsoft.NETCore.DotNetHost.1.0.1.nupkg.sha512",
  4734. "Microsoft.NETCore.DotNetHost.nuspec",
  4735. "ThirdPartyNotices.txt",
  4736. "dotnet_library_license.txt",
  4737. "runtime.json"
  4738. ]
  4739. },
  4740. "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
  4741. "sha512": "GRziAkBjDCXhlsVra4tHyK+Q5sK+pwUrpuOMEgk1G501zCaU2b7JMneLZyvU6vJ463n07/jboqjT897CDzyioQ==",
  4742. "type": "package",
  4743. "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
  4744. "files": [
  4745. "Microsoft.NETCore.DotNetHostPolicy.1.0.1.nupkg.sha512",
  4746. "Microsoft.NETCore.DotNetHostPolicy.nuspec",
  4747. "ThirdPartyNotices.txt",
  4748. "dotnet_library_license.txt",
  4749. "runtime.json"
  4750. ]
  4751. },
  4752. "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
  4753. "sha512": "irdpBgW2A7C/kJf38hWUWp2ouF2mDQqGKbiqtF7UhDysTPW5j7oOhvikgPjojvnGXL9TpCjqEGE3ZYkYdKZLeA==",
  4754. "type": "package",
  4755. "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
  4756. "files": [
  4757. "Microsoft.NETCore.DotNetHostResolver.1.0.1.nupkg.sha512",
  4758. "Microsoft.NETCore.DotNetHostResolver.nuspec",
  4759. "ThirdPartyNotices.txt",
  4760. "dotnet_library_license.txt",
  4761. "runtime.json"
  4762. ]
  4763. },
  4764. "Microsoft.NETCore.Jit/1.0.4": {
  4765. "sha512": "s336ryZlopR+pQ4VfKlILX1LxiQzpCPnmiGot0p5aFPeCjwmKtHC88MI8jXdvdGPySON9i1bPUKJP8jiiPIAjA==",
  4766. "type": "package",
  4767. "path": "Microsoft.NETCore.Jit/1.0.4",
  4768. "files": [
  4769. "Microsoft.NETCore.Jit.1.0.4.nupkg.sha512",
  4770. "Microsoft.NETCore.Jit.nuspec",
  4771. "ThirdPartyNotices.txt",
  4772. "dotnet_library_license.txt",
  4773. "runtime.json"
  4774. ]
  4775. },
  4776. "Microsoft.NETCore.Platforms/1.1.0": {
  4777. "sha512": "RTmkgwugaI7tV0PjAwBX4ZKHbv/lMuIKUBeyIB0aosbGALFKIxiGvseJDF5ui5RBGbEJ5AvxZsGI0Rr6ZEfwaw==",
  4778. "type": "package",
  4779. "path": "Microsoft.NETCore.Platforms/1.1.0",
  4780. "files": [
  4781. "Microsoft.NETCore.Platforms.1.1.0.nupkg.sha512",
  4782. "Microsoft.NETCore.Platforms.nuspec",
  4783. "ThirdPartyNotices.txt",
  4784. "dotnet_library_license.txt",
  4785. "lib/netstandard1.0/_._",
  4786. "runtime.json"
  4787. ]
  4788. },
  4789. "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
  4790. "sha512": "NTd+F7MQJi5wFh6Hq3uVH0L3om+pVcfF+bpw0hSd+Ka92QSZ4IfDJw/IWqTQ9jUtLyWYR4XR+52HD5HW+a+zoQ==",
  4791. "type": "package",
  4792. "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
  4793. "files": [
  4794. "Microsoft.NETCore.Runtime.CoreCLR.1.0.4.nupkg.sha512",
  4795. "Microsoft.NETCore.Runtime.CoreCLR.nuspec",
  4796. "ThirdPartyNotices.txt",
  4797. "dotnet_library_license.txt",
  4798. "runtime.json"
  4799. ]
  4800. },
  4801. "Microsoft.NETCore.Targets/1.1.0": {
  4802. "sha512": "TjtMctxB3IKIyNMBQYoxx7jFQmJM9iaTLMp/6g4nMLC33nc6PgL8kXmnvQouPBVR+WvHVDY1By0D2Elpf2KB4w==",
  4803. "type": "package",
  4804. "path": "Microsoft.NETCore.Targets/1.1.0",
  4805. "files": [
  4806. "Microsoft.NETCore.Targets.1.1.0.nupkg.sha512",
  4807. "Microsoft.NETCore.Targets.nuspec",
  4808. "ThirdPartyNotices.txt",
  4809. "dotnet_library_license.txt",
  4810. "lib/netstandard1.0/_._",
  4811. "runtime.json"
  4812. ]
  4813. },
  4814. "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
  4815. "sha512": "2BQeO8o+R9rDiMzsBqFrtr3S8fC8wrC1v20gcYAkVrzk/4ydLbzHfpk6SP3QbXIM2G9pPf1idJ/G1mgwSVgkuA==",
  4816. "type": "package",
  4817. "path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
  4818. "files": [
  4819. "Microsoft.NETCore.Windows.ApiSets.1.0.1.nupkg.sha512",
  4820. "Microsoft.NETCore.Windows.ApiSets.nuspec",
  4821. "ThirdPartyNotices.txt",
  4822. "dotnet_library_license.txt",
  4823. "runtime.json"
  4824. ]
  4825. },
  4826. "Microsoft.VisualBasic/10.0.1": {
  4827. "sha512": "nEk7ZPzxzfOvFbIjdBB7cgg/4toz2TLu4qLKcbL7NiLWvxXQMsU4PbWnRBByiCFFSKVcALEvq2d2yfmxQCYstQ==",
  4828. "type": "package",
  4829. "path": "Microsoft.VisualBasic/10.0.1",
  4830. "files": [
  4831. "Microsoft.VisualBasic.10.0.1.nupkg.sha512",
  4832. "Microsoft.VisualBasic.nuspec",
  4833. "ThirdPartyNotices.txt",
  4834. "dotnet_library_license.txt",
  4835. "lib/net45/_._",
  4836. "lib/netcore50/Microsoft.VisualBasic.dll",
  4837. "lib/netstandard1.3/Microsoft.VisualBasic.dll",
  4838. "lib/portable-net45+win8+wpa81/_._",
  4839. "lib/win8/_._",
  4840. "lib/wpa81/_._",
  4841. "ref/net45/_._",
  4842. "ref/netcore50/Microsoft.VisualBasic.dll",
  4843. "ref/netcore50/Microsoft.VisualBasic.xml",
  4844. "ref/netcore50/de/Microsoft.VisualBasic.xml",
  4845. "ref/netcore50/es/Microsoft.VisualBasic.xml",
  4846. "ref/netcore50/fr/Microsoft.VisualBasic.xml",
  4847. "ref/netcore50/it/Microsoft.VisualBasic.xml",
  4848. "ref/netcore50/ja/Microsoft.VisualBasic.xml",
  4849. "ref/netcore50/ko/Microsoft.VisualBasic.xml",
  4850. "ref/netcore50/ru/Microsoft.VisualBasic.xml",
  4851. "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml",
  4852. "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml",
  4853. "ref/netstandard1.1/Microsoft.VisualBasic.dll",
  4854. "ref/netstandard1.1/Microsoft.VisualBasic.xml",
  4855. "ref/netstandard1.1/de/Microsoft.VisualBasic.xml",
  4856. "ref/netstandard1.1/es/Microsoft.VisualBasic.xml",
  4857. "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml",
  4858. "ref/netstandard1.1/it/Microsoft.VisualBasic.xml",
  4859. "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml",
  4860. "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml",
  4861. "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml",
  4862. "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml",
  4863. "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
  4864. "ref/portable-net45+win8+wpa81/_._",
  4865. "ref/win8/_._",
  4866. "ref/wpa81/_._"
  4867. ]
  4868. },
  4869. "Microsoft.Win32.Primitives/4.3.0": {
  4870. "sha512": "vl5HOGiTB5AcQfZ9OPmgiLTwBlM5MhYtbv+nh+plxq2epP8lNZwHcaB9IGcVi3cOVV9MQbt+MQ/q4pAcmBOgjA==",
  4871. "type": "package",
  4872. "path": "Microsoft.Win32.Primitives/4.3.0",
  4873. "files": [
  4874. "Microsoft.Win32.Primitives.4.3.0.nupkg.sha512",
  4875. "Microsoft.Win32.Primitives.nuspec",
  4876. "ThirdPartyNotices.txt",
  4877. "dotnet_library_license.txt",
  4878. "lib/MonoAndroid10/_._",
  4879. "lib/MonoTouch10/_._",
  4880. "lib/net46/Microsoft.Win32.Primitives.dll",
  4881. "lib/xamarinios10/_._",
  4882. "lib/xamarinmac20/_._",
  4883. "lib/xamarintvos10/_._",
  4884. "lib/xamarinwatchos10/_._",
  4885. "ref/MonoAndroid10/_._",
  4886. "ref/MonoTouch10/_._",
  4887. "ref/net46/Microsoft.Win32.Primitives.dll",
  4888. "ref/netstandard1.3/Microsoft.Win32.Primitives.dll",
  4889. "ref/netstandard1.3/Microsoft.Win32.Primitives.xml",
  4890. "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml",
  4891. "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml",
  4892. "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml",
  4893. "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml",
  4894. "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml",
  4895. "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml",
  4896. "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml",
  4897. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml",
  4898. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml",
  4899. "ref/xamarinios10/_._",
  4900. "ref/xamarinmac20/_._",
  4901. "ref/xamarintvos10/_._",
  4902. "ref/xamarinwatchos10/_._"
  4903. ]
  4904. },
  4905. "Microsoft.Win32.Registry/4.3.0-preview1-24530-04": {
  4906. "sha512": "CrSSvGp53YHl38XOJl8Dvtnus1yq+dP0V01BO8Y+LNzlJZuGsuHbyftD5noA1p0ZBBJpnarmaEjmOaQg/uenDg==",
  4907. "type": "package",
  4908. "path": "Microsoft.Win32.Registry/4.3.0-preview1-24530-04",
  4909. "files": [
  4910. "Microsoft.Win32.Registry.4.3.0-preview1-24530-04.nupkg.sha512",
  4911. "Microsoft.Win32.Registry.nuspec",
  4912. "ThirdPartyNotices.txt",
  4913. "dotnet_library_license.txt",
  4914. "lib/net46/Microsoft.Win32.Registry.dll",
  4915. "ref/net46/Microsoft.Win32.Registry.dll",
  4916. "ref/netstandard1.3/Microsoft.Win32.Registry.dll",
  4917. "ref/netstandard1.3/Microsoft.Win32.Registry.xml",
  4918. "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml",
  4919. "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml",
  4920. "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml",
  4921. "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml",
  4922. "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml",
  4923. "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml",
  4924. "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml",
  4925. "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml",
  4926. "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml",
  4927. "runtimes/unix/lib/netstandard1.3/Microsoft.Win32.Registry.dll",
  4928. "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll",
  4929. "runtimes/win/lib/netcore50/_._",
  4930. "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll"
  4931. ]
  4932. },
  4933. "NETStandard.Library/1.6.1": {
  4934. "sha512": "xKGn5Y57yyimfRm6sKI2Yg/ZJ7oGcvR9+lpfZZI6StFCJqhS8JdRkT+qTZOTl37Trh7rLN5X5qFgbOfAlbPQrQ==",
  4935. "type": "package",
  4936. "path": "NETStandard.Library/1.6.1",
  4937. "files": [
  4938. "NETStandard.Library.1.6.1.nupkg.sha512",
  4939. "NETStandard.Library.nuspec",
  4940. "ThirdPartyNotices.txt",
  4941. "dotnet_library_license.txt"
  4942. ]
  4943. },
  4944. "Newtonsoft.Json/9.0.1": {
  4945. "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==",
  4946. "type": "package",
  4947. "path": "Newtonsoft.Json/9.0.1",
  4948. "files": [
  4949. "Newtonsoft.Json.9.0.1.nupkg.sha512",
  4950. "Newtonsoft.Json.nuspec",
  4951. "lib/net20/Newtonsoft.Json.dll",
  4952. "lib/net20/Newtonsoft.Json.xml",
  4953. "lib/net35/Newtonsoft.Json.dll",
  4954. "lib/net35/Newtonsoft.Json.xml",
  4955. "lib/net40/Newtonsoft.Json.dll",
  4956. "lib/net40/Newtonsoft.Json.xml",
  4957. "lib/net45/Newtonsoft.Json.dll",
  4958. "lib/net45/Newtonsoft.Json.xml",
  4959. "lib/netstandard1.0/Newtonsoft.Json.dll",
  4960. "lib/netstandard1.0/Newtonsoft.Json.xml",
  4961. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll",
  4962. "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml",
  4963. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll",
  4964. "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml",
  4965. "tools/install.ps1"
  4966. ]
  4967. },
  4968. "Npgsql/3.1.9": {
  4969. "sha512": "maoOs4rudcIG1SlPHsLRTgwUQA8+06k037z2f9KSKe8KrVHu3tBUUePgt3U3saGFrACf80/j9CzsleCisnPo5A==",
  4970. "type": "package",
  4971. "path": "Npgsql/3.1.9",
  4972. "files": [
  4973. "Npgsql.3.1.9.nupkg.sha512",
  4974. "Npgsql.nuspec",
  4975. "lib/net45/Npgsql.dll",
  4976. "lib/net45/Npgsql.xml",
  4977. "lib/net451/Npgsql.dll",
  4978. "lib/net451/Npgsql.xml",
  4979. "lib/netstandard1.3/Npgsql.dll",
  4980. "lib/netstandard1.3/Npgsql.xml"
  4981. ]
  4982. },
  4983. "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0": {
  4984. "sha512": "7J4oVuALr8voMhbCkQUODu6VG9DR4u3Io4oIwZK1VocNlXN8RHPFhS1nOQOb/TAe+Eav/GqnmEiSZ0uhe2wphQ==",
  4985. "type": "package",
  4986. "path": "Npgsql.EntityFrameworkCore.PostgreSQL/1.1.0",
  4987. "files": [
  4988. "Npgsql.EntityFrameworkCore.PostgreSQL.1.1.0.nupkg.sha512",
  4989. "Npgsql.EntityFrameworkCore.PostgreSQL.nuspec",
  4990. "lib/net451/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
  4991. "lib/netstandard1.3/Npgsql.EntityFrameworkCore.PostgreSQL.dll"
  4992. ]
  4993. },
  4994. "NuGet.Common/3.5.0-beta-final": {
  4995. "sha512": "7eCg4ky9NtTnxY1+2VtDKIYX137QejH8Dsuw6fENU53N6OeoROsrv1MUm0pu4e3TF8VH1eL5G3Vx/G30VdXEDg==",
  4996. "type": "package",
  4997. "path": "NuGet.Common/3.5.0-beta-final",
  4998. "files": [
  4999. "NuGet.Common.3.5.0-beta-final.nupkg.sha512",
  5000. "NuGet.Common.nuspec",
  5001. "lib/net45/NuGet.Common.dll",
  5002. "lib/net45/NuGet.Common.xml",
  5003. "lib/netstandard1.3/NuGet.Common.dll",
  5004. "lib/netstandard1.3/NuGet.Common.xml"
  5005. ]
  5006. },
  5007. "NuGet.Frameworks/3.5.0-beta-final": {
  5008. "sha512": "Si7O1OFxUryBq3xuq2AIwADM8WUMIBQOmUdTJBSaxV+KesShLJfgrr7Dl+Tg/nVETSEArJS8ktscv7gjKqtosg==",
  5009. "type": "package",
  5010. "path": "NuGet.Frameworks/3.5.0-beta-final",
  5011. "files": [
  5012. "NuGet.Frameworks.3.5.0-beta-final.nupkg.sha512",
  5013. "NuGet.Frameworks.nuspec",
  5014. "lib/net45/NuGet.Frameworks.dll",
  5015. "lib/net45/NuGet.Frameworks.xml",
  5016. "lib/netstandard1.3/NuGet.Frameworks.dll",
  5017. "lib/netstandard1.3/NuGet.Frameworks.xml"
  5018. ]
  5019. },
  5020. "NuGet.Packaging/3.5.0-beta-final": {
  5021. "sha512": "wJSrtokTPmpIkNhJLiG5GPxdRFCVl6XB3MmgLCyRhD2O2wZVQqvvL6SELOz/61EU0C8m9ni/UiiNRqTEtH5QZw==",
  5022. "type": "package",
  5023. "path": "NuGet.Packaging/3.5.0-beta-final",
  5024. "files": [
  5025. "NuGet.Packaging.3.5.0-beta-final.nupkg.sha512",
  5026. "NuGet.Packaging.nuspec",
  5027. "lib/net45/NuGet.Packaging.dll",
  5028. "lib/net45/NuGet.Packaging.xml",
  5029. "lib/netstandard1.3/NuGet.Packaging.dll",
  5030. "lib/netstandard1.3/NuGet.Packaging.xml"
  5031. ]
  5032. },
  5033. "NuGet.Packaging.Core/3.5.0-beta-final": {
  5034. "sha512": "sdc8dUnbjEpNzIK5h5frJgn7ARQjQLdXMC5YrMHoEh0sCJnd2p1Lu4JvHK7mqn/MurVCAvoAjNDyazzFaVCD0w==",
  5035. "type": "package",
  5036. "path": "NuGet.Packaging.Core/3.5.0-beta-final",
  5037. "files": [
  5038. "NuGet.Packaging.Core.3.5.0-beta-final.nupkg.sha512",
  5039. "NuGet.Packaging.Core.nuspec",
  5040. "lib/net45/NuGet.Packaging.Core.dll",
  5041. "lib/net45/NuGet.Packaging.Core.xml",
  5042. "lib/netstandard1.3/NuGet.Packaging.Core.dll",
  5043. "lib/netstandard1.3/NuGet.Packaging.Core.xml"
  5044. ]
  5045. },
  5046. "NuGet.Packaging.Core.Types/3.5.0-beta-final": {
  5047. "sha512": "35AVdtLFJFp66CI9EDS61iviOe4UsCwfGh7RILK3j2ihZtlbTIIS5ygjmS8GnTkhNpmdwQRIk/rUempv4ABBxQ==",
  5048. "type": "package",
  5049. "path": "NuGet.Packaging.Core.Types/3.5.0-beta-final",
  5050. "files": [
  5051. "NuGet.Packaging.Core.Types.3.5.0-beta-final.nupkg.sha512",
  5052. "NuGet.Packaging.Core.Types.nuspec",
  5053. "lib/net45/NuGet.Packaging.Core.Types.dll",
  5054. "lib/net45/NuGet.Packaging.Core.Types.xml",
  5055. "lib/netstandard1.3/NuGet.Packaging.Core.Types.dll",
  5056. "lib/netstandard1.3/NuGet.Packaging.Core.Types.xml"
  5057. ]
  5058. },
  5059. "NuGet.RuntimeModel/3.5.0-beta-final": {
  5060. "sha512": "5opNw7zHG5wC0Qx9AzlopdPg48Tf/QVcVVKmPRuwUa3VBA1b9DBjY+1jCkaof8JRzyHZqLnxd6T9BuT98Jk0YQ==",
  5061. "type": "package",
  5062. "path": "NuGet.RuntimeModel/3.5.0-beta-final",
  5063. "files": [
  5064. "NuGet.RuntimeModel.3.5.0-beta-final.nupkg.sha512",
  5065. "NuGet.RuntimeModel.nuspec",
  5066. "lib/net45/NuGet.RuntimeModel.dll",
  5067. "lib/net45/NuGet.RuntimeModel.xml",
  5068. "lib/netstandard1.3/NuGet.RuntimeModel.dll",
  5069. "lib/netstandard1.3/NuGet.RuntimeModel.xml"
  5070. ]
  5071. },
  5072. "NuGet.Versioning/3.5.0-beta-final": {
  5073. "sha512": "fwFF9Mck1hgZVDvvJLU81gcaidMksfRoCwyjBALEXxnp1fJr4xLyGbTRdbf2OKI5OODGuUpxaMkcz7P4T8HsXw==",
  5074. "type": "package",
  5075. "path": "NuGet.Versioning/3.5.0-beta-final",
  5076. "files": [
  5077. "NuGet.Versioning.3.5.0-beta-final.nupkg.sha512",
  5078. "NuGet.Versioning.nuspec",
  5079. "lib/net45/NuGet.Versioning.dll",
  5080. "lib/net45/NuGet.Versioning.xml",
  5081. "lib/netstandard1.0/NuGet.Versioning.dll",
  5082. "lib/netstandard1.0/NuGet.Versioning.xml"
  5083. ]
  5084. },
  5085. "Remotion.Linq/2.1.1": {
  5086. "sha512": "IJn0BqkvwEDpP+2qjvci7n4/a9f7DhKESLWb2/uG4xQh3rTkGTBUz69bI4IivCoKkTFAqjXxYDZw2K/npohjsw==",
  5087. "type": "package",
  5088. "path": "Remotion.Linq/2.1.1",
  5089. "files": [
  5090. "Remotion.Linq.2.1.1.nupkg.sha512",
  5091. "Remotion.Linq.nuspec",
  5092. "lib/net35/Remotion.Linq.XML",
  5093. "lib/net35/Remotion.Linq.dll",
  5094. "lib/net40/Remotion.Linq.XML",
  5095. "lib/net40/Remotion.Linq.dll",
  5096. "lib/net45/Remotion.Linq.XML",
  5097. "lib/net45/Remotion.Linq.dll",
  5098. "lib/netstandard1.0/Remotion.Linq.dll",
  5099. "lib/netstandard1.0/Remotion.Linq.xml",
  5100. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll",
  5101. "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml"
  5102. ]
  5103. },
  5104. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5105. "sha512": "ZJbyxj5gWzOfnJTXGn9LH8ZK9t/PGFUVlsgv/dZUFy/ruE+eScVrAkaBTwf58FJ3F84cBMBOIm4QscRTtfxgqg==",
  5106. "type": "package",
  5107. "path": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5108. "files": [
  5109. "ThirdPartyNotices.txt",
  5110. "dotnet_library_license.txt",
  5111. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5112. "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5113. "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5114. ]
  5115. },
  5116. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5117. "sha512": "NCGzArSeAPBQJrBY2TUzb/19o3E3TgDFYyl+r+8zWuExcqJDBz5aGkEW8SwwqdscRc37IdtwTr2D2duW47CmHg==",
  5118. "type": "package",
  5119. "path": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5120. "files": [
  5121. "ThirdPartyNotices.txt",
  5122. "dotnet_library_license.txt",
  5123. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5124. "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5125. "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5126. ]
  5127. },
  5128. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5129. "sha512": "LdIvj7Bi2jiaNTqY/ezZGVXHe1KI5fjLSI026O1TjVzsmdgTP/zTF+f3nwHCjwttyhsPBEiswv0PekimPWZwWg==",
  5130. "type": "package",
  5131. "path": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5132. "files": [
  5133. "ThirdPartyNotices.txt",
  5134. "dotnet_library_license.txt",
  5135. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5136. "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5137. "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5138. ]
  5139. },
  5140. "runtime.native.System/4.3.0": {
  5141. "sha512": "nTWOfeX69uwxSiJSyNyzsEglUyfMJQykNusa31AsilJ3vWjhW8RqCIdjR+qxfx/40LGlLUKECl+j6A+/sI1ejw==",
  5142. "type": "package",
  5143. "path": "runtime.native.System/4.3.0",
  5144. "files": [
  5145. "ThirdPartyNotices.txt",
  5146. "dotnet_library_license.txt",
  5147. "lib/netstandard1.0/_._",
  5148. "runtime.native.System.4.3.0.nupkg.sha512",
  5149. "runtime.native.System.nuspec"
  5150. ]
  5151. },
  5152. "runtime.native.System.IO.Compression/4.3.0": {
  5153. "sha512": "b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==",
  5154. "type": "package",
  5155. "path": "runtime.native.System.IO.Compression/4.3.0",
  5156. "files": [
  5157. "ThirdPartyNotices.txt",
  5158. "dotnet_library_license.txt",
  5159. "lib/netstandard1.0/_._",
  5160. "runtime.native.System.IO.Compression.4.3.0.nupkg.sha512",
  5161. "runtime.native.System.IO.Compression.nuspec"
  5162. ]
  5163. },
  5164. "runtime.native.System.Net.Http/4.3.0": {
  5165. "sha512": "guqHgQOK2eUgtJae2VKjNawBn1xjC0hfOt5wASHa60XHbIdCsQlqtvMsFG+3hy7yp88V+gi9fZCjubuDkeakcQ==",
  5166. "type": "package",
  5167. "path": "runtime.native.System.Net.Http/4.3.0",
  5168. "files": [
  5169. "ThirdPartyNotices.txt",
  5170. "dotnet_library_license.txt",
  5171. "lib/netstandard1.0/_._",
  5172. "runtime.native.System.Net.Http.4.3.0.nupkg.sha512",
  5173. "runtime.native.System.Net.Http.nuspec"
  5174. ]
  5175. },
  5176. "runtime.native.System.Net.Security/4.0.1": {
  5177. "sha512": "U3JOSWmwFNUpbxw+Iq+NDXruyFQhl1qej0VcDmVFwU4n2Y7IHN6nd2dQQsRpJiqtYAHjiHhfQH9US60BjUvxHg==",
  5178. "type": "package",
  5179. "path": "runtime.native.System.Net.Security/4.0.1",
  5180. "files": [
  5181. "ThirdPartyNotices.txt",
  5182. "dotnet_library_license.txt",
  5183. "lib/netstandard1.0/_._",
  5184. "runtime.native.System.Net.Security.4.0.1.nupkg.sha512",
  5185. "runtime.native.System.Net.Security.nuspec"
  5186. ]
  5187. },
  5188. "runtime.native.System.Security.Cryptography/4.0.0": {
  5189. "sha512": "vM+JcNCiIj/XxXu4IWqxrOROrDxZGStukyg31j177KruTYbvsEu8biJoo8YEZUrHG+WcBtvIlcRLohVOQlwfWg==",
  5190. "type": "package",
  5191. "path": "runtime.native.System.Security.Cryptography/4.0.0",
  5192. "files": [
  5193. "ThirdPartyNotices.txt",
  5194. "dotnet_library_license.txt",
  5195. "lib/netstandard1.0/_._",
  5196. "runtime.native.System.Security.Cryptography.4.0.0.nupkg.sha512",
  5197. "runtime.native.System.Security.Cryptography.nuspec"
  5198. ]
  5199. },
  5200. "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5201. "sha512": "jwjwlEL0Elv6gwoyaokRn12nv/JE+UW/DXJEbzhjCPvGbef36StnHKc9XaZD/rGWqYicrphZ7eumR/jdmNcjRg==",
  5202. "type": "package",
  5203. "path": "runtime.native.System.Security.Cryptography.Apple/4.3.0",
  5204. "files": [
  5205. "ThirdPartyNotices.txt",
  5206. "dotnet_library_license.txt",
  5207. "lib/netstandard1.0/_._",
  5208. "runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
  5209. "runtime.native.System.Security.Cryptography.Apple.nuspec"
  5210. ]
  5211. },
  5212. "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5213. "sha512": "wWqB5kJ+vYC+IH7orP8EezottaOczECwYBFcecbkgG3IG6s8WghUdmM6pbUqSLhPibItxCWNg73rvG5cbL9tmw==",
  5214. "type": "package",
  5215. "path": "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5216. "files": [
  5217. "ThirdPartyNotices.txt",
  5218. "dotnet_library_license.txt",
  5219. "lib/netstandard1.0/_._",
  5220. "runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5221. "runtime.native.System.Security.Cryptography.OpenSsl.nuspec"
  5222. ]
  5223. },
  5224. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5225. "sha512": "zWLOQ77Y4FV/6Vw2g+FYzprbQX5/xKvjoCLe4L9159Aw1bSboQoJ1KRZFNdexDooWRAIsLSdE0ZokkrVkwN8Yw==",
  5226. "type": "package",
  5227. "path": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5228. "files": [
  5229. "ThirdPartyNotices.txt",
  5230. "dotnet_library_license.txt",
  5231. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5232. "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5233. "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5234. ]
  5235. },
  5236. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5237. "sha512": "G2+96gYRbzp1JZCID6B+u2XJ0bs2wCubd6rE3+Tj436dKfnciF7YgsLi2VvLeJq6kxYyU4IJrVrpCvC8Yf6bhA==",
  5238. "type": "package",
  5239. "path": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5240. "files": [
  5241. "ThirdPartyNotices.txt",
  5242. "dotnet_library_license.txt",
  5243. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5244. "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5245. "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5246. ]
  5247. },
  5248. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
  5249. "sha512": "Kh9W4agE0r/hK8AX1LvyQI2NrKHBL8pO0gRoDTdDb0LL6Ta1Z2OtFx3lOaAE0ZpCUc/dt9Wzs3rA7a3IsKdOVA==",
  5250. "type": "package",
  5251. "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0",
  5252. "files": [
  5253. "ThirdPartyNotices.txt",
  5254. "dotnet_library_license.txt",
  5255. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.4.3.0.nupkg.sha512",
  5256. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple.nuspec",
  5257. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib"
  5258. ]
  5259. },
  5260. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5261. "sha512": "/p8IQT2brFMDa7BHMH71LV+w5Tb3OxoLHxhn6+MGqN5xeqhM2HRHmj+7xQGJnaRn73d7ZTvp6yRCFMvolws4wA==",
  5262. "type": "package",
  5263. "path": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5264. "files": [
  5265. "ThirdPartyNotices.txt",
  5266. "dotnet_library_license.txt",
  5267. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5268. "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5269. "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib"
  5270. ]
  5271. },
  5272. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5273. "sha512": "T5NvFgmHX0WH4c7lP72krsnk+IJI10vJf2j2twGE+5QBRA4RyRAgD+ZjEgdmpLOjW4B+nZGaadewTCUcR899OQ==",
  5274. "type": "package",
  5275. "path": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5276. "files": [
  5277. "ThirdPartyNotices.txt",
  5278. "dotnet_library_license.txt",
  5279. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5280. "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5281. "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5282. ]
  5283. },
  5284. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5285. "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==",
  5286. "type": "package",
  5287. "path": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5288. "files": [
  5289. "ThirdPartyNotices.txt",
  5290. "dotnet_library_license.txt",
  5291. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5292. "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5293. "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5294. ]
  5295. },
  5296. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5297. "sha512": "YWzJvhiC+iLWI/IfpPQUIBhYnAHUFQFRDqR7VDNmPj0b3rjW7dArFqKysZ9v0iSBs9Ih4v9GasLpYCSUwADMQQ==",
  5298. "type": "package",
  5299. "path": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5300. "files": [
  5301. "ThirdPartyNotices.txt",
  5302. "dotnet_library_license.txt",
  5303. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5304. "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5305. "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5306. ]
  5307. },
  5308. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
  5309. "sha512": "1uVTITQP8/cI6YoO6FqfW1pzP0k2TnDZ3TFD88Bu/9H7ZuTsMY9xmadbGpwPu8w8swcd1ifZJsjD9hF9O6C/tg==",
  5310. "type": "package",
  5311. "path": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0",
  5312. "files": [
  5313. "ThirdPartyNotices.txt",
  5314. "dotnet_library_license.txt",
  5315. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  5316. "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl.nuspec",
  5317. "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so"
  5318. ]
  5319. },
  5320. "System.AppContext/4.3.0": {
  5321. "sha512": "196NfWFfUbYriRPqeGwOnLnvmXBRPOEeo5oaLQ1TcMExbCBC3Ub8cGkjSfc/XbXjYyXXpeePcYOIJAzaEgwpcg==",
  5322. "type": "package",
  5323. "path": "System.AppContext/4.3.0",
  5324. "files": [
  5325. "System.AppContext.4.3.0.nupkg.sha512",
  5326. "System.AppContext.nuspec",
  5327. "ThirdPartyNotices.txt",
  5328. "dotnet_library_license.txt",
  5329. "lib/MonoAndroid10/_._",
  5330. "lib/MonoTouch10/_._",
  5331. "lib/net46/System.AppContext.dll",
  5332. "lib/net463/System.AppContext.dll",
  5333. "lib/netcore50/System.AppContext.dll",
  5334. "lib/netstandard1.6/System.AppContext.dll",
  5335. "lib/xamarinios10/_._",
  5336. "lib/xamarinmac20/_._",
  5337. "lib/xamarintvos10/_._",
  5338. "lib/xamarinwatchos10/_._",
  5339. "ref/MonoAndroid10/_._",
  5340. "ref/MonoTouch10/_._",
  5341. "ref/net46/System.AppContext.dll",
  5342. "ref/net463/System.AppContext.dll",
  5343. "ref/netstandard/_._",
  5344. "ref/netstandard1.3/System.AppContext.dll",
  5345. "ref/netstandard1.3/System.AppContext.xml",
  5346. "ref/netstandard1.3/de/System.AppContext.xml",
  5347. "ref/netstandard1.3/es/System.AppContext.xml",
  5348. "ref/netstandard1.3/fr/System.AppContext.xml",
  5349. "ref/netstandard1.3/it/System.AppContext.xml",
  5350. "ref/netstandard1.3/ja/System.AppContext.xml",
  5351. "ref/netstandard1.3/ko/System.AppContext.xml",
  5352. "ref/netstandard1.3/ru/System.AppContext.xml",
  5353. "ref/netstandard1.3/zh-hans/System.AppContext.xml",
  5354. "ref/netstandard1.3/zh-hant/System.AppContext.xml",
  5355. "ref/netstandard1.6/System.AppContext.dll",
  5356. "ref/netstandard1.6/System.AppContext.xml",
  5357. "ref/netstandard1.6/de/System.AppContext.xml",
  5358. "ref/netstandard1.6/es/System.AppContext.xml",
  5359. "ref/netstandard1.6/fr/System.AppContext.xml",
  5360. "ref/netstandard1.6/it/System.AppContext.xml",
  5361. "ref/netstandard1.6/ja/System.AppContext.xml",
  5362. "ref/netstandard1.6/ko/System.AppContext.xml",
  5363. "ref/netstandard1.6/ru/System.AppContext.xml",
  5364. "ref/netstandard1.6/zh-hans/System.AppContext.xml",
  5365. "ref/netstandard1.6/zh-hant/System.AppContext.xml",
  5366. "ref/xamarinios10/_._",
  5367. "ref/xamarinmac20/_._",
  5368. "ref/xamarintvos10/_._",
  5369. "ref/xamarinwatchos10/_._",
  5370. "runtimes/aot/lib/netcore50/System.AppContext.dll"
  5371. ]
  5372. },
  5373. "System.Buffers/4.3.0": {
  5374. "sha512": "QlPt4bQMECP/uhcNRRS+pQIyV2wJKTNae0xOYabWEn0o5QeR8NGLcp6++ncRafvecygL22uEp9kHP5LQelw5yA==",
  5375. "type": "package",
  5376. "path": "System.Buffers/4.3.0",
  5377. "files": [
  5378. "System.Buffers.4.3.0.nupkg.sha512",
  5379. "System.Buffers.nuspec",
  5380. "ThirdPartyNotices.txt",
  5381. "dotnet_library_license.txt",
  5382. "lib/netstandard1.1/.xml",
  5383. "lib/netstandard1.1/System.Buffers.dll"
  5384. ]
  5385. },
  5386. "System.Collections/4.3.0": {
  5387. "sha512": "dCeWf/8Kw4IXDArDjLqCxuJedAlqWspWOpO0YZ+1pQj0GMmF89Y15PqUWwaTsEKaksidNA8yC8uUVDmfiueTkA==",
  5388. "type": "package",
  5389. "path": "System.Collections/4.3.0",
  5390. "files": [
  5391. "System.Collections.4.3.0.nupkg.sha512",
  5392. "System.Collections.nuspec",
  5393. "ThirdPartyNotices.txt",
  5394. "dotnet_library_license.txt",
  5395. "lib/MonoAndroid10/_._",
  5396. "lib/MonoTouch10/_._",
  5397. "lib/net45/_._",
  5398. "lib/portable-net45+win8+wp8+wpa81/_._",
  5399. "lib/win8/_._",
  5400. "lib/wp80/_._",
  5401. "lib/wpa81/_._",
  5402. "lib/xamarinios10/_._",
  5403. "lib/xamarinmac20/_._",
  5404. "lib/xamarintvos10/_._",
  5405. "lib/xamarinwatchos10/_._",
  5406. "ref/MonoAndroid10/_._",
  5407. "ref/MonoTouch10/_._",
  5408. "ref/net45/_._",
  5409. "ref/netcore50/System.Collections.dll",
  5410. "ref/netcore50/System.Collections.xml",
  5411. "ref/netcore50/de/System.Collections.xml",
  5412. "ref/netcore50/es/System.Collections.xml",
  5413. "ref/netcore50/fr/System.Collections.xml",
  5414. "ref/netcore50/it/System.Collections.xml",
  5415. "ref/netcore50/ja/System.Collections.xml",
  5416. "ref/netcore50/ko/System.Collections.xml",
  5417. "ref/netcore50/ru/System.Collections.xml",
  5418. "ref/netcore50/zh-hans/System.Collections.xml",
  5419. "ref/netcore50/zh-hant/System.Collections.xml",
  5420. "ref/netstandard1.0/System.Collections.dll",
  5421. "ref/netstandard1.0/System.Collections.xml",
  5422. "ref/netstandard1.0/de/System.Collections.xml",
  5423. "ref/netstandard1.0/es/System.Collections.xml",
  5424. "ref/netstandard1.0/fr/System.Collections.xml",
  5425. "ref/netstandard1.0/it/System.Collections.xml",
  5426. "ref/netstandard1.0/ja/System.Collections.xml",
  5427. "ref/netstandard1.0/ko/System.Collections.xml",
  5428. "ref/netstandard1.0/ru/System.Collections.xml",
  5429. "ref/netstandard1.0/zh-hans/System.Collections.xml",
  5430. "ref/netstandard1.0/zh-hant/System.Collections.xml",
  5431. "ref/netstandard1.3/System.Collections.dll",
  5432. "ref/netstandard1.3/System.Collections.xml",
  5433. "ref/netstandard1.3/de/System.Collections.xml",
  5434. "ref/netstandard1.3/es/System.Collections.xml",
  5435. "ref/netstandard1.3/fr/System.Collections.xml",
  5436. "ref/netstandard1.3/it/System.Collections.xml",
  5437. "ref/netstandard1.3/ja/System.Collections.xml",
  5438. "ref/netstandard1.3/ko/System.Collections.xml",
  5439. "ref/netstandard1.3/ru/System.Collections.xml",
  5440. "ref/netstandard1.3/zh-hans/System.Collections.xml",
  5441. "ref/netstandard1.3/zh-hant/System.Collections.xml",
  5442. "ref/portable-net45+win8+wp8+wpa81/_._",
  5443. "ref/win8/_._",
  5444. "ref/wp80/_._",
  5445. "ref/wpa81/_._",
  5446. "ref/xamarinios10/_._",
  5447. "ref/xamarinmac20/_._",
  5448. "ref/xamarintvos10/_._",
  5449. "ref/xamarinwatchos10/_._"
  5450. ]
  5451. },
  5452. "System.Collections.Concurrent/4.3.0": {
  5453. "sha512": "W1w8D/B4Nt0S8rwPZJGIAxVvUTGxE69AEW79okWOoYuA04gqJQeHoi+QK7Agpk5FnTFxxVQ30k7HAs9yhRIzFA==",
  5454. "type": "package",
  5455. "path": "System.Collections.Concurrent/4.3.0",
  5456. "files": [
  5457. "System.Collections.Concurrent.4.3.0.nupkg.sha512",
  5458. "System.Collections.Concurrent.nuspec",
  5459. "ThirdPartyNotices.txt",
  5460. "dotnet_library_license.txt",
  5461. "lib/MonoAndroid10/_._",
  5462. "lib/MonoTouch10/_._",
  5463. "lib/net45/_._",
  5464. "lib/netcore50/System.Collections.Concurrent.dll",
  5465. "lib/netstandard1.3/System.Collections.Concurrent.dll",
  5466. "lib/portable-net45+win8+wpa81/_._",
  5467. "lib/win8/_._",
  5468. "lib/wpa81/_._",
  5469. "lib/xamarinios10/_._",
  5470. "lib/xamarinmac20/_._",
  5471. "lib/xamarintvos10/_._",
  5472. "lib/xamarinwatchos10/_._",
  5473. "ref/MonoAndroid10/_._",
  5474. "ref/MonoTouch10/_._",
  5475. "ref/net45/_._",
  5476. "ref/netcore50/System.Collections.Concurrent.dll",
  5477. "ref/netcore50/System.Collections.Concurrent.xml",
  5478. "ref/netcore50/de/System.Collections.Concurrent.xml",
  5479. "ref/netcore50/es/System.Collections.Concurrent.xml",
  5480. "ref/netcore50/fr/System.Collections.Concurrent.xml",
  5481. "ref/netcore50/it/System.Collections.Concurrent.xml",
  5482. "ref/netcore50/ja/System.Collections.Concurrent.xml",
  5483. "ref/netcore50/ko/System.Collections.Concurrent.xml",
  5484. "ref/netcore50/ru/System.Collections.Concurrent.xml",
  5485. "ref/netcore50/zh-hans/System.Collections.Concurrent.xml",
  5486. "ref/netcore50/zh-hant/System.Collections.Concurrent.xml",
  5487. "ref/netstandard1.1/System.Collections.Concurrent.dll",
  5488. "ref/netstandard1.1/System.Collections.Concurrent.xml",
  5489. "ref/netstandard1.1/de/System.Collections.Concurrent.xml",
  5490. "ref/netstandard1.1/es/System.Collections.Concurrent.xml",
  5491. "ref/netstandard1.1/fr/System.Collections.Concurrent.xml",
  5492. "ref/netstandard1.1/it/System.Collections.Concurrent.xml",
  5493. "ref/netstandard1.1/ja/System.Collections.Concurrent.xml",
  5494. "ref/netstandard1.1/ko/System.Collections.Concurrent.xml",
  5495. "ref/netstandard1.1/ru/System.Collections.Concurrent.xml",
  5496. "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml",
  5497. "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml",
  5498. "ref/netstandard1.3/System.Collections.Concurrent.dll",
  5499. "ref/netstandard1.3/System.Collections.Concurrent.xml",
  5500. "ref/netstandard1.3/de/System.Collections.Concurrent.xml",
  5501. "ref/netstandard1.3/es/System.Collections.Concurrent.xml",
  5502. "ref/netstandard1.3/fr/System.Collections.Concurrent.xml",
  5503. "ref/netstandard1.3/it/System.Collections.Concurrent.xml",
  5504. "ref/netstandard1.3/ja/System.Collections.Concurrent.xml",
  5505. "ref/netstandard1.3/ko/System.Collections.Concurrent.xml",
  5506. "ref/netstandard1.3/ru/System.Collections.Concurrent.xml",
  5507. "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml",
  5508. "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml",
  5509. "ref/portable-net45+win8+wpa81/_._",
  5510. "ref/win8/_._",
  5511. "ref/wpa81/_._",
  5512. "ref/xamarinios10/_._",
  5513. "ref/xamarinmac20/_._",
  5514. "ref/xamarintvos10/_._",
  5515. "ref/xamarinwatchos10/_._"
  5516. ]
  5517. },
  5518. "System.Collections.Immutable/1.3.0": {
  5519. "sha512": "zukBRPUuNxwy9m4TGWLxKAnoiMc9+B+8VXeXVyPiBPvOd7yLgAlZ1DlsRWJjMx4VsvhhF2+6q6kO2GRbPja6hA==",
  5520. "type": "package",
  5521. "path": "System.Collections.Immutable/1.3.0",
  5522. "files": [
  5523. "System.Collections.Immutable.1.3.0.nupkg.sha512",
  5524. "System.Collections.Immutable.nuspec",
  5525. "ThirdPartyNotices.txt",
  5526. "dotnet_library_license.txt",
  5527. "lib/netstandard1.0/System.Collections.Immutable.dll",
  5528. "lib/netstandard1.0/System.Collections.Immutable.xml",
  5529. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
  5530. "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml"
  5531. ]
  5532. },
  5533. "System.Collections.NonGeneric/4.3.0": {
  5534. "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==",
  5535. "type": "package",
  5536. "path": "System.Collections.NonGeneric/4.3.0",
  5537. "files": [
  5538. "System.Collections.NonGeneric.4.3.0.nupkg.sha512",
  5539. "System.Collections.NonGeneric.nuspec",
  5540. "ThirdPartyNotices.txt",
  5541. "dotnet_library_license.txt",
  5542. "lib/MonoAndroid10/_._",
  5543. "lib/MonoTouch10/_._",
  5544. "lib/net46/System.Collections.NonGeneric.dll",
  5545. "lib/netstandard1.3/System.Collections.NonGeneric.dll",
  5546. "lib/xamarinios10/_._",
  5547. "lib/xamarinmac20/_._",
  5548. "lib/xamarintvos10/_._",
  5549. "lib/xamarinwatchos10/_._",
  5550. "ref/MonoAndroid10/_._",
  5551. "ref/MonoTouch10/_._",
  5552. "ref/net46/System.Collections.NonGeneric.dll",
  5553. "ref/netstandard1.3/System.Collections.NonGeneric.dll",
  5554. "ref/netstandard1.3/System.Collections.NonGeneric.xml",
  5555. "ref/netstandard1.3/de/System.Collections.NonGeneric.xml",
  5556. "ref/netstandard1.3/es/System.Collections.NonGeneric.xml",
  5557. "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml",
  5558. "ref/netstandard1.3/it/System.Collections.NonGeneric.xml",
  5559. "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml",
  5560. "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml",
  5561. "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml",
  5562. "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml",
  5563. "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml",
  5564. "ref/xamarinios10/_._",
  5565. "ref/xamarinmac20/_._",
  5566. "ref/xamarintvos10/_._",
  5567. "ref/xamarinwatchos10/_._"
  5568. ]
  5569. },
  5570. "System.Collections.Specialized/4.0.1": {
  5571. "sha512": "/HKQyVP0yH1I0YtK7KJL/28snxHNH/bi+0lgk/+MbURF6ULhAE31MDI+NZDerNWu264YbxklXCCygISgm+HMug==",
  5572. "type": "package",
  5573. "path": "System.Collections.Specialized/4.0.1",
  5574. "files": [
  5575. "System.Collections.Specialized.4.0.1.nupkg.sha512",
  5576. "System.Collections.Specialized.nuspec",
  5577. "ThirdPartyNotices.txt",
  5578. "dotnet_library_license.txt",
  5579. "lib/MonoAndroid10/_._",
  5580. "lib/MonoTouch10/_._",
  5581. "lib/net46/System.Collections.Specialized.dll",
  5582. "lib/netstandard1.3/System.Collections.Specialized.dll",
  5583. "lib/xamarinios10/_._",
  5584. "lib/xamarinmac20/_._",
  5585. "lib/xamarintvos10/_._",
  5586. "lib/xamarinwatchos10/_._",
  5587. "ref/MonoAndroid10/_._",
  5588. "ref/MonoTouch10/_._",
  5589. "ref/net46/System.Collections.Specialized.dll",
  5590. "ref/netstandard1.3/System.Collections.Specialized.dll",
  5591. "ref/netstandard1.3/System.Collections.Specialized.xml",
  5592. "ref/netstandard1.3/de/System.Collections.Specialized.xml",
  5593. "ref/netstandard1.3/es/System.Collections.Specialized.xml",
  5594. "ref/netstandard1.3/fr/System.Collections.Specialized.xml",
  5595. "ref/netstandard1.3/it/System.Collections.Specialized.xml",
  5596. "ref/netstandard1.3/ja/System.Collections.Specialized.xml",
  5597. "ref/netstandard1.3/ko/System.Collections.Specialized.xml",
  5598. "ref/netstandard1.3/ru/System.Collections.Specialized.xml",
  5599. "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml",
  5600. "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml",
  5601. "ref/xamarinios10/_._",
  5602. "ref/xamarinmac20/_._",
  5603. "ref/xamarintvos10/_._",
  5604. "ref/xamarinwatchos10/_._"
  5605. ]
  5606. },
  5607. "System.ComponentModel/4.3.0": {
  5608. "sha512": "Zglf50lZbM1GhgQdi/M315CW83GBZ+InRWeZwsNtO3djtszSPp0Xzf78P3vtD7GkE440I+04JKfgNdi9mlnimQ==",
  5609. "type": "package",
  5610. "path": "System.ComponentModel/4.3.0",
  5611. "files": [
  5612. "System.ComponentModel.4.3.0.nupkg.sha512",
  5613. "System.ComponentModel.nuspec",
  5614. "ThirdPartyNotices.txt",
  5615. "dotnet_library_license.txt",
  5616. "lib/MonoAndroid10/_._",
  5617. "lib/MonoTouch10/_._",
  5618. "lib/net45/_._",
  5619. "lib/netcore50/System.ComponentModel.dll",
  5620. "lib/netstandard1.3/System.ComponentModel.dll",
  5621. "lib/portable-net45+win8+wp8+wpa81/_._",
  5622. "lib/win8/_._",
  5623. "lib/wp80/_._",
  5624. "lib/wpa81/_._",
  5625. "lib/xamarinios10/_._",
  5626. "lib/xamarinmac20/_._",
  5627. "lib/xamarintvos10/_._",
  5628. "lib/xamarinwatchos10/_._",
  5629. "ref/MonoAndroid10/_._",
  5630. "ref/MonoTouch10/_._",
  5631. "ref/net45/_._",
  5632. "ref/netcore50/System.ComponentModel.dll",
  5633. "ref/netcore50/System.ComponentModel.xml",
  5634. "ref/netcore50/de/System.ComponentModel.xml",
  5635. "ref/netcore50/es/System.ComponentModel.xml",
  5636. "ref/netcore50/fr/System.ComponentModel.xml",
  5637. "ref/netcore50/it/System.ComponentModel.xml",
  5638. "ref/netcore50/ja/System.ComponentModel.xml",
  5639. "ref/netcore50/ko/System.ComponentModel.xml",
  5640. "ref/netcore50/ru/System.ComponentModel.xml",
  5641. "ref/netcore50/zh-hans/System.ComponentModel.xml",
  5642. "ref/netcore50/zh-hant/System.ComponentModel.xml",
  5643. "ref/netstandard1.0/System.ComponentModel.dll",
  5644. "ref/netstandard1.0/System.ComponentModel.xml",
  5645. "ref/netstandard1.0/de/System.ComponentModel.xml",
  5646. "ref/netstandard1.0/es/System.ComponentModel.xml",
  5647. "ref/netstandard1.0/fr/System.ComponentModel.xml",
  5648. "ref/netstandard1.0/it/System.ComponentModel.xml",
  5649. "ref/netstandard1.0/ja/System.ComponentModel.xml",
  5650. "ref/netstandard1.0/ko/System.ComponentModel.xml",
  5651. "ref/netstandard1.0/ru/System.ComponentModel.xml",
  5652. "ref/netstandard1.0/zh-hans/System.ComponentModel.xml",
  5653. "ref/netstandard1.0/zh-hant/System.ComponentModel.xml",
  5654. "ref/portable-net45+win8+wp8+wpa81/_._",
  5655. "ref/win8/_._",
  5656. "ref/wp80/_._",
  5657. "ref/wpa81/_._",
  5658. "ref/xamarinios10/_._",
  5659. "ref/xamarinmac20/_._",
  5660. "ref/xamarintvos10/_._",
  5661. "ref/xamarinwatchos10/_._"
  5662. ]
  5663. },
  5664. "System.ComponentModel.Annotations/4.3.0": {
  5665. "sha512": "SY2RLItHt43rd8J9D8M8e8NM4m+9WLN2uUd9G0n1I4hj/7w+v3pzK6ZBjexlG1/2xvLKQsqir3UGVSyBTXMLWA==",
  5666. "type": "package",
  5667. "path": "System.ComponentModel.Annotations/4.3.0",
  5668. "files": [
  5669. "System.ComponentModel.Annotations.4.3.0.nupkg.sha512",
  5670. "System.ComponentModel.Annotations.nuspec",
  5671. "ThirdPartyNotices.txt",
  5672. "dotnet_library_license.txt",
  5673. "lib/MonoAndroid10/_._",
  5674. "lib/MonoTouch10/_._",
  5675. "lib/net45/_._",
  5676. "lib/net461/System.ComponentModel.Annotations.dll",
  5677. "lib/netcore50/System.ComponentModel.Annotations.dll",
  5678. "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
  5679. "lib/portable-net45+win8/_._",
  5680. "lib/win8/_._",
  5681. "lib/xamarinios10/_._",
  5682. "lib/xamarinmac20/_._",
  5683. "lib/xamarintvos10/_._",
  5684. "lib/xamarinwatchos10/_._",
  5685. "ref/MonoAndroid10/_._",
  5686. "ref/MonoTouch10/_._",
  5687. "ref/net45/_._",
  5688. "ref/net461/System.ComponentModel.Annotations.dll",
  5689. "ref/netcore50/System.ComponentModel.Annotations.dll",
  5690. "ref/netcore50/System.ComponentModel.Annotations.xml",
  5691. "ref/netcore50/de/System.ComponentModel.Annotations.xml",
  5692. "ref/netcore50/es/System.ComponentModel.Annotations.xml",
  5693. "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
  5694. "ref/netcore50/it/System.ComponentModel.Annotations.xml",
  5695. "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
  5696. "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
  5697. "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
  5698. "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
  5699. "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
  5700. "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
  5701. "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
  5702. "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
  5703. "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
  5704. "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
  5705. "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
  5706. "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
  5707. "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
  5708. "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
  5709. "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
  5710. "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
  5711. "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
  5712. "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
  5713. "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
  5714. "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
  5715. "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
  5716. "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
  5717. "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
  5718. "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
  5719. "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
  5720. "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
  5721. "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
  5722. "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
  5723. "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
  5724. "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
  5725. "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
  5726. "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
  5727. "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
  5728. "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
  5729. "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
  5730. "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
  5731. "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
  5732. "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
  5733. "ref/portable-net45+win8/_._",
  5734. "ref/win8/_._",
  5735. "ref/xamarinios10/_._",
  5736. "ref/xamarinmac20/_._",
  5737. "ref/xamarintvos10/_._",
  5738. "ref/xamarinwatchos10/_._"
  5739. ]
  5740. },
  5741. "System.ComponentModel.Primitives/4.1.0": {
  5742. "sha512": "sc/7eVCdxPrp3ljpgTKVaQGUXiW05phNWvtv/m2kocXqrUQvTVWKou1Edas2aDjTThLPZOxPYIGNb/HN0QjURg==",
  5743. "type": "package",
  5744. "path": "System.ComponentModel.Primitives/4.1.0",
  5745. "files": [
  5746. "System.ComponentModel.Primitives.4.1.0.nupkg.sha512",
  5747. "System.ComponentModel.Primitives.nuspec",
  5748. "ThirdPartyNotices.txt",
  5749. "dotnet_library_license.txt",
  5750. "lib/MonoAndroid10/_._",
  5751. "lib/MonoTouch10/_._",
  5752. "lib/net45/System.ComponentModel.Primitives.dll",
  5753. "lib/netstandard1.0/System.ComponentModel.Primitives.dll",
  5754. "lib/xamarinios10/_._",
  5755. "lib/xamarinmac20/_._",
  5756. "lib/xamarintvos10/_._",
  5757. "lib/xamarinwatchos10/_._",
  5758. "ref/MonoAndroid10/_._",
  5759. "ref/MonoTouch10/_._",
  5760. "ref/net45/System.ComponentModel.Primitives.dll",
  5761. "ref/netstandard1.0/System.ComponentModel.Primitives.dll",
  5762. "ref/netstandard1.0/System.ComponentModel.Primitives.xml",
  5763. "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml",
  5764. "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml",
  5765. "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml",
  5766. "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml",
  5767. "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml",
  5768. "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml",
  5769. "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml",
  5770. "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml",
  5771. "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml",
  5772. "ref/xamarinios10/_._",
  5773. "ref/xamarinmac20/_._",
  5774. "ref/xamarintvos10/_._",
  5775. "ref/xamarinwatchos10/_._"
  5776. ]
  5777. },
  5778. "System.ComponentModel.TypeConverter/4.1.0": {
  5779. "sha512": "MnDAlaeJZy9pdB5ZdOlwdxfpI+LJQ6e0hmH7d2+y2LkiD8DRJynyDYl4Xxf3fWFm7SbEwBZh4elcfzONQLOoQw==",
  5780. "type": "package",
  5781. "path": "System.ComponentModel.TypeConverter/4.1.0",
  5782. "files": [
  5783. "System.ComponentModel.TypeConverter.4.1.0.nupkg.sha512",
  5784. "System.ComponentModel.TypeConverter.nuspec",
  5785. "ThirdPartyNotices.txt",
  5786. "dotnet_library_license.txt",
  5787. "lib/MonoAndroid10/_._",
  5788. "lib/MonoTouch10/_._",
  5789. "lib/net45/System.ComponentModel.TypeConverter.dll",
  5790. "lib/net462/System.ComponentModel.TypeConverter.dll",
  5791. "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5792. "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5793. "lib/xamarinios10/_._",
  5794. "lib/xamarinmac20/_._",
  5795. "lib/xamarintvos10/_._",
  5796. "lib/xamarinwatchos10/_._",
  5797. "ref/MonoAndroid10/_._",
  5798. "ref/MonoTouch10/_._",
  5799. "ref/net45/System.ComponentModel.TypeConverter.dll",
  5800. "ref/net462/System.ComponentModel.TypeConverter.dll",
  5801. "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll",
  5802. "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml",
  5803. "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml",
  5804. "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml",
  5805. "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml",
  5806. "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml",
  5807. "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml",
  5808. "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml",
  5809. "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml",
  5810. "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml",
  5811. "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml",
  5812. "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll",
  5813. "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml",
  5814. "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml",
  5815. "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml",
  5816. "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml",
  5817. "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml",
  5818. "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml",
  5819. "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml",
  5820. "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml",
  5821. "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml",
  5822. "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml",
  5823. "ref/xamarinios10/_._",
  5824. "ref/xamarinmac20/_._",
  5825. "ref/xamarintvos10/_._",
  5826. "ref/xamarinwatchos10/_._"
  5827. ]
  5828. },
  5829. "System.Console/4.3.0": {
  5830. "sha512": "Ik/kfdgP1dA+xJOCUMqkrB+m7PmzYvN5w2HedSaLGJpncrfcFEuTois34LJPSnF8oaIsiUA0VxNODUd7EJ3qKQ==",
  5831. "type": "package",
  5832. "path": "System.Console/4.3.0",
  5833. "files": [
  5834. "System.Console.4.3.0.nupkg.sha512",
  5835. "System.Console.nuspec",
  5836. "ThirdPartyNotices.txt",
  5837. "dotnet_library_license.txt",
  5838. "lib/MonoAndroid10/_._",
  5839. "lib/MonoTouch10/_._",
  5840. "lib/net46/System.Console.dll",
  5841. "lib/xamarinios10/_._",
  5842. "lib/xamarinmac20/_._",
  5843. "lib/xamarintvos10/_._",
  5844. "lib/xamarinwatchos10/_._",
  5845. "ref/MonoAndroid10/_._",
  5846. "ref/MonoTouch10/_._",
  5847. "ref/net46/System.Console.dll",
  5848. "ref/netstandard1.3/System.Console.dll",
  5849. "ref/netstandard1.3/System.Console.xml",
  5850. "ref/netstandard1.3/de/System.Console.xml",
  5851. "ref/netstandard1.3/es/System.Console.xml",
  5852. "ref/netstandard1.3/fr/System.Console.xml",
  5853. "ref/netstandard1.3/it/System.Console.xml",
  5854. "ref/netstandard1.3/ja/System.Console.xml",
  5855. "ref/netstandard1.3/ko/System.Console.xml",
  5856. "ref/netstandard1.3/ru/System.Console.xml",
  5857. "ref/netstandard1.3/zh-hans/System.Console.xml",
  5858. "ref/netstandard1.3/zh-hant/System.Console.xml",
  5859. "ref/xamarinios10/_._",
  5860. "ref/xamarinmac20/_._",
  5861. "ref/xamarintvos10/_._",
  5862. "ref/xamarinwatchos10/_._"
  5863. ]
  5864. },
  5865. "System.Data.Common/4.3.0": {
  5866. "sha512": "lm6E3T5u7BOuEH0u18JpbJHxBfOJPuCyl4Kg1RH10ktYLp5uEEE1xKrHW56/We4SnZpGAuCc9N0MJpSDhTHZGQ==",
  5867. "type": "package",
  5868. "path": "System.Data.Common/4.3.0",
  5869. "files": [
  5870. "System.Data.Common.4.3.0.nupkg.sha512",
  5871. "System.Data.Common.nuspec",
  5872. "ThirdPartyNotices.txt",
  5873. "dotnet_library_license.txt",
  5874. "lib/MonoAndroid10/_._",
  5875. "lib/MonoTouch10/_._",
  5876. "lib/net451/System.Data.Common.dll",
  5877. "lib/netstandard1.2/System.Data.Common.dll",
  5878. "lib/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5879. "lib/xamarinios10/_._",
  5880. "lib/xamarinmac20/_._",
  5881. "lib/xamarintvos10/_._",
  5882. "lib/xamarinwatchos10/_._",
  5883. "ref/MonoAndroid10/_._",
  5884. "ref/MonoTouch10/_._",
  5885. "ref/net451/System.Data.Common.dll",
  5886. "ref/netstandard1.2/System.Data.Common.dll",
  5887. "ref/netstandard1.2/System.Data.Common.xml",
  5888. "ref/netstandard1.2/de/System.Data.Common.xml",
  5889. "ref/netstandard1.2/es/System.Data.Common.xml",
  5890. "ref/netstandard1.2/fr/System.Data.Common.xml",
  5891. "ref/netstandard1.2/it/System.Data.Common.xml",
  5892. "ref/netstandard1.2/ja/System.Data.Common.xml",
  5893. "ref/netstandard1.2/ko/System.Data.Common.xml",
  5894. "ref/netstandard1.2/ru/System.Data.Common.xml",
  5895. "ref/netstandard1.2/zh-hans/System.Data.Common.xml",
  5896. "ref/netstandard1.2/zh-hant/System.Data.Common.xml",
  5897. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.dll",
  5898. "ref/portable-net451+win8+wp8+wpa81/System.Data.Common.xml",
  5899. "ref/portable-net451+win8+wp8+wpa81/de/System.Data.Common.xml",
  5900. "ref/portable-net451+win8+wp8+wpa81/es/System.Data.Common.xml",
  5901. "ref/portable-net451+win8+wp8+wpa81/fr/System.Data.Common.xml",
  5902. "ref/portable-net451+win8+wp8+wpa81/it/System.Data.Common.xml",
  5903. "ref/portable-net451+win8+wp8+wpa81/ja/System.Data.Common.xml",
  5904. "ref/portable-net451+win8+wp8+wpa81/ko/System.Data.Common.xml",
  5905. "ref/portable-net451+win8+wp8+wpa81/ru/System.Data.Common.xml",
  5906. "ref/portable-net451+win8+wp8+wpa81/zh-hans/System.Data.Common.xml",
  5907. "ref/portable-net451+win8+wp8+wpa81/zh-hant/System.Data.Common.xml",
  5908. "ref/xamarinios10/_._",
  5909. "ref/xamarinmac20/_._",
  5910. "ref/xamarintvos10/_._",
  5911. "ref/xamarinwatchos10/_._"
  5912. ]
  5913. },
  5914. "System.Diagnostics.Contracts/4.3.0": {
  5915. "sha512": "pE7RRONH8d93rbABHPVw4C1tGwB9CtIYgLUPT9sMih/oHSIlP9XvtTlpkGBHK0TFwqzOaZky1wXCNlLcDDnyJw==",
  5916. "type": "package",
  5917. "path": "System.Diagnostics.Contracts/4.3.0",
  5918. "files": [
  5919. "System.Diagnostics.Contracts.4.3.0.nupkg.sha512",
  5920. "System.Diagnostics.Contracts.nuspec",
  5921. "ThirdPartyNotices.txt",
  5922. "dotnet_library_license.txt",
  5923. "lib/MonoAndroid10/_._",
  5924. "lib/MonoTouch10/_._",
  5925. "lib/net45/_._",
  5926. "lib/netcore50/System.Diagnostics.Contracts.dll",
  5927. "lib/netstandard1.0/System.Diagnostics.Contracts.dll",
  5928. "lib/portable-net45+win8+wp8+wpa81/_._",
  5929. "lib/win8/_._",
  5930. "lib/wp80/_._",
  5931. "lib/wpa81/_._",
  5932. "lib/xamarinios10/_._",
  5933. "lib/xamarinmac20/_._",
  5934. "lib/xamarintvos10/_._",
  5935. "lib/xamarinwatchos10/_._",
  5936. "ref/MonoAndroid10/_._",
  5937. "ref/MonoTouch10/_._",
  5938. "ref/net45/_._",
  5939. "ref/netcore50/System.Diagnostics.Contracts.dll",
  5940. "ref/netcore50/System.Diagnostics.Contracts.xml",
  5941. "ref/netcore50/de/System.Diagnostics.Contracts.xml",
  5942. "ref/netcore50/es/System.Diagnostics.Contracts.xml",
  5943. "ref/netcore50/fr/System.Diagnostics.Contracts.xml",
  5944. "ref/netcore50/it/System.Diagnostics.Contracts.xml",
  5945. "ref/netcore50/ja/System.Diagnostics.Contracts.xml",
  5946. "ref/netcore50/ko/System.Diagnostics.Contracts.xml",
  5947. "ref/netcore50/ru/System.Diagnostics.Contracts.xml",
  5948. "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml",
  5949. "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml",
  5950. "ref/netstandard1.0/System.Diagnostics.Contracts.dll",
  5951. "ref/netstandard1.0/System.Diagnostics.Contracts.xml",
  5952. "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml",
  5953. "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml",
  5954. "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml",
  5955. "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml",
  5956. "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml",
  5957. "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml",
  5958. "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml",
  5959. "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml",
  5960. "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml",
  5961. "ref/portable-net45+win8+wp8+wpa81/_._",
  5962. "ref/win8/_._",
  5963. "ref/wp80/_._",
  5964. "ref/wpa81/_._",
  5965. "ref/xamarinios10/_._",
  5966. "ref/xamarinmac20/_._",
  5967. "ref/xamarintvos10/_._",
  5968. "ref/xamarinwatchos10/_._",
  5969. "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll"
  5970. ]
  5971. },
  5972. "System.Diagnostics.Debug/4.3.0": {
  5973. "sha512": "wtg85zBbPrOo5lkGsdSlSXfy9ebeKW/3kcg6m3pA2PZaeib8gkSssMRCwqSG16hV+nAMoRZwbqzxFZT7LW7NXg==",
  5974. "type": "package",
  5975. "path": "System.Diagnostics.Debug/4.3.0",
  5976. "files": [
  5977. "System.Diagnostics.Debug.4.3.0.nupkg.sha512",
  5978. "System.Diagnostics.Debug.nuspec",
  5979. "ThirdPartyNotices.txt",
  5980. "dotnet_library_license.txt",
  5981. "lib/MonoAndroid10/_._",
  5982. "lib/MonoTouch10/_._",
  5983. "lib/net45/_._",
  5984. "lib/portable-net45+win8+wp8+wpa81/_._",
  5985. "lib/win8/_._",
  5986. "lib/wp80/_._",
  5987. "lib/wpa81/_._",
  5988. "lib/xamarinios10/_._",
  5989. "lib/xamarinmac20/_._",
  5990. "lib/xamarintvos10/_._",
  5991. "lib/xamarinwatchos10/_._",
  5992. "ref/MonoAndroid10/_._",
  5993. "ref/MonoTouch10/_._",
  5994. "ref/net45/_._",
  5995. "ref/netcore50/System.Diagnostics.Debug.dll",
  5996. "ref/netcore50/System.Diagnostics.Debug.xml",
  5997. "ref/netcore50/de/System.Diagnostics.Debug.xml",
  5998. "ref/netcore50/es/System.Diagnostics.Debug.xml",
  5999. "ref/netcore50/fr/System.Diagnostics.Debug.xml",
  6000. "ref/netcore50/it/System.Diagnostics.Debug.xml",
  6001. "ref/netcore50/ja/System.Diagnostics.Debug.xml",
  6002. "ref/netcore50/ko/System.Diagnostics.Debug.xml",
  6003. "ref/netcore50/ru/System.Diagnostics.Debug.xml",
  6004. "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
  6005. "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
  6006. "ref/netstandard1.0/System.Diagnostics.Debug.dll",
  6007. "ref/netstandard1.0/System.Diagnostics.Debug.xml",
  6008. "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
  6009. "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
  6010. "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
  6011. "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
  6012. "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
  6013. "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
  6014. "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
  6015. "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
  6016. "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
  6017. "ref/netstandard1.3/System.Diagnostics.Debug.dll",
  6018. "ref/netstandard1.3/System.Diagnostics.Debug.xml",
  6019. "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
  6020. "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
  6021. "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
  6022. "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
  6023. "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
  6024. "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
  6025. "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
  6026. "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
  6027. "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
  6028. "ref/portable-net45+win8+wp8+wpa81/_._",
  6029. "ref/win8/_._",
  6030. "ref/wp80/_._",
  6031. "ref/wpa81/_._",
  6032. "ref/xamarinios10/_._",
  6033. "ref/xamarinmac20/_._",
  6034. "ref/xamarintvos10/_._",
  6035. "ref/xamarinwatchos10/_._"
  6036. ]
  6037. },
  6038. "System.Diagnostics.DiagnosticSource/4.3.0": {
  6039. "sha512": "S7z/ARtRxDygqv8f9VlC42M4eqCninL29ijZY0SyU/5r25X/H1vzC14P19DDEArKempVnjSJlX2XR5wGrWzKOw==",
  6040. "type": "package",
  6041. "path": "System.Diagnostics.DiagnosticSource/4.3.0",
  6042. "files": [
  6043. "System.Diagnostics.DiagnosticSource.4.3.0.nupkg.sha512",
  6044. "System.Diagnostics.DiagnosticSource.nuspec",
  6045. "ThirdPartyNotices.txt",
  6046. "dotnet_library_license.txt",
  6047. "lib/net46/System.Diagnostics.DiagnosticSource.dll",
  6048. "lib/net46/System.Diagnostics.DiagnosticSource.xml",
  6049. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll",
  6050. "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml",
  6051. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll",
  6052. "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml",
  6053. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll",
  6054. "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml"
  6055. ]
  6056. },
  6057. "System.Diagnostics.FileVersionInfo/4.0.0": {
  6058. "sha512": "y3jHY9nmSiGasMfg+EtUoTw/i7iFPvJeGzEwffBThBjwgF+dz34BUSfa/qp4LyR0YqqWmt7CqP+FbomGeLnPNw==",
  6059. "type": "package",
  6060. "path": "System.Diagnostics.FileVersionInfo/4.0.0",
  6061. "files": [
  6062. "System.Diagnostics.FileVersionInfo.4.0.0.nupkg.sha512",
  6063. "System.Diagnostics.FileVersionInfo.nuspec",
  6064. "ThirdPartyNotices.txt",
  6065. "dotnet_library_license.txt",
  6066. "lib/MonoAndroid10/_._",
  6067. "lib/MonoTouch10/_._",
  6068. "lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6069. "lib/xamarinios10/_._",
  6070. "lib/xamarinmac20/_._",
  6071. "lib/xamarintvos10/_._",
  6072. "lib/xamarinwatchos10/_._",
  6073. "ref/MonoAndroid10/_._",
  6074. "ref/MonoTouch10/_._",
  6075. "ref/net46/System.Diagnostics.FileVersionInfo.dll",
  6076. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6077. "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml",
  6078. "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml",
  6079. "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml",
  6080. "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml",
  6081. "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml",
  6082. "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml",
  6083. "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml",
  6084. "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml",
  6085. "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml",
  6086. "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml",
  6087. "ref/xamarinios10/_._",
  6088. "ref/xamarinmac20/_._",
  6089. "ref/xamarintvos10/_._",
  6090. "ref/xamarinwatchos10/_._",
  6091. "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll",
  6092. "runtimes/win/lib/net46/System.Diagnostics.FileVersionInfo.dll",
  6093. "runtimes/win/lib/netcore50/System.Diagnostics.FileVersionInfo.dll",
  6094. "runtimes/win/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll"
  6095. ]
  6096. },
  6097. "System.Diagnostics.Process/4.1.0": {
  6098. "sha512": "sa4NxaGiD/iRM9m667nspIUMLT9nyoWkmAhYBlC4USnarm48cOOi13LOq7b127CeWZEHv0IkBt79g6r6l28LiA==",
  6099. "type": "package",
  6100. "path": "System.Diagnostics.Process/4.1.0",
  6101. "files": [
  6102. "System.Diagnostics.Process.4.1.0.nupkg.sha512",
  6103. "System.Diagnostics.Process.nuspec",
  6104. "ThirdPartyNotices.txt",
  6105. "dotnet_library_license.txt",
  6106. "lib/MonoAndroid10/_._",
  6107. "lib/MonoTouch10/_._",
  6108. "lib/net46/System.Diagnostics.Process.dll",
  6109. "lib/net461/System.Diagnostics.Process.dll",
  6110. "lib/xamarinios10/_._",
  6111. "lib/xamarinmac20/_._",
  6112. "lib/xamarintvos10/_._",
  6113. "lib/xamarinwatchos10/_._",
  6114. "ref/MonoAndroid10/_._",
  6115. "ref/MonoTouch10/_._",
  6116. "ref/net46/System.Diagnostics.Process.dll",
  6117. "ref/net461/System.Diagnostics.Process.dll",
  6118. "ref/netstandard1.3/System.Diagnostics.Process.dll",
  6119. "ref/netstandard1.3/System.Diagnostics.Process.xml",
  6120. "ref/netstandard1.3/de/System.Diagnostics.Process.xml",
  6121. "ref/netstandard1.3/es/System.Diagnostics.Process.xml",
  6122. "ref/netstandard1.3/fr/System.Diagnostics.Process.xml",
  6123. "ref/netstandard1.3/it/System.Diagnostics.Process.xml",
  6124. "ref/netstandard1.3/ja/System.Diagnostics.Process.xml",
  6125. "ref/netstandard1.3/ko/System.Diagnostics.Process.xml",
  6126. "ref/netstandard1.3/ru/System.Diagnostics.Process.xml",
  6127. "ref/netstandard1.3/zh-hans/System.Diagnostics.Process.xml",
  6128. "ref/netstandard1.3/zh-hant/System.Diagnostics.Process.xml",
  6129. "ref/netstandard1.4/System.Diagnostics.Process.dll",
  6130. "ref/netstandard1.4/System.Diagnostics.Process.xml",
  6131. "ref/netstandard1.4/de/System.Diagnostics.Process.xml",
  6132. "ref/netstandard1.4/es/System.Diagnostics.Process.xml",
  6133. "ref/netstandard1.4/fr/System.Diagnostics.Process.xml",
  6134. "ref/netstandard1.4/it/System.Diagnostics.Process.xml",
  6135. "ref/netstandard1.4/ja/System.Diagnostics.Process.xml",
  6136. "ref/netstandard1.4/ko/System.Diagnostics.Process.xml",
  6137. "ref/netstandard1.4/ru/System.Diagnostics.Process.xml",
  6138. "ref/netstandard1.4/zh-hans/System.Diagnostics.Process.xml",
  6139. "ref/netstandard1.4/zh-hant/System.Diagnostics.Process.xml",
  6140. "ref/xamarinios10/_._",
  6141. "ref/xamarinmac20/_._",
  6142. "ref/xamarintvos10/_._",
  6143. "ref/xamarinwatchos10/_._",
  6144. "runtimes/linux/lib/netstandard1.4/System.Diagnostics.Process.dll",
  6145. "runtimes/osx/lib/netstandard1.4/System.Diagnostics.Process.dll",
  6146. "runtimes/win/lib/net46/System.Diagnostics.Process.dll",
  6147. "runtimes/win/lib/net461/System.Diagnostics.Process.dll",
  6148. "runtimes/win/lib/netstandard1.4/System.Diagnostics.Process.dll",
  6149. "runtimes/win7/lib/netcore50/_._"
  6150. ]
  6151. },
  6152. "System.Diagnostics.StackTrace/4.0.1": {
  6153. "sha512": "YPjCe8NYK/J+jiC5lAlgXbnoIQW2W1xIMTfSRq2orVkskj3njPNuHtHnu5Q65AshHK63gLkWlbq+UbtaGzDmaQ==",
  6154. "type": "package",
  6155. "path": "System.Diagnostics.StackTrace/4.0.1",
  6156. "files": [
  6157. "System.Diagnostics.StackTrace.4.0.1.nupkg.sha512",
  6158. "System.Diagnostics.StackTrace.nuspec",
  6159. "ThirdPartyNotices.txt",
  6160. "dotnet_library_license.txt",
  6161. "lib/MonoAndroid10/_._",
  6162. "lib/MonoTouch10/_._",
  6163. "lib/net46/System.Diagnostics.StackTrace.dll",
  6164. "lib/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6165. "lib/xamarinios10/_._",
  6166. "lib/xamarinmac20/_._",
  6167. "lib/xamarintvos10/_._",
  6168. "lib/xamarinwatchos10/_._",
  6169. "ref/MonoAndroid10/_._",
  6170. "ref/MonoTouch10/_._",
  6171. "ref/net46/System.Diagnostics.StackTrace.dll",
  6172. "ref/netstandard1.3/System.Diagnostics.StackTrace.dll",
  6173. "ref/netstandard1.3/System.Diagnostics.StackTrace.xml",
  6174. "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml",
  6175. "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml",
  6176. "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml",
  6177. "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml",
  6178. "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml",
  6179. "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml",
  6180. "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml",
  6181. "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml",
  6182. "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml",
  6183. "ref/xamarinios10/_._",
  6184. "ref/xamarinmac20/_._",
  6185. "ref/xamarintvos10/_._",
  6186. "ref/xamarinwatchos10/_._",
  6187. "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll"
  6188. ]
  6189. },
  6190. "System.Diagnostics.Tools/4.3.0": {
  6191. "sha512": "czwL60JAaLVGvtNAKCzK718b+wUgw7/8vHiZ1rrtEjBXsODEG4S9Qoevu5DMpUHlZn7+pSsw5xk/HKXxE+oDoQ==",
  6192. "type": "package",
  6193. "path": "System.Diagnostics.Tools/4.3.0",
  6194. "files": [
  6195. "System.Diagnostics.Tools.4.3.0.nupkg.sha512",
  6196. "System.Diagnostics.Tools.nuspec",
  6197. "ThirdPartyNotices.txt",
  6198. "dotnet_library_license.txt",
  6199. "lib/MonoAndroid10/_._",
  6200. "lib/MonoTouch10/_._",
  6201. "lib/net45/_._",
  6202. "lib/portable-net45+win8+wp8+wpa81/_._",
  6203. "lib/win8/_._",
  6204. "lib/wp80/_._",
  6205. "lib/wpa81/_._",
  6206. "lib/xamarinios10/_._",
  6207. "lib/xamarinmac20/_._",
  6208. "lib/xamarintvos10/_._",
  6209. "lib/xamarinwatchos10/_._",
  6210. "ref/MonoAndroid10/_._",
  6211. "ref/MonoTouch10/_._",
  6212. "ref/net45/_._",
  6213. "ref/netcore50/System.Diagnostics.Tools.dll",
  6214. "ref/netcore50/System.Diagnostics.Tools.xml",
  6215. "ref/netcore50/de/System.Diagnostics.Tools.xml",
  6216. "ref/netcore50/es/System.Diagnostics.Tools.xml",
  6217. "ref/netcore50/fr/System.Diagnostics.Tools.xml",
  6218. "ref/netcore50/it/System.Diagnostics.Tools.xml",
  6219. "ref/netcore50/ja/System.Diagnostics.Tools.xml",
  6220. "ref/netcore50/ko/System.Diagnostics.Tools.xml",
  6221. "ref/netcore50/ru/System.Diagnostics.Tools.xml",
  6222. "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml",
  6223. "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml",
  6224. "ref/netstandard1.0/System.Diagnostics.Tools.dll",
  6225. "ref/netstandard1.0/System.Diagnostics.Tools.xml",
  6226. "ref/netstandard1.0/de/System.Diagnostics.Tools.xml",
  6227. "ref/netstandard1.0/es/System.Diagnostics.Tools.xml",
  6228. "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml",
  6229. "ref/netstandard1.0/it/System.Diagnostics.Tools.xml",
  6230. "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml",
  6231. "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml",
  6232. "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml",
  6233. "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml",
  6234. "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml",
  6235. "ref/portable-net45+win8+wp8+wpa81/_._",
  6236. "ref/win8/_._",
  6237. "ref/wp80/_._",
  6238. "ref/wpa81/_._",
  6239. "ref/xamarinios10/_._",
  6240. "ref/xamarinmac20/_._",
  6241. "ref/xamarintvos10/_._",
  6242. "ref/xamarinwatchos10/_._"
  6243. ]
  6244. },
  6245. "System.Diagnostics.Tracing/4.3.0": {
  6246. "sha512": "i7hxQeTRMSYS9CMuWyldbzRkVpIy0VOZVwGkzuhF4NK3y3xd6zr97o0+q1VJ7xDNSa/h1ytwP7N2hd82IqRmLQ==",
  6247. "type": "package",
  6248. "path": "System.Diagnostics.Tracing/4.3.0",
  6249. "files": [
  6250. "System.Diagnostics.Tracing.4.3.0.nupkg.sha512",
  6251. "System.Diagnostics.Tracing.nuspec",
  6252. "ThirdPartyNotices.txt",
  6253. "dotnet_library_license.txt",
  6254. "lib/MonoAndroid10/_._",
  6255. "lib/MonoTouch10/_._",
  6256. "lib/net45/_._",
  6257. "lib/net462/System.Diagnostics.Tracing.dll",
  6258. "lib/portable-net45+win8+wpa81/_._",
  6259. "lib/win8/_._",
  6260. "lib/wpa81/_._",
  6261. "lib/xamarinios10/_._",
  6262. "lib/xamarinmac20/_._",
  6263. "lib/xamarintvos10/_._",
  6264. "lib/xamarinwatchos10/_._",
  6265. "ref/MonoAndroid10/_._",
  6266. "ref/MonoTouch10/_._",
  6267. "ref/net45/_._",
  6268. "ref/net462/System.Diagnostics.Tracing.dll",
  6269. "ref/netcore50/System.Diagnostics.Tracing.dll",
  6270. "ref/netcore50/System.Diagnostics.Tracing.xml",
  6271. "ref/netcore50/de/System.Diagnostics.Tracing.xml",
  6272. "ref/netcore50/es/System.Diagnostics.Tracing.xml",
  6273. "ref/netcore50/fr/System.Diagnostics.Tracing.xml",
  6274. "ref/netcore50/it/System.Diagnostics.Tracing.xml",
  6275. "ref/netcore50/ja/System.Diagnostics.Tracing.xml",
  6276. "ref/netcore50/ko/System.Diagnostics.Tracing.xml",
  6277. "ref/netcore50/ru/System.Diagnostics.Tracing.xml",
  6278. "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml",
  6279. "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml",
  6280. "ref/netstandard1.1/System.Diagnostics.Tracing.dll",
  6281. "ref/netstandard1.1/System.Diagnostics.Tracing.xml",
  6282. "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml",
  6283. "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml",
  6284. "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml",
  6285. "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml",
  6286. "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml",
  6287. "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml",
  6288. "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml",
  6289. "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml",
  6290. "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml",
  6291. "ref/netstandard1.2/System.Diagnostics.Tracing.dll",
  6292. "ref/netstandard1.2/System.Diagnostics.Tracing.xml",
  6293. "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml",
  6294. "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml",
  6295. "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml",
  6296. "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml",
  6297. "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml",
  6298. "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml",
  6299. "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml",
  6300. "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml",
  6301. "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml",
  6302. "ref/netstandard1.3/System.Diagnostics.Tracing.dll",
  6303. "ref/netstandard1.3/System.Diagnostics.Tracing.xml",
  6304. "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml",
  6305. "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml",
  6306. "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml",
  6307. "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml",
  6308. "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml",
  6309. "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml",
  6310. "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml",
  6311. "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml",
  6312. "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml",
  6313. "ref/netstandard1.5/System.Diagnostics.Tracing.dll",
  6314. "ref/netstandard1.5/System.Diagnostics.Tracing.xml",
  6315. "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml",
  6316. "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml",
  6317. "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml",
  6318. "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml",
  6319. "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml",
  6320. "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml",
  6321. "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml",
  6322. "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml",
  6323. "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml",
  6324. "ref/portable-net45+win8+wpa81/_._",
  6325. "ref/win8/_._",
  6326. "ref/wpa81/_._",
  6327. "ref/xamarinios10/_._",
  6328. "ref/xamarinmac20/_._",
  6329. "ref/xamarintvos10/_._",
  6330. "ref/xamarinwatchos10/_._"
  6331. ]
  6332. },
  6333. "System.Dynamic.Runtime/4.3.0": {
  6334. "sha512": "6I9mCWqeCgjg661yDDuSmGQ9Ro5LK6VTLDvRWWBmOuyVnN8F+2p9Ka1MnkD6p5tZbzbf50Bhp2TLfl5mix+NXw==",
  6335. "type": "package",
  6336. "path": "System.Dynamic.Runtime/4.3.0",
  6337. "files": [
  6338. "System.Dynamic.Runtime.4.3.0.nupkg.sha512",
  6339. "System.Dynamic.Runtime.nuspec",
  6340. "ThirdPartyNotices.txt",
  6341. "dotnet_library_license.txt",
  6342. "lib/MonoAndroid10/_._",
  6343. "lib/MonoTouch10/_._",
  6344. "lib/net45/_._",
  6345. "lib/netcore50/System.Dynamic.Runtime.dll",
  6346. "lib/netstandard1.3/System.Dynamic.Runtime.dll",
  6347. "lib/portable-net45+win8+wp8+wpa81/_._",
  6348. "lib/win8/_._",
  6349. "lib/wp80/_._",
  6350. "lib/wpa81/_._",
  6351. "lib/xamarinios10/_._",
  6352. "lib/xamarinmac20/_._",
  6353. "lib/xamarintvos10/_._",
  6354. "lib/xamarinwatchos10/_._",
  6355. "ref/MonoAndroid10/_._",
  6356. "ref/MonoTouch10/_._",
  6357. "ref/net45/_._",
  6358. "ref/netcore50/System.Dynamic.Runtime.dll",
  6359. "ref/netcore50/System.Dynamic.Runtime.xml",
  6360. "ref/netcore50/de/System.Dynamic.Runtime.xml",
  6361. "ref/netcore50/es/System.Dynamic.Runtime.xml",
  6362. "ref/netcore50/fr/System.Dynamic.Runtime.xml",
  6363. "ref/netcore50/it/System.Dynamic.Runtime.xml",
  6364. "ref/netcore50/ja/System.Dynamic.Runtime.xml",
  6365. "ref/netcore50/ko/System.Dynamic.Runtime.xml",
  6366. "ref/netcore50/ru/System.Dynamic.Runtime.xml",
  6367. "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
  6368. "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
  6369. "ref/netstandard1.0/System.Dynamic.Runtime.dll",
  6370. "ref/netstandard1.0/System.Dynamic.Runtime.xml",
  6371. "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
  6372. "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
  6373. "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
  6374. "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
  6375. "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
  6376. "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
  6377. "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
  6378. "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
  6379. "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
  6380. "ref/netstandard1.3/System.Dynamic.Runtime.dll",
  6381. "ref/netstandard1.3/System.Dynamic.Runtime.xml",
  6382. "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
  6383. "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
  6384. "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
  6385. "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
  6386. "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
  6387. "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
  6388. "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
  6389. "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
  6390. "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
  6391. "ref/portable-net45+win8+wp8+wpa81/_._",
  6392. "ref/win8/_._",
  6393. "ref/wp80/_._",
  6394. "ref/wpa81/_._",
  6395. "ref/xamarinios10/_._",
  6396. "ref/xamarinmac20/_._",
  6397. "ref/xamarintvos10/_._",
  6398. "ref/xamarinwatchos10/_._",
  6399. "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll"
  6400. ]
  6401. },
  6402. "System.Globalization/4.3.0": {
  6403. "sha512": "ySK9WB3u1ONxQ82Q6cE7O3IfboPZ/QlyKID75oOC66GKfyfvEyZvaZpqzLTy4n7a9SUHwz90pfflJ9HFRM8GZQ==",
  6404. "type": "package",
  6405. "path": "System.Globalization/4.3.0",
  6406. "files": [
  6407. "System.Globalization.4.3.0.nupkg.sha512",
  6408. "System.Globalization.nuspec",
  6409. "ThirdPartyNotices.txt",
  6410. "dotnet_library_license.txt",
  6411. "lib/MonoAndroid10/_._",
  6412. "lib/MonoTouch10/_._",
  6413. "lib/net45/_._",
  6414. "lib/portable-net45+win8+wp8+wpa81/_._",
  6415. "lib/win8/_._",
  6416. "lib/wp80/_._",
  6417. "lib/wpa81/_._",
  6418. "lib/xamarinios10/_._",
  6419. "lib/xamarinmac20/_._",
  6420. "lib/xamarintvos10/_._",
  6421. "lib/xamarinwatchos10/_._",
  6422. "ref/MonoAndroid10/_._",
  6423. "ref/MonoTouch10/_._",
  6424. "ref/net45/_._",
  6425. "ref/netcore50/System.Globalization.dll",
  6426. "ref/netcore50/System.Globalization.xml",
  6427. "ref/netcore50/de/System.Globalization.xml",
  6428. "ref/netcore50/es/System.Globalization.xml",
  6429. "ref/netcore50/fr/System.Globalization.xml",
  6430. "ref/netcore50/it/System.Globalization.xml",
  6431. "ref/netcore50/ja/System.Globalization.xml",
  6432. "ref/netcore50/ko/System.Globalization.xml",
  6433. "ref/netcore50/ru/System.Globalization.xml",
  6434. "ref/netcore50/zh-hans/System.Globalization.xml",
  6435. "ref/netcore50/zh-hant/System.Globalization.xml",
  6436. "ref/netstandard1.0/System.Globalization.dll",
  6437. "ref/netstandard1.0/System.Globalization.xml",
  6438. "ref/netstandard1.0/de/System.Globalization.xml",
  6439. "ref/netstandard1.0/es/System.Globalization.xml",
  6440. "ref/netstandard1.0/fr/System.Globalization.xml",
  6441. "ref/netstandard1.0/it/System.Globalization.xml",
  6442. "ref/netstandard1.0/ja/System.Globalization.xml",
  6443. "ref/netstandard1.0/ko/System.Globalization.xml",
  6444. "ref/netstandard1.0/ru/System.Globalization.xml",
  6445. "ref/netstandard1.0/zh-hans/System.Globalization.xml",
  6446. "ref/netstandard1.0/zh-hant/System.Globalization.xml",
  6447. "ref/netstandard1.3/System.Globalization.dll",
  6448. "ref/netstandard1.3/System.Globalization.xml",
  6449. "ref/netstandard1.3/de/System.Globalization.xml",
  6450. "ref/netstandard1.3/es/System.Globalization.xml",
  6451. "ref/netstandard1.3/fr/System.Globalization.xml",
  6452. "ref/netstandard1.3/it/System.Globalization.xml",
  6453. "ref/netstandard1.3/ja/System.Globalization.xml",
  6454. "ref/netstandard1.3/ko/System.Globalization.xml",
  6455. "ref/netstandard1.3/ru/System.Globalization.xml",
  6456. "ref/netstandard1.3/zh-hans/System.Globalization.xml",
  6457. "ref/netstandard1.3/zh-hant/System.Globalization.xml",
  6458. "ref/portable-net45+win8+wp8+wpa81/_._",
  6459. "ref/win8/_._",
  6460. "ref/wp80/_._",
  6461. "ref/wpa81/_._",
  6462. "ref/xamarinios10/_._",
  6463. "ref/xamarinmac20/_._",
  6464. "ref/xamarintvos10/_._",
  6465. "ref/xamarinwatchos10/_._"
  6466. ]
  6467. },
  6468. "System.Globalization.Calendars/4.3.0": {
  6469. "sha512": "Lealz3HSgQd/FOC1TMDZ564wLsjMPeRiyH4j7Baiq2x79ei3uo05zlqhxpaXtHAUHJskMtzc2RsjAsd5Pg2+aw==",
  6470. "type": "package",
  6471. "path": "System.Globalization.Calendars/4.3.0",
  6472. "files": [
  6473. "System.Globalization.Calendars.4.3.0.nupkg.sha512",
  6474. "System.Globalization.Calendars.nuspec",
  6475. "ThirdPartyNotices.txt",
  6476. "dotnet_library_license.txt",
  6477. "lib/MonoAndroid10/_._",
  6478. "lib/MonoTouch10/_._",
  6479. "lib/net46/System.Globalization.Calendars.dll",
  6480. "lib/xamarinios10/_._",
  6481. "lib/xamarinmac20/_._",
  6482. "lib/xamarintvos10/_._",
  6483. "lib/xamarinwatchos10/_._",
  6484. "ref/MonoAndroid10/_._",
  6485. "ref/MonoTouch10/_._",
  6486. "ref/net46/System.Globalization.Calendars.dll",
  6487. "ref/netstandard1.3/System.Globalization.Calendars.dll",
  6488. "ref/netstandard1.3/System.Globalization.Calendars.xml",
  6489. "ref/netstandard1.3/de/System.Globalization.Calendars.xml",
  6490. "ref/netstandard1.3/es/System.Globalization.Calendars.xml",
  6491. "ref/netstandard1.3/fr/System.Globalization.Calendars.xml",
  6492. "ref/netstandard1.3/it/System.Globalization.Calendars.xml",
  6493. "ref/netstandard1.3/ja/System.Globalization.Calendars.xml",
  6494. "ref/netstandard1.3/ko/System.Globalization.Calendars.xml",
  6495. "ref/netstandard1.3/ru/System.Globalization.Calendars.xml",
  6496. "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml",
  6497. "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml",
  6498. "ref/xamarinios10/_._",
  6499. "ref/xamarinmac20/_._",
  6500. "ref/xamarintvos10/_._",
  6501. "ref/xamarinwatchos10/_._"
  6502. ]
  6503. },
  6504. "System.Globalization.Extensions/4.3.0": {
  6505. "sha512": "V94vDBcAzxqObtShcgiWSDazkkZm/mtfET5dXIgvzbTNgFXtoUots+s4FyQkUaAf9HtutUMQtBdaPmHXhIYTiw==",
  6506. "type": "package",
  6507. "path": "System.Globalization.Extensions/4.3.0",
  6508. "files": [
  6509. "System.Globalization.Extensions.4.3.0.nupkg.sha512",
  6510. "System.Globalization.Extensions.nuspec",
  6511. "ThirdPartyNotices.txt",
  6512. "dotnet_library_license.txt",
  6513. "lib/MonoAndroid10/_._",
  6514. "lib/MonoTouch10/_._",
  6515. "lib/net46/System.Globalization.Extensions.dll",
  6516. "lib/xamarinios10/_._",
  6517. "lib/xamarinmac20/_._",
  6518. "lib/xamarintvos10/_._",
  6519. "lib/xamarinwatchos10/_._",
  6520. "ref/MonoAndroid10/_._",
  6521. "ref/MonoTouch10/_._",
  6522. "ref/net46/System.Globalization.Extensions.dll",
  6523. "ref/netstandard1.3/System.Globalization.Extensions.dll",
  6524. "ref/netstandard1.3/System.Globalization.Extensions.xml",
  6525. "ref/netstandard1.3/de/System.Globalization.Extensions.xml",
  6526. "ref/netstandard1.3/es/System.Globalization.Extensions.xml",
  6527. "ref/netstandard1.3/fr/System.Globalization.Extensions.xml",
  6528. "ref/netstandard1.3/it/System.Globalization.Extensions.xml",
  6529. "ref/netstandard1.3/ja/System.Globalization.Extensions.xml",
  6530. "ref/netstandard1.3/ko/System.Globalization.Extensions.xml",
  6531. "ref/netstandard1.3/ru/System.Globalization.Extensions.xml",
  6532. "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml",
  6533. "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml",
  6534. "ref/xamarinios10/_._",
  6535. "ref/xamarinmac20/_._",
  6536. "ref/xamarintvos10/_._",
  6537. "ref/xamarinwatchos10/_._",
  6538. "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll",
  6539. "runtimes/win/lib/net46/System.Globalization.Extensions.dll",
  6540. "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll"
  6541. ]
  6542. },
  6543. "System.Interactive.Async/3.0.0": {
  6544. "sha512": "iyrgkZz9Dzm0fiPouQszFC3SO/46k6AYd/jG9bu+/o0AoDMaRXtlo3TIuWVNtOuJFd1noL963QouroJ0T3rImw==",
  6545. "type": "package",
  6546. "path": "System.Interactive.Async/3.0.0",
  6547. "files": [
  6548. "System.Interactive.Async.3.0.0.nupkg.sha512",
  6549. "System.Interactive.Async.nuspec",
  6550. "lib/net45/System.Interactive.Async.dll",
  6551. "lib/net45/System.Interactive.Async.xml",
  6552. "lib/netstandard1.0/System.Interactive.Async.dll",
  6553. "lib/netstandard1.0/System.Interactive.Async.xml"
  6554. ]
  6555. },
  6556. "System.IO/4.3.0": {
  6557. "sha512": "cXuYu/ygrY2jSUssaHsn/PfCPS/Kek0It6YztrW5hjVssowvgsgKuqHmjrCeAf3AmSI79vZ8PsLW1iiD7nWxqA==",
  6558. "type": "package",
  6559. "path": "System.IO/4.3.0",
  6560. "files": [
  6561. "System.IO.4.3.0.nupkg.sha512",
  6562. "System.IO.nuspec",
  6563. "ThirdPartyNotices.txt",
  6564. "dotnet_library_license.txt",
  6565. "lib/MonoAndroid10/_._",
  6566. "lib/MonoTouch10/_._",
  6567. "lib/net45/_._",
  6568. "lib/net462/System.IO.dll",
  6569. "lib/portable-net45+win8+wp8+wpa81/_._",
  6570. "lib/win8/_._",
  6571. "lib/wp80/_._",
  6572. "lib/wpa81/_._",
  6573. "lib/xamarinios10/_._",
  6574. "lib/xamarinmac20/_._",
  6575. "lib/xamarintvos10/_._",
  6576. "lib/xamarinwatchos10/_._",
  6577. "ref/MonoAndroid10/_._",
  6578. "ref/MonoTouch10/_._",
  6579. "ref/net45/_._",
  6580. "ref/net462/System.IO.dll",
  6581. "ref/netcore50/System.IO.dll",
  6582. "ref/netcore50/System.IO.xml",
  6583. "ref/netcore50/de/System.IO.xml",
  6584. "ref/netcore50/es/System.IO.xml",
  6585. "ref/netcore50/fr/System.IO.xml",
  6586. "ref/netcore50/it/System.IO.xml",
  6587. "ref/netcore50/ja/System.IO.xml",
  6588. "ref/netcore50/ko/System.IO.xml",
  6589. "ref/netcore50/ru/System.IO.xml",
  6590. "ref/netcore50/zh-hans/System.IO.xml",
  6591. "ref/netcore50/zh-hant/System.IO.xml",
  6592. "ref/netstandard1.0/System.IO.dll",
  6593. "ref/netstandard1.0/System.IO.xml",
  6594. "ref/netstandard1.0/de/System.IO.xml",
  6595. "ref/netstandard1.0/es/System.IO.xml",
  6596. "ref/netstandard1.0/fr/System.IO.xml",
  6597. "ref/netstandard1.0/it/System.IO.xml",
  6598. "ref/netstandard1.0/ja/System.IO.xml",
  6599. "ref/netstandard1.0/ko/System.IO.xml",
  6600. "ref/netstandard1.0/ru/System.IO.xml",
  6601. "ref/netstandard1.0/zh-hans/System.IO.xml",
  6602. "ref/netstandard1.0/zh-hant/System.IO.xml",
  6603. "ref/netstandard1.3/System.IO.dll",
  6604. "ref/netstandard1.3/System.IO.xml",
  6605. "ref/netstandard1.3/de/System.IO.xml",
  6606. "ref/netstandard1.3/es/System.IO.xml",
  6607. "ref/netstandard1.3/fr/System.IO.xml",
  6608. "ref/netstandard1.3/it/System.IO.xml",
  6609. "ref/netstandard1.3/ja/System.IO.xml",
  6610. "ref/netstandard1.3/ko/System.IO.xml",
  6611. "ref/netstandard1.3/ru/System.IO.xml",
  6612. "ref/netstandard1.3/zh-hans/System.IO.xml",
  6613. "ref/netstandard1.3/zh-hant/System.IO.xml",
  6614. "ref/netstandard1.5/System.IO.dll",
  6615. "ref/netstandard1.5/System.IO.xml",
  6616. "ref/netstandard1.5/de/System.IO.xml",
  6617. "ref/netstandard1.5/es/System.IO.xml",
  6618. "ref/netstandard1.5/fr/System.IO.xml",
  6619. "ref/netstandard1.5/it/System.IO.xml",
  6620. "ref/netstandard1.5/ja/System.IO.xml",
  6621. "ref/netstandard1.5/ko/System.IO.xml",
  6622. "ref/netstandard1.5/ru/System.IO.xml",
  6623. "ref/netstandard1.5/zh-hans/System.IO.xml",
  6624. "ref/netstandard1.5/zh-hant/System.IO.xml",
  6625. "ref/portable-net45+win8+wp8+wpa81/_._",
  6626. "ref/win8/_._",
  6627. "ref/wp80/_._",
  6628. "ref/wpa81/_._",
  6629. "ref/xamarinios10/_._",
  6630. "ref/xamarinmac20/_._",
  6631. "ref/xamarintvos10/_._",
  6632. "ref/xamarinwatchos10/_._"
  6633. ]
  6634. },
  6635. "System.IO.Compression/4.3.0": {
  6636. "sha512": "1QYOMtObmdRHs5dthBBr5Jef3X+d6YACS3neNwSDaWs+yxsDgBCPgEzZhFnXWoibLDROETI+zkBMAL+vopVbfg==",
  6637. "type": "package",
  6638. "path": "System.IO.Compression/4.3.0",
  6639. "files": [
  6640. "System.IO.Compression.4.3.0.nupkg.sha512",
  6641. "System.IO.Compression.nuspec",
  6642. "ThirdPartyNotices.txt",
  6643. "dotnet_library_license.txt",
  6644. "lib/MonoAndroid10/_._",
  6645. "lib/MonoTouch10/_._",
  6646. "lib/net45/_._",
  6647. "lib/net46/System.IO.Compression.dll",
  6648. "lib/portable-net45+win8+wpa81/_._",
  6649. "lib/win8/_._",
  6650. "lib/wpa81/_._",
  6651. "lib/xamarinios10/_._",
  6652. "lib/xamarinmac20/_._",
  6653. "lib/xamarintvos10/_._",
  6654. "lib/xamarinwatchos10/_._",
  6655. "ref/MonoAndroid10/_._",
  6656. "ref/MonoTouch10/_._",
  6657. "ref/net45/_._",
  6658. "ref/net46/System.IO.Compression.dll",
  6659. "ref/netcore50/System.IO.Compression.dll",
  6660. "ref/netcore50/System.IO.Compression.xml",
  6661. "ref/netcore50/de/System.IO.Compression.xml",
  6662. "ref/netcore50/es/System.IO.Compression.xml",
  6663. "ref/netcore50/fr/System.IO.Compression.xml",
  6664. "ref/netcore50/it/System.IO.Compression.xml",
  6665. "ref/netcore50/ja/System.IO.Compression.xml",
  6666. "ref/netcore50/ko/System.IO.Compression.xml",
  6667. "ref/netcore50/ru/System.IO.Compression.xml",
  6668. "ref/netcore50/zh-hans/System.IO.Compression.xml",
  6669. "ref/netcore50/zh-hant/System.IO.Compression.xml",
  6670. "ref/netstandard1.1/System.IO.Compression.dll",
  6671. "ref/netstandard1.1/System.IO.Compression.xml",
  6672. "ref/netstandard1.1/de/System.IO.Compression.xml",
  6673. "ref/netstandard1.1/es/System.IO.Compression.xml",
  6674. "ref/netstandard1.1/fr/System.IO.Compression.xml",
  6675. "ref/netstandard1.1/it/System.IO.Compression.xml",
  6676. "ref/netstandard1.1/ja/System.IO.Compression.xml",
  6677. "ref/netstandard1.1/ko/System.IO.Compression.xml",
  6678. "ref/netstandard1.1/ru/System.IO.Compression.xml",
  6679. "ref/netstandard1.1/zh-hans/System.IO.Compression.xml",
  6680. "ref/netstandard1.1/zh-hant/System.IO.Compression.xml",
  6681. "ref/netstandard1.3/System.IO.Compression.dll",
  6682. "ref/netstandard1.3/System.IO.Compression.xml",
  6683. "ref/netstandard1.3/de/System.IO.Compression.xml",
  6684. "ref/netstandard1.3/es/System.IO.Compression.xml",
  6685. "ref/netstandard1.3/fr/System.IO.Compression.xml",
  6686. "ref/netstandard1.3/it/System.IO.Compression.xml",
  6687. "ref/netstandard1.3/ja/System.IO.Compression.xml",
  6688. "ref/netstandard1.3/ko/System.IO.Compression.xml",
  6689. "ref/netstandard1.3/ru/System.IO.Compression.xml",
  6690. "ref/netstandard1.3/zh-hans/System.IO.Compression.xml",
  6691. "ref/netstandard1.3/zh-hant/System.IO.Compression.xml",
  6692. "ref/portable-net45+win8+wpa81/_._",
  6693. "ref/win8/_._",
  6694. "ref/wpa81/_._",
  6695. "ref/xamarinios10/_._",
  6696. "ref/xamarinmac20/_._",
  6697. "ref/xamarintvos10/_._",
  6698. "ref/xamarinwatchos10/_._",
  6699. "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll",
  6700. "runtimes/win/lib/net46/System.IO.Compression.dll",
  6701. "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll"
  6702. ]
  6703. },
  6704. "System.IO.Compression.ZipFile/4.3.0": {
  6705. "sha512": "K7yrRwJuU22iBhr0ySICB4xfPDbV2x9lV6BNpf9N72ngRn/qO34JgMHcBHZI+PSLjRBVJzFeNVopt+5NOsY/aQ==",
  6706. "type": "package",
  6707. "path": "System.IO.Compression.ZipFile/4.3.0",
  6708. "files": [
  6709. "System.IO.Compression.ZipFile.4.3.0.nupkg.sha512",
  6710. "System.IO.Compression.ZipFile.nuspec",
  6711. "ThirdPartyNotices.txt",
  6712. "dotnet_library_license.txt",
  6713. "lib/MonoAndroid10/_._",
  6714. "lib/MonoTouch10/_._",
  6715. "lib/net46/System.IO.Compression.ZipFile.dll",
  6716. "lib/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6717. "lib/xamarinios10/_._",
  6718. "lib/xamarinmac20/_._",
  6719. "lib/xamarintvos10/_._",
  6720. "lib/xamarinwatchos10/_._",
  6721. "ref/MonoAndroid10/_._",
  6722. "ref/MonoTouch10/_._",
  6723. "ref/net46/System.IO.Compression.ZipFile.dll",
  6724. "ref/netstandard1.3/System.IO.Compression.ZipFile.dll",
  6725. "ref/netstandard1.3/System.IO.Compression.ZipFile.xml",
  6726. "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml",
  6727. "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml",
  6728. "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml",
  6729. "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml",
  6730. "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml",
  6731. "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml",
  6732. "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml",
  6733. "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml",
  6734. "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml",
  6735. "ref/xamarinios10/_._",
  6736. "ref/xamarinmac20/_._",
  6737. "ref/xamarintvos10/_._",
  6738. "ref/xamarinwatchos10/_._"
  6739. ]
  6740. },
  6741. "System.IO.FileSystem/4.3.0": {
  6742. "sha512": "oTvCY1epVpXNDk0CSKp8NvaHsrDPUoEiFAAx6GuJWDnOq8EBd/qW+gmRut8Zfol3ghlhuKrikz8O1aQgzPJPbQ==",
  6743. "type": "package",
  6744. "path": "System.IO.FileSystem/4.3.0",
  6745. "files": [
  6746. "System.IO.FileSystem.4.3.0.nupkg.sha512",
  6747. "System.IO.FileSystem.nuspec",
  6748. "ThirdPartyNotices.txt",
  6749. "dotnet_library_license.txt",
  6750. "lib/MonoAndroid10/_._",
  6751. "lib/MonoTouch10/_._",
  6752. "lib/net46/System.IO.FileSystem.dll",
  6753. "lib/xamarinios10/_._",
  6754. "lib/xamarinmac20/_._",
  6755. "lib/xamarintvos10/_._",
  6756. "lib/xamarinwatchos10/_._",
  6757. "ref/MonoAndroid10/_._",
  6758. "ref/MonoTouch10/_._",
  6759. "ref/net46/System.IO.FileSystem.dll",
  6760. "ref/netstandard1.3/System.IO.FileSystem.dll",
  6761. "ref/netstandard1.3/System.IO.FileSystem.xml",
  6762. "ref/netstandard1.3/de/System.IO.FileSystem.xml",
  6763. "ref/netstandard1.3/es/System.IO.FileSystem.xml",
  6764. "ref/netstandard1.3/fr/System.IO.FileSystem.xml",
  6765. "ref/netstandard1.3/it/System.IO.FileSystem.xml",
  6766. "ref/netstandard1.3/ja/System.IO.FileSystem.xml",
  6767. "ref/netstandard1.3/ko/System.IO.FileSystem.xml",
  6768. "ref/netstandard1.3/ru/System.IO.FileSystem.xml",
  6769. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml",
  6770. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml",
  6771. "ref/xamarinios10/_._",
  6772. "ref/xamarinmac20/_._",
  6773. "ref/xamarintvos10/_._",
  6774. "ref/xamarinwatchos10/_._"
  6775. ]
  6776. },
  6777. "System.IO.FileSystem.Primitives/4.3.0": {
  6778. "sha512": "dUvETypIrGfDyjkGe99Z9EsD740KKyJWkHdVJYw294K56f8dHu8AHHbjmpb4bCOE9VGlIqWL5kM8UlejpYIhnQ==",
  6779. "type": "package",
  6780. "path": "System.IO.FileSystem.Primitives/4.3.0",
  6781. "files": [
  6782. "System.IO.FileSystem.Primitives.4.3.0.nupkg.sha512",
  6783. "System.IO.FileSystem.Primitives.nuspec",
  6784. "ThirdPartyNotices.txt",
  6785. "dotnet_library_license.txt",
  6786. "lib/MonoAndroid10/_._",
  6787. "lib/MonoTouch10/_._",
  6788. "lib/net46/System.IO.FileSystem.Primitives.dll",
  6789. "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6790. "lib/xamarinios10/_._",
  6791. "lib/xamarinmac20/_._",
  6792. "lib/xamarintvos10/_._",
  6793. "lib/xamarinwatchos10/_._",
  6794. "ref/MonoAndroid10/_._",
  6795. "ref/MonoTouch10/_._",
  6796. "ref/net46/System.IO.FileSystem.Primitives.dll",
  6797. "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll",
  6798. "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml",
  6799. "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml",
  6800. "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml",
  6801. "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml",
  6802. "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml",
  6803. "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml",
  6804. "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml",
  6805. "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml",
  6806. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml",
  6807. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml",
  6808. "ref/xamarinios10/_._",
  6809. "ref/xamarinmac20/_._",
  6810. "ref/xamarintvos10/_._",
  6811. "ref/xamarinwatchos10/_._"
  6812. ]
  6813. },
  6814. "System.IO.FileSystem.Watcher/4.0.0": {
  6815. "sha512": "smLdmwMbcOGkkcZv2QU55Pp/jSiZhYYxlJdn5zue1gBYA4rXiW7OnwlENPZX8DghsxlOZqEbcAgAKNFtuhX8UA==",
  6816. "type": "package",
  6817. "path": "System.IO.FileSystem.Watcher/4.0.0",
  6818. "files": [
  6819. "System.IO.FileSystem.Watcher.4.0.0.nupkg.sha512",
  6820. "System.IO.FileSystem.Watcher.nuspec",
  6821. "ThirdPartyNotices.txt",
  6822. "dotnet_library_license.txt",
  6823. "lib/MonoAndroid10/_._",
  6824. "lib/MonoTouch10/_._",
  6825. "lib/net46/System.IO.FileSystem.Watcher.dll",
  6826. "lib/xamarinios10/_._",
  6827. "lib/xamarinmac20/_._",
  6828. "lib/xamarintvos10/_._",
  6829. "lib/xamarinwatchos10/_._",
  6830. "ref/MonoAndroid10/_._",
  6831. "ref/MonoTouch10/_._",
  6832. "ref/net46/System.IO.FileSystem.Watcher.dll",
  6833. "ref/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  6834. "ref/netstandard1.3/System.IO.FileSystem.Watcher.xml",
  6835. "ref/netstandard1.3/de/System.IO.FileSystem.Watcher.xml",
  6836. "ref/netstandard1.3/es/System.IO.FileSystem.Watcher.xml",
  6837. "ref/netstandard1.3/fr/System.IO.FileSystem.Watcher.xml",
  6838. "ref/netstandard1.3/it/System.IO.FileSystem.Watcher.xml",
  6839. "ref/netstandard1.3/ja/System.IO.FileSystem.Watcher.xml",
  6840. "ref/netstandard1.3/ko/System.IO.FileSystem.Watcher.xml",
  6841. "ref/netstandard1.3/ru/System.IO.FileSystem.Watcher.xml",
  6842. "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Watcher.xml",
  6843. "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Watcher.xml",
  6844. "ref/xamarinios10/_._",
  6845. "ref/xamarinmac20/_._",
  6846. "ref/xamarintvos10/_._",
  6847. "ref/xamarinwatchos10/_._",
  6848. "runtimes/linux/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  6849. "runtimes/osx/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  6850. "runtimes/win/lib/net46/System.IO.FileSystem.Watcher.dll",
  6851. "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.Watcher.dll",
  6852. "runtimes/win7/lib/netcore50/_._"
  6853. ]
  6854. },
  6855. "System.IO.MemoryMappedFiles/4.0.0": {
  6856. "sha512": "PStypGn+lGm2JtQPyiwTrCVHz3dohrljUJ6vIVpgLGaaiMLXA6ZH413Ia7mv1LjKW/5vmGCT3RwSdemsgxkuMg==",
  6857. "type": "package",
  6858. "path": "System.IO.MemoryMappedFiles/4.0.0",
  6859. "files": [
  6860. "System.IO.MemoryMappedFiles.4.0.0.nupkg.sha512",
  6861. "System.IO.MemoryMappedFiles.nuspec",
  6862. "ThirdPartyNotices.txt",
  6863. "dotnet_library_license.txt",
  6864. "lib/MonoAndroid10/_._",
  6865. "lib/MonoTouch10/_._",
  6866. "lib/net46/System.IO.MemoryMappedFiles.dll",
  6867. "lib/xamarinios10/_._",
  6868. "lib/xamarinmac20/_._",
  6869. "lib/xamarintvos10/_._",
  6870. "lib/xamarinwatchos10/_._",
  6871. "ref/MonoAndroid10/_._",
  6872. "ref/MonoTouch10/_._",
  6873. "ref/net46/System.IO.MemoryMappedFiles.dll",
  6874. "ref/netstandard1.3/System.IO.MemoryMappedFiles.dll",
  6875. "ref/netstandard1.3/System.IO.MemoryMappedFiles.xml",
  6876. "ref/netstandard1.3/de/System.IO.MemoryMappedFiles.xml",
  6877. "ref/netstandard1.3/es/System.IO.MemoryMappedFiles.xml",
  6878. "ref/netstandard1.3/fr/System.IO.MemoryMappedFiles.xml",
  6879. "ref/netstandard1.3/it/System.IO.MemoryMappedFiles.xml",
  6880. "ref/netstandard1.3/ja/System.IO.MemoryMappedFiles.xml",
  6881. "ref/netstandard1.3/ko/System.IO.MemoryMappedFiles.xml",
  6882. "ref/netstandard1.3/ru/System.IO.MemoryMappedFiles.xml",
  6883. "ref/netstandard1.3/zh-hans/System.IO.MemoryMappedFiles.xml",
  6884. "ref/netstandard1.3/zh-hant/System.IO.MemoryMappedFiles.xml",
  6885. "ref/xamarinios10/_._",
  6886. "ref/xamarinmac20/_._",
  6887. "ref/xamarintvos10/_._",
  6888. "ref/xamarinwatchos10/_._",
  6889. "runtimes/unix/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll",
  6890. "runtimes/win/lib/net46/System.IO.MemoryMappedFiles.dll",
  6891. "runtimes/win/lib/netcore50/System.IO.MemoryMappedFiles.dll",
  6892. "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
  6893. ]
  6894. },
  6895. "System.IO.UnmanagedMemoryStream/4.0.1": {
  6896. "sha512": "Xm2rVGIaXJN0ScBYeo5fDmNifi3AKkOo5q6AeqZoje1WcrAEwteLNaXsY6Kqqzuspv1YXTylyvs1z1XYLwEglw==",
  6897. "type": "package",
  6898. "path": "System.IO.UnmanagedMemoryStream/4.0.1",
  6899. "files": [
  6900. "System.IO.UnmanagedMemoryStream.4.0.1.nupkg.sha512",
  6901. "System.IO.UnmanagedMemoryStream.nuspec",
  6902. "ThirdPartyNotices.txt",
  6903. "dotnet_library_license.txt",
  6904. "lib/MonoAndroid10/_._",
  6905. "lib/MonoTouch10/_._",
  6906. "lib/net46/System.IO.UnmanagedMemoryStream.dll",
  6907. "lib/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
  6908. "lib/xamarinios10/_._",
  6909. "lib/xamarinmac20/_._",
  6910. "lib/xamarintvos10/_._",
  6911. "lib/xamarinwatchos10/_._",
  6912. "ref/MonoAndroid10/_._",
  6913. "ref/MonoTouch10/_._",
  6914. "ref/net46/System.IO.UnmanagedMemoryStream.dll",
  6915. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.dll",
  6916. "ref/netstandard1.3/System.IO.UnmanagedMemoryStream.xml",
  6917. "ref/netstandard1.3/de/System.IO.UnmanagedMemoryStream.xml",
  6918. "ref/netstandard1.3/es/System.IO.UnmanagedMemoryStream.xml",
  6919. "ref/netstandard1.3/fr/System.IO.UnmanagedMemoryStream.xml",
  6920. "ref/netstandard1.3/it/System.IO.UnmanagedMemoryStream.xml",
  6921. "ref/netstandard1.3/ja/System.IO.UnmanagedMemoryStream.xml",
  6922. "ref/netstandard1.3/ko/System.IO.UnmanagedMemoryStream.xml",
  6923. "ref/netstandard1.3/ru/System.IO.UnmanagedMemoryStream.xml",
  6924. "ref/netstandard1.3/zh-hans/System.IO.UnmanagedMemoryStream.xml",
  6925. "ref/netstandard1.3/zh-hant/System.IO.UnmanagedMemoryStream.xml",
  6926. "ref/xamarinios10/_._",
  6927. "ref/xamarinmac20/_._",
  6928. "ref/xamarintvos10/_._",
  6929. "ref/xamarinwatchos10/_._"
  6930. ]
  6931. },
  6932. "System.Linq/4.3.0": {
  6933. "sha512": "P71Cxp86ljJd8N2EO2OXb/xdClfs6BRCqDSZeXfSF0g+fT+S6/zmPFVJUEPFycY1pYDAqPGu+2lI9vcP46qmWg==",
  6934. "type": "package",
  6935. "path": "System.Linq/4.3.0",
  6936. "files": [
  6937. "System.Linq.4.3.0.nupkg.sha512",
  6938. "System.Linq.nuspec",
  6939. "ThirdPartyNotices.txt",
  6940. "dotnet_library_license.txt",
  6941. "lib/MonoAndroid10/_._",
  6942. "lib/MonoTouch10/_._",
  6943. "lib/net45/_._",
  6944. "lib/net463/System.Linq.dll",
  6945. "lib/netcore50/System.Linq.dll",
  6946. "lib/netstandard1.6/System.Linq.dll",
  6947. "lib/portable-net45+win8+wp8+wpa81/_._",
  6948. "lib/win8/_._",
  6949. "lib/wp80/_._",
  6950. "lib/wpa81/_._",
  6951. "lib/xamarinios10/_._",
  6952. "lib/xamarinmac20/_._",
  6953. "lib/xamarintvos10/_._",
  6954. "lib/xamarinwatchos10/_._",
  6955. "ref/MonoAndroid10/_._",
  6956. "ref/MonoTouch10/_._",
  6957. "ref/net45/_._",
  6958. "ref/net463/System.Linq.dll",
  6959. "ref/netcore50/System.Linq.dll",
  6960. "ref/netcore50/System.Linq.xml",
  6961. "ref/netcore50/de/System.Linq.xml",
  6962. "ref/netcore50/es/System.Linq.xml",
  6963. "ref/netcore50/fr/System.Linq.xml",
  6964. "ref/netcore50/it/System.Linq.xml",
  6965. "ref/netcore50/ja/System.Linq.xml",
  6966. "ref/netcore50/ko/System.Linq.xml",
  6967. "ref/netcore50/ru/System.Linq.xml",
  6968. "ref/netcore50/zh-hans/System.Linq.xml",
  6969. "ref/netcore50/zh-hant/System.Linq.xml",
  6970. "ref/netstandard1.0/System.Linq.dll",
  6971. "ref/netstandard1.0/System.Linq.xml",
  6972. "ref/netstandard1.0/de/System.Linq.xml",
  6973. "ref/netstandard1.0/es/System.Linq.xml",
  6974. "ref/netstandard1.0/fr/System.Linq.xml",
  6975. "ref/netstandard1.0/it/System.Linq.xml",
  6976. "ref/netstandard1.0/ja/System.Linq.xml",
  6977. "ref/netstandard1.0/ko/System.Linq.xml",
  6978. "ref/netstandard1.0/ru/System.Linq.xml",
  6979. "ref/netstandard1.0/zh-hans/System.Linq.xml",
  6980. "ref/netstandard1.0/zh-hant/System.Linq.xml",
  6981. "ref/netstandard1.6/System.Linq.dll",
  6982. "ref/netstandard1.6/System.Linq.xml",
  6983. "ref/netstandard1.6/de/System.Linq.xml",
  6984. "ref/netstandard1.6/es/System.Linq.xml",
  6985. "ref/netstandard1.6/fr/System.Linq.xml",
  6986. "ref/netstandard1.6/it/System.Linq.xml",
  6987. "ref/netstandard1.6/ja/System.Linq.xml",
  6988. "ref/netstandard1.6/ko/System.Linq.xml",
  6989. "ref/netstandard1.6/ru/System.Linq.xml",
  6990. "ref/netstandard1.6/zh-hans/System.Linq.xml",
  6991. "ref/netstandard1.6/zh-hant/System.Linq.xml",
  6992. "ref/portable-net45+win8+wp8+wpa81/_._",
  6993. "ref/win8/_._",
  6994. "ref/wp80/_._",
  6995. "ref/wpa81/_._",
  6996. "ref/xamarinios10/_._",
  6997. "ref/xamarinmac20/_._",
  6998. "ref/xamarintvos10/_._",
  6999. "ref/xamarinwatchos10/_._"
  7000. ]
  7001. },
  7002. "System.Linq.Expressions/4.3.0": {
  7003. "sha512": "/J2T2wXiXRBhO910kRJl3dGU/AvUrsNpVJCfsC5YuVjiRve1JmyUntYScnN2yWb9YOXTscdYbZiI2jtgowslIg==",
  7004. "type": "package",
  7005. "path": "System.Linq.Expressions/4.3.0",
  7006. "files": [
  7007. "System.Linq.Expressions.4.3.0.nupkg.sha512",
  7008. "System.Linq.Expressions.nuspec",
  7009. "ThirdPartyNotices.txt",
  7010. "dotnet_library_license.txt",
  7011. "lib/MonoAndroid10/_._",
  7012. "lib/MonoTouch10/_._",
  7013. "lib/net45/_._",
  7014. "lib/net463/System.Linq.Expressions.dll",
  7015. "lib/netcore50/System.Linq.Expressions.dll",
  7016. "lib/netstandard1.6/System.Linq.Expressions.dll",
  7017. "lib/portable-net45+win8+wp8+wpa81/_._",
  7018. "lib/win8/_._",
  7019. "lib/wp80/_._",
  7020. "lib/wpa81/_._",
  7021. "lib/xamarinios10/_._",
  7022. "lib/xamarinmac20/_._",
  7023. "lib/xamarintvos10/_._",
  7024. "lib/xamarinwatchos10/_._",
  7025. "ref/MonoAndroid10/_._",
  7026. "ref/MonoTouch10/_._",
  7027. "ref/net45/_._",
  7028. "ref/net463/System.Linq.Expressions.dll",
  7029. "ref/netcore50/System.Linq.Expressions.dll",
  7030. "ref/netcore50/System.Linq.Expressions.xml",
  7031. "ref/netcore50/de/System.Linq.Expressions.xml",
  7032. "ref/netcore50/es/System.Linq.Expressions.xml",
  7033. "ref/netcore50/fr/System.Linq.Expressions.xml",
  7034. "ref/netcore50/it/System.Linq.Expressions.xml",
  7035. "ref/netcore50/ja/System.Linq.Expressions.xml",
  7036. "ref/netcore50/ko/System.Linq.Expressions.xml",
  7037. "ref/netcore50/ru/System.Linq.Expressions.xml",
  7038. "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
  7039. "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
  7040. "ref/netstandard1.0/System.Linq.Expressions.dll",
  7041. "ref/netstandard1.0/System.Linq.Expressions.xml",
  7042. "ref/netstandard1.0/de/System.Linq.Expressions.xml",
  7043. "ref/netstandard1.0/es/System.Linq.Expressions.xml",
  7044. "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
  7045. "ref/netstandard1.0/it/System.Linq.Expressions.xml",
  7046. "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
  7047. "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
  7048. "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
  7049. "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
  7050. "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
  7051. "ref/netstandard1.3/System.Linq.Expressions.dll",
  7052. "ref/netstandard1.3/System.Linq.Expressions.xml",
  7053. "ref/netstandard1.3/de/System.Linq.Expressions.xml",
  7054. "ref/netstandard1.3/es/System.Linq.Expressions.xml",
  7055. "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
  7056. "ref/netstandard1.3/it/System.Linq.Expressions.xml",
  7057. "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
  7058. "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
  7059. "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
  7060. "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
  7061. "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
  7062. "ref/netstandard1.6/System.Linq.Expressions.dll",
  7063. "ref/netstandard1.6/System.Linq.Expressions.xml",
  7064. "ref/netstandard1.6/de/System.Linq.Expressions.xml",
  7065. "ref/netstandard1.6/es/System.Linq.Expressions.xml",
  7066. "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
  7067. "ref/netstandard1.6/it/System.Linq.Expressions.xml",
  7068. "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
  7069. "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
  7070. "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
  7071. "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
  7072. "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
  7073. "ref/portable-net45+win8+wp8+wpa81/_._",
  7074. "ref/win8/_._",
  7075. "ref/wp80/_._",
  7076. "ref/wpa81/_._",
  7077. "ref/xamarinios10/_._",
  7078. "ref/xamarinmac20/_._",
  7079. "ref/xamarintvos10/_._",
  7080. "ref/xamarinwatchos10/_._",
  7081. "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll"
  7082. ]
  7083. },
  7084. "System.Linq.Parallel/4.0.1": {
  7085. "sha512": "cze1FtznS4SLU9kbYyJjuy9mhKPbLCqc9OMqAEIDQjkqNZgsRDGfBx1kKjP7Xsk+UXdAfUDTk4Dl9HrIyMExew==",
  7086. "type": "package",
  7087. "path": "System.Linq.Parallel/4.0.1",
  7088. "files": [
  7089. "System.Linq.Parallel.4.0.1.nupkg.sha512",
  7090. "System.Linq.Parallel.nuspec",
  7091. "ThirdPartyNotices.txt",
  7092. "dotnet_library_license.txt",
  7093. "lib/MonoAndroid10/_._",
  7094. "lib/MonoTouch10/_._",
  7095. "lib/net45/_._",
  7096. "lib/netcore50/System.Linq.Parallel.dll",
  7097. "lib/netstandard1.3/System.Linq.Parallel.dll",
  7098. "lib/portable-net45+win8+wpa81/_._",
  7099. "lib/win8/_._",
  7100. "lib/wpa81/_._",
  7101. "lib/xamarinios10/_._",
  7102. "lib/xamarinmac20/_._",
  7103. "lib/xamarintvos10/_._",
  7104. "lib/xamarinwatchos10/_._",
  7105. "ref/MonoAndroid10/_._",
  7106. "ref/MonoTouch10/_._",
  7107. "ref/net45/_._",
  7108. "ref/netcore50/System.Linq.Parallel.dll",
  7109. "ref/netcore50/System.Linq.Parallel.xml",
  7110. "ref/netcore50/de/System.Linq.Parallel.xml",
  7111. "ref/netcore50/es/System.Linq.Parallel.xml",
  7112. "ref/netcore50/fr/System.Linq.Parallel.xml",
  7113. "ref/netcore50/it/System.Linq.Parallel.xml",
  7114. "ref/netcore50/ja/System.Linq.Parallel.xml",
  7115. "ref/netcore50/ko/System.Linq.Parallel.xml",
  7116. "ref/netcore50/ru/System.Linq.Parallel.xml",
  7117. "ref/netcore50/zh-hans/System.Linq.Parallel.xml",
  7118. "ref/netcore50/zh-hant/System.Linq.Parallel.xml",
  7119. "ref/netstandard1.1/System.Linq.Parallel.dll",
  7120. "ref/netstandard1.1/System.Linq.Parallel.xml",
  7121. "ref/netstandard1.1/de/System.Linq.Parallel.xml",
  7122. "ref/netstandard1.1/es/System.Linq.Parallel.xml",
  7123. "ref/netstandard1.1/fr/System.Linq.Parallel.xml",
  7124. "ref/netstandard1.1/it/System.Linq.Parallel.xml",
  7125. "ref/netstandard1.1/ja/System.Linq.Parallel.xml",
  7126. "ref/netstandard1.1/ko/System.Linq.Parallel.xml",
  7127. "ref/netstandard1.1/ru/System.Linq.Parallel.xml",
  7128. "ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml",
  7129. "ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml",
  7130. "ref/portable-net45+win8+wpa81/_._",
  7131. "ref/win8/_._",
  7132. "ref/wpa81/_._",
  7133. "ref/xamarinios10/_._",
  7134. "ref/xamarinmac20/_._",
  7135. "ref/xamarintvos10/_._",
  7136. "ref/xamarinwatchos10/_._"
  7137. ]
  7138. },
  7139. "System.Linq.Queryable/4.3.0": {
  7140. "sha512": "In1Bmmvl/j52yPu3xgakQSI0YIckPUr870w4K5+Lak3JCCa8hl+my65lABOuKfYs4ugmZy25ScFerC4nz8+b6g==",
  7141. "type": "package",
  7142. "path": "System.Linq.Queryable/4.3.0",
  7143. "files": [
  7144. "System.Linq.Queryable.4.3.0.nupkg.sha512",
  7145. "System.Linq.Queryable.nuspec",
  7146. "ThirdPartyNotices.txt",
  7147. "dotnet_library_license.txt",
  7148. "lib/monoandroid10/_._",
  7149. "lib/monotouch10/_._",
  7150. "lib/net45/_._",
  7151. "lib/netcore50/System.Linq.Queryable.dll",
  7152. "lib/netstandard1.3/System.Linq.Queryable.dll",
  7153. "lib/portable-net45+win8+wp8+wpa81/_._",
  7154. "lib/win8/_._",
  7155. "lib/wp80/_._",
  7156. "lib/wpa81/_._",
  7157. "lib/xamarinios10/_._",
  7158. "lib/xamarinmac20/_._",
  7159. "lib/xamarintvos10/_._",
  7160. "lib/xamarinwatchos10/_._",
  7161. "ref/monoandroid10/_._",
  7162. "ref/monotouch10/_._",
  7163. "ref/net45/_._",
  7164. "ref/netcore50/System.Linq.Queryable.dll",
  7165. "ref/netcore50/System.Linq.Queryable.xml",
  7166. "ref/netcore50/de/System.Linq.Queryable.xml",
  7167. "ref/netcore50/es/System.Linq.Queryable.xml",
  7168. "ref/netcore50/fr/System.Linq.Queryable.xml",
  7169. "ref/netcore50/it/System.Linq.Queryable.xml",
  7170. "ref/netcore50/ja/System.Linq.Queryable.xml",
  7171. "ref/netcore50/ko/System.Linq.Queryable.xml",
  7172. "ref/netcore50/ru/System.Linq.Queryable.xml",
  7173. "ref/netcore50/zh-hans/System.Linq.Queryable.xml",
  7174. "ref/netcore50/zh-hant/System.Linq.Queryable.xml",
  7175. "ref/netstandard1.0/System.Linq.Queryable.dll",
  7176. "ref/netstandard1.0/System.Linq.Queryable.xml",
  7177. "ref/netstandard1.0/de/System.Linq.Queryable.xml",
  7178. "ref/netstandard1.0/es/System.Linq.Queryable.xml",
  7179. "ref/netstandard1.0/fr/System.Linq.Queryable.xml",
  7180. "ref/netstandard1.0/it/System.Linq.Queryable.xml",
  7181. "ref/netstandard1.0/ja/System.Linq.Queryable.xml",
  7182. "ref/netstandard1.0/ko/System.Linq.Queryable.xml",
  7183. "ref/netstandard1.0/ru/System.Linq.Queryable.xml",
  7184. "ref/netstandard1.0/zh-hans/System.Linq.Queryable.xml",
  7185. "ref/netstandard1.0/zh-hant/System.Linq.Queryable.xml",
  7186. "ref/portable-net45+win8+wp8+wpa81/_._",
  7187. "ref/win8/_._",
  7188. "ref/wp80/_._",
  7189. "ref/wpa81/_._",
  7190. "ref/xamarinios10/_._",
  7191. "ref/xamarinmac20/_._",
  7192. "ref/xamarintvos10/_._",
  7193. "ref/xamarinwatchos10/_._"
  7194. ]
  7195. },
  7196. "System.Net.Http/4.3.0": {
  7197. "sha512": "lL9E2a0Z5O+QodbZAAn2HYkSKKPJT6S7+O+qV7jasC7J3zaiXRjv4C7uk61+SwEjAt5ybpmsO1lqStXR4T0Cbg==",
  7198. "type": "package",
  7199. "path": "System.Net.Http/4.3.0",
  7200. "files": [
  7201. "System.Net.Http.4.3.0.nupkg.sha512",
  7202. "System.Net.Http.nuspec",
  7203. "ThirdPartyNotices.txt",
  7204. "dotnet_library_license.txt",
  7205. "lib/Xamarinmac20/_._",
  7206. "lib/monoandroid10/_._",
  7207. "lib/monotouch10/_._",
  7208. "lib/net45/_._",
  7209. "lib/net46/System.Net.Http.dll",
  7210. "lib/portable-net45+win8+wpa81/_._",
  7211. "lib/win8/_._",
  7212. "lib/wpa81/_._",
  7213. "lib/xamarinios10/_._",
  7214. "lib/xamarintvos10/_._",
  7215. "lib/xamarinwatchos10/_._",
  7216. "ref/Xamarinmac20/_._",
  7217. "ref/monoandroid10/_._",
  7218. "ref/monotouch10/_._",
  7219. "ref/net45/_._",
  7220. "ref/net46/System.Net.Http.dll",
  7221. "ref/net46/System.Net.Http.xml",
  7222. "ref/net46/de/System.Net.Http.xml",
  7223. "ref/net46/es/System.Net.Http.xml",
  7224. "ref/net46/fr/System.Net.Http.xml",
  7225. "ref/net46/it/System.Net.Http.xml",
  7226. "ref/net46/ja/System.Net.Http.xml",
  7227. "ref/net46/ko/System.Net.Http.xml",
  7228. "ref/net46/ru/System.Net.Http.xml",
  7229. "ref/net46/zh-hans/System.Net.Http.xml",
  7230. "ref/net46/zh-hant/System.Net.Http.xml",
  7231. "ref/netcore50/System.Net.Http.dll",
  7232. "ref/netcore50/System.Net.Http.xml",
  7233. "ref/netcore50/de/System.Net.Http.xml",
  7234. "ref/netcore50/es/System.Net.Http.xml",
  7235. "ref/netcore50/fr/System.Net.Http.xml",
  7236. "ref/netcore50/it/System.Net.Http.xml",
  7237. "ref/netcore50/ja/System.Net.Http.xml",
  7238. "ref/netcore50/ko/System.Net.Http.xml",
  7239. "ref/netcore50/ru/System.Net.Http.xml",
  7240. "ref/netcore50/zh-hans/System.Net.Http.xml",
  7241. "ref/netcore50/zh-hant/System.Net.Http.xml",
  7242. "ref/netstandard1.1/System.Net.Http.dll",
  7243. "ref/netstandard1.1/System.Net.Http.xml",
  7244. "ref/netstandard1.1/de/System.Net.Http.xml",
  7245. "ref/netstandard1.1/es/System.Net.Http.xml",
  7246. "ref/netstandard1.1/fr/System.Net.Http.xml",
  7247. "ref/netstandard1.1/it/System.Net.Http.xml",
  7248. "ref/netstandard1.1/ja/System.Net.Http.xml",
  7249. "ref/netstandard1.1/ko/System.Net.Http.xml",
  7250. "ref/netstandard1.1/ru/System.Net.Http.xml",
  7251. "ref/netstandard1.1/zh-hans/System.Net.Http.xml",
  7252. "ref/netstandard1.1/zh-hant/System.Net.Http.xml",
  7253. "ref/netstandard1.3/System.Net.Http.dll",
  7254. "ref/netstandard1.3/System.Net.Http.xml",
  7255. "ref/netstandard1.3/de/System.Net.Http.xml",
  7256. "ref/netstandard1.3/es/System.Net.Http.xml",
  7257. "ref/netstandard1.3/fr/System.Net.Http.xml",
  7258. "ref/netstandard1.3/it/System.Net.Http.xml",
  7259. "ref/netstandard1.3/ja/System.Net.Http.xml",
  7260. "ref/netstandard1.3/ko/System.Net.Http.xml",
  7261. "ref/netstandard1.3/ru/System.Net.Http.xml",
  7262. "ref/netstandard1.3/zh-hans/System.Net.Http.xml",
  7263. "ref/netstandard1.3/zh-hant/System.Net.Http.xml",
  7264. "ref/portable-net45+win8+wpa81/_._",
  7265. "ref/win8/_._",
  7266. "ref/wpa81/_._",
  7267. "ref/xamarinios10/_._",
  7268. "ref/xamarintvos10/_._",
  7269. "ref/xamarinwatchos10/_._",
  7270. "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll",
  7271. "runtimes/win/lib/net46/System.Net.Http.dll",
  7272. "runtimes/win/lib/netcore50/System.Net.Http.dll",
  7273. "runtimes/win/lib/netstandard1.3/System.Net.Http.dll"
  7274. ]
  7275. },
  7276. "System.Net.NameResolution/4.0.0": {
  7277. "sha512": "OThG4wPbLixNd2++hNQH7dg36eJbvHTHOn2OUr9uXsq67kMIHeURNBmVEIPKxA7MWvBYTqHbMv18igLyXMtTdQ==",
  7278. "type": "package",
  7279. "path": "System.Net.NameResolution/4.0.0",
  7280. "files": [
  7281. "System.Net.NameResolution.4.0.0.nupkg.sha512",
  7282. "System.Net.NameResolution.nuspec",
  7283. "ThirdPartyNotices.txt",
  7284. "dotnet_library_license.txt",
  7285. "lib/MonoAndroid10/_._",
  7286. "lib/MonoTouch10/_._",
  7287. "lib/net46/System.Net.NameResolution.dll",
  7288. "lib/xamarinios10/_._",
  7289. "lib/xamarinmac20/_._",
  7290. "lib/xamarintvos10/_._",
  7291. "lib/xamarinwatchos10/_._",
  7292. "ref/MonoAndroid10/_._",
  7293. "ref/MonoTouch10/_._",
  7294. "ref/net46/System.Net.NameResolution.dll",
  7295. "ref/netstandard1.3/System.Net.NameResolution.dll",
  7296. "ref/netstandard1.3/System.Net.NameResolution.xml",
  7297. "ref/netstandard1.3/de/System.Net.NameResolution.xml",
  7298. "ref/netstandard1.3/es/System.Net.NameResolution.xml",
  7299. "ref/netstandard1.3/fr/System.Net.NameResolution.xml",
  7300. "ref/netstandard1.3/it/System.Net.NameResolution.xml",
  7301. "ref/netstandard1.3/ja/System.Net.NameResolution.xml",
  7302. "ref/netstandard1.3/ko/System.Net.NameResolution.xml",
  7303. "ref/netstandard1.3/ru/System.Net.NameResolution.xml",
  7304. "ref/netstandard1.3/zh-hans/System.Net.NameResolution.xml",
  7305. "ref/netstandard1.3/zh-hant/System.Net.NameResolution.xml",
  7306. "ref/xamarinios10/_._",
  7307. "ref/xamarinmac20/_._",
  7308. "ref/xamarintvos10/_._",
  7309. "ref/xamarinwatchos10/_._",
  7310. "runtimes/unix/lib/netstandard1.3/System.Net.NameResolution.dll",
  7311. "runtimes/win/lib/net46/System.Net.NameResolution.dll",
  7312. "runtimes/win/lib/netcore50/System.Net.NameResolution.dll",
  7313. "runtimes/win/lib/netstandard1.3/System.Net.NameResolution.dll"
  7314. ]
  7315. },
  7316. "System.Net.NetworkInformation/4.1.0": {
  7317. "sha512": "Q0rfeiW6QsiZuicGjrFA7cRr2+kXex0JIljTTxzI09GIftB8k+aNL31VsQD1sI2g31cw7UGDTgozA/FgeNSzsQ==",
  7318. "type": "package",
  7319. "path": "System.Net.NetworkInformation/4.1.0",
  7320. "files": [
  7321. "System.Net.NetworkInformation.4.1.0.nupkg.sha512",
  7322. "System.Net.NetworkInformation.nuspec",
  7323. "ThirdPartyNotices.txt",
  7324. "dotnet_library_license.txt",
  7325. "lib/MonoAndroid10/_._",
  7326. "lib/MonoTouch10/_._",
  7327. "lib/net45/_._",
  7328. "lib/net46/System.Net.NetworkInformation.dll",
  7329. "lib/portable-net45+win8+wp8+wpa81/_._",
  7330. "lib/win8/_._",
  7331. "lib/wp80/_._",
  7332. "lib/wpa81/_._",
  7333. "lib/xamarinios10/_._",
  7334. "lib/xamarinmac20/_._",
  7335. "lib/xamarintvos10/_._",
  7336. "lib/xamarinwatchos10/_._",
  7337. "ref/MonoAndroid10/_._",
  7338. "ref/MonoTouch10/_._",
  7339. "ref/net45/_._",
  7340. "ref/net46/System.Net.NetworkInformation.dll",
  7341. "ref/netcore50/System.Net.NetworkInformation.dll",
  7342. "ref/netcore50/System.Net.NetworkInformation.xml",
  7343. "ref/netcore50/de/System.Net.NetworkInformation.xml",
  7344. "ref/netcore50/es/System.Net.NetworkInformation.xml",
  7345. "ref/netcore50/fr/System.Net.NetworkInformation.xml",
  7346. "ref/netcore50/it/System.Net.NetworkInformation.xml",
  7347. "ref/netcore50/ja/System.Net.NetworkInformation.xml",
  7348. "ref/netcore50/ko/System.Net.NetworkInformation.xml",
  7349. "ref/netcore50/ru/System.Net.NetworkInformation.xml",
  7350. "ref/netcore50/zh-hans/System.Net.NetworkInformation.xml",
  7351. "ref/netcore50/zh-hant/System.Net.NetworkInformation.xml",
  7352. "ref/netstandard1.0/System.Net.NetworkInformation.dll",
  7353. "ref/netstandard1.0/System.Net.NetworkInformation.xml",
  7354. "ref/netstandard1.0/de/System.Net.NetworkInformation.xml",
  7355. "ref/netstandard1.0/es/System.Net.NetworkInformation.xml",
  7356. "ref/netstandard1.0/fr/System.Net.NetworkInformation.xml",
  7357. "ref/netstandard1.0/it/System.Net.NetworkInformation.xml",
  7358. "ref/netstandard1.0/ja/System.Net.NetworkInformation.xml",
  7359. "ref/netstandard1.0/ko/System.Net.NetworkInformation.xml",
  7360. "ref/netstandard1.0/ru/System.Net.NetworkInformation.xml",
  7361. "ref/netstandard1.0/zh-hans/System.Net.NetworkInformation.xml",
  7362. "ref/netstandard1.0/zh-hant/System.Net.NetworkInformation.xml",
  7363. "ref/netstandard1.3/System.Net.NetworkInformation.dll",
  7364. "ref/netstandard1.3/System.Net.NetworkInformation.xml",
  7365. "ref/netstandard1.3/de/System.Net.NetworkInformation.xml",
  7366. "ref/netstandard1.3/es/System.Net.NetworkInformation.xml",
  7367. "ref/netstandard1.3/fr/System.Net.NetworkInformation.xml",
  7368. "ref/netstandard1.3/it/System.Net.NetworkInformation.xml",
  7369. "ref/netstandard1.3/ja/System.Net.NetworkInformation.xml",
  7370. "ref/netstandard1.3/ko/System.Net.NetworkInformation.xml",
  7371. "ref/netstandard1.3/ru/System.Net.NetworkInformation.xml",
  7372. "ref/netstandard1.3/zh-hans/System.Net.NetworkInformation.xml",
  7373. "ref/netstandard1.3/zh-hant/System.Net.NetworkInformation.xml",
  7374. "ref/portable-net45+win8+wp8+wpa81/_._",
  7375. "ref/win8/_._",
  7376. "ref/wp80/_._",
  7377. "ref/wpa81/_._",
  7378. "ref/xamarinios10/_._",
  7379. "ref/xamarinmac20/_._",
  7380. "ref/xamarintvos10/_._",
  7381. "ref/xamarinwatchos10/_._",
  7382. "runtimes/linux/lib/netstandard1.3/System.Net.NetworkInformation.dll",
  7383. "runtimes/osx/lib/netstandard1.3/System.Net.NetworkInformation.dll",
  7384. "runtimes/win/lib/net46/System.Net.NetworkInformation.dll",
  7385. "runtimes/win/lib/netcore50/System.Net.NetworkInformation.dll",
  7386. "runtimes/win/lib/netstandard1.3/System.Net.NetworkInformation.dll"
  7387. ]
  7388. },
  7389. "System.Net.Primitives/4.3.0": {
  7390. "sha512": "/F1CygaK7ssyNozh2IJpyKST7J3zhQF69S04a++b8mS35XY7UOiDdgFdSI78pJMxR8r89VfnszrfDeU1ICUgiQ==",
  7391. "type": "package",
  7392. "path": "System.Net.Primitives/4.3.0",
  7393. "files": [
  7394. "System.Net.Primitives.4.3.0.nupkg.sha512",
  7395. "System.Net.Primitives.nuspec",
  7396. "ThirdPartyNotices.txt",
  7397. "dotnet_library_license.txt",
  7398. "lib/MonoAndroid10/_._",
  7399. "lib/MonoTouch10/_._",
  7400. "lib/net45/_._",
  7401. "lib/portable-net45+win8+wp8+wpa81/_._",
  7402. "lib/win8/_._",
  7403. "lib/wp80/_._",
  7404. "lib/wpa81/_._",
  7405. "lib/xamarinios10/_._",
  7406. "lib/xamarinmac20/_._",
  7407. "lib/xamarintvos10/_._",
  7408. "lib/xamarinwatchos10/_._",
  7409. "ref/MonoAndroid10/_._",
  7410. "ref/MonoTouch10/_._",
  7411. "ref/net45/_._",
  7412. "ref/netcore50/System.Net.Primitives.dll",
  7413. "ref/netcore50/System.Net.Primitives.xml",
  7414. "ref/netcore50/de/System.Net.Primitives.xml",
  7415. "ref/netcore50/es/System.Net.Primitives.xml",
  7416. "ref/netcore50/fr/System.Net.Primitives.xml",
  7417. "ref/netcore50/it/System.Net.Primitives.xml",
  7418. "ref/netcore50/ja/System.Net.Primitives.xml",
  7419. "ref/netcore50/ko/System.Net.Primitives.xml",
  7420. "ref/netcore50/ru/System.Net.Primitives.xml",
  7421. "ref/netcore50/zh-hans/System.Net.Primitives.xml",
  7422. "ref/netcore50/zh-hant/System.Net.Primitives.xml",
  7423. "ref/netstandard1.0/System.Net.Primitives.dll",
  7424. "ref/netstandard1.0/System.Net.Primitives.xml",
  7425. "ref/netstandard1.0/de/System.Net.Primitives.xml",
  7426. "ref/netstandard1.0/es/System.Net.Primitives.xml",
  7427. "ref/netstandard1.0/fr/System.Net.Primitives.xml",
  7428. "ref/netstandard1.0/it/System.Net.Primitives.xml",
  7429. "ref/netstandard1.0/ja/System.Net.Primitives.xml",
  7430. "ref/netstandard1.0/ko/System.Net.Primitives.xml",
  7431. "ref/netstandard1.0/ru/System.Net.Primitives.xml",
  7432. "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml",
  7433. "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml",
  7434. "ref/netstandard1.1/System.Net.Primitives.dll",
  7435. "ref/netstandard1.1/System.Net.Primitives.xml",
  7436. "ref/netstandard1.1/de/System.Net.Primitives.xml",
  7437. "ref/netstandard1.1/es/System.Net.Primitives.xml",
  7438. "ref/netstandard1.1/fr/System.Net.Primitives.xml",
  7439. "ref/netstandard1.1/it/System.Net.Primitives.xml",
  7440. "ref/netstandard1.1/ja/System.Net.Primitives.xml",
  7441. "ref/netstandard1.1/ko/System.Net.Primitives.xml",
  7442. "ref/netstandard1.1/ru/System.Net.Primitives.xml",
  7443. "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml",
  7444. "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml",
  7445. "ref/netstandard1.3/System.Net.Primitives.dll",
  7446. "ref/netstandard1.3/System.Net.Primitives.xml",
  7447. "ref/netstandard1.3/de/System.Net.Primitives.xml",
  7448. "ref/netstandard1.3/es/System.Net.Primitives.xml",
  7449. "ref/netstandard1.3/fr/System.Net.Primitives.xml",
  7450. "ref/netstandard1.3/it/System.Net.Primitives.xml",
  7451. "ref/netstandard1.3/ja/System.Net.Primitives.xml",
  7452. "ref/netstandard1.3/ko/System.Net.Primitives.xml",
  7453. "ref/netstandard1.3/ru/System.Net.Primitives.xml",
  7454. "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml",
  7455. "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml",
  7456. "ref/portable-net45+win8+wp8+wpa81/_._",
  7457. "ref/win8/_._",
  7458. "ref/wp80/_._",
  7459. "ref/wpa81/_._",
  7460. "ref/xamarinios10/_._",
  7461. "ref/xamarinmac20/_._",
  7462. "ref/xamarintvos10/_._",
  7463. "ref/xamarinwatchos10/_._"
  7464. ]
  7465. },
  7466. "System.Net.Requests/4.0.11": {
  7467. "sha512": "MrvLsG/G/1UjIFIh9tFt2dO0k4V/CILA7yAv+lrIFmUtVdzBhF4ZG/sT/AaaGuchJJ16UEBBwP3ggPXlvVARcA==",
  7468. "type": "package",
  7469. "path": "System.Net.Requests/4.0.11",
  7470. "files": [
  7471. "System.Net.Requests.4.0.11.nupkg.sha512",
  7472. "System.Net.Requests.nuspec",
  7473. "ThirdPartyNotices.txt",
  7474. "dotnet_library_license.txt",
  7475. "lib/MonoAndroid10/_._",
  7476. "lib/MonoTouch10/_._",
  7477. "lib/net45/_._",
  7478. "lib/portable-net45+win8+wp8+wpa81/_._",
  7479. "lib/win8/_._",
  7480. "lib/wp80/_._",
  7481. "lib/wpa81/_._",
  7482. "lib/xamarinios10/_._",
  7483. "lib/xamarinmac20/_._",
  7484. "lib/xamarintvos10/_._",
  7485. "lib/xamarinwatchos10/_._",
  7486. "ref/MonoAndroid10/_._",
  7487. "ref/MonoTouch10/_._",
  7488. "ref/net45/_._",
  7489. "ref/net46/_._",
  7490. "ref/netcore50/System.Net.Requests.dll",
  7491. "ref/netcore50/System.Net.Requests.xml",
  7492. "ref/netcore50/de/System.Net.Requests.xml",
  7493. "ref/netcore50/es/System.Net.Requests.xml",
  7494. "ref/netcore50/fr/System.Net.Requests.xml",
  7495. "ref/netcore50/it/System.Net.Requests.xml",
  7496. "ref/netcore50/ja/System.Net.Requests.xml",
  7497. "ref/netcore50/ko/System.Net.Requests.xml",
  7498. "ref/netcore50/ru/System.Net.Requests.xml",
  7499. "ref/netcore50/zh-hans/System.Net.Requests.xml",
  7500. "ref/netcore50/zh-hant/System.Net.Requests.xml",
  7501. "ref/netstandard1.0/System.Net.Requests.dll",
  7502. "ref/netstandard1.0/System.Net.Requests.xml",
  7503. "ref/netstandard1.0/de/System.Net.Requests.xml",
  7504. "ref/netstandard1.0/es/System.Net.Requests.xml",
  7505. "ref/netstandard1.0/fr/System.Net.Requests.xml",
  7506. "ref/netstandard1.0/it/System.Net.Requests.xml",
  7507. "ref/netstandard1.0/ja/System.Net.Requests.xml",
  7508. "ref/netstandard1.0/ko/System.Net.Requests.xml",
  7509. "ref/netstandard1.0/ru/System.Net.Requests.xml",
  7510. "ref/netstandard1.0/zh-hans/System.Net.Requests.xml",
  7511. "ref/netstandard1.0/zh-hant/System.Net.Requests.xml",
  7512. "ref/netstandard1.1/System.Net.Requests.dll",
  7513. "ref/netstandard1.1/System.Net.Requests.xml",
  7514. "ref/netstandard1.1/de/System.Net.Requests.xml",
  7515. "ref/netstandard1.1/es/System.Net.Requests.xml",
  7516. "ref/netstandard1.1/fr/System.Net.Requests.xml",
  7517. "ref/netstandard1.1/it/System.Net.Requests.xml",
  7518. "ref/netstandard1.1/ja/System.Net.Requests.xml",
  7519. "ref/netstandard1.1/ko/System.Net.Requests.xml",
  7520. "ref/netstandard1.1/ru/System.Net.Requests.xml",
  7521. "ref/netstandard1.1/zh-hans/System.Net.Requests.xml",
  7522. "ref/netstandard1.1/zh-hant/System.Net.Requests.xml",
  7523. "ref/netstandard1.3/System.Net.Requests.dll",
  7524. "ref/netstandard1.3/System.Net.Requests.xml",
  7525. "ref/netstandard1.3/de/System.Net.Requests.xml",
  7526. "ref/netstandard1.3/es/System.Net.Requests.xml",
  7527. "ref/netstandard1.3/fr/System.Net.Requests.xml",
  7528. "ref/netstandard1.3/it/System.Net.Requests.xml",
  7529. "ref/netstandard1.3/ja/System.Net.Requests.xml",
  7530. "ref/netstandard1.3/ko/System.Net.Requests.xml",
  7531. "ref/netstandard1.3/ru/System.Net.Requests.xml",
  7532. "ref/netstandard1.3/zh-hans/System.Net.Requests.xml",
  7533. "ref/netstandard1.3/zh-hant/System.Net.Requests.xml",
  7534. "ref/portable-net45+win8+wp8+wpa81/_._",
  7535. "ref/win8/_._",
  7536. "ref/wp80/_._",
  7537. "ref/wpa81/_._",
  7538. "ref/xamarinios10/_._",
  7539. "ref/xamarinmac20/_._",
  7540. "ref/xamarintvos10/_._",
  7541. "ref/xamarinwatchos10/_._",
  7542. "runtimes/unix/lib/netstandard1.3/System.Net.Requests.dll",
  7543. "runtimes/win/lib/net46/_._",
  7544. "runtimes/win/lib/netstandard1.3/System.Net.Requests.dll"
  7545. ]
  7546. },
  7547. "System.Net.Security/4.0.0": {
  7548. "sha512": "VDAJz83kg0UpbDI8dx97T8lpATcoowky6BYvVYqKAyWUeZ8dDS/SOUi8PciD4bYrnDEmpJpCxOZgxX2/VO+QxQ==",
  7549. "type": "package",
  7550. "path": "System.Net.Security/4.0.0",
  7551. "files": [
  7552. "System.Net.Security.4.0.0.nupkg.sha512",
  7553. "System.Net.Security.nuspec",
  7554. "ThirdPartyNotices.txt",
  7555. "dotnet_library_license.txt",
  7556. "lib/MonoAndroid10/_._",
  7557. "lib/MonoTouch10/_._",
  7558. "lib/net46/System.Net.Security.dll",
  7559. "lib/xamarinios10/_._",
  7560. "lib/xamarinmac20/_._",
  7561. "lib/xamarintvos10/_._",
  7562. "lib/xamarinwatchos10/_._",
  7563. "ref/MonoAndroid10/_._",
  7564. "ref/MonoTouch10/_._",
  7565. "ref/net46/System.Net.Security.dll",
  7566. "ref/netstandard1.3/System.Net.Security.dll",
  7567. "ref/netstandard1.3/System.Net.Security.xml",
  7568. "ref/netstandard1.3/de/System.Net.Security.xml",
  7569. "ref/netstandard1.3/es/System.Net.Security.xml",
  7570. "ref/netstandard1.3/fr/System.Net.Security.xml",
  7571. "ref/netstandard1.3/it/System.Net.Security.xml",
  7572. "ref/netstandard1.3/ja/System.Net.Security.xml",
  7573. "ref/netstandard1.3/ko/System.Net.Security.xml",
  7574. "ref/netstandard1.3/ru/System.Net.Security.xml",
  7575. "ref/netstandard1.3/zh-hans/System.Net.Security.xml",
  7576. "ref/netstandard1.3/zh-hant/System.Net.Security.xml",
  7577. "ref/xamarinios10/_._",
  7578. "ref/xamarinmac20/_._",
  7579. "ref/xamarintvos10/_._",
  7580. "ref/xamarinwatchos10/_._",
  7581. "runtimes/unix/lib/netstandard1.6/System.Net.Security.dll",
  7582. "runtimes/win/lib/net46/System.Net.Security.dll",
  7583. "runtimes/win/lib/netstandard1.3/System.Net.Security.dll",
  7584. "runtimes/win7/lib/netcore50/_._"
  7585. ]
  7586. },
  7587. "System.Net.Sockets/4.3.0": {
  7588. "sha512": "KtqIgQ1TFnwpL/0fbB9pYZg3NzcOfTsC0GCx1a+w3MLkNCcyRs/F/UjunKzRDp5L9zWsKV822IyNuukxjgGuww==",
  7589. "type": "package",
  7590. "path": "System.Net.Sockets/4.3.0",
  7591. "files": [
  7592. "System.Net.Sockets.4.3.0.nupkg.sha512",
  7593. "System.Net.Sockets.nuspec",
  7594. "ThirdPartyNotices.txt",
  7595. "dotnet_library_license.txt",
  7596. "lib/MonoAndroid10/_._",
  7597. "lib/MonoTouch10/_._",
  7598. "lib/net46/System.Net.Sockets.dll",
  7599. "lib/xamarinios10/_._",
  7600. "lib/xamarinmac20/_._",
  7601. "lib/xamarintvos10/_._",
  7602. "lib/xamarinwatchos10/_._",
  7603. "ref/MonoAndroid10/_._",
  7604. "ref/MonoTouch10/_._",
  7605. "ref/net46/System.Net.Sockets.dll",
  7606. "ref/netstandard1.3/System.Net.Sockets.dll",
  7607. "ref/netstandard1.3/System.Net.Sockets.xml",
  7608. "ref/netstandard1.3/de/System.Net.Sockets.xml",
  7609. "ref/netstandard1.3/es/System.Net.Sockets.xml",
  7610. "ref/netstandard1.3/fr/System.Net.Sockets.xml",
  7611. "ref/netstandard1.3/it/System.Net.Sockets.xml",
  7612. "ref/netstandard1.3/ja/System.Net.Sockets.xml",
  7613. "ref/netstandard1.3/ko/System.Net.Sockets.xml",
  7614. "ref/netstandard1.3/ru/System.Net.Sockets.xml",
  7615. "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml",
  7616. "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml",
  7617. "ref/xamarinios10/_._",
  7618. "ref/xamarinmac20/_._",
  7619. "ref/xamarintvos10/_._",
  7620. "ref/xamarinwatchos10/_._"
  7621. ]
  7622. },
  7623. "System.Net.WebHeaderCollection/4.0.1": {
  7624. "sha512": "1wzUZ5bS+Tt2nbj75+BxWiTFgrcigDQHfWWoXJzz1LdvPCwkgkbbi+tqojxWnGy17Sm7t57zQLdWMVNvqU+OMw==",
  7625. "type": "package",
  7626. "path": "System.Net.WebHeaderCollection/4.0.1",
  7627. "files": [
  7628. "System.Net.WebHeaderCollection.4.0.1.nupkg.sha512",
  7629. "System.Net.WebHeaderCollection.nuspec",
  7630. "ThirdPartyNotices.txt",
  7631. "dotnet_library_license.txt",
  7632. "lib/MonoAndroid10/_._",
  7633. "lib/MonoTouch10/_._",
  7634. "lib/net46/_._",
  7635. "lib/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7636. "lib/xamarinios10/_._",
  7637. "lib/xamarinmac20/_._",
  7638. "lib/xamarintvos10/_._",
  7639. "lib/xamarinwatchos10/_._",
  7640. "ref/MonoAndroid10/_._",
  7641. "ref/MonoTouch10/_._",
  7642. "ref/net46/_._",
  7643. "ref/netstandard1.3/System.Net.WebHeaderCollection.dll",
  7644. "ref/netstandard1.3/System.Net.WebHeaderCollection.xml",
  7645. "ref/netstandard1.3/de/System.Net.WebHeaderCollection.xml",
  7646. "ref/netstandard1.3/es/System.Net.WebHeaderCollection.xml",
  7647. "ref/netstandard1.3/fr/System.Net.WebHeaderCollection.xml",
  7648. "ref/netstandard1.3/it/System.Net.WebHeaderCollection.xml",
  7649. "ref/netstandard1.3/ja/System.Net.WebHeaderCollection.xml",
  7650. "ref/netstandard1.3/ko/System.Net.WebHeaderCollection.xml",
  7651. "ref/netstandard1.3/ru/System.Net.WebHeaderCollection.xml",
  7652. "ref/netstandard1.3/zh-hans/System.Net.WebHeaderCollection.xml",
  7653. "ref/netstandard1.3/zh-hant/System.Net.WebHeaderCollection.xml",
  7654. "ref/xamarinios10/_._",
  7655. "ref/xamarinmac20/_._",
  7656. "ref/xamarintvos10/_._",
  7657. "ref/xamarinwatchos10/_._"
  7658. ]
  7659. },
  7660. "System.Net.WebSockets/4.3.0": {
  7661. "sha512": "B4lrKZVGE6lp1OKhkIk+Nyapq0hM6x61WHB2pwa70E1BPl67raIynuUWH6usxdVye4T7Tp4o7yA20po03mNbhA==",
  7662. "type": "package",
  7663. "path": "System.Net.WebSockets/4.3.0",
  7664. "files": [
  7665. "System.Net.WebSockets.4.3.0.nupkg.sha512",
  7666. "System.Net.WebSockets.nuspec",
  7667. "ThirdPartyNotices.txt",
  7668. "dotnet_library_license.txt",
  7669. "lib/MonoAndroid10/_._",
  7670. "lib/MonoTouch10/_._",
  7671. "lib/net46/System.Net.WebSockets.dll",
  7672. "lib/netstandard1.3/System.Net.WebSockets.dll",
  7673. "lib/xamarinios10/_._",
  7674. "lib/xamarinmac20/_._",
  7675. "lib/xamarintvos10/_._",
  7676. "lib/xamarinwatchos10/_._",
  7677. "ref/MonoAndroid10/_._",
  7678. "ref/MonoTouch10/_._",
  7679. "ref/net46/System.Net.WebSockets.dll",
  7680. "ref/netstandard1.3/System.Net.WebSockets.dll",
  7681. "ref/netstandard1.3/System.Net.WebSockets.xml",
  7682. "ref/netstandard1.3/de/System.Net.WebSockets.xml",
  7683. "ref/netstandard1.3/es/System.Net.WebSockets.xml",
  7684. "ref/netstandard1.3/fr/System.Net.WebSockets.xml",
  7685. "ref/netstandard1.3/it/System.Net.WebSockets.xml",
  7686. "ref/netstandard1.3/ja/System.Net.WebSockets.xml",
  7687. "ref/netstandard1.3/ko/System.Net.WebSockets.xml",
  7688. "ref/netstandard1.3/ru/System.Net.WebSockets.xml",
  7689. "ref/netstandard1.3/zh-hans/System.Net.WebSockets.xml",
  7690. "ref/netstandard1.3/zh-hant/System.Net.WebSockets.xml",
  7691. "ref/xamarinios10/_._",
  7692. "ref/xamarinmac20/_._",
  7693. "ref/xamarintvos10/_._",
  7694. "ref/xamarinwatchos10/_._"
  7695. ]
  7696. },
  7697. "System.Numerics.Vectors/4.1.1": {
  7698. "sha512": "lwrxnXsh0D6LMkShlrOit+NPn+BwEFn+q7Ul00BgIlDHQ3iWRQYY/aNV11PsIEWgreHV06wiN83G/fWp4n58CA==",
  7699. "type": "package",
  7700. "path": "System.Numerics.Vectors/4.1.1",
  7701. "files": [
  7702. "System.Numerics.Vectors.4.1.1.nupkg.sha512",
  7703. "System.Numerics.Vectors.nuspec",
  7704. "ThirdPartyNotices.txt",
  7705. "dotnet_library_license.txt",
  7706. "lib/MonoAndroid10/_._",
  7707. "lib/MonoTouch10/_._",
  7708. "lib/net46/System.Numerics.Vectors.dll",
  7709. "lib/net46/System.Numerics.Vectors.xml",
  7710. "lib/netstandard1.0/System.Numerics.Vectors.dll",
  7711. "lib/netstandard1.0/System.Numerics.Vectors.xml",
  7712. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
  7713. "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
  7714. "lib/xamarinios10/_._",
  7715. "lib/xamarinmac20/_._",
  7716. "lib/xamarintvos10/_._",
  7717. "lib/xamarinwatchos10/_._",
  7718. "ref/MonoAndroid10/_._",
  7719. "ref/MonoTouch10/_._",
  7720. "ref/net46/System.Numerics.Vectors.dll",
  7721. "ref/net46/System.Numerics.Vectors.xml",
  7722. "ref/netstandard1.0/System.Numerics.Vectors.dll",
  7723. "ref/netstandard1.0/System.Numerics.Vectors.xml",
  7724. "ref/xamarinios10/_._",
  7725. "ref/xamarinmac20/_._",
  7726. "ref/xamarintvos10/_._",
  7727. "ref/xamarinwatchos10/_._"
  7728. ]
  7729. },
  7730. "System.ObjectModel/4.3.0": {
  7731. "sha512": "04rvkI2O4vQW06QHRKPOlMMjLwKPyHpFjOgSq3YtQqzoVy8lzaC/CtbhHJzb6E2/0hP6gMCxFz0cOvTOUoLa2g==",
  7732. "type": "package",
  7733. "path": "System.ObjectModel/4.3.0",
  7734. "files": [
  7735. "System.ObjectModel.4.3.0.nupkg.sha512",
  7736. "System.ObjectModel.nuspec",
  7737. "ThirdPartyNotices.txt",
  7738. "dotnet_library_license.txt",
  7739. "lib/MonoAndroid10/_._",
  7740. "lib/MonoTouch10/_._",
  7741. "lib/net45/_._",
  7742. "lib/netcore50/System.ObjectModel.dll",
  7743. "lib/netstandard1.3/System.ObjectModel.dll",
  7744. "lib/portable-net45+win8+wp8+wpa81/_._",
  7745. "lib/win8/_._",
  7746. "lib/wp80/_._",
  7747. "lib/wpa81/_._",
  7748. "lib/xamarinios10/_._",
  7749. "lib/xamarinmac20/_._",
  7750. "lib/xamarintvos10/_._",
  7751. "lib/xamarinwatchos10/_._",
  7752. "ref/MonoAndroid10/_._",
  7753. "ref/MonoTouch10/_._",
  7754. "ref/net45/_._",
  7755. "ref/netcore50/System.ObjectModel.dll",
  7756. "ref/netcore50/System.ObjectModel.xml",
  7757. "ref/netcore50/de/System.ObjectModel.xml",
  7758. "ref/netcore50/es/System.ObjectModel.xml",
  7759. "ref/netcore50/fr/System.ObjectModel.xml",
  7760. "ref/netcore50/it/System.ObjectModel.xml",
  7761. "ref/netcore50/ja/System.ObjectModel.xml",
  7762. "ref/netcore50/ko/System.ObjectModel.xml",
  7763. "ref/netcore50/ru/System.ObjectModel.xml",
  7764. "ref/netcore50/zh-hans/System.ObjectModel.xml",
  7765. "ref/netcore50/zh-hant/System.ObjectModel.xml",
  7766. "ref/netstandard1.0/System.ObjectModel.dll",
  7767. "ref/netstandard1.0/System.ObjectModel.xml",
  7768. "ref/netstandard1.0/de/System.ObjectModel.xml",
  7769. "ref/netstandard1.0/es/System.ObjectModel.xml",
  7770. "ref/netstandard1.0/fr/System.ObjectModel.xml",
  7771. "ref/netstandard1.0/it/System.ObjectModel.xml",
  7772. "ref/netstandard1.0/ja/System.ObjectModel.xml",
  7773. "ref/netstandard1.0/ko/System.ObjectModel.xml",
  7774. "ref/netstandard1.0/ru/System.ObjectModel.xml",
  7775. "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
  7776. "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
  7777. "ref/netstandard1.3/System.ObjectModel.dll",
  7778. "ref/netstandard1.3/System.ObjectModel.xml",
  7779. "ref/netstandard1.3/de/System.ObjectModel.xml",
  7780. "ref/netstandard1.3/es/System.ObjectModel.xml",
  7781. "ref/netstandard1.3/fr/System.ObjectModel.xml",
  7782. "ref/netstandard1.3/it/System.ObjectModel.xml",
  7783. "ref/netstandard1.3/ja/System.ObjectModel.xml",
  7784. "ref/netstandard1.3/ko/System.ObjectModel.xml",
  7785. "ref/netstandard1.3/ru/System.ObjectModel.xml",
  7786. "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
  7787. "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
  7788. "ref/portable-net45+win8+wp8+wpa81/_._",
  7789. "ref/win8/_._",
  7790. "ref/wp80/_._",
  7791. "ref/wpa81/_._",
  7792. "ref/xamarinios10/_._",
  7793. "ref/xamarinmac20/_._",
  7794. "ref/xamarintvos10/_._",
  7795. "ref/xamarinwatchos10/_._"
  7796. ]
  7797. },
  7798. "System.Reflection/4.3.0": {
  7799. "sha512": "rIm0+BBrDLfCzhbIrVlqqrYxjqUS1/KIV0HLsVG2cN5PGGOyVTpnged4vC2YL5yHnPaqKJgqhU5Sk+2RnEbmfw==",
  7800. "type": "package",
  7801. "path": "System.Reflection/4.3.0",
  7802. "files": [
  7803. "System.Reflection.4.3.0.nupkg.sha512",
  7804. "System.Reflection.nuspec",
  7805. "ThirdPartyNotices.txt",
  7806. "dotnet_library_license.txt",
  7807. "lib/MonoAndroid10/_._",
  7808. "lib/MonoTouch10/_._",
  7809. "lib/net45/_._",
  7810. "lib/net462/System.Reflection.dll",
  7811. "lib/portable-net45+win8+wp8+wpa81/_._",
  7812. "lib/win8/_._",
  7813. "lib/wp80/_._",
  7814. "lib/wpa81/_._",
  7815. "lib/xamarinios10/_._",
  7816. "lib/xamarinmac20/_._",
  7817. "lib/xamarintvos10/_._",
  7818. "lib/xamarinwatchos10/_._",
  7819. "ref/MonoAndroid10/_._",
  7820. "ref/MonoTouch10/_._",
  7821. "ref/net45/_._",
  7822. "ref/net462/System.Reflection.dll",
  7823. "ref/netcore50/System.Reflection.dll",
  7824. "ref/netcore50/System.Reflection.xml",
  7825. "ref/netcore50/de/System.Reflection.xml",
  7826. "ref/netcore50/es/System.Reflection.xml",
  7827. "ref/netcore50/fr/System.Reflection.xml",
  7828. "ref/netcore50/it/System.Reflection.xml",
  7829. "ref/netcore50/ja/System.Reflection.xml",
  7830. "ref/netcore50/ko/System.Reflection.xml",
  7831. "ref/netcore50/ru/System.Reflection.xml",
  7832. "ref/netcore50/zh-hans/System.Reflection.xml",
  7833. "ref/netcore50/zh-hant/System.Reflection.xml",
  7834. "ref/netstandard1.0/System.Reflection.dll",
  7835. "ref/netstandard1.0/System.Reflection.xml",
  7836. "ref/netstandard1.0/de/System.Reflection.xml",
  7837. "ref/netstandard1.0/es/System.Reflection.xml",
  7838. "ref/netstandard1.0/fr/System.Reflection.xml",
  7839. "ref/netstandard1.0/it/System.Reflection.xml",
  7840. "ref/netstandard1.0/ja/System.Reflection.xml",
  7841. "ref/netstandard1.0/ko/System.Reflection.xml",
  7842. "ref/netstandard1.0/ru/System.Reflection.xml",
  7843. "ref/netstandard1.0/zh-hans/System.Reflection.xml",
  7844. "ref/netstandard1.0/zh-hant/System.Reflection.xml",
  7845. "ref/netstandard1.3/System.Reflection.dll",
  7846. "ref/netstandard1.3/System.Reflection.xml",
  7847. "ref/netstandard1.3/de/System.Reflection.xml",
  7848. "ref/netstandard1.3/es/System.Reflection.xml",
  7849. "ref/netstandard1.3/fr/System.Reflection.xml",
  7850. "ref/netstandard1.3/it/System.Reflection.xml",
  7851. "ref/netstandard1.3/ja/System.Reflection.xml",
  7852. "ref/netstandard1.3/ko/System.Reflection.xml",
  7853. "ref/netstandard1.3/ru/System.Reflection.xml",
  7854. "ref/netstandard1.3/zh-hans/System.Reflection.xml",
  7855. "ref/netstandard1.3/zh-hant/System.Reflection.xml",
  7856. "ref/netstandard1.5/System.Reflection.dll",
  7857. "ref/netstandard1.5/System.Reflection.xml",
  7858. "ref/netstandard1.5/de/System.Reflection.xml",
  7859. "ref/netstandard1.5/es/System.Reflection.xml",
  7860. "ref/netstandard1.5/fr/System.Reflection.xml",
  7861. "ref/netstandard1.5/it/System.Reflection.xml",
  7862. "ref/netstandard1.5/ja/System.Reflection.xml",
  7863. "ref/netstandard1.5/ko/System.Reflection.xml",
  7864. "ref/netstandard1.5/ru/System.Reflection.xml",
  7865. "ref/netstandard1.5/zh-hans/System.Reflection.xml",
  7866. "ref/netstandard1.5/zh-hant/System.Reflection.xml",
  7867. "ref/portable-net45+win8+wp8+wpa81/_._",
  7868. "ref/win8/_._",
  7869. "ref/wp80/_._",
  7870. "ref/wpa81/_._",
  7871. "ref/xamarinios10/_._",
  7872. "ref/xamarinmac20/_._",
  7873. "ref/xamarintvos10/_._",
  7874. "ref/xamarinwatchos10/_._"
  7875. ]
  7876. },
  7877. "System.Reflection.DispatchProxy/4.0.1": {
  7878. "sha512": "SsEK/GSCyMWk4CvftyexYZjKKPE+9HjrlKo7F9AqErUffgqDQh60sm90C4YLA8xfq90ymJL/veXl/OewOQ/Hyw==",
  7879. "type": "package",
  7880. "path": "System.Reflection.DispatchProxy/4.0.1",
  7881. "files": [
  7882. "System.Reflection.DispatchProxy.4.0.1.nupkg.sha512",
  7883. "System.Reflection.DispatchProxy.nuspec",
  7884. "ThirdPartyNotices.txt",
  7885. "dotnet_library_license.txt",
  7886. "lib/MonoAndroid10/_._",
  7887. "lib/MonoTouch10/_._",
  7888. "lib/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7889. "lib/xamarinios10/_._",
  7890. "lib/xamarinmac20/_._",
  7891. "lib/xamarintvos10/_._",
  7892. "lib/xamarinwatchos10/_._",
  7893. "ref/MonoAndroid10/_._",
  7894. "ref/MonoTouch10/_._",
  7895. "ref/netstandard1.3/System.Reflection.DispatchProxy.dll",
  7896. "ref/netstandard1.3/System.Reflection.DispatchProxy.xml",
  7897. "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml",
  7898. "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml",
  7899. "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml",
  7900. "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml",
  7901. "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml",
  7902. "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml",
  7903. "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml",
  7904. "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml",
  7905. "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml",
  7906. "ref/xamarinios10/_._",
  7907. "ref/xamarinmac20/_._",
  7908. "ref/xamarintvos10/_._",
  7909. "ref/xamarinwatchos10/_._",
  7910. "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll"
  7911. ]
  7912. },
  7913. "System.Reflection.Emit/4.3.0": {
  7914. "sha512": "y0LBLyMUaxkALaxB8vhoIDC3kxRW8ASkL7cK86kbN2CpauEWE+SPGUbca2inK+HMPImkN9ut74l4DSnB30ozFQ==",
  7915. "type": "package",
  7916. "path": "System.Reflection.Emit/4.3.0",
  7917. "files": [
  7918. "System.Reflection.Emit.4.3.0.nupkg.sha512",
  7919. "System.Reflection.Emit.nuspec",
  7920. "ThirdPartyNotices.txt",
  7921. "dotnet_library_license.txt",
  7922. "lib/MonoAndroid10/_._",
  7923. "lib/monotouch10/_._",
  7924. "lib/net45/_._",
  7925. "lib/netcore50/System.Reflection.Emit.dll",
  7926. "lib/netstandard1.3/System.Reflection.Emit.dll",
  7927. "lib/xamarinios10/_._",
  7928. "lib/xamarinmac20/_._",
  7929. "lib/xamarintvos10/_._",
  7930. "lib/xamarinwatchos10/_._",
  7931. "ref/MonoAndroid10/_._",
  7932. "ref/net45/_._",
  7933. "ref/netstandard1.1/System.Reflection.Emit.dll",
  7934. "ref/netstandard1.1/System.Reflection.Emit.xml",
  7935. "ref/netstandard1.1/de/System.Reflection.Emit.xml",
  7936. "ref/netstandard1.1/es/System.Reflection.Emit.xml",
  7937. "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
  7938. "ref/netstandard1.1/it/System.Reflection.Emit.xml",
  7939. "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
  7940. "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
  7941. "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
  7942. "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
  7943. "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
  7944. "ref/xamarinmac20/_._"
  7945. ]
  7946. },
  7947. "System.Reflection.Emit.ILGeneration/4.3.0": {
  7948. "sha512": "gESuD3AAQLwwD3up3lCmH0vi0sPq2E4Zi7nx4hUkuqSXm7dF4kuQqrWkKgrT2F+HHG9oxf1p/t1s+VC2jKcFmQ==",
  7949. "type": "package",
  7950. "path": "System.Reflection.Emit.ILGeneration/4.3.0",
  7951. "files": [
  7952. "System.Reflection.Emit.ILGeneration.4.3.0.nupkg.sha512",
  7953. "System.Reflection.Emit.ILGeneration.nuspec",
  7954. "ThirdPartyNotices.txt",
  7955. "dotnet_library_license.txt",
  7956. "lib/MonoAndroid10/_._",
  7957. "lib/MonoTouch10/_._",
  7958. "lib/net45/_._",
  7959. "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
  7960. "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
  7961. "lib/portable-net45+wp8/_._",
  7962. "lib/wp80/_._",
  7963. "lib/xamarinios10/_._",
  7964. "lib/xamarinmac20/_._",
  7965. "lib/xamarintvos10/_._",
  7966. "lib/xamarinwatchos10/_._",
  7967. "ref/MonoAndroid10/_._",
  7968. "ref/MonoTouch10/_._",
  7969. "ref/net45/_._",
  7970. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
  7971. "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
  7972. "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
  7973. "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
  7974. "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
  7975. "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
  7976. "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
  7977. "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
  7978. "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
  7979. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
  7980. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
  7981. "ref/portable-net45+wp8/_._",
  7982. "ref/wp80/_._",
  7983. "ref/xamarinios10/_._",
  7984. "ref/xamarinmac20/_._",
  7985. "ref/xamarintvos10/_._",
  7986. "ref/xamarinwatchos10/_._",
  7987. "runtimes/aot/lib/netcore50/_._"
  7988. ]
  7989. },
  7990. "System.Reflection.Emit.Lightweight/4.3.0": {
  7991. "sha512": "17M3uPACyrdLG/RZoY6irUI6WhLXPL8AnTUt6og3/ko3kgAwxe8jFT6m9mAQ44qVElUlBhqLb9G+iDp54GyrNg==",
  7992. "type": "package",
  7993. "path": "System.Reflection.Emit.Lightweight/4.3.0",
  7994. "files": [
  7995. "System.Reflection.Emit.Lightweight.4.3.0.nupkg.sha512",
  7996. "System.Reflection.Emit.Lightweight.nuspec",
  7997. "ThirdPartyNotices.txt",
  7998. "dotnet_library_license.txt",
  7999. "lib/MonoAndroid10/_._",
  8000. "lib/MonoTouch10/_._",
  8001. "lib/net45/_._",
  8002. "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
  8003. "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
  8004. "lib/portable-net45+wp8/_._",
  8005. "lib/wp80/_._",
  8006. "lib/xamarinios10/_._",
  8007. "lib/xamarinmac20/_._",
  8008. "lib/xamarintvos10/_._",
  8009. "lib/xamarinwatchos10/_._",
  8010. "ref/MonoAndroid10/_._",
  8011. "ref/MonoTouch10/_._",
  8012. "ref/net45/_._",
  8013. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
  8014. "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
  8015. "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
  8016. "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
  8017. "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
  8018. "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
  8019. "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
  8020. "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
  8021. "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
  8022. "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
  8023. "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
  8024. "ref/portable-net45+wp8/_._",
  8025. "ref/wp80/_._",
  8026. "ref/xamarinios10/_._",
  8027. "ref/xamarinmac20/_._",
  8028. "ref/xamarintvos10/_._",
  8029. "ref/xamarinwatchos10/_._",
  8030. "runtimes/aot/lib/netcore50/_._"
  8031. ]
  8032. },
  8033. "System.Reflection.Extensions/4.3.0": {
  8034. "sha512": "TmoUwQELjPHz4mM5iiCbsqlh7pGvmbD+9zkXWQLlVR7xJaBb+KX/j41nXyX4iTqs7JEdojvT3kt/u7ZCW2TjbA==",
  8035. "type": "package",
  8036. "path": "System.Reflection.Extensions/4.3.0",
  8037. "files": [
  8038. "System.Reflection.Extensions.4.3.0.nupkg.sha512",
  8039. "System.Reflection.Extensions.nuspec",
  8040. "ThirdPartyNotices.txt",
  8041. "dotnet_library_license.txt",
  8042. "lib/MonoAndroid10/_._",
  8043. "lib/MonoTouch10/_._",
  8044. "lib/net45/_._",
  8045. "lib/portable-net45+win8+wp8+wpa81/_._",
  8046. "lib/win8/_._",
  8047. "lib/wp80/_._",
  8048. "lib/wpa81/_._",
  8049. "lib/xamarinios10/_._",
  8050. "lib/xamarinmac20/_._",
  8051. "lib/xamarintvos10/_._",
  8052. "lib/xamarinwatchos10/_._",
  8053. "ref/MonoAndroid10/_._",
  8054. "ref/MonoTouch10/_._",
  8055. "ref/net45/_._",
  8056. "ref/netcore50/System.Reflection.Extensions.dll",
  8057. "ref/netcore50/System.Reflection.Extensions.xml",
  8058. "ref/netcore50/de/System.Reflection.Extensions.xml",
  8059. "ref/netcore50/es/System.Reflection.Extensions.xml",
  8060. "ref/netcore50/fr/System.Reflection.Extensions.xml",
  8061. "ref/netcore50/it/System.Reflection.Extensions.xml",
  8062. "ref/netcore50/ja/System.Reflection.Extensions.xml",
  8063. "ref/netcore50/ko/System.Reflection.Extensions.xml",
  8064. "ref/netcore50/ru/System.Reflection.Extensions.xml",
  8065. "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
  8066. "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
  8067. "ref/netstandard1.0/System.Reflection.Extensions.dll",
  8068. "ref/netstandard1.0/System.Reflection.Extensions.xml",
  8069. "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
  8070. "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
  8071. "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
  8072. "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
  8073. "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
  8074. "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
  8075. "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
  8076. "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
  8077. "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
  8078. "ref/portable-net45+win8+wp8+wpa81/_._",
  8079. "ref/win8/_._",
  8080. "ref/wp80/_._",
  8081. "ref/wpa81/_._",
  8082. "ref/xamarinios10/_._",
  8083. "ref/xamarinmac20/_._",
  8084. "ref/xamarintvos10/_._",
  8085. "ref/xamarinwatchos10/_._"
  8086. ]
  8087. },
  8088. "System.Reflection.Metadata/1.3.0": {
  8089. "sha512": "F/bOSVnz+UaCELtSm4tlrWNwUTRSMfxIxmQZNZM/SY144LXkaGWuc4WAtr/jQHbiWl7UEAHlJU7P59Rw72A1xA==",
  8090. "type": "package",
  8091. "path": "System.Reflection.Metadata/1.3.0",
  8092. "files": [
  8093. "System.Reflection.Metadata.1.3.0.nupkg.sha512",
  8094. "System.Reflection.Metadata.nuspec",
  8095. "ThirdPartyNotices.txt",
  8096. "dotnet_library_license.txt",
  8097. "lib/netstandard1.1/System.Reflection.Metadata.dll",
  8098. "lib/netstandard1.1/System.Reflection.Metadata.xml",
  8099. "lib/portable-net45+win8/System.Reflection.Metadata.dll",
  8100. "lib/portable-net45+win8/System.Reflection.Metadata.xml"
  8101. ]
  8102. },
  8103. "System.Reflection.Primitives/4.3.0": {
  8104. "sha512": "nOjHLSGyMAcNd4KHC6+VQguBjVfSJ/GiGfofmVRvctMB/nZPFuc1ttpa7VUf2Jjae44fOQFgr1omhbKOGykaQA==",
  8105. "type": "package",
  8106. "path": "System.Reflection.Primitives/4.3.0",
  8107. "files": [
  8108. "System.Reflection.Primitives.4.3.0.nupkg.sha512",
  8109. "System.Reflection.Primitives.nuspec",
  8110. "ThirdPartyNotices.txt",
  8111. "dotnet_library_license.txt",
  8112. "lib/MonoAndroid10/_._",
  8113. "lib/MonoTouch10/_._",
  8114. "lib/net45/_._",
  8115. "lib/portable-net45+win8+wp8+wpa81/_._",
  8116. "lib/win8/_._",
  8117. "lib/wp80/_._",
  8118. "lib/wpa81/_._",
  8119. "lib/xamarinios10/_._",
  8120. "lib/xamarinmac20/_._",
  8121. "lib/xamarintvos10/_._",
  8122. "lib/xamarinwatchos10/_._",
  8123. "ref/MonoAndroid10/_._",
  8124. "ref/MonoTouch10/_._",
  8125. "ref/net45/_._",
  8126. "ref/netcore50/System.Reflection.Primitives.dll",
  8127. "ref/netcore50/System.Reflection.Primitives.xml",
  8128. "ref/netcore50/de/System.Reflection.Primitives.xml",
  8129. "ref/netcore50/es/System.Reflection.Primitives.xml",
  8130. "ref/netcore50/fr/System.Reflection.Primitives.xml",
  8131. "ref/netcore50/it/System.Reflection.Primitives.xml",
  8132. "ref/netcore50/ja/System.Reflection.Primitives.xml",
  8133. "ref/netcore50/ko/System.Reflection.Primitives.xml",
  8134. "ref/netcore50/ru/System.Reflection.Primitives.xml",
  8135. "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
  8136. "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
  8137. "ref/netstandard1.0/System.Reflection.Primitives.dll",
  8138. "ref/netstandard1.0/System.Reflection.Primitives.xml",
  8139. "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
  8140. "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
  8141. "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
  8142. "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
  8143. "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
  8144. "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
  8145. "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
  8146. "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
  8147. "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
  8148. "ref/portable-net45+win8+wp8+wpa81/_._",
  8149. "ref/win8/_._",
  8150. "ref/wp80/_._",
  8151. "ref/wpa81/_._",
  8152. "ref/xamarinios10/_._",
  8153. "ref/xamarinmac20/_._",
  8154. "ref/xamarintvos10/_._",
  8155. "ref/xamarinwatchos10/_._"
  8156. ]
  8157. },
  8158. "System.Reflection.TypeExtensions/4.3.0": {
  8159. "sha512": "mBE8znhdqUyHut5iu/mvMPzh0QWkWimCvddJso+6nqOmbte4XHEY1nzDw9uUW52F6NrueuD2lgx6aY+IY+l2pA==",
  8160. "type": "package",
  8161. "path": "System.Reflection.TypeExtensions/4.3.0",
  8162. "files": [
  8163. "System.Reflection.TypeExtensions.4.3.0.nupkg.sha512",
  8164. "System.Reflection.TypeExtensions.nuspec",
  8165. "ThirdPartyNotices.txt",
  8166. "dotnet_library_license.txt",
  8167. "lib/MonoAndroid10/_._",
  8168. "lib/MonoTouch10/_._",
  8169. "lib/net46/System.Reflection.TypeExtensions.dll",
  8170. "lib/net462/System.Reflection.TypeExtensions.dll",
  8171. "lib/netcore50/System.Reflection.TypeExtensions.dll",
  8172. "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8173. "lib/xamarinios10/_._",
  8174. "lib/xamarinmac20/_._",
  8175. "lib/xamarintvos10/_._",
  8176. "lib/xamarinwatchos10/_._",
  8177. "ref/MonoAndroid10/_._",
  8178. "ref/MonoTouch10/_._",
  8179. "ref/net46/System.Reflection.TypeExtensions.dll",
  8180. "ref/net462/System.Reflection.TypeExtensions.dll",
  8181. "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
  8182. "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
  8183. "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
  8184. "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
  8185. "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
  8186. "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
  8187. "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
  8188. "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
  8189. "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
  8190. "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
  8191. "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
  8192. "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
  8193. "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
  8194. "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
  8195. "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
  8196. "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
  8197. "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
  8198. "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
  8199. "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
  8200. "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
  8201. "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
  8202. "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
  8203. "ref/xamarinios10/_._",
  8204. "ref/xamarinmac20/_._",
  8205. "ref/xamarintvos10/_._",
  8206. "ref/xamarinwatchos10/_._",
  8207. "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll"
  8208. ]
  8209. },
  8210. "System.Resources.Reader/4.0.0": {
  8211. "sha512": "o6eCc+whqNhmx4z3e858gXBS6XGbGtQxvcdfJq1l8xO0Ze2riQ01dsE1BkeoDyuo3goQOPhaXiXh11BXMOxsGg==",
  8212. "type": "package",
  8213. "path": "System.Resources.Reader/4.0.0",
  8214. "files": [
  8215. "System.Resources.Reader.4.0.0.nupkg.sha512",
  8216. "System.Resources.Reader.nuspec",
  8217. "ThirdPartyNotices.txt",
  8218. "dotnet_library_license.txt",
  8219. "lib/netstandard1.0/System.Resources.Reader.dll"
  8220. ]
  8221. },
  8222. "System.Resources.ResourceManager/4.3.0": {
  8223. "sha512": "R8JNBwxjGxZCaEPmMDCPXGS7nBjqBc3IZStpfGu1HfZVIvT0i52z9hnH2krhYUYRRt9ZVxSxdkIuDsw5ECd+Ow==",
  8224. "type": "package",
  8225. "path": "System.Resources.ResourceManager/4.3.0",
  8226. "files": [
  8227. "System.Resources.ResourceManager.4.3.0.nupkg.sha512",
  8228. "System.Resources.ResourceManager.nuspec",
  8229. "ThirdPartyNotices.txt",
  8230. "dotnet_library_license.txt",
  8231. "lib/MonoAndroid10/_._",
  8232. "lib/MonoTouch10/_._",
  8233. "lib/net45/_._",
  8234. "lib/portable-net45+win8+wp8+wpa81/_._",
  8235. "lib/win8/_._",
  8236. "lib/wp80/_._",
  8237. "lib/wpa81/_._",
  8238. "lib/xamarinios10/_._",
  8239. "lib/xamarinmac20/_._",
  8240. "lib/xamarintvos10/_._",
  8241. "lib/xamarinwatchos10/_._",
  8242. "ref/MonoAndroid10/_._",
  8243. "ref/MonoTouch10/_._",
  8244. "ref/net45/_._",
  8245. "ref/netcore50/System.Resources.ResourceManager.dll",
  8246. "ref/netcore50/System.Resources.ResourceManager.xml",
  8247. "ref/netcore50/de/System.Resources.ResourceManager.xml",
  8248. "ref/netcore50/es/System.Resources.ResourceManager.xml",
  8249. "ref/netcore50/fr/System.Resources.ResourceManager.xml",
  8250. "ref/netcore50/it/System.Resources.ResourceManager.xml",
  8251. "ref/netcore50/ja/System.Resources.ResourceManager.xml",
  8252. "ref/netcore50/ko/System.Resources.ResourceManager.xml",
  8253. "ref/netcore50/ru/System.Resources.ResourceManager.xml",
  8254. "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
  8255. "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
  8256. "ref/netstandard1.0/System.Resources.ResourceManager.dll",
  8257. "ref/netstandard1.0/System.Resources.ResourceManager.xml",
  8258. "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
  8259. "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
  8260. "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
  8261. "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
  8262. "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
  8263. "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
  8264. "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
  8265. "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
  8266. "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
  8267. "ref/portable-net45+win8+wp8+wpa81/_._",
  8268. "ref/win8/_._",
  8269. "ref/wp80/_._",
  8270. "ref/wpa81/_._",
  8271. "ref/xamarinios10/_._",
  8272. "ref/xamarinmac20/_._",
  8273. "ref/xamarintvos10/_._",
  8274. "ref/xamarinwatchos10/_._"
  8275. ]
  8276. },
  8277. "System.Runtime/4.3.0": {
  8278. "sha512": "GInOqt4B5f1RrcK10DwaNUZff0zDSZ2/wcHKA3SLTpwKEMZ6RT0NG4OYfT/y6rwvZ2PnJgT6U/lfzkX2wDlH4A==",
  8279. "type": "package",
  8280. "path": "System.Runtime/4.3.0",
  8281. "files": [
  8282. "System.Runtime.4.3.0.nupkg.sha512",
  8283. "System.Runtime.nuspec",
  8284. "ThirdPartyNotices.txt",
  8285. "dotnet_library_license.txt",
  8286. "lib/MonoAndroid10/_._",
  8287. "lib/MonoTouch10/_._",
  8288. "lib/net45/_._",
  8289. "lib/net462/System.Runtime.dll",
  8290. "lib/portable-net45+win8+wp80+wpa81/_._",
  8291. "lib/win8/_._",
  8292. "lib/wp80/_._",
  8293. "lib/wpa81/_._",
  8294. "lib/xamarinios10/_._",
  8295. "lib/xamarinmac20/_._",
  8296. "lib/xamarintvos10/_._",
  8297. "lib/xamarinwatchos10/_._",
  8298. "ref/MonoAndroid10/_._",
  8299. "ref/MonoTouch10/_._",
  8300. "ref/net45/_._",
  8301. "ref/net462/System.Runtime.dll",
  8302. "ref/netcore50/System.Runtime.dll",
  8303. "ref/netcore50/System.Runtime.xml",
  8304. "ref/netcore50/de/System.Runtime.xml",
  8305. "ref/netcore50/es/System.Runtime.xml",
  8306. "ref/netcore50/fr/System.Runtime.xml",
  8307. "ref/netcore50/it/System.Runtime.xml",
  8308. "ref/netcore50/ja/System.Runtime.xml",
  8309. "ref/netcore50/ko/System.Runtime.xml",
  8310. "ref/netcore50/ru/System.Runtime.xml",
  8311. "ref/netcore50/zh-hans/System.Runtime.xml",
  8312. "ref/netcore50/zh-hant/System.Runtime.xml",
  8313. "ref/netstandard1.0/System.Runtime.dll",
  8314. "ref/netstandard1.0/System.Runtime.xml",
  8315. "ref/netstandard1.0/de/System.Runtime.xml",
  8316. "ref/netstandard1.0/es/System.Runtime.xml",
  8317. "ref/netstandard1.0/fr/System.Runtime.xml",
  8318. "ref/netstandard1.0/it/System.Runtime.xml",
  8319. "ref/netstandard1.0/ja/System.Runtime.xml",
  8320. "ref/netstandard1.0/ko/System.Runtime.xml",
  8321. "ref/netstandard1.0/ru/System.Runtime.xml",
  8322. "ref/netstandard1.0/zh-hans/System.Runtime.xml",
  8323. "ref/netstandard1.0/zh-hant/System.Runtime.xml",
  8324. "ref/netstandard1.2/System.Runtime.dll",
  8325. "ref/netstandard1.2/System.Runtime.xml",
  8326. "ref/netstandard1.2/de/System.Runtime.xml",
  8327. "ref/netstandard1.2/es/System.Runtime.xml",
  8328. "ref/netstandard1.2/fr/System.Runtime.xml",
  8329. "ref/netstandard1.2/it/System.Runtime.xml",
  8330. "ref/netstandard1.2/ja/System.Runtime.xml",
  8331. "ref/netstandard1.2/ko/System.Runtime.xml",
  8332. "ref/netstandard1.2/ru/System.Runtime.xml",
  8333. "ref/netstandard1.2/zh-hans/System.Runtime.xml",
  8334. "ref/netstandard1.2/zh-hant/System.Runtime.xml",
  8335. "ref/netstandard1.3/System.Runtime.dll",
  8336. "ref/netstandard1.3/System.Runtime.xml",
  8337. "ref/netstandard1.3/de/System.Runtime.xml",
  8338. "ref/netstandard1.3/es/System.Runtime.xml",
  8339. "ref/netstandard1.3/fr/System.Runtime.xml",
  8340. "ref/netstandard1.3/it/System.Runtime.xml",
  8341. "ref/netstandard1.3/ja/System.Runtime.xml",
  8342. "ref/netstandard1.3/ko/System.Runtime.xml",
  8343. "ref/netstandard1.3/ru/System.Runtime.xml",
  8344. "ref/netstandard1.3/zh-hans/System.Runtime.xml",
  8345. "ref/netstandard1.3/zh-hant/System.Runtime.xml",
  8346. "ref/netstandard1.5/System.Runtime.dll",
  8347. "ref/netstandard1.5/System.Runtime.xml",
  8348. "ref/netstandard1.5/de/System.Runtime.xml",
  8349. "ref/netstandard1.5/es/System.Runtime.xml",
  8350. "ref/netstandard1.5/fr/System.Runtime.xml",
  8351. "ref/netstandard1.5/it/System.Runtime.xml",
  8352. "ref/netstandard1.5/ja/System.Runtime.xml",
  8353. "ref/netstandard1.5/ko/System.Runtime.xml",
  8354. "ref/netstandard1.5/ru/System.Runtime.xml",
  8355. "ref/netstandard1.5/zh-hans/System.Runtime.xml",
  8356. "ref/netstandard1.5/zh-hant/System.Runtime.xml",
  8357. "ref/portable-net45+win8+wp80+wpa81/_._",
  8358. "ref/win8/_._",
  8359. "ref/wp80/_._",
  8360. "ref/wpa81/_._",
  8361. "ref/xamarinios10/_._",
  8362. "ref/xamarinmac20/_._",
  8363. "ref/xamarintvos10/_._",
  8364. "ref/xamarinwatchos10/_._"
  8365. ]
  8366. },
  8367. "System.Runtime.CompilerServices.Unsafe/4.3.0": {
  8368. "sha512": "xhacsojOHYwPbRPNwT1bqhaXp1p4eMuctUXrOwL25kHrs3HIT6MK5EzazfbshWDKv5d3je6Dha9zChGhPMNjTA==",
  8369. "type": "package",
  8370. "path": "System.Runtime.CompilerServices.Unsafe/4.3.0",
  8371. "files": [
  8372. "System.Runtime.CompilerServices.Unsafe.4.3.0.nupkg.sha512",
  8373. "System.Runtime.CompilerServices.Unsafe.nuspec",
  8374. "ThirdPartyNotices.txt",
  8375. "dotnet_library_license.txt",
  8376. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
  8377. "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml"
  8378. ]
  8379. },
  8380. "System.Runtime.Extensions/4.3.0": {
  8381. "sha512": "N8FTfVQk8FkB/VM8jwi/m5L/i6VOilcNjRLGO99MobplmUqy8nhh8Wnfy2nM3jwOdSXjcA2ypZ9hoZl4bOI9QQ==",
  8382. "type": "package",
  8383. "path": "System.Runtime.Extensions/4.3.0",
  8384. "files": [
  8385. "System.Runtime.Extensions.4.3.0.nupkg.sha512",
  8386. "System.Runtime.Extensions.nuspec",
  8387. "ThirdPartyNotices.txt",
  8388. "dotnet_library_license.txt",
  8389. "lib/MonoAndroid10/_._",
  8390. "lib/MonoTouch10/_._",
  8391. "lib/net45/_._",
  8392. "lib/net462/System.Runtime.Extensions.dll",
  8393. "lib/portable-net45+win8+wp8+wpa81/_._",
  8394. "lib/win8/_._",
  8395. "lib/wp80/_._",
  8396. "lib/wpa81/_._",
  8397. "lib/xamarinios10/_._",
  8398. "lib/xamarinmac20/_._",
  8399. "lib/xamarintvos10/_._",
  8400. "lib/xamarinwatchos10/_._",
  8401. "ref/MonoAndroid10/_._",
  8402. "ref/MonoTouch10/_._",
  8403. "ref/net45/_._",
  8404. "ref/net462/System.Runtime.Extensions.dll",
  8405. "ref/netcore50/System.Runtime.Extensions.dll",
  8406. "ref/netcore50/System.Runtime.Extensions.xml",
  8407. "ref/netcore50/de/System.Runtime.Extensions.xml",
  8408. "ref/netcore50/es/System.Runtime.Extensions.xml",
  8409. "ref/netcore50/fr/System.Runtime.Extensions.xml",
  8410. "ref/netcore50/it/System.Runtime.Extensions.xml",
  8411. "ref/netcore50/ja/System.Runtime.Extensions.xml",
  8412. "ref/netcore50/ko/System.Runtime.Extensions.xml",
  8413. "ref/netcore50/ru/System.Runtime.Extensions.xml",
  8414. "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
  8415. "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
  8416. "ref/netstandard1.0/System.Runtime.Extensions.dll",
  8417. "ref/netstandard1.0/System.Runtime.Extensions.xml",
  8418. "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
  8419. "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
  8420. "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
  8421. "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
  8422. "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
  8423. "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
  8424. "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
  8425. "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
  8426. "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
  8427. "ref/netstandard1.3/System.Runtime.Extensions.dll",
  8428. "ref/netstandard1.3/System.Runtime.Extensions.xml",
  8429. "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
  8430. "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
  8431. "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
  8432. "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
  8433. "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
  8434. "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
  8435. "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
  8436. "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
  8437. "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
  8438. "ref/netstandard1.5/System.Runtime.Extensions.dll",
  8439. "ref/netstandard1.5/System.Runtime.Extensions.xml",
  8440. "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
  8441. "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
  8442. "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
  8443. "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
  8444. "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
  8445. "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
  8446. "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
  8447. "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
  8448. "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
  8449. "ref/portable-net45+win8+wp8+wpa81/_._",
  8450. "ref/win8/_._",
  8451. "ref/wp80/_._",
  8452. "ref/wpa81/_._",
  8453. "ref/xamarinios10/_._",
  8454. "ref/xamarinmac20/_._",
  8455. "ref/xamarintvos10/_._",
  8456. "ref/xamarinwatchos10/_._"
  8457. ]
  8458. },
  8459. "System.Runtime.Handles/4.3.0": {
  8460. "sha512": "fGofPWaMaMt5S3smhLR2EIjTlpqjkVuc+5kuNaus0VcZrYNXTvjBwzgu5GXhOS59q5zUs8l2dtE2jzVzIlQCSg==",
  8461. "type": "package",
  8462. "path": "System.Runtime.Handles/4.3.0",
  8463. "files": [
  8464. "System.Runtime.Handles.4.3.0.nupkg.sha512",
  8465. "System.Runtime.Handles.nuspec",
  8466. "ThirdPartyNotices.txt",
  8467. "dotnet_library_license.txt",
  8468. "lib/MonoAndroid10/_._",
  8469. "lib/MonoTouch10/_._",
  8470. "lib/net46/_._",
  8471. "lib/xamarinios10/_._",
  8472. "lib/xamarinmac20/_._",
  8473. "lib/xamarintvos10/_._",
  8474. "lib/xamarinwatchos10/_._",
  8475. "ref/MonoAndroid10/_._",
  8476. "ref/MonoTouch10/_._",
  8477. "ref/net46/_._",
  8478. "ref/netstandard1.3/System.Runtime.Handles.dll",
  8479. "ref/netstandard1.3/System.Runtime.Handles.xml",
  8480. "ref/netstandard1.3/de/System.Runtime.Handles.xml",
  8481. "ref/netstandard1.3/es/System.Runtime.Handles.xml",
  8482. "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
  8483. "ref/netstandard1.3/it/System.Runtime.Handles.xml",
  8484. "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
  8485. "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
  8486. "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
  8487. "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
  8488. "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
  8489. "ref/xamarinios10/_._",
  8490. "ref/xamarinmac20/_._",
  8491. "ref/xamarintvos10/_._",
  8492. "ref/xamarinwatchos10/_._"
  8493. ]
  8494. },
  8495. "System.Runtime.InteropServices/4.3.0": {
  8496. "sha512": "X0kW7e0Wq6inWIDDZhy0JfBAUHiJ+Z99LWLae54MUIMgby0pZuEaXziAd9dPsLOids04ft9ksIkLZrmDBHWHtA==",
  8497. "type": "package",
  8498. "path": "System.Runtime.InteropServices/4.3.0",
  8499. "files": [
  8500. "System.Runtime.InteropServices.4.3.0.nupkg.sha512",
  8501. "System.Runtime.InteropServices.nuspec",
  8502. "ThirdPartyNotices.txt",
  8503. "dotnet_library_license.txt",
  8504. "lib/MonoAndroid10/_._",
  8505. "lib/MonoTouch10/_._",
  8506. "lib/net45/_._",
  8507. "lib/net462/System.Runtime.InteropServices.dll",
  8508. "lib/net463/System.Runtime.InteropServices.dll",
  8509. "lib/portable-net45+win8+wpa81/_._",
  8510. "lib/win8/_._",
  8511. "lib/wpa81/_._",
  8512. "lib/xamarinios10/_._",
  8513. "lib/xamarinmac20/_._",
  8514. "lib/xamarintvos10/_._",
  8515. "lib/xamarinwatchos10/_._",
  8516. "ref/MonoAndroid10/_._",
  8517. "ref/MonoTouch10/_._",
  8518. "ref/net45/_._",
  8519. "ref/net462/System.Runtime.InteropServices.dll",
  8520. "ref/net463/System.Runtime.InteropServices.dll",
  8521. "ref/netcore50/System.Runtime.InteropServices.dll",
  8522. "ref/netcore50/System.Runtime.InteropServices.xml",
  8523. "ref/netcore50/de/System.Runtime.InteropServices.xml",
  8524. "ref/netcore50/es/System.Runtime.InteropServices.xml",
  8525. "ref/netcore50/fr/System.Runtime.InteropServices.xml",
  8526. "ref/netcore50/it/System.Runtime.InteropServices.xml",
  8527. "ref/netcore50/ja/System.Runtime.InteropServices.xml",
  8528. "ref/netcore50/ko/System.Runtime.InteropServices.xml",
  8529. "ref/netcore50/ru/System.Runtime.InteropServices.xml",
  8530. "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
  8531. "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
  8532. "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
  8533. "ref/netstandard1.1/System.Runtime.InteropServices.dll",
  8534. "ref/netstandard1.1/System.Runtime.InteropServices.xml",
  8535. "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
  8536. "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
  8537. "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
  8538. "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
  8539. "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
  8540. "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
  8541. "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
  8542. "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
  8543. "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
  8544. "ref/netstandard1.2/System.Runtime.InteropServices.dll",
  8545. "ref/netstandard1.2/System.Runtime.InteropServices.xml",
  8546. "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
  8547. "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
  8548. "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
  8549. "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
  8550. "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
  8551. "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
  8552. "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
  8553. "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
  8554. "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
  8555. "ref/netstandard1.3/System.Runtime.InteropServices.dll",
  8556. "ref/netstandard1.3/System.Runtime.InteropServices.xml",
  8557. "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
  8558. "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
  8559. "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
  8560. "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
  8561. "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
  8562. "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
  8563. "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
  8564. "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
  8565. "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
  8566. "ref/netstandard1.5/System.Runtime.InteropServices.dll",
  8567. "ref/netstandard1.5/System.Runtime.InteropServices.xml",
  8568. "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
  8569. "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
  8570. "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
  8571. "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
  8572. "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
  8573. "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
  8574. "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
  8575. "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
  8576. "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
  8577. "ref/portable-net45+win8+wpa81/_._",
  8578. "ref/win8/_._",
  8579. "ref/wpa81/_._",
  8580. "ref/xamarinios10/_._",
  8581. "ref/xamarinmac20/_._",
  8582. "ref/xamarintvos10/_._",
  8583. "ref/xamarinwatchos10/_._"
  8584. ]
  8585. },
  8586. "System.Runtime.InteropServices.RuntimeInformation/4.3.0": {
  8587. "sha512": "eMlGhHMyby7s1jrGSus4vbAHQsigM6nmzenfJ9L/Lx42ZtvHMm69yWagPwVQ7vWEOcJoChHv93qMmvhrPNJ5jQ==",
  8588. "type": "package",
  8589. "path": "System.Runtime.InteropServices.RuntimeInformation/4.3.0",
  8590. "files": [
  8591. "System.Runtime.InteropServices.RuntimeInformation.4.3.0.nupkg.sha512",
  8592. "System.Runtime.InteropServices.RuntimeInformation.nuspec",
  8593. "ThirdPartyNotices.txt",
  8594. "dotnet_library_license.txt",
  8595. "lib/MonoAndroid10/_._",
  8596. "lib/MonoTouch10/_._",
  8597. "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8598. "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8599. "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll",
  8600. "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll",
  8601. "lib/xamarinios10/_._",
  8602. "lib/xamarinmac20/_._",
  8603. "lib/xamarintvos10/_._",
  8604. "lib/xamarinwatchos10/_._",
  8605. "ref/MonoAndroid10/_._",
  8606. "ref/MonoTouch10/_._",
  8607. "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8608. "ref/xamarinios10/_._",
  8609. "ref/xamarinmac20/_._",
  8610. "ref/xamarintvos10/_._",
  8611. "ref/xamarinwatchos10/_._",
  8612. "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8613. "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll",
  8614. "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll",
  8615. "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll",
  8616. "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll"
  8617. ]
  8618. },
  8619. "System.Runtime.Loader/4.0.0": {
  8620. "sha512": "zUIJ1HygfgipAQd0zhmICUYccHcnVt0SDOOTyPBkVjwnOfdBsVcSRLE1A+UhH45Nv4AixpifZfS5oKfYBy/TEg==",
  8621. "type": "package",
  8622. "path": "System.Runtime.Loader/4.0.0",
  8623. "files": [
  8624. "System.Runtime.Loader.4.0.0.nupkg.sha512",
  8625. "System.Runtime.Loader.nuspec",
  8626. "ThirdPartyNotices.txt",
  8627. "dotnet_library_license.txt",
  8628. "lib/net462/_._",
  8629. "lib/netstandard1.5/System.Runtime.Loader.dll",
  8630. "ref/netstandard1.5/System.Runtime.Loader.dll",
  8631. "ref/netstandard1.5/System.Runtime.Loader.xml",
  8632. "ref/netstandard1.5/de/System.Runtime.Loader.xml",
  8633. "ref/netstandard1.5/es/System.Runtime.Loader.xml",
  8634. "ref/netstandard1.5/fr/System.Runtime.Loader.xml",
  8635. "ref/netstandard1.5/it/System.Runtime.Loader.xml",
  8636. "ref/netstandard1.5/ja/System.Runtime.Loader.xml",
  8637. "ref/netstandard1.5/ko/System.Runtime.Loader.xml",
  8638. "ref/netstandard1.5/ru/System.Runtime.Loader.xml",
  8639. "ref/netstandard1.5/zh-hans/System.Runtime.Loader.xml",
  8640. "ref/netstandard1.5/zh-hant/System.Runtime.Loader.xml"
  8641. ]
  8642. },
  8643. "System.Runtime.Numerics/4.3.0": {
  8644. "sha512": "5Fjob3agW1SpK9eFQq/ovw2gOaxTm3q8U4FvuP6il8G6fp7W5RDHZ9uSBmYtgP3XvK/W5c2clKeeZr1wNH9Z6Q==",
  8645. "type": "package",
  8646. "path": "System.Runtime.Numerics/4.3.0",
  8647. "files": [
  8648. "System.Runtime.Numerics.4.3.0.nupkg.sha512",
  8649. "System.Runtime.Numerics.nuspec",
  8650. "ThirdPartyNotices.txt",
  8651. "dotnet_library_license.txt",
  8652. "lib/MonoAndroid10/_._",
  8653. "lib/MonoTouch10/_._",
  8654. "lib/net45/_._",
  8655. "lib/netcore50/System.Runtime.Numerics.dll",
  8656. "lib/netstandard1.3/System.Runtime.Numerics.dll",
  8657. "lib/portable-net45+win8+wpa81/_._",
  8658. "lib/win8/_._",
  8659. "lib/wpa81/_._",
  8660. "lib/xamarinios10/_._",
  8661. "lib/xamarinmac20/_._",
  8662. "lib/xamarintvos10/_._",
  8663. "lib/xamarinwatchos10/_._",
  8664. "ref/MonoAndroid10/_._",
  8665. "ref/MonoTouch10/_._",
  8666. "ref/net45/_._",
  8667. "ref/netcore50/System.Runtime.Numerics.dll",
  8668. "ref/netcore50/System.Runtime.Numerics.xml",
  8669. "ref/netcore50/de/System.Runtime.Numerics.xml",
  8670. "ref/netcore50/es/System.Runtime.Numerics.xml",
  8671. "ref/netcore50/fr/System.Runtime.Numerics.xml",
  8672. "ref/netcore50/it/System.Runtime.Numerics.xml",
  8673. "ref/netcore50/ja/System.Runtime.Numerics.xml",
  8674. "ref/netcore50/ko/System.Runtime.Numerics.xml",
  8675. "ref/netcore50/ru/System.Runtime.Numerics.xml",
  8676. "ref/netcore50/zh-hans/System.Runtime.Numerics.xml",
  8677. "ref/netcore50/zh-hant/System.Runtime.Numerics.xml",
  8678. "ref/netstandard1.1/System.Runtime.Numerics.dll",
  8679. "ref/netstandard1.1/System.Runtime.Numerics.xml",
  8680. "ref/netstandard1.1/de/System.Runtime.Numerics.xml",
  8681. "ref/netstandard1.1/es/System.Runtime.Numerics.xml",
  8682. "ref/netstandard1.1/fr/System.Runtime.Numerics.xml",
  8683. "ref/netstandard1.1/it/System.Runtime.Numerics.xml",
  8684. "ref/netstandard1.1/ja/System.Runtime.Numerics.xml",
  8685. "ref/netstandard1.1/ko/System.Runtime.Numerics.xml",
  8686. "ref/netstandard1.1/ru/System.Runtime.Numerics.xml",
  8687. "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml",
  8688. "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml",
  8689. "ref/portable-net45+win8+wpa81/_._",
  8690. "ref/win8/_._",
  8691. "ref/wpa81/_._",
  8692. "ref/xamarinios10/_._",
  8693. "ref/xamarinmac20/_._",
  8694. "ref/xamarintvos10/_._",
  8695. "ref/xamarinwatchos10/_._"
  8696. ]
  8697. },
  8698. "System.Runtime.Serialization.Primitives/4.1.1": {
  8699. "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==",
  8700. "type": "package",
  8701. "path": "System.Runtime.Serialization.Primitives/4.1.1",
  8702. "files": [
  8703. "System.Runtime.Serialization.Primitives.4.1.1.nupkg.sha512",
  8704. "System.Runtime.Serialization.Primitives.nuspec",
  8705. "ThirdPartyNotices.txt",
  8706. "dotnet_library_license.txt",
  8707. "lib/MonoAndroid10/_._",
  8708. "lib/MonoTouch10/_._",
  8709. "lib/net45/_._",
  8710. "lib/net46/System.Runtime.Serialization.Primitives.dll",
  8711. "lib/netcore50/System.Runtime.Serialization.Primitives.dll",
  8712. "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8713. "lib/portable-net45+win8+wp8+wpa81/_._",
  8714. "lib/win8/_._",
  8715. "lib/wp80/_._",
  8716. "lib/wpa81/_._",
  8717. "lib/xamarinios10/_._",
  8718. "lib/xamarinmac20/_._",
  8719. "lib/xamarintvos10/_._",
  8720. "lib/xamarinwatchos10/_._",
  8721. "ref/MonoAndroid10/_._",
  8722. "ref/MonoTouch10/_._",
  8723. "ref/net45/_._",
  8724. "ref/net46/System.Runtime.Serialization.Primitives.dll",
  8725. "ref/netcore50/System.Runtime.Serialization.Primitives.dll",
  8726. "ref/netcore50/System.Runtime.Serialization.Primitives.xml",
  8727. "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml",
  8728. "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml",
  8729. "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml",
  8730. "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml",
  8731. "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml",
  8732. "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml",
  8733. "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml",
  8734. "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8735. "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8736. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll",
  8737. "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml",
  8738. "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml",
  8739. "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml",
  8740. "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml",
  8741. "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml",
  8742. "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml",
  8743. "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml",
  8744. "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml",
  8745. "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8746. "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8747. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll",
  8748. "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml",
  8749. "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml",
  8750. "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml",
  8751. "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml",
  8752. "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml",
  8753. "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml",
  8754. "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml",
  8755. "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml",
  8756. "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml",
  8757. "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml",
  8758. "ref/portable-net45+win8+wp8+wpa81/_._",
  8759. "ref/win8/_._",
  8760. "ref/wp80/_._",
  8761. "ref/wpa81/_._",
  8762. "ref/xamarinios10/_._",
  8763. "ref/xamarinmac20/_._",
  8764. "ref/xamarintvos10/_._",
  8765. "ref/xamarinwatchos10/_._",
  8766. "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll"
  8767. ]
  8768. },
  8769. "System.Security.Claims/4.3.0": {
  8770. "sha512": "BDVkWERVmVnPyN8sSb1YlY0vytaPaaPwLbNOF1cwP4wrCm9OY5z3UnOthja88Z99YrETiD4EFfOCYmDHE4AOOA==",
  8771. "type": "package",
  8772. "path": "System.Security.Claims/4.3.0",
  8773. "files": [
  8774. "System.Security.Claims.4.3.0.nupkg.sha512",
  8775. "System.Security.Claims.nuspec",
  8776. "ThirdPartyNotices.txt",
  8777. "dotnet_library_license.txt",
  8778. "lib/MonoAndroid10/_._",
  8779. "lib/MonoTouch10/_._",
  8780. "lib/net46/System.Security.Claims.dll",
  8781. "lib/netstandard1.3/System.Security.Claims.dll",
  8782. "lib/xamarinios10/_._",
  8783. "lib/xamarinmac20/_._",
  8784. "lib/xamarintvos10/_._",
  8785. "lib/xamarinwatchos10/_._",
  8786. "ref/MonoAndroid10/_._",
  8787. "ref/MonoTouch10/_._",
  8788. "ref/net46/System.Security.Claims.dll",
  8789. "ref/netstandard1.3/System.Security.Claims.dll",
  8790. "ref/netstandard1.3/System.Security.Claims.xml",
  8791. "ref/netstandard1.3/de/System.Security.Claims.xml",
  8792. "ref/netstandard1.3/es/System.Security.Claims.xml",
  8793. "ref/netstandard1.3/fr/System.Security.Claims.xml",
  8794. "ref/netstandard1.3/it/System.Security.Claims.xml",
  8795. "ref/netstandard1.3/ja/System.Security.Claims.xml",
  8796. "ref/netstandard1.3/ko/System.Security.Claims.xml",
  8797. "ref/netstandard1.3/ru/System.Security.Claims.xml",
  8798. "ref/netstandard1.3/zh-hans/System.Security.Claims.xml",
  8799. "ref/netstandard1.3/zh-hant/System.Security.Claims.xml",
  8800. "ref/xamarinios10/_._",
  8801. "ref/xamarinmac20/_._",
  8802. "ref/xamarintvos10/_._",
  8803. "ref/xamarinwatchos10/_._"
  8804. ]
  8805. },
  8806. "System.Security.Cryptography.Algorithms/4.3.0": {
  8807. "sha512": "prGZyzFDK1I5VldOlfO0SQsCDsd8iDFTonCB2AAeYsl1GKp8Zmi2uXC/yMfnv70xWWDx/SjcCc+uJ5s8MnvlHQ==",
  8808. "type": "package",
  8809. "path": "System.Security.Cryptography.Algorithms/4.3.0",
  8810. "files": [
  8811. "System.Security.Cryptography.Algorithms.4.3.0.nupkg.sha512",
  8812. "System.Security.Cryptography.Algorithms.nuspec",
  8813. "ThirdPartyNotices.txt",
  8814. "dotnet_library_license.txt",
  8815. "lib/MonoAndroid10/_._",
  8816. "lib/MonoTouch10/_._",
  8817. "lib/net46/System.Security.Cryptography.Algorithms.dll",
  8818. "lib/net461/System.Security.Cryptography.Algorithms.dll",
  8819. "lib/net463/System.Security.Cryptography.Algorithms.dll",
  8820. "lib/xamarinios10/_._",
  8821. "lib/xamarinmac20/_._",
  8822. "lib/xamarintvos10/_._",
  8823. "lib/xamarinwatchos10/_._",
  8824. "ref/MonoAndroid10/_._",
  8825. "ref/MonoTouch10/_._",
  8826. "ref/net46/System.Security.Cryptography.Algorithms.dll",
  8827. "ref/net461/System.Security.Cryptography.Algorithms.dll",
  8828. "ref/net463/System.Security.Cryptography.Algorithms.dll",
  8829. "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll",
  8830. "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll",
  8831. "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8832. "ref/xamarinios10/_._",
  8833. "ref/xamarinmac20/_._",
  8834. "ref/xamarintvos10/_._",
  8835. "ref/xamarinwatchos10/_._",
  8836. "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8837. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll",
  8838. "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll",
  8839. "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll",
  8840. "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll",
  8841. "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll",
  8842. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll"
  8843. ]
  8844. },
  8845. "System.Security.Cryptography.Cng/4.3.0": {
  8846. "sha512": "blipAQpn9NAYtknm8Yhs9s6I12s0B0OPo3RAOGWxBQCjYMx8G72oNc3eNE9JQJgw/EV66kifIaF9oVLMxR8sQA==",
  8847. "type": "package",
  8848. "path": "System.Security.Cryptography.Cng/4.3.0",
  8849. "files": [
  8850. "System.Security.Cryptography.Cng.4.3.0.nupkg.sha512",
  8851. "System.Security.Cryptography.Cng.nuspec",
  8852. "ThirdPartyNotices.txt",
  8853. "dotnet_library_license.txt",
  8854. "lib/net46/System.Security.Cryptography.Cng.dll",
  8855. "lib/net461/System.Security.Cryptography.Cng.dll",
  8856. "lib/net463/System.Security.Cryptography.Cng.dll",
  8857. "ref/net46/System.Security.Cryptography.Cng.dll",
  8858. "ref/net461/System.Security.Cryptography.Cng.dll",
  8859. "ref/net463/System.Security.Cryptography.Cng.dll",
  8860. "ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
  8861. "ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8862. "ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8863. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
  8864. "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
  8865. "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
  8866. "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll",
  8867. "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
  8868. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll"
  8869. ]
  8870. },
  8871. "System.Security.Cryptography.Csp/4.3.0": {
  8872. "sha512": "yO2k5o+Z+DiFRBvvB9vdRRAGHi6bm02M9OWXfCqQ8K0UxD3Woc3svQheZfb7PoTEFs0kGacO0IzzMWsb6Mkeow==",
  8873. "type": "package",
  8874. "path": "System.Security.Cryptography.Csp/4.3.0",
  8875. "files": [
  8876. "System.Security.Cryptography.Csp.4.3.0.nupkg.sha512",
  8877. "System.Security.Cryptography.Csp.nuspec",
  8878. "ThirdPartyNotices.txt",
  8879. "dotnet_library_license.txt",
  8880. "lib/MonoAndroid10/_._",
  8881. "lib/MonoTouch10/_._",
  8882. "lib/net46/System.Security.Cryptography.Csp.dll",
  8883. "lib/xamarinios10/_._",
  8884. "lib/xamarinmac20/_._",
  8885. "lib/xamarintvos10/_._",
  8886. "lib/xamarinwatchos10/_._",
  8887. "ref/MonoAndroid10/_._",
  8888. "ref/MonoTouch10/_._",
  8889. "ref/net46/System.Security.Cryptography.Csp.dll",
  8890. "ref/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8891. "ref/xamarinios10/_._",
  8892. "ref/xamarinmac20/_._",
  8893. "ref/xamarintvos10/_._",
  8894. "ref/xamarinwatchos10/_._",
  8895. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll",
  8896. "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll",
  8897. "runtimes/win/lib/netcore50/_._",
  8898. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll"
  8899. ]
  8900. },
  8901. "System.Security.Cryptography.Encoding/4.3.0": {
  8902. "sha512": "Lkf2ulpcKgt3Afd/IVRTpqN6QTz7tKWmDOnDj3pVp1fVK2EcH7Ma326DKHyyU2rvmh0YcwRoYEO95PS5bIeT+w==",
  8903. "type": "package",
  8904. "path": "System.Security.Cryptography.Encoding/4.3.0",
  8905. "files": [
  8906. "System.Security.Cryptography.Encoding.4.3.0.nupkg.sha512",
  8907. "System.Security.Cryptography.Encoding.nuspec",
  8908. "ThirdPartyNotices.txt",
  8909. "dotnet_library_license.txt",
  8910. "lib/MonoAndroid10/_._",
  8911. "lib/MonoTouch10/_._",
  8912. "lib/net46/System.Security.Cryptography.Encoding.dll",
  8913. "lib/xamarinios10/_._",
  8914. "lib/xamarinmac20/_._",
  8915. "lib/xamarintvos10/_._",
  8916. "lib/xamarinwatchos10/_._",
  8917. "ref/MonoAndroid10/_._",
  8918. "ref/MonoTouch10/_._",
  8919. "ref/net46/System.Security.Cryptography.Encoding.dll",
  8920. "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8921. "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml",
  8922. "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml",
  8923. "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml",
  8924. "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml",
  8925. "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml",
  8926. "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml",
  8927. "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml",
  8928. "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml",
  8929. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml",
  8930. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml",
  8931. "ref/xamarinios10/_._",
  8932. "ref/xamarinmac20/_._",
  8933. "ref/xamarintvos10/_._",
  8934. "ref/xamarinwatchos10/_._",
  8935. "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll",
  8936. "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll",
  8937. "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll"
  8938. ]
  8939. },
  8940. "System.Security.Cryptography.OpenSsl/4.3.0": {
  8941. "sha512": "vOYy7Jv9KsG3ld2hLt0GoERd82SZi4BelrbXLwI9yFBYX7kpbvUCWYo4eyevk47cuJXZ9ZLVAryANcc7iY71aA==",
  8942. "type": "package",
  8943. "path": "System.Security.Cryptography.OpenSsl/4.3.0",
  8944. "files": [
  8945. "System.Security.Cryptography.OpenSsl.4.3.0.nupkg.sha512",
  8946. "System.Security.Cryptography.OpenSsl.nuspec",
  8947. "ThirdPartyNotices.txt",
  8948. "dotnet_library_license.txt",
  8949. "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8950. "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll",
  8951. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll"
  8952. ]
  8953. },
  8954. "System.Security.Cryptography.Primitives/4.3.0": {
  8955. "sha512": "5sASQ/lka08PqSjlteeKYrpLf9tbtaFSVc3HgPCM4gbVXykM6rW7aZRaQQihKhvXLFE4mL/+NMtls3YwMc8srQ==",
  8956. "type": "package",
  8957. "path": "System.Security.Cryptography.Primitives/4.3.0",
  8958. "files": [
  8959. "System.Security.Cryptography.Primitives.4.3.0.nupkg.sha512",
  8960. "System.Security.Cryptography.Primitives.nuspec",
  8961. "ThirdPartyNotices.txt",
  8962. "dotnet_library_license.txt",
  8963. "lib/MonoAndroid10/_._",
  8964. "lib/MonoTouch10/_._",
  8965. "lib/net46/System.Security.Cryptography.Primitives.dll",
  8966. "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8967. "lib/xamarinios10/_._",
  8968. "lib/xamarinmac20/_._",
  8969. "lib/xamarintvos10/_._",
  8970. "lib/xamarinwatchos10/_._",
  8971. "ref/MonoAndroid10/_._",
  8972. "ref/MonoTouch10/_._",
  8973. "ref/net46/System.Security.Cryptography.Primitives.dll",
  8974. "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll",
  8975. "ref/xamarinios10/_._",
  8976. "ref/xamarinmac20/_._",
  8977. "ref/xamarintvos10/_._",
  8978. "ref/xamarinwatchos10/_._"
  8979. ]
  8980. },
  8981. "System.Security.Cryptography.X509Certificates/4.3.0": {
  8982. "sha512": "F5wSRdv3QJe4Di/CL6AsW3CQkc0d7RLv8LOn2XubpvszI3zl239pnvGCM7YDS8S8UKtwDJByVXUfHQG/kW3zjQ==",
  8983. "type": "package",
  8984. "path": "System.Security.Cryptography.X509Certificates/4.3.0",
  8985. "files": [
  8986. "System.Security.Cryptography.X509Certificates.4.3.0.nupkg.sha512",
  8987. "System.Security.Cryptography.X509Certificates.nuspec",
  8988. "ThirdPartyNotices.txt",
  8989. "dotnet_library_license.txt",
  8990. "lib/MonoAndroid10/_._",
  8991. "lib/MonoTouch10/_._",
  8992. "lib/net46/System.Security.Cryptography.X509Certificates.dll",
  8993. "lib/net461/System.Security.Cryptography.X509Certificates.dll",
  8994. "lib/xamarinios10/_._",
  8995. "lib/xamarinmac20/_._",
  8996. "lib/xamarintvos10/_._",
  8997. "lib/xamarinwatchos10/_._",
  8998. "ref/MonoAndroid10/_._",
  8999. "ref/MonoTouch10/_._",
  9000. "ref/net46/System.Security.Cryptography.X509Certificates.dll",
  9001. "ref/net461/System.Security.Cryptography.X509Certificates.dll",
  9002. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll",
  9003. "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml",
  9004. "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml",
  9005. "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml",
  9006. "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml",
  9007. "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml",
  9008. "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml",
  9009. "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml",
  9010. "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml",
  9011. "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9012. "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9013. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll",
  9014. "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml",
  9015. "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml",
  9016. "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml",
  9017. "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml",
  9018. "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml",
  9019. "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml",
  9020. "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml",
  9021. "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml",
  9022. "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml",
  9023. "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml",
  9024. "ref/xamarinios10/_._",
  9025. "ref/xamarinmac20/_._",
  9026. "ref/xamarintvos10/_._",
  9027. "ref/xamarinwatchos10/_._",
  9028. "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll",
  9029. "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll",
  9030. "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll",
  9031. "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll",
  9032. "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll"
  9033. ]
  9034. },
  9035. "System.Security.Principal/4.3.0": {
  9036. "sha512": "BMPnm8H2BmIxPAnACPKFXxkePsag2Wyto/qWZnvlSxBxAC9HNyx2Bp9+XNTg/HqfjG42ZrR4fXLZ/p9tbkrW8A==",
  9037. "type": "package",
  9038. "path": "System.Security.Principal/4.3.0",
  9039. "files": [
  9040. "System.Security.Principal.4.3.0.nupkg.sha512",
  9041. "System.Security.Principal.nuspec",
  9042. "ThirdPartyNotices.txt",
  9043. "dotnet_library_license.txt",
  9044. "lib/MonoAndroid10/_._",
  9045. "lib/MonoTouch10/_._",
  9046. "lib/net45/_._",
  9047. "lib/netcore50/System.Security.Principal.dll",
  9048. "lib/netstandard1.0/System.Security.Principal.dll",
  9049. "lib/portable-net45+win8+wp8+wpa81/_._",
  9050. "lib/win8/_._",
  9051. "lib/wp80/_._",
  9052. "lib/wpa81/_._",
  9053. "lib/xamarinios10/_._",
  9054. "lib/xamarinmac20/_._",
  9055. "lib/xamarintvos10/_._",
  9056. "lib/xamarinwatchos10/_._",
  9057. "ref/MonoAndroid10/_._",
  9058. "ref/MonoTouch10/_._",
  9059. "ref/net45/_._",
  9060. "ref/netcore50/System.Security.Principal.dll",
  9061. "ref/netcore50/System.Security.Principal.xml",
  9062. "ref/netcore50/de/System.Security.Principal.xml",
  9063. "ref/netcore50/es/System.Security.Principal.xml",
  9064. "ref/netcore50/fr/System.Security.Principal.xml",
  9065. "ref/netcore50/it/System.Security.Principal.xml",
  9066. "ref/netcore50/ja/System.Security.Principal.xml",
  9067. "ref/netcore50/ko/System.Security.Principal.xml",
  9068. "ref/netcore50/ru/System.Security.Principal.xml",
  9069. "ref/netcore50/zh-hans/System.Security.Principal.xml",
  9070. "ref/netcore50/zh-hant/System.Security.Principal.xml",
  9071. "ref/netstandard1.0/System.Security.Principal.dll",
  9072. "ref/netstandard1.0/System.Security.Principal.xml",
  9073. "ref/netstandard1.0/de/System.Security.Principal.xml",
  9074. "ref/netstandard1.0/es/System.Security.Principal.xml",
  9075. "ref/netstandard1.0/fr/System.Security.Principal.xml",
  9076. "ref/netstandard1.0/it/System.Security.Principal.xml",
  9077. "ref/netstandard1.0/ja/System.Security.Principal.xml",
  9078. "ref/netstandard1.0/ko/System.Security.Principal.xml",
  9079. "ref/netstandard1.0/ru/System.Security.Principal.xml",
  9080. "ref/netstandard1.0/zh-hans/System.Security.Principal.xml",
  9081. "ref/netstandard1.0/zh-hant/System.Security.Principal.xml",
  9082. "ref/portable-net45+win8+wp8+wpa81/_._",
  9083. "ref/win8/_._",
  9084. "ref/wp80/_._",
  9085. "ref/wpa81/_._",
  9086. "ref/xamarinios10/_._",
  9087. "ref/xamarinmac20/_._",
  9088. "ref/xamarintvos10/_._",
  9089. "ref/xamarinwatchos10/_._"
  9090. ]
  9091. },
  9092. "System.Security.Principal.Windows/4.3.0-preview1-24530-04": {
  9093. "sha512": "YMItt1TqxJqwdQhA1RmOPTQapHAB1xL/Fjq23e3x1jNbJfl15clOCqCh3QvPEZc4lRRCV8j5qZQXohsu41jDhw==",
  9094. "type": "package",
  9095. "path": "System.Security.Principal.Windows/4.3.0-preview1-24530-04",
  9096. "files": [
  9097. "System.Security.Principal.Windows.4.3.0-preview1-24530-04.nupkg.sha512",
  9098. "System.Security.Principal.Windows.nuspec",
  9099. "ThirdPartyNotices.txt",
  9100. "dotnet_library_license.txt",
  9101. "lib/net46/System.Security.Principal.Windows.dll",
  9102. "ref/net46/System.Security.Principal.Windows.dll",
  9103. "ref/netstandard1.3/System.Security.Principal.Windows.dll",
  9104. "ref/netstandard1.3/System.Security.Principal.Windows.xml",
  9105. "ref/netstandard1.3/de/System.Security.Principal.Windows.xml",
  9106. "ref/netstandard1.3/es/System.Security.Principal.Windows.xml",
  9107. "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml",
  9108. "ref/netstandard1.3/it/System.Security.Principal.Windows.xml",
  9109. "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml",
  9110. "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml",
  9111. "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml",
  9112. "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml",
  9113. "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml",
  9114. "runtimes/unix/lib/netstandard1.3/System.Security.Principal.Windows.dll",
  9115. "runtimes/win/lib/net46/System.Security.Principal.Windows.dll",
  9116. "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll"
  9117. ]
  9118. },
  9119. "System.Text.Encoding/4.3.0": {
  9120. "sha512": "+iP02U89BqFB39pJ0wLsWT0lHFj5ccVv4+ruGvIdjl2FamD6qC07ngrw07tQF7PTVOmsuq5XN28Q+TRF5scLEQ==",
  9121. "type": "package",
  9122. "path": "System.Text.Encoding/4.3.0",
  9123. "files": [
  9124. "System.Text.Encoding.4.3.0.nupkg.sha512",
  9125. "System.Text.Encoding.nuspec",
  9126. "ThirdPartyNotices.txt",
  9127. "dotnet_library_license.txt",
  9128. "lib/MonoAndroid10/_._",
  9129. "lib/MonoTouch10/_._",
  9130. "lib/net45/_._",
  9131. "lib/portable-net45+win8+wp8+wpa81/_._",
  9132. "lib/win8/_._",
  9133. "lib/wp80/_._",
  9134. "lib/wpa81/_._",
  9135. "lib/xamarinios10/_._",
  9136. "lib/xamarinmac20/_._",
  9137. "lib/xamarintvos10/_._",
  9138. "lib/xamarinwatchos10/_._",
  9139. "ref/MonoAndroid10/_._",
  9140. "ref/MonoTouch10/_._",
  9141. "ref/net45/_._",
  9142. "ref/netcore50/System.Text.Encoding.dll",
  9143. "ref/netcore50/System.Text.Encoding.xml",
  9144. "ref/netcore50/de/System.Text.Encoding.xml",
  9145. "ref/netcore50/es/System.Text.Encoding.xml",
  9146. "ref/netcore50/fr/System.Text.Encoding.xml",
  9147. "ref/netcore50/it/System.Text.Encoding.xml",
  9148. "ref/netcore50/ja/System.Text.Encoding.xml",
  9149. "ref/netcore50/ko/System.Text.Encoding.xml",
  9150. "ref/netcore50/ru/System.Text.Encoding.xml",
  9151. "ref/netcore50/zh-hans/System.Text.Encoding.xml",
  9152. "ref/netcore50/zh-hant/System.Text.Encoding.xml",
  9153. "ref/netstandard1.0/System.Text.Encoding.dll",
  9154. "ref/netstandard1.0/System.Text.Encoding.xml",
  9155. "ref/netstandard1.0/de/System.Text.Encoding.xml",
  9156. "ref/netstandard1.0/es/System.Text.Encoding.xml",
  9157. "ref/netstandard1.0/fr/System.Text.Encoding.xml",
  9158. "ref/netstandard1.0/it/System.Text.Encoding.xml",
  9159. "ref/netstandard1.0/ja/System.Text.Encoding.xml",
  9160. "ref/netstandard1.0/ko/System.Text.Encoding.xml",
  9161. "ref/netstandard1.0/ru/System.Text.Encoding.xml",
  9162. "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
  9163. "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
  9164. "ref/netstandard1.3/System.Text.Encoding.dll",
  9165. "ref/netstandard1.3/System.Text.Encoding.xml",
  9166. "ref/netstandard1.3/de/System.Text.Encoding.xml",
  9167. "ref/netstandard1.3/es/System.Text.Encoding.xml",
  9168. "ref/netstandard1.3/fr/System.Text.Encoding.xml",
  9169. "ref/netstandard1.3/it/System.Text.Encoding.xml",
  9170. "ref/netstandard1.3/ja/System.Text.Encoding.xml",
  9171. "ref/netstandard1.3/ko/System.Text.Encoding.xml",
  9172. "ref/netstandard1.3/ru/System.Text.Encoding.xml",
  9173. "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
  9174. "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
  9175. "ref/portable-net45+win8+wp8+wpa81/_._",
  9176. "ref/win8/_._",
  9177. "ref/wp80/_._",
  9178. "ref/wpa81/_._",
  9179. "ref/xamarinios10/_._",
  9180. "ref/xamarinmac20/_._",
  9181. "ref/xamarintvos10/_._",
  9182. "ref/xamarinwatchos10/_._"
  9183. ]
  9184. },
  9185. "System.Text.Encoding.CodePages/4.0.1": {
  9186. "sha512": "+PUTo8pGLNuvG6zDKJswAnVUPMS4XBROyqeFvpEueyYFrim+cprnmo2zEXZZe6Enakf75umMThjinrH/qH2Y4A==",
  9187. "type": "package",
  9188. "path": "System.Text.Encoding.CodePages/4.0.1",
  9189. "files": [
  9190. "System.Text.Encoding.CodePages.4.0.1.nupkg.sha512",
  9191. "System.Text.Encoding.CodePages.nuspec",
  9192. "ThirdPartyNotices.txt",
  9193. "dotnet_library_license.txt",
  9194. "lib/MonoAndroid10/_._",
  9195. "lib/MonoTouch10/_._",
  9196. "lib/net46/System.Text.Encoding.CodePages.dll",
  9197. "lib/xamarinios10/_._",
  9198. "lib/xamarinmac20/_._",
  9199. "lib/xamarintvos10/_._",
  9200. "lib/xamarinwatchos10/_._",
  9201. "ref/MonoAndroid10/_._",
  9202. "ref/MonoTouch10/_._",
  9203. "ref/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9204. "ref/netstandard1.3/System.Text.Encoding.CodePages.xml",
  9205. "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml",
  9206. "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml",
  9207. "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml",
  9208. "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml",
  9209. "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml",
  9210. "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml",
  9211. "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml",
  9212. "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml",
  9213. "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml",
  9214. "ref/xamarinios10/_._",
  9215. "ref/xamarinmac20/_._",
  9216. "ref/xamarintvos10/_._",
  9217. "ref/xamarinwatchos10/_._",
  9218. "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
  9219. "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll"
  9220. ]
  9221. },
  9222. "System.Text.Encoding.Extensions/4.3.0": {
  9223. "sha512": "htlnmFmHyyJ3W33dYn7ryer4luJ7QUoFCL/b5/df3YnQC2coNDk97NEH8dKKHqhvi/ApAru8ddN8zzKPkTxAZQ==",
  9224. "type": "package",
  9225. "path": "System.Text.Encoding.Extensions/4.3.0",
  9226. "files": [
  9227. "System.Text.Encoding.Extensions.4.3.0.nupkg.sha512",
  9228. "System.Text.Encoding.Extensions.nuspec",
  9229. "ThirdPartyNotices.txt",
  9230. "dotnet_library_license.txt",
  9231. "lib/MonoAndroid10/_._",
  9232. "lib/MonoTouch10/_._",
  9233. "lib/net45/_._",
  9234. "lib/portable-net45+win8+wp8+wpa81/_._",
  9235. "lib/win8/_._",
  9236. "lib/wp80/_._",
  9237. "lib/wpa81/_._",
  9238. "lib/xamarinios10/_._",
  9239. "lib/xamarinmac20/_._",
  9240. "lib/xamarintvos10/_._",
  9241. "lib/xamarinwatchos10/_._",
  9242. "ref/MonoAndroid10/_._",
  9243. "ref/MonoTouch10/_._",
  9244. "ref/net45/_._",
  9245. "ref/netcore50/System.Text.Encoding.Extensions.dll",
  9246. "ref/netcore50/System.Text.Encoding.Extensions.xml",
  9247. "ref/netcore50/de/System.Text.Encoding.Extensions.xml",
  9248. "ref/netcore50/es/System.Text.Encoding.Extensions.xml",
  9249. "ref/netcore50/fr/System.Text.Encoding.Extensions.xml",
  9250. "ref/netcore50/it/System.Text.Encoding.Extensions.xml",
  9251. "ref/netcore50/ja/System.Text.Encoding.Extensions.xml",
  9252. "ref/netcore50/ko/System.Text.Encoding.Extensions.xml",
  9253. "ref/netcore50/ru/System.Text.Encoding.Extensions.xml",
  9254. "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml",
  9255. "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml",
  9256. "ref/netstandard1.0/System.Text.Encoding.Extensions.dll",
  9257. "ref/netstandard1.0/System.Text.Encoding.Extensions.xml",
  9258. "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml",
  9259. "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml",
  9260. "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml",
  9261. "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml",
  9262. "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml",
  9263. "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml",
  9264. "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml",
  9265. "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml",
  9266. "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml",
  9267. "ref/netstandard1.3/System.Text.Encoding.Extensions.dll",
  9268. "ref/netstandard1.3/System.Text.Encoding.Extensions.xml",
  9269. "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml",
  9270. "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml",
  9271. "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml",
  9272. "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml",
  9273. "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml",
  9274. "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml",
  9275. "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml",
  9276. "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml",
  9277. "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml",
  9278. "ref/portable-net45+win8+wp8+wpa81/_._",
  9279. "ref/win8/_._",
  9280. "ref/wp80/_._",
  9281. "ref/wpa81/_._",
  9282. "ref/xamarinios10/_._",
  9283. "ref/xamarinmac20/_._",
  9284. "ref/xamarintvos10/_._",
  9285. "ref/xamarinwatchos10/_._"
  9286. ]
  9287. },
  9288. "System.Text.Encodings.Web/4.3.0": {
  9289. "sha512": "Yc1XficqB5ae0yuwAfO8I9dbVW/B0txYWGIhyq/XeJFwWcaSvjyBlRtcuZzpwMS3f57FYoO7EZP1bV16+iHk0A==",
  9290. "type": "package",
  9291. "path": "System.Text.Encodings.Web/4.3.0",
  9292. "files": [
  9293. "System.Text.Encodings.Web.4.3.0.nupkg.sha512",
  9294. "System.Text.Encodings.Web.nuspec",
  9295. "ThirdPartyNotices.txt",
  9296. "dotnet_library_license.txt",
  9297. "lib/netstandard1.0/System.Text.Encodings.Web.dll",
  9298. "lib/netstandard1.0/System.Text.Encodings.Web.xml"
  9299. ]
  9300. },
  9301. "System.Text.RegularExpressions/4.3.0": {
  9302. "sha512": "zmRmBA0opc1WBtIZBIbdhwnUeaT1JU6AUDjGzLeY6alHYGSSBxKCrCJNqbz4GE4k5CdfBE2XEpT8AeZd+XUXGQ==",
  9303. "type": "package",
  9304. "path": "System.Text.RegularExpressions/4.3.0",
  9305. "files": [
  9306. "System.Text.RegularExpressions.4.3.0.nupkg.sha512",
  9307. "System.Text.RegularExpressions.nuspec",
  9308. "ThirdPartyNotices.txt",
  9309. "dotnet_library_license.txt",
  9310. "lib/MonoAndroid10/_._",
  9311. "lib/MonoTouch10/_._",
  9312. "lib/net45/_._",
  9313. "lib/net463/System.Text.RegularExpressions.dll",
  9314. "lib/netcore50/System.Text.RegularExpressions.dll",
  9315. "lib/netstandard1.6/System.Text.RegularExpressions.dll",
  9316. "lib/portable-net45+win8+wp8+wpa81/_._",
  9317. "lib/win8/_._",
  9318. "lib/wp80/_._",
  9319. "lib/wpa81/_._",
  9320. "lib/xamarinios10/_._",
  9321. "lib/xamarinmac20/_._",
  9322. "lib/xamarintvos10/_._",
  9323. "lib/xamarinwatchos10/_._",
  9324. "ref/MonoAndroid10/_._",
  9325. "ref/MonoTouch10/_._",
  9326. "ref/net45/_._",
  9327. "ref/net463/System.Text.RegularExpressions.dll",
  9328. "ref/netcore50/System.Text.RegularExpressions.dll",
  9329. "ref/netcore50/System.Text.RegularExpressions.xml",
  9330. "ref/netcore50/de/System.Text.RegularExpressions.xml",
  9331. "ref/netcore50/es/System.Text.RegularExpressions.xml",
  9332. "ref/netcore50/fr/System.Text.RegularExpressions.xml",
  9333. "ref/netcore50/it/System.Text.RegularExpressions.xml",
  9334. "ref/netcore50/ja/System.Text.RegularExpressions.xml",
  9335. "ref/netcore50/ko/System.Text.RegularExpressions.xml",
  9336. "ref/netcore50/ru/System.Text.RegularExpressions.xml",
  9337. "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml",
  9338. "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml",
  9339. "ref/netcoreapp1.1/System.Text.RegularExpressions.dll",
  9340. "ref/netstandard1.0/System.Text.RegularExpressions.dll",
  9341. "ref/netstandard1.0/System.Text.RegularExpressions.xml",
  9342. "ref/netstandard1.0/de/System.Text.RegularExpressions.xml",
  9343. "ref/netstandard1.0/es/System.Text.RegularExpressions.xml",
  9344. "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml",
  9345. "ref/netstandard1.0/it/System.Text.RegularExpressions.xml",
  9346. "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml",
  9347. "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml",
  9348. "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml",
  9349. "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml",
  9350. "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml",
  9351. "ref/netstandard1.3/System.Text.RegularExpressions.dll",
  9352. "ref/netstandard1.3/System.Text.RegularExpressions.xml",
  9353. "ref/netstandard1.3/de/System.Text.RegularExpressions.xml",
  9354. "ref/netstandard1.3/es/System.Text.RegularExpressions.xml",
  9355. "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml",
  9356. "ref/netstandard1.3/it/System.Text.RegularExpressions.xml",
  9357. "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml",
  9358. "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml",
  9359. "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml",
  9360. "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml",
  9361. "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml",
  9362. "ref/netstandard1.6/System.Text.RegularExpressions.dll",
  9363. "ref/netstandard1.6/System.Text.RegularExpressions.xml",
  9364. "ref/netstandard1.6/de/System.Text.RegularExpressions.xml",
  9365. "ref/netstandard1.6/es/System.Text.RegularExpressions.xml",
  9366. "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml",
  9367. "ref/netstandard1.6/it/System.Text.RegularExpressions.xml",
  9368. "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml",
  9369. "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml",
  9370. "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml",
  9371. "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml",
  9372. "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml",
  9373. "ref/portable-net45+win8+wp8+wpa81/_._",
  9374. "ref/win8/_._",
  9375. "ref/wp80/_._",
  9376. "ref/wpa81/_._",
  9377. "ref/xamarinios10/_._",
  9378. "ref/xamarinmac20/_._",
  9379. "ref/xamarintvos10/_._",
  9380. "ref/xamarinwatchos10/_._"
  9381. ]
  9382. },
  9383. "System.Threading/4.3.0": {
  9384. "sha512": "/MayCVIEltqXBtXrPKVadskHubAE6SnOQpLvifR/dXEOPFRvvwJtVpwqiV101SdHSsJi9Mzb7bpHWMM0C5Hr9Q==",
  9385. "type": "package",
  9386. "path": "System.Threading/4.3.0",
  9387. "files": [
  9388. "System.Threading.4.3.0.nupkg.sha512",
  9389. "System.Threading.nuspec",
  9390. "ThirdPartyNotices.txt",
  9391. "dotnet_library_license.txt",
  9392. "lib/MonoAndroid10/_._",
  9393. "lib/MonoTouch10/_._",
  9394. "lib/net45/_._",
  9395. "lib/netcore50/System.Threading.dll",
  9396. "lib/netstandard1.3/System.Threading.dll",
  9397. "lib/portable-net45+win8+wp8+wpa81/_._",
  9398. "lib/win8/_._",
  9399. "lib/wp80/_._",
  9400. "lib/wpa81/_._",
  9401. "lib/xamarinios10/_._",
  9402. "lib/xamarinmac20/_._",
  9403. "lib/xamarintvos10/_._",
  9404. "lib/xamarinwatchos10/_._",
  9405. "ref/MonoAndroid10/_._",
  9406. "ref/MonoTouch10/_._",
  9407. "ref/net45/_._",
  9408. "ref/netcore50/System.Threading.dll",
  9409. "ref/netcore50/System.Threading.xml",
  9410. "ref/netcore50/de/System.Threading.xml",
  9411. "ref/netcore50/es/System.Threading.xml",
  9412. "ref/netcore50/fr/System.Threading.xml",
  9413. "ref/netcore50/it/System.Threading.xml",
  9414. "ref/netcore50/ja/System.Threading.xml",
  9415. "ref/netcore50/ko/System.Threading.xml",
  9416. "ref/netcore50/ru/System.Threading.xml",
  9417. "ref/netcore50/zh-hans/System.Threading.xml",
  9418. "ref/netcore50/zh-hant/System.Threading.xml",
  9419. "ref/netstandard1.0/System.Threading.dll",
  9420. "ref/netstandard1.0/System.Threading.xml",
  9421. "ref/netstandard1.0/de/System.Threading.xml",
  9422. "ref/netstandard1.0/es/System.Threading.xml",
  9423. "ref/netstandard1.0/fr/System.Threading.xml",
  9424. "ref/netstandard1.0/it/System.Threading.xml",
  9425. "ref/netstandard1.0/ja/System.Threading.xml",
  9426. "ref/netstandard1.0/ko/System.Threading.xml",
  9427. "ref/netstandard1.0/ru/System.Threading.xml",
  9428. "ref/netstandard1.0/zh-hans/System.Threading.xml",
  9429. "ref/netstandard1.0/zh-hant/System.Threading.xml",
  9430. "ref/netstandard1.3/System.Threading.dll",
  9431. "ref/netstandard1.3/System.Threading.xml",
  9432. "ref/netstandard1.3/de/System.Threading.xml",
  9433. "ref/netstandard1.3/es/System.Threading.xml",
  9434. "ref/netstandard1.3/fr/System.Threading.xml",
  9435. "ref/netstandard1.3/it/System.Threading.xml",
  9436. "ref/netstandard1.3/ja/System.Threading.xml",
  9437. "ref/netstandard1.3/ko/System.Threading.xml",
  9438. "ref/netstandard1.3/ru/System.Threading.xml",
  9439. "ref/netstandard1.3/zh-hans/System.Threading.xml",
  9440. "ref/netstandard1.3/zh-hant/System.Threading.xml",
  9441. "ref/portable-net45+win8+wp8+wpa81/_._",
  9442. "ref/win8/_._",
  9443. "ref/wp80/_._",
  9444. "ref/wpa81/_._",
  9445. "ref/xamarinios10/_._",
  9446. "ref/xamarinmac20/_._",
  9447. "ref/xamarintvos10/_._",
  9448. "ref/xamarinwatchos10/_._",
  9449. "runtimes/aot/lib/netcore50/System.Threading.dll"
  9450. ]
  9451. },
  9452. "System.Threading.Overlapped/4.0.1": {
  9453. "sha512": "QfQWxe2enhtiKNtA3sY1OYgvk1Pz3Z8J4Uvx+g3LFOStpA9wsylP603eHP5NeFTcxBlYqyh5O1wvv3vy82Tp/Q==",
  9454. "type": "package",
  9455. "path": "System.Threading.Overlapped/4.0.1",
  9456. "files": [
  9457. "System.Threading.Overlapped.4.0.1.nupkg.sha512",
  9458. "System.Threading.Overlapped.nuspec",
  9459. "ThirdPartyNotices.txt",
  9460. "dotnet_library_license.txt",
  9461. "lib/net46/System.Threading.Overlapped.dll",
  9462. "ref/net46/System.Threading.Overlapped.dll",
  9463. "ref/netstandard1.3/System.Threading.Overlapped.dll",
  9464. "ref/netstandard1.3/System.Threading.Overlapped.xml",
  9465. "ref/netstandard1.3/de/System.Threading.Overlapped.xml",
  9466. "ref/netstandard1.3/es/System.Threading.Overlapped.xml",
  9467. "ref/netstandard1.3/fr/System.Threading.Overlapped.xml",
  9468. "ref/netstandard1.3/it/System.Threading.Overlapped.xml",
  9469. "ref/netstandard1.3/ja/System.Threading.Overlapped.xml",
  9470. "ref/netstandard1.3/ko/System.Threading.Overlapped.xml",
  9471. "ref/netstandard1.3/ru/System.Threading.Overlapped.xml",
  9472. "ref/netstandard1.3/zh-hans/System.Threading.Overlapped.xml",
  9473. "ref/netstandard1.3/zh-hant/System.Threading.Overlapped.xml",
  9474. "runtimes/unix/lib/netstandard1.3/System.Threading.Overlapped.dll",
  9475. "runtimes/win/lib/net46/System.Threading.Overlapped.dll",
  9476. "runtimes/win/lib/netcore50/System.Threading.Overlapped.dll",
  9477. "runtimes/win/lib/netstandard1.3/System.Threading.Overlapped.dll"
  9478. ]
  9479. },
  9480. "System.Threading.Tasks/4.3.0": {
  9481. "sha512": "3X5WUrc2NZmi2pV7HU3zivGrMUsuT3r0ToS/V+bmgNRV+vd+jUngFZqGRLAs6Xed/+MJO+sd2++3G3YA+kUvgg==",
  9482. "type": "package",
  9483. "path": "System.Threading.Tasks/4.3.0",
  9484. "files": [
  9485. "System.Threading.Tasks.4.3.0.nupkg.sha512",
  9486. "System.Threading.Tasks.nuspec",
  9487. "ThirdPartyNotices.txt",
  9488. "dotnet_library_license.txt",
  9489. "lib/MonoAndroid10/_._",
  9490. "lib/MonoTouch10/_._",
  9491. "lib/net45/_._",
  9492. "lib/portable-net45+win8+wp8+wpa81/_._",
  9493. "lib/win8/_._",
  9494. "lib/wp80/_._",
  9495. "lib/wpa81/_._",
  9496. "lib/xamarinios10/_._",
  9497. "lib/xamarinmac20/_._",
  9498. "lib/xamarintvos10/_._",
  9499. "lib/xamarinwatchos10/_._",
  9500. "ref/MonoAndroid10/_._",
  9501. "ref/MonoTouch10/_._",
  9502. "ref/net45/_._",
  9503. "ref/netcore50/System.Threading.Tasks.dll",
  9504. "ref/netcore50/System.Threading.Tasks.xml",
  9505. "ref/netcore50/de/System.Threading.Tasks.xml",
  9506. "ref/netcore50/es/System.Threading.Tasks.xml",
  9507. "ref/netcore50/fr/System.Threading.Tasks.xml",
  9508. "ref/netcore50/it/System.Threading.Tasks.xml",
  9509. "ref/netcore50/ja/System.Threading.Tasks.xml",
  9510. "ref/netcore50/ko/System.Threading.Tasks.xml",
  9511. "ref/netcore50/ru/System.Threading.Tasks.xml",
  9512. "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
  9513. "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
  9514. "ref/netstandard1.0/System.Threading.Tasks.dll",
  9515. "ref/netstandard1.0/System.Threading.Tasks.xml",
  9516. "ref/netstandard1.0/de/System.Threading.Tasks.xml",
  9517. "ref/netstandard1.0/es/System.Threading.Tasks.xml",
  9518. "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
  9519. "ref/netstandard1.0/it/System.Threading.Tasks.xml",
  9520. "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
  9521. "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
  9522. "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
  9523. "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
  9524. "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
  9525. "ref/netstandard1.3/System.Threading.Tasks.dll",
  9526. "ref/netstandard1.3/System.Threading.Tasks.xml",
  9527. "ref/netstandard1.3/de/System.Threading.Tasks.xml",
  9528. "ref/netstandard1.3/es/System.Threading.Tasks.xml",
  9529. "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
  9530. "ref/netstandard1.3/it/System.Threading.Tasks.xml",
  9531. "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
  9532. "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
  9533. "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
  9534. "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
  9535. "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
  9536. "ref/portable-net45+win8+wp8+wpa81/_._",
  9537. "ref/win8/_._",
  9538. "ref/wp80/_._",
  9539. "ref/wpa81/_._",
  9540. "ref/xamarinios10/_._",
  9541. "ref/xamarinmac20/_._",
  9542. "ref/xamarintvos10/_._",
  9543. "ref/xamarinwatchos10/_._"
  9544. ]
  9545. },
  9546. "System.Threading.Tasks.Dataflow/4.6.0": {
  9547. "sha512": "xoVYfOA5XE9dfmQeNewe/8fiuYLo9oyyCzDk/oKHfGXIzaezrwA6XfCjmLDiB6sOwglJJQrxyCJlXMVsi73f4A==",
  9548. "type": "package",
  9549. "path": "System.Threading.Tasks.Dataflow/4.6.0",
  9550. "files": [
  9551. "System.Threading.Tasks.Dataflow.4.6.0.nupkg.sha512",
  9552. "System.Threading.Tasks.Dataflow.nuspec",
  9553. "ThirdPartyNotices.txt",
  9554. "dotnet_library_license.txt",
  9555. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.XML",
  9556. "lib/netstandard1.0/System.Threading.Tasks.Dataflow.dll",
  9557. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.XML",
  9558. "lib/netstandard1.1/System.Threading.Tasks.Dataflow.dll"
  9559. ]
  9560. },
  9561. "System.Threading.Tasks.Extensions/4.3.0": {
  9562. "sha512": "Fndgac424TbKeV2uY0TXopkg6/4WfcKT1+vYa9jCM0yrx7rJYOFx/yOYw7qoGijbyUtHxbo6ieRI3+23vhrgiA==",
  9563. "type": "package",
  9564. "path": "System.Threading.Tasks.Extensions/4.3.0",
  9565. "files": [
  9566. "System.Threading.Tasks.Extensions.4.3.0.nupkg.sha512",
  9567. "System.Threading.Tasks.Extensions.nuspec",
  9568. "ThirdPartyNotices.txt",
  9569. "dotnet_library_license.txt",
  9570. "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
  9571. "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
  9572. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
  9573. "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml"
  9574. ]
  9575. },
  9576. "System.Threading.Tasks.Parallel/4.0.1": {
  9577. "sha512": "NeY1d7KYltSvSSYQX2FxqN/pktX0wb6urCRf3MjpbOPiRZhYBFjqCL2a8Pefgqls6np4r8ir8qA2WGZegqq3Bg==",
  9578. "type": "package",
  9579. "path": "System.Threading.Tasks.Parallel/4.0.1",
  9580. "files": [
  9581. "System.Threading.Tasks.Parallel.4.0.1.nupkg.sha512",
  9582. "System.Threading.Tasks.Parallel.nuspec",
  9583. "ThirdPartyNotices.txt",
  9584. "dotnet_library_license.txt",
  9585. "lib/MonoAndroid10/_._",
  9586. "lib/MonoTouch10/_._",
  9587. "lib/net45/_._",
  9588. "lib/netcore50/System.Threading.Tasks.Parallel.dll",
  9589. "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll",
  9590. "lib/portable-net45+win8+wpa81/_._",
  9591. "lib/win8/_._",
  9592. "lib/wpa81/_._",
  9593. "lib/xamarinios10/_._",
  9594. "lib/xamarinmac20/_._",
  9595. "lib/xamarintvos10/_._",
  9596. "lib/xamarinwatchos10/_._",
  9597. "ref/MonoAndroid10/_._",
  9598. "ref/MonoTouch10/_._",
  9599. "ref/net45/_._",
  9600. "ref/netcore50/System.Threading.Tasks.Parallel.dll",
  9601. "ref/netcore50/System.Threading.Tasks.Parallel.xml",
  9602. "ref/netcore50/de/System.Threading.Tasks.Parallel.xml",
  9603. "ref/netcore50/es/System.Threading.Tasks.Parallel.xml",
  9604. "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml",
  9605. "ref/netcore50/it/System.Threading.Tasks.Parallel.xml",
  9606. "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml",
  9607. "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml",
  9608. "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml",
  9609. "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml",
  9610. "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml",
  9611. "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll",
  9612. "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml",
  9613. "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml",
  9614. "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml",
  9615. "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml",
  9616. "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml",
  9617. "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml",
  9618. "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml",
  9619. "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml",
  9620. "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml",
  9621. "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml",
  9622. "ref/portable-net45+win8+wpa81/_._",
  9623. "ref/win8/_._",
  9624. "ref/wpa81/_._",
  9625. "ref/xamarinios10/_._",
  9626. "ref/xamarinmac20/_._",
  9627. "ref/xamarintvos10/_._",
  9628. "ref/xamarinwatchos10/_._"
  9629. ]
  9630. },
  9631. "System.Threading.Thread/4.0.0": {
  9632. "sha512": "vfYsSJUy2/2CLmFSQTl94avKqexfECRM3hOX6v1Fo0/etcdQpD9TZTBScGSVeIB6l9OfpEBKNO9WoWinj62oSA==",
  9633. "type": "package",
  9634. "path": "System.Threading.Thread/4.0.0",
  9635. "files": [
  9636. "System.Threading.Thread.4.0.0.nupkg.sha512",
  9637. "System.Threading.Thread.nuspec",
  9638. "ThirdPartyNotices.txt",
  9639. "dotnet_library_license.txt",
  9640. "lib/MonoAndroid10/_._",
  9641. "lib/MonoTouch10/_._",
  9642. "lib/net46/System.Threading.Thread.dll",
  9643. "lib/netcore50/_._",
  9644. "lib/netstandard1.3/System.Threading.Thread.dll",
  9645. "lib/xamarinios10/_._",
  9646. "lib/xamarinmac20/_._",
  9647. "lib/xamarintvos10/_._",
  9648. "lib/xamarinwatchos10/_._",
  9649. "ref/MonoAndroid10/_._",
  9650. "ref/MonoTouch10/_._",
  9651. "ref/net46/System.Threading.Thread.dll",
  9652. "ref/netstandard1.3/System.Threading.Thread.dll",
  9653. "ref/netstandard1.3/System.Threading.Thread.xml",
  9654. "ref/netstandard1.3/de/System.Threading.Thread.xml",
  9655. "ref/netstandard1.3/es/System.Threading.Thread.xml",
  9656. "ref/netstandard1.3/fr/System.Threading.Thread.xml",
  9657. "ref/netstandard1.3/it/System.Threading.Thread.xml",
  9658. "ref/netstandard1.3/ja/System.Threading.Thread.xml",
  9659. "ref/netstandard1.3/ko/System.Threading.Thread.xml",
  9660. "ref/netstandard1.3/ru/System.Threading.Thread.xml",
  9661. "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml",
  9662. "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml",
  9663. "ref/xamarinios10/_._",
  9664. "ref/xamarinmac20/_._",
  9665. "ref/xamarintvos10/_._",
  9666. "ref/xamarinwatchos10/_._"
  9667. ]
  9668. },
  9669. "System.Threading.ThreadPool/4.0.10": {
  9670. "sha512": "0hgz4zrG3j1FXFkESz7IPHTk82jjas9cvOPp92yjPCfLHiz1WAYmXOw5L+SbyiGvYPDs1gr+Sw4nb8Sba19Vwg==",
  9671. "type": "package",
  9672. "path": "System.Threading.ThreadPool/4.0.10",
  9673. "files": [
  9674. "System.Threading.ThreadPool.4.0.10.nupkg.sha512",
  9675. "System.Threading.ThreadPool.nuspec",
  9676. "ThirdPartyNotices.txt",
  9677. "dotnet_library_license.txt",
  9678. "lib/MonoAndroid10/_._",
  9679. "lib/MonoTouch10/_._",
  9680. "lib/net46/System.Threading.ThreadPool.dll",
  9681. "lib/netcore50/_._",
  9682. "lib/netstandard1.3/System.Threading.ThreadPool.dll",
  9683. "lib/xamarinios10/_._",
  9684. "lib/xamarinmac20/_._",
  9685. "lib/xamarintvos10/_._",
  9686. "lib/xamarinwatchos10/_._",
  9687. "ref/MonoAndroid10/_._",
  9688. "ref/MonoTouch10/_._",
  9689. "ref/net46/System.Threading.ThreadPool.dll",
  9690. "ref/netstandard1.3/System.Threading.ThreadPool.dll",
  9691. "ref/netstandard1.3/System.Threading.ThreadPool.xml",
  9692. "ref/netstandard1.3/de/System.Threading.ThreadPool.xml",
  9693. "ref/netstandard1.3/es/System.Threading.ThreadPool.xml",
  9694. "ref/netstandard1.3/fr/System.Threading.ThreadPool.xml",
  9695. "ref/netstandard1.3/it/System.Threading.ThreadPool.xml",
  9696. "ref/netstandard1.3/ja/System.Threading.ThreadPool.xml",
  9697. "ref/netstandard1.3/ko/System.Threading.ThreadPool.xml",
  9698. "ref/netstandard1.3/ru/System.Threading.ThreadPool.xml",
  9699. "ref/netstandard1.3/zh-hans/System.Threading.ThreadPool.xml",
  9700. "ref/netstandard1.3/zh-hant/System.Threading.ThreadPool.xml",
  9701. "ref/xamarinios10/_._",
  9702. "ref/xamarinmac20/_._",
  9703. "ref/xamarintvos10/_._",
  9704. "ref/xamarinwatchos10/_._"
  9705. ]
  9706. },
  9707. "System.Threading.Timer/4.3.0": {
  9708. "sha512": "hoKRMGwOfTpSykA4CMiStPWmfIETJ6W6snKuqgHi1TZwnOdpCfXI5jkm2QEclcq04aVaqvd6/xkoXd8iObQpHw==",
  9709. "type": "package",
  9710. "path": "System.Threading.Timer/4.3.0",
  9711. "files": [
  9712. "System.Threading.Timer.4.3.0.nupkg.sha512",
  9713. "System.Threading.Timer.nuspec",
  9714. "ThirdPartyNotices.txt",
  9715. "dotnet_library_license.txt",
  9716. "lib/MonoAndroid10/_._",
  9717. "lib/MonoTouch10/_._",
  9718. "lib/net451/_._",
  9719. "lib/portable-net451+win81+wpa81/_._",
  9720. "lib/win81/_._",
  9721. "lib/wpa81/_._",
  9722. "lib/xamarinios10/_._",
  9723. "lib/xamarinmac20/_._",
  9724. "lib/xamarintvos10/_._",
  9725. "lib/xamarinwatchos10/_._",
  9726. "ref/MonoAndroid10/_._",
  9727. "ref/MonoTouch10/_._",
  9728. "ref/net451/_._",
  9729. "ref/netcore50/System.Threading.Timer.dll",
  9730. "ref/netcore50/System.Threading.Timer.xml",
  9731. "ref/netcore50/de/System.Threading.Timer.xml",
  9732. "ref/netcore50/es/System.Threading.Timer.xml",
  9733. "ref/netcore50/fr/System.Threading.Timer.xml",
  9734. "ref/netcore50/it/System.Threading.Timer.xml",
  9735. "ref/netcore50/ja/System.Threading.Timer.xml",
  9736. "ref/netcore50/ko/System.Threading.Timer.xml",
  9737. "ref/netcore50/ru/System.Threading.Timer.xml",
  9738. "ref/netcore50/zh-hans/System.Threading.Timer.xml",
  9739. "ref/netcore50/zh-hant/System.Threading.Timer.xml",
  9740. "ref/netstandard1.2/System.Threading.Timer.dll",
  9741. "ref/netstandard1.2/System.Threading.Timer.xml",
  9742. "ref/netstandard1.2/de/System.Threading.Timer.xml",
  9743. "ref/netstandard1.2/es/System.Threading.Timer.xml",
  9744. "ref/netstandard1.2/fr/System.Threading.Timer.xml",
  9745. "ref/netstandard1.2/it/System.Threading.Timer.xml",
  9746. "ref/netstandard1.2/ja/System.Threading.Timer.xml",
  9747. "ref/netstandard1.2/ko/System.Threading.Timer.xml",
  9748. "ref/netstandard1.2/ru/System.Threading.Timer.xml",
  9749. "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml",
  9750. "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml",
  9751. "ref/portable-net451+win81+wpa81/_._",
  9752. "ref/win81/_._",
  9753. "ref/wpa81/_._",
  9754. "ref/xamarinios10/_._",
  9755. "ref/xamarinmac20/_._",
  9756. "ref/xamarintvos10/_._",
  9757. "ref/xamarinwatchos10/_._"
  9758. ]
  9759. },
  9760. "System.Xml.ReaderWriter/4.3.0": {
  9761. "sha512": "f0HgI5Hp/jvkyqr1qldLrqps4+mjn6XHNoWQ1Cgj3L2paZUHq3fdRVU1NoEBYOByL/O6vXIS0D62MpyEC/Mhqw==",
  9762. "type": "package",
  9763. "path": "System.Xml.ReaderWriter/4.3.0",
  9764. "files": [
  9765. "System.Xml.ReaderWriter.4.3.0.nupkg.sha512",
  9766. "System.Xml.ReaderWriter.nuspec",
  9767. "ThirdPartyNotices.txt",
  9768. "dotnet_library_license.txt",
  9769. "lib/MonoAndroid10/_._",
  9770. "lib/MonoTouch10/_._",
  9771. "lib/net45/_._",
  9772. "lib/net46/System.Xml.ReaderWriter.dll",
  9773. "lib/netcore50/System.Xml.ReaderWriter.dll",
  9774. "lib/netstandard1.3/System.Xml.ReaderWriter.dll",
  9775. "lib/portable-net45+win8+wp8+wpa81/_._",
  9776. "lib/win8/_._",
  9777. "lib/wp80/_._",
  9778. "lib/wpa81/_._",
  9779. "lib/xamarinios10/_._",
  9780. "lib/xamarinmac20/_._",
  9781. "lib/xamarintvos10/_._",
  9782. "lib/xamarinwatchos10/_._",
  9783. "ref/MonoAndroid10/_._",
  9784. "ref/MonoTouch10/_._",
  9785. "ref/net45/_._",
  9786. "ref/net46/System.Xml.ReaderWriter.dll",
  9787. "ref/netcore50/System.Xml.ReaderWriter.dll",
  9788. "ref/netcore50/System.Xml.ReaderWriter.xml",
  9789. "ref/netcore50/de/System.Xml.ReaderWriter.xml",
  9790. "ref/netcore50/es/System.Xml.ReaderWriter.xml",
  9791. "ref/netcore50/fr/System.Xml.ReaderWriter.xml",
  9792. "ref/netcore50/it/System.Xml.ReaderWriter.xml",
  9793. "ref/netcore50/ja/System.Xml.ReaderWriter.xml",
  9794. "ref/netcore50/ko/System.Xml.ReaderWriter.xml",
  9795. "ref/netcore50/ru/System.Xml.ReaderWriter.xml",
  9796. "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml",
  9797. "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml",
  9798. "ref/netstandard1.0/System.Xml.ReaderWriter.dll",
  9799. "ref/netstandard1.0/System.Xml.ReaderWriter.xml",
  9800. "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml",
  9801. "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml",
  9802. "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml",
  9803. "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml",
  9804. "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml",
  9805. "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml",
  9806. "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml",
  9807. "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml",
  9808. "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml",
  9809. "ref/netstandard1.3/System.Xml.ReaderWriter.dll",
  9810. "ref/netstandard1.3/System.Xml.ReaderWriter.xml",
  9811. "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml",
  9812. "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml",
  9813. "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml",
  9814. "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml",
  9815. "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml",
  9816. "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml",
  9817. "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml",
  9818. "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml",
  9819. "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml",
  9820. "ref/portable-net45+win8+wp8+wpa81/_._",
  9821. "ref/win8/_._",
  9822. "ref/wp80/_._",
  9823. "ref/wpa81/_._",
  9824. "ref/xamarinios10/_._",
  9825. "ref/xamarinmac20/_._",
  9826. "ref/xamarintvos10/_._",
  9827. "ref/xamarinwatchos10/_._"
  9828. ]
  9829. },
  9830. "System.Xml.XDocument/4.3.0": {
  9831. "sha512": "x5+orDQBjivGFynvLXDJgkQSeF64z7GTA7EooyogRG8/8U67m7jhEFNf5bJPfQdJSmlgBEVKxsVH3uepJ4fmqA==",
  9832. "type": "package",
  9833. "path": "System.Xml.XDocument/4.3.0",
  9834. "files": [
  9835. "System.Xml.XDocument.4.3.0.nupkg.sha512",
  9836. "System.Xml.XDocument.nuspec",
  9837. "ThirdPartyNotices.txt",
  9838. "dotnet_library_license.txt",
  9839. "lib/MonoAndroid10/_._",
  9840. "lib/MonoTouch10/_._",
  9841. "lib/net45/_._",
  9842. "lib/netcore50/System.Xml.XDocument.dll",
  9843. "lib/netstandard1.3/System.Xml.XDocument.dll",
  9844. "lib/portable-net45+win8+wp8+wpa81/_._",
  9845. "lib/win8/_._",
  9846. "lib/wp80/_._",
  9847. "lib/wpa81/_._",
  9848. "lib/xamarinios10/_._",
  9849. "lib/xamarinmac20/_._",
  9850. "lib/xamarintvos10/_._",
  9851. "lib/xamarinwatchos10/_._",
  9852. "ref/MonoAndroid10/_._",
  9853. "ref/MonoTouch10/_._",
  9854. "ref/net45/_._",
  9855. "ref/netcore50/System.Xml.XDocument.dll",
  9856. "ref/netcore50/System.Xml.XDocument.xml",
  9857. "ref/netcore50/de/System.Xml.XDocument.xml",
  9858. "ref/netcore50/es/System.Xml.XDocument.xml",
  9859. "ref/netcore50/fr/System.Xml.XDocument.xml",
  9860. "ref/netcore50/it/System.Xml.XDocument.xml",
  9861. "ref/netcore50/ja/System.Xml.XDocument.xml",
  9862. "ref/netcore50/ko/System.Xml.XDocument.xml",
  9863. "ref/netcore50/ru/System.Xml.XDocument.xml",
  9864. "ref/netcore50/zh-hans/System.Xml.XDocument.xml",
  9865. "ref/netcore50/zh-hant/System.Xml.XDocument.xml",
  9866. "ref/netstandard1.0/System.Xml.XDocument.dll",
  9867. "ref/netstandard1.0/System.Xml.XDocument.xml",
  9868. "ref/netstandard1.0/de/System.Xml.XDocument.xml",
  9869. "ref/netstandard1.0/es/System.Xml.XDocument.xml",
  9870. "ref/netstandard1.0/fr/System.Xml.XDocument.xml",
  9871. "ref/netstandard1.0/it/System.Xml.XDocument.xml",
  9872. "ref/netstandard1.0/ja/System.Xml.XDocument.xml",
  9873. "ref/netstandard1.0/ko/System.Xml.XDocument.xml",
  9874. "ref/netstandard1.0/ru/System.Xml.XDocument.xml",
  9875. "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml",
  9876. "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml",
  9877. "ref/netstandard1.3/System.Xml.XDocument.dll",
  9878. "ref/netstandard1.3/System.Xml.XDocument.xml",
  9879. "ref/netstandard1.3/de/System.Xml.XDocument.xml",
  9880. "ref/netstandard1.3/es/System.Xml.XDocument.xml",
  9881. "ref/netstandard1.3/fr/System.Xml.XDocument.xml",
  9882. "ref/netstandard1.3/it/System.Xml.XDocument.xml",
  9883. "ref/netstandard1.3/ja/System.Xml.XDocument.xml",
  9884. "ref/netstandard1.3/ko/System.Xml.XDocument.xml",
  9885. "ref/netstandard1.3/ru/System.Xml.XDocument.xml",
  9886. "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml",
  9887. "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml",
  9888. "ref/portable-net45+win8+wp8+wpa81/_._",
  9889. "ref/win8/_._",
  9890. "ref/wp80/_._",
  9891. "ref/wpa81/_._",
  9892. "ref/xamarinios10/_._",
  9893. "ref/xamarinmac20/_._",
  9894. "ref/xamarintvos10/_._",
  9895. "ref/xamarinwatchos10/_._"
  9896. ]
  9897. },
  9898. "System.Xml.XmlDocument/4.0.1": {
  9899. "sha512": "467a5tcqMHHaXMzG6aDXnsLSwJAmW7gHPeqOIbvXlQ/+hDRdbyFGXHe+npQ2tcYw138IRwynigPPuYnG57qwMQ==",
  9900. "type": "package",
  9901. "path": "System.Xml.XmlDocument/4.0.1",
  9902. "files": [
  9903. "System.Xml.XmlDocument.4.0.1.nupkg.sha512",
  9904. "System.Xml.XmlDocument.nuspec",
  9905. "ThirdPartyNotices.txt",
  9906. "dotnet_library_license.txt",
  9907. "lib/MonoAndroid10/_._",
  9908. "lib/MonoTouch10/_._",
  9909. "lib/net46/System.Xml.XmlDocument.dll",
  9910. "lib/netstandard1.3/System.Xml.XmlDocument.dll",
  9911. "lib/xamarinios10/_._",
  9912. "lib/xamarinmac20/_._",
  9913. "lib/xamarintvos10/_._",
  9914. "lib/xamarinwatchos10/_._",
  9915. "ref/MonoAndroid10/_._",
  9916. "ref/MonoTouch10/_._",
  9917. "ref/net46/System.Xml.XmlDocument.dll",
  9918. "ref/netstandard1.3/System.Xml.XmlDocument.dll",
  9919. "ref/netstandard1.3/System.Xml.XmlDocument.xml",
  9920. "ref/netstandard1.3/de/System.Xml.XmlDocument.xml",
  9921. "ref/netstandard1.3/es/System.Xml.XmlDocument.xml",
  9922. "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml",
  9923. "ref/netstandard1.3/it/System.Xml.XmlDocument.xml",
  9924. "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml",
  9925. "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml",
  9926. "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml",
  9927. "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml",
  9928. "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml",
  9929. "ref/xamarinios10/_._",
  9930. "ref/xamarinmac20/_._",
  9931. "ref/xamarintvos10/_._",
  9932. "ref/xamarinwatchos10/_._"
  9933. ]
  9934. },
  9935. "System.Xml.XPath/4.0.1": {
  9936. "sha512": "fNMrSYKz66pOCUqBLLmd3sBXCULopHsu78uU1NgMHn/SOMpXdYyIbfY+ed8O7WgzNrPDoxXXS5qxPDWagBBYWw==",
  9937. "type": "package",
  9938. "path": "System.Xml.XPath/4.0.1",
  9939. "files": [
  9940. "System.Xml.XPath.4.0.1.nupkg.sha512",
  9941. "System.Xml.XPath.nuspec",
  9942. "ThirdPartyNotices.txt",
  9943. "dotnet_library_license.txt",
  9944. "lib/MonoAndroid10/_._",
  9945. "lib/MonoTouch10/_._",
  9946. "lib/net46/System.Xml.XPath.dll",
  9947. "lib/netstandard1.3/System.Xml.XPath.dll",
  9948. "lib/xamarinios10/_._",
  9949. "lib/xamarinmac20/_._",
  9950. "lib/xamarintvos10/_._",
  9951. "lib/xamarinwatchos10/_._",
  9952. "ref/MonoAndroid10/_._",
  9953. "ref/MonoTouch10/_._",
  9954. "ref/net46/System.Xml.XPath.dll",
  9955. "ref/netstandard1.3/System.Xml.XPath.dll",
  9956. "ref/netstandard1.3/System.Xml.XPath.xml",
  9957. "ref/netstandard1.3/de/System.Xml.XPath.xml",
  9958. "ref/netstandard1.3/es/System.Xml.XPath.xml",
  9959. "ref/netstandard1.3/fr/System.Xml.XPath.xml",
  9960. "ref/netstandard1.3/it/System.Xml.XPath.xml",
  9961. "ref/netstandard1.3/ja/System.Xml.XPath.xml",
  9962. "ref/netstandard1.3/ko/System.Xml.XPath.xml",
  9963. "ref/netstandard1.3/ru/System.Xml.XPath.xml",
  9964. "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml",
  9965. "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml",
  9966. "ref/xamarinios10/_._",
  9967. "ref/xamarinmac20/_._",
  9968. "ref/xamarintvos10/_._",
  9969. "ref/xamarinwatchos10/_._"
  9970. ]
  9971. },
  9972. "System.Xml.XPath.XDocument/4.0.1": {
  9973. "sha512": "M4noCUSSS3m/E9IwgkkdFA9dVeouBSP7jx4sozDLu2wm86R4zfhIsitSgfeuobLXZWEQ9AKZGLY7SmNaRGD4mA==",
  9974. "type": "package",
  9975. "path": "System.Xml.XPath.XDocument/4.0.1",
  9976. "files": [
  9977. "System.Xml.XPath.XDocument.4.0.1.nupkg.sha512",
  9978. "System.Xml.XPath.XDocument.nuspec",
  9979. "ThirdPartyNotices.txt",
  9980. "dotnet_library_license.txt",
  9981. "lib/MonoAndroid10/_._",
  9982. "lib/MonoTouch10/_._",
  9983. "lib/net46/System.Xml.XPath.XDocument.dll",
  9984. "lib/netstandard1.3/System.Xml.XPath.XDocument.dll",
  9985. "lib/xamarinios10/_._",
  9986. "lib/xamarinmac20/_._",
  9987. "lib/xamarintvos10/_._",
  9988. "lib/xamarinwatchos10/_._",
  9989. "ref/MonoAndroid10/_._",
  9990. "ref/MonoTouch10/_._",
  9991. "ref/net46/System.Xml.XPath.XDocument.dll",
  9992. "ref/netstandard1.3/System.Xml.XPath.XDocument.dll",
  9993. "ref/netstandard1.3/System.Xml.XPath.XDocument.xml",
  9994. "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml",
  9995. "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml",
  9996. "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml",
  9997. "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml",
  9998. "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml",
  9999. "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml",
  10000. "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml",
  10001. "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml",
  10002. "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml",
  10003. "ref/xamarinios10/_._",
  10004. "ref/xamarinmac20/_._",
  10005. "ref/xamarintvos10/_._",
  10006. "ref/xamarinwatchos10/_._"
  10007. ]
  10008. },
  10009. "xunit/2.1.0": {
  10010. "sha512": "u/7VQSOSXa7kSG4iK6Lcn7RqKZQ3hk7cnyMNVMpXHSP0RI5VQEtc44hvkG3LyWOVsx1dhUDD3rPAHAxyOUDQJw==",
  10011. "type": "package",
  10012. "path": "xunit/2.1.0",
  10013. "files": [
  10014. "xunit.2.1.0.nupkg.sha512",
  10015. "xunit.nuspec"
  10016. ]
  10017. },
  10018. "xunit.abstractions/2.0.0": {
  10019. "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==",
  10020. "type": "package",
  10021. "path": "xunit.abstractions/2.0.0",
  10022. "files": [
  10023. "lib/net35/xunit.abstractions.dll",
  10024. "lib/net35/xunit.abstractions.xml",
  10025. "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll",
  10026. "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml",
  10027. "xunit.abstractions.2.0.0.nupkg.sha512",
  10028. "xunit.abstractions.nuspec"
  10029. ]
  10030. },
  10031. "xunit.assert/2.1.0": {
  10032. "sha512": "Hhhw+YaTe+BGhbr57dxVE+6VJk8BfThqFFii1XIsSZ4qx+SSCixprJC10JkiLRVSTfWyT8W/4nAf6NQgIrmBxA==",
  10033. "type": "package",
  10034. "path": "xunit.assert/2.1.0",
  10035. "files": [
  10036. "lib/dotnet/xunit.assert.dll",
  10037. "lib/dotnet/xunit.assert.pdb",
  10038. "lib/dotnet/xunit.assert.xml",
  10039. "lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll",
  10040. "lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb",
  10041. "lib/portable-net45+win8+wp8+wpa81/xunit.assert.xml",
  10042. "xunit.assert.2.1.0.nupkg.sha512",
  10043. "xunit.assert.nuspec"
  10044. ]
  10045. },
  10046. "xunit.core/2.1.0": {
  10047. "sha512": "jlbYdPbnkPIRwJllcT/tQZCNsSElVDEymdpJfH79uTUrPARkELVYw9o/zhAjKZXmeikGqGK5C2Yny4gTNoEu0Q==",
  10048. "type": "package",
  10049. "path": "xunit.core/2.1.0",
  10050. "files": [
  10051. "build/_desktop/xunit.execution.desktop.dll",
  10052. "build/dnx451/_._",
  10053. "build/monoandroid/_._",
  10054. "build/monotouch/_._",
  10055. "build/net45/_._",
  10056. "build/portable-net45+win8+wp8+wpa81/xunit.core.props",
  10057. "build/win8/_._",
  10058. "build/win81/xunit.core.props",
  10059. "build/wp8/_._",
  10060. "build/wpa81/xunit.core.props",
  10061. "build/xamarinios/_._",
  10062. "xunit.core.2.1.0.nupkg.sha512",
  10063. "xunit.core.nuspec"
  10064. ]
  10065. },
  10066. "xunit.extensibility.core/2.1.0": {
  10067. "sha512": "ANWM3WxeaeHjACLRlmrv+xOc0WAcr3cvIiJE+gqbdzTv1NCH4p1VDyT+8WmmdCc9db0WFiJLaDy4YTYsL1wWXw==",
  10068. "type": "package",
  10069. "path": "xunit.extensibility.core/2.1.0",
  10070. "files": [
  10071. "lib/dotnet/xunit.core.dll",
  10072. "lib/dotnet/xunit.core.dll.tdnet",
  10073. "lib/dotnet/xunit.core.pdb",
  10074. "lib/dotnet/xunit.core.xml",
  10075. "lib/dotnet/xunit.runner.tdnet.dll",
  10076. "lib/dotnet/xunit.runner.utility.desktop.dll",
  10077. "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll",
  10078. "lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet",
  10079. "lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb",
  10080. "lib/portable-net45+win8+wp8+wpa81/xunit.core.xml",
  10081. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll",
  10082. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll",
  10083. "xunit.extensibility.core.2.1.0.nupkg.sha512",
  10084. "xunit.extensibility.core.nuspec"
  10085. ]
  10086. },
  10087. "xunit.extensibility.execution/2.1.0": {
  10088. "sha512": "tAoNafoVknKa3sZJPMvtZRnhOSk3gasEGeceSm7w/gyGwsR/OXFxndWJB1xSHeoy33d3Z6jFqn4A3j+pWCF0Ew==",
  10089. "type": "package",
  10090. "path": "xunit.extensibility.execution/2.1.0",
  10091. "files": [
  10092. "lib/dnx451/xunit.execution.dotnet.dll",
  10093. "lib/dnx451/xunit.execution.dotnet.pdb",
  10094. "lib/dnx451/xunit.execution.dotnet.xml",
  10095. "lib/dotnet/xunit.execution.dotnet.dll",
  10096. "lib/dotnet/xunit.execution.dotnet.pdb",
  10097. "lib/dotnet/xunit.execution.dotnet.xml",
  10098. "lib/monoandroid/xunit.execution.dotnet.dll",
  10099. "lib/monoandroid/xunit.execution.dotnet.pdb",
  10100. "lib/monoandroid/xunit.execution.dotnet.xml",
  10101. "lib/monotouch/xunit.execution.dotnet.dll",
  10102. "lib/monotouch/xunit.execution.dotnet.pdb",
  10103. "lib/monotouch/xunit.execution.dotnet.xml",
  10104. "lib/net45/xunit.execution.desktop.dll",
  10105. "lib/net45/xunit.execution.desktop.pdb",
  10106. "lib/net45/xunit.execution.desktop.xml",
  10107. "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll",
  10108. "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb",
  10109. "lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.xml",
  10110. "lib/win8/xunit.execution.dotnet.dll",
  10111. "lib/win8/xunit.execution.dotnet.pdb",
  10112. "lib/win8/xunit.execution.dotnet.xml",
  10113. "lib/wp8/xunit.execution.dotnet.dll",
  10114. "lib/wp8/xunit.execution.dotnet.pdb",
  10115. "lib/wp8/xunit.execution.dotnet.xml",
  10116. "lib/wpa81/xunit.execution.dotnet.dll",
  10117. "lib/wpa81/xunit.execution.dotnet.pdb",
  10118. "lib/wpa81/xunit.execution.dotnet.xml",
  10119. "lib/xamarinios/xunit.execution.dotnet.dll",
  10120. "lib/xamarinios/xunit.execution.dotnet.pdb",
  10121. "lib/xamarinios/xunit.execution.dotnet.xml",
  10122. "xunit.extensibility.execution.2.1.0.nupkg.sha512",
  10123. "xunit.extensibility.execution.nuspec"
  10124. ]
  10125. },
  10126. "xunit.runner.reporters/2.1.0": {
  10127. "sha512": "ja0kJrvwSiho2TRFpfHfa+6tGJI5edcyD8fdekTkjn7Us17PbGqglIihRe8sR9YFAmS4ipEC8+7CXOM/b69ENQ==",
  10128. "type": "package",
  10129. "path": "xunit.runner.reporters/2.1.0",
  10130. "files": [
  10131. "lib/dnx451/xunit.runner.reporters.dotnet.dll",
  10132. "lib/dotnet/xunit.runner.reporters.dotnet.dll",
  10133. "lib/net45/xunit.runner.reporters.desktop.dll",
  10134. "xunit.runner.reporters.2.1.0.nupkg.sha512",
  10135. "xunit.runner.reporters.nuspec"
  10136. ]
  10137. },
  10138. "xunit.runner.utility/2.1.0": {
  10139. "sha512": "jJJHROwskIhdQuYw7exe7KaW20dOCa+lzV/lY7Zdh1ZZzdUPpScMi9ReJIutqiyjhemGF8V/GaMIPrcjyZ4ioQ==",
  10140. "type": "package",
  10141. "path": "xunit.runner.utility/2.1.0",
  10142. "files": [
  10143. "lib/dnx451/xunit.runner.utility.dotnet.dll",
  10144. "lib/dnx451/xunit.runner.utility.dotnet.pdb",
  10145. "lib/dnx451/xunit.runner.utility.dotnet.xml",
  10146. "lib/dotnet/xunit.runner.utility.dotnet.dll",
  10147. "lib/dotnet/xunit.runner.utility.dotnet.pdb",
  10148. "lib/dotnet/xunit.runner.utility.dotnet.xml",
  10149. "lib/net35/xunit.runner.utility.desktop.dll",
  10150. "lib/net35/xunit.runner.utility.desktop.pdb",
  10151. "lib/net35/xunit.runner.utility.desktop.xml",
  10152. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.dll",
  10153. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.pdb",
  10154. "lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.dotnet.xml",
  10155. "xunit.runner.utility.2.1.0.nupkg.sha512",
  10156. "xunit.runner.utility.nuspec"
  10157. ]
  10158. },
  10159. "Luticate2.Auth/1.0.0": {
  10160. "type": "project",
  10161. "path": "../Luticate2.Auth/project.json",
  10162. "msbuildProject": "../Luticate2.Auth/Luticate2.Auth.xproj"
  10163. },
  10164. "Luticate2.Utils/1.0.0": {
  10165. "type": "project",
  10166. "path": "../Luticate2.Utils/project.json",
  10167. "msbuildProject": "../Luticate2.Utils/Luticate2.Utils.xproj"
  10168. }
  10169. },
  10170. "projectFileDependencyGroups": {
  10171. "": [
  10172. "Luticate2.Auth >= 1.0.*",
  10173. "System.Runtime.Serialization.Primitives >= 4.1.1",
  10174. "dotnet-test-xunit >= 1.0.0-rc2-192208-24",
  10175. "xunit >= 2.1.0"
  10176. ],
  10177. ".NETCoreApp,Version=v1.0": [
  10178. "Microsoft.NETCore.App >= 1.0.1"
  10179. ]
  10180. },
  10181. "tools": {},
  10182. "projectFileToolGroups": {}
  10183. }